diff --git a/docs/source/how-to-guides/add_new_license_detection_rule.rst b/docs/source/how-to-guides/add_new_license_detection_rule.rst index d381a548e5..19c8b680fd 100644 --- a/docs/source/how-to-guides/add_new_license_detection_rule.rst +++ b/docs/source/how-to-guides/add_new_license_detection_rule.rst @@ -73,7 +73,7 @@ More (advanced) rules options: be present in the result license detections. These just have the license text and a `is_false_positive` flag set to True. -- you can specify key phrases by surrounding one or more words between the `{{` +- you can specify required phrases by surrounding one or more words between the `{{` and `}}` tags. Key phrases are words that **must** be matched/present in order for a RULE to be considered a match. diff --git a/etc/scripts/licenses/buildrules.py b/etc/scripts/licenses/buildrules.py index 9970114fb9..8ee2692118 100644 --- a/etc/scripts/licenses/buildrules.py +++ b/etc/scripts/licenses/buildrules.py @@ -16,6 +16,7 @@ from licensedcode import models from licensedcode import match_hash from licensedcode import frontmatter +from licensedcode.models import get_rule_id_for_text from license_expression import Licensing """ @@ -130,23 +131,6 @@ def load_data(location="00-new-licenses.txt"): return rules -def rule_exists(text): - """ - Return the matched rule identifier if the text is an existing rule matched - exactly, False otherwise. - """ - idx = cache.get_index() - - matches = idx.match(query_string=text) - if not matches: - return False - if len(matches) > 1: - return False - match = matches[0] - if match.matcher == match_hash.MATCH_HASH and match.score() == 100: - return match.rule.identifier - - def all_rule_by_tokens(): """ Return a mapping of {tuples of tokens: rule id}, with one item for each @@ -347,7 +331,7 @@ def cli(licenses_file, dump_to_file_on_errors=False): text = rule.text - existing_rule = rule_exists(text) + existing_rule = get_rule_id_for_text(text) skinny_text = " ".join(text[:80].split()).replace("{", " ").replace("}", " ") existing_msg = ( diff --git a/etc/scripts/licenses/report_license_rules.py b/etc/scripts/licenses/report_license_rules.py index 8e8ff04abf..7a5f84adad 100644 --- a/etc/scripts/licenses/report_license_rules.py +++ b/etc/scripts/licenses/report_license_rules.py @@ -62,6 +62,8 @@ "is_license_reference", "is_license_intro", "is_license_clue", + "is_required_phrase", + "skip_for_required_phrase_generation", "is_deprecated", "has_unknown", "only_known_words", diff --git a/respective.txt b/respective.txt new file mode 100644 index 0000000000..7cf584d3cf --- /dev/null +++ b/respective.txt @@ -0,0 +1,3 @@ + This software is (C) by the respective authors, and licensed under the GPL + License. + diff --git a/setup-mini.cfg b/setup-mini.cfg index 6141fc24ae..9f89d63275 100644 --- a/setup-mini.cfg +++ b/setup-mini.cfg @@ -158,6 +158,7 @@ console_scripts = scancode-reindex-licenses = licensedcode.reindex:reindex_licenses scancode-license-data = licensedcode.license_db:dump_scancode_license_data regen-package-docs = packagedcode.regen_package_docs:regen_package_docs + add-required-phrases = licensedcode.required_phrases:add_required_phrases # These are configurations for ScanCode plugins as setuptools entry points. # Each plugin entry hast this form: diff --git a/setup.cfg b/setup.cfg index 786b0275e1..5395aacbee 100644 --- a/setup.cfg +++ b/setup.cfg @@ -158,6 +158,8 @@ console_scripts = scancode-reindex-licenses = licensedcode.reindex:reindex_licenses scancode-license-data = licensedcode.license_db:dump_scancode_license_data regen-package-docs = packagedcode.regen_package_docs:regen_package_docs + add-required-phrases = licensedcode.required_phrases:add_required_phrases + gen-new-required-phrases-rules = licensedcode.required_phrases:gen_required_phrases_rules # These are configurations for ScanCode plugins as setuptools entry points. # Each plugin entry hast this form: diff --git a/src/licensedcode/cache.py b/src/licensedcode/cache.py index a257576d2c..1a9603f6cd 100644 --- a/src/licensedcode/cache.py +++ b/src/licensedcode/cache.py @@ -9,6 +9,7 @@ import os import pickle + from shutil import rmtree from commoncode.fileutils import create_dir @@ -185,10 +186,7 @@ def load_or_build( additional_license_plugins=plugin_directories, ) - # save the cache as pickle new tree checksum - with open(cache_file, 'wb') as fn: - pickle.dump(license_cache, fn, protocol=PICKLE_PROTOCOL) - + license_cache.dump(cache_file) return license_cache except lockfile.LockTimeout: @@ -201,6 +199,13 @@ def has_additional_licenses(self): if cache.additional_license_directory or cache.additional_license_plugins: return True + def dump(self, cache_file): + """ + Dump this license cache on disk at ``cache_file``. + """ + with open(cache_file, 'wb') as fn: + pickle.dump(self, fn, protocol=PICKLE_PROTOCOL) + def build_index( licenses_db=None, @@ -235,9 +240,12 @@ def build_index( if not licenses_db: # combine the licenses in these additional directories with the licenses in the original DB additional_license_dirs = get_license_dirs(additional_dirs=additional_directories) - combined_license_directories = [licenses_data_dir] + additional_license_dirs # generate a single combined license db with all licenses - licenses_db = load_licenses_from_multiple_dirs(license_dirs=combined_license_directories) + licenses_db = load_licenses_from_multiple_dirs( + builtin_license_data_dir=licenses_data_dir, + additional_license_data_dirs=additional_license_dirs, + with_deprecated=False, + ) # if we have additional directories, extract the rules from them additional_rule_dirs = get_rule_dirs(additional_dirs=additional_directories) @@ -393,7 +401,7 @@ def get_cache( Return a LicenseCache either rebuilt, cached or loaded from disk. If ``index_all_languages`` is True, include texts in all languages when - building the license index. Otherwise, only include the English license \ + building the license index. Otherwise, only include the English license texts and rules (the default) """ return populate_cache( @@ -531,7 +539,7 @@ def validate_spdx_license_keys(license_expression, licensing): if not type(key) == str: msg = f"Invalid license key: {key} of type {type(key)}, license key should be a string" messages.append(msg) - + lic = license_db.get(key, None) if not lic: licenses = load_licenses(with_deprecated=True) diff --git a/src/licensedcode/data/licenses/any-osi-perl-modules.LICENSE b/src/licensedcode/data/licenses/any-osi-perl-modules.LICENSE index 9f73e324f9..b601195d2f 100644 --- a/src/licensedcode/data/licenses/any-osi-perl-modules.LICENSE +++ b/src/licensedcode/data/licenses/any-osi-perl-modules.LICENSE @@ -11,6 +11,7 @@ other_urls: - https://metacpan.org/pod/Net::MQTT::Simple#LICENSE ignorable_urls: - http://www.opensource.org/licenses/alphabetical +minimum_coverage: 90 --- This software may be redistributed under the terms of the GPL, LGPL, @@ -23,4 +24,4 @@ When using a packaged version, please refer to the package metadata to see under which license terms it was distributed. Alternatively, a distributor may choose to replace the LICENSE section of the documentation and/or include a LICENSE file to reflect the license(s) they chose to redistribute -under. \ No newline at end of file +under. diff --git a/src/licensedcode/data/licenses/dco-1.0.LICENSE b/src/licensedcode/data/licenses/dco-1.0.LICENSE new file mode 100644 index 0000000000..e4de3d4adf --- /dev/null +++ b/src/licensedcode/data/licenses/dco-1.0.LICENSE @@ -0,0 +1,39 @@ +--- +key: dco-1.0 +short_name: DCO 1.0 +name: Developer Certificate of Origin 1.0 +category: CLA +owner: Linux Foundation +homepage_url: https://developercertificate.org/ +spdx_license_key: LicenseRef-scancode-dco-1.0 +text_urls: + - https://developercertificate.org/ +other_urls: + - https://github.com/nexB/scancode-toolkit/issues/3038#issuecomment-1317511139 +minimum_coverage: 90 +--- + +Developer's Certificate of Origin 1.0 + +By making a contribution to this project, I certify that: + +1. The contribution was created in whole or in part by me and I + have the right to submit it under the open source license + indicated in the file LICENSE; or + +2. The contribution is based upon previous work that, to the best + of my knowledge, is covered under an appropriate open source + license and I have the right under that license to submit that + work with modifications, whether created in whole or in part + by me, under the same open source license (unless I am + permitted to submit under a different license), as indicated + in the file LICENSE; or + +3. The contribution was provided directly to me by some other + person who certified (1), (2) or (3) and I have not modified + it. + +4. I understand and agree that this project and the contribution + are public and that a record of the contribution (including all + personal information I submit with it, including my sign-off) is + maintained indefinitely and may be redistributed consistent \ No newline at end of file diff --git a/src/licensedcode/data/licenses/samba-dco-1.0.LICENSE b/src/licensedcode/data/licenses/samba-dco-1.0.LICENSE new file mode 100644 index 0000000000..368b0d2d96 --- /dev/null +++ b/src/licensedcode/data/licenses/samba-dco-1.0.LICENSE @@ -0,0 +1,51 @@ +--- +key: samba-dco-1.0 +short_name: Samba Developer's Declaration, Version 1.0 +name: Samba Developer's Declaration, Version 1.0 +category: CLA +owner: Samba +homepage_url: https://github.com/samba-team/samba/blob/master/README.contributing +spdx_license_key: LicenseRef-scancode-samba-dco-1.0 +text_urls: + - https://github.com/samba-team/samba/blob/master/README.contributing +minimum_coverage: 80 +ignorable_urls: + - http://www.gnu.org/licenses/gpl-3.0.html + - http://www.gnu.org/licenses/lgpl-3.0.html +--- + +Samba Developer's Declaration, Version 1.0 + +By making a contribution to this project, I certify that: + +(a) The contribution was created in whole or in part by me and I + have the right to submit it under the appropriate + version of the GNU General Public License; or + +(b) The contribution is based upon previous work that, to the best + of my knowledge, is covered under an appropriate open source + license and I have the right under that license to submit that + work with modifications, whether created in whole or in part + by me, under the GNU General Public License, in the + appropriate version; or + +(c) The contribution was provided directly to me by some other + person who certified (a) or (b) and I have not modified + it. + +(d) I understand and agree that this project and the + contribution are public and that a record of the + contribution (including all metadata and personal + information I submit with it, including my sign-off) is + maintained indefinitely and may be redistributed + consistent with the Samba Team's policies and the + requirements of the GNU GPL where they are relevant. + +(e) I am granting this work to this project under the terms of both + the GNU General Public License and the GNU Lesser General Public + License as published by the Free Software Foundation; either version + 3 of these Licenses, or (at the option of the project) any later + version. + + http://www.gnu.org/licenses/gpl-3.0.html + http://www.gnu.org/licenses/lgpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_62.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_62.RULE index e98561b03e..40fd83ee4b 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_62.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_62.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -AGPL-1.0+ Affero General Public License v1.0 or later \ No newline at end of file +{{AGPL-1.0+}} {{Affero General Public License v1.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_63.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_63.RULE index f6ce0d51d6..7b57c95887 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_63.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_63.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-1.0-plus is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_64.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_64.RULE index 1e07cae880..34931b4e1f 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_64.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_64.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -Affero General Public License v1.0 or later AGPL-1.0+ \ No newline at end of file +{{Affero General Public License v1.0 or later}} {{AGPL-1.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_65.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_65.RULE index b8a546b0a7..b8c679cc33 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_65.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_65.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-1.0-plus is_license_tag: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_66.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_66.RULE index 90e7cfd049..2ad38231e8 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_66.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_66.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : AGPL-1.0+ \ No newline at end of file +licenseid : {{AGPL-1.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_67.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_67.RULE index ec79eba436..da341a3fa2 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_67.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_67.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : Affero General Public License v1.0 or later \ No newline at end of file +name : {{Affero General Public License v1.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_68.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_68.RULE index 6f4d639b4b..eb060b2d1b 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_68.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_68.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -AGPL-1.0-or-later Affero General Public License v1.0 or later \ No newline at end of file +{{AGPL-1.0-or-later}} {{Affero General Public License v1.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_69.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_69.RULE index be26b0019d..52322cd29a 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_69.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_69.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Affero General Public License v1.0 or later AGPL-1.0-or-later \ No newline at end of file +{{Affero General Public License v1.0 or later}} {{AGPL-1.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_70.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_70.RULE index fa562b4934..ea8ebf5008 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_70.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_70.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: AGPL-1.0-or-later \ No newline at end of file +license: {{AGPL-1.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_71.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_71.RULE index e6ebb3e56a..b8405c569c 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_71.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_71.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: Affero General Public License v1.0 or later \ No newline at end of file +license: {{Affero General Public License v1.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_72.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_72.RULE index c8640ef2ea..9f64a5aaf3 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_72.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_72.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: AGPL-1.0-or-later \ No newline at end of file +licenseId: {{AGPL-1.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0-plus_74.RULE b/src/licensedcode/data/rules/agpl-1.0-plus_74.RULE index 6f7342efef..358a2e3a6a 100644 --- a/src/licensedcode/data/rules/agpl-1.0-plus_74.RULE +++ b/src/licensedcode/data/rules/agpl-1.0-plus_74.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/AGPL-1.0-or-later \ No newline at end of file +licenses.nuget.org/{{AGPL-1.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-1.0_5.RULE b/src/licensedcode/data/rules/agpl-1.0_5.RULE index 6e1e031631..793688d981 100644 --- a/src/licensedcode/data/rules/agpl-1.0_5.RULE +++ b/src/licensedcode/data/rules/agpl-1.0_5.RULE @@ -8,5 +8,5 @@ referenced_filenames: // The source code packaged with this file is Free Software, // It's licensed under the AFFERO GENERAL PUBLIC LICENSE unless stated otherwise. // You can get copies of the licenses here: -// affero.org: Affero General Public License version 1 (AGPLv1) +// affero.org: {{Affero General Public License version 1}} (AGPLv1) // AFFERO GENERAL PUBLIC LICENSE is also included in the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_100.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_100.RULE index 519c00a069..533366248e 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_100.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_100.RULE @@ -9,4 +9,4 @@ ignorable_urls: --- Licensing -This project is free and open-source software and is distributed under the terms of the GNU Affero General Public License v3 or any later version. It is subject to the license terms in the LICENSE file found in the top-level directory of this distribution and at https://www.gnu.org/licenses/agpl-3.0.md. By submitting a contribution to this project you agree and acknowledge that your contribution may be used under the terms of the GNU Affero General Public License v3 or any later version and you are authorized to submit the contribution on behalf of the copyright holder. No part of this project, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the LICENSE file. \ No newline at end of file +This project is free and open-source software and is distributed under the terms of the {{GNU Affero General Public License}} v3 or any later version. It is subject to the license terms in the LICENSE file found in the top-level directory of this distribution and at https://www.gnu.org/licenses/agpl-3.0.md. By submitting a contribution to this project you agree and acknowledge that your contribution may be used under the terms of the {{GNU Affero General Public License}} v3 or any later version and you are authorized to submit the contribution on behalf of the copyright holder. No part of this project, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_106.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_106.RULE index a6018cf6e2..da501db70d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_106.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_106.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This program is licensed under the GNU Affero General Public License. \ No newline at end of file +This program is licensed under the {{GNU Affero General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_107.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_107.RULE index 7e0bfc235d..2e3deff79f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_107.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_107.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -program is licensed under the GNU Affero General Public License. \ No newline at end of file +program is licensed under the {{GNU Affero General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_108.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_108.RULE index b12cf7461c..81860dea9b 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_108.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_108.RULE @@ -8,13 +8,13 @@ referenced_filenames: License is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as published by +it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. +{{GNU Affero General Public License}} for more details. Read the LICENSE.txt file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_109.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_109.RULE index f555cfa5ab..a77b5ed4b9 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_109.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_109.RULE @@ -7,13 +7,13 @@ referenced_filenames: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as published by +it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. +{{GNU Affero General Public License}} for more details. Read the LICENSE.txt file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_11.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_11.RULE index 94757c983d..94bfa66eec 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_11.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_11.RULE @@ -5,8 +5,8 @@ ignorable_urls: - http://www.gnu.org/licenses --- -is free software: you can redistribute it and/or modify it under the terms of the {{GNU Affero General Public License}} as published by the Free Software Foundation, {{either version 3 of the License, or (at your option) any later version.}} +is free software: you can redistribute it and/or modify it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. - is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. + is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License along with . If not, see http://www.gnu.org/licenses/. +You should have received a copy of the {{GNU Affero General Public License}} along with . If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_110.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_110.RULE index a63618b013..f0ef5a65c3 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_110.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_110.RULE @@ -6,11 +6,11 @@ relevance: 100 License is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as published by +it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. \ No newline at end of file +{{GNU Affero General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_111.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_111.RULE index c06cfd1abe..ac837a0be9 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_111.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_111.RULE @@ -5,11 +5,11 @@ relevance: 100 --- is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as published by +it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. \ No newline at end of file +{{GNU Affero General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_112.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_112.RULE index a21e7fcfb3..6321a63261 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_112.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_112.RULE @@ -7,16 +7,16 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -License: AGPL-3.0 +{{License: AGPL-3.0}} This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as + it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. + {{GNU Affero General Public License}} for more details. . - You should have received a copy of the GNU Affero General Public License + You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_113.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_113.RULE index 5691b779d6..db2c31695a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_113.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_113.RULE @@ -5,6 +5,6 @@ relevance: 100 --- is free software; you can redistribute it and/or modify it -# under the terms of the GNU Affero General Public License as published by the +# under the terms of the {{GNU Affero General Public License as published by the # Free Software Foundation; either version 3 of the License, or (at your -# option) any later version. \ No newline at end of file +# option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_114.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_114.RULE index 8432759bee..e2ef51a573 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_114.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_114.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under AGPL-3.0+ and is free software \ No newline at end of file +released under {{AGPL-3.0+}} and is free software \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_116.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_116.RULE index eb1591c255..64e91f7392 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_116.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_116.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/agpl --- -License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). \ No newline at end of file +{{License AGPL-3.0 or later}} (http://www.gnu.org/licenses/agpl). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_117.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_117.RULE index 9dc701294a..16384b12b9 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_117.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_117.RULE @@ -10,16 +10,16 @@ ignorable_urls: # This software's license gives you freedom; you can copy, convey, # propagate, redistribute and/or modify this program under the terms of -# the GNU Affero General Public License (AGPL) as published by the Free +# the {{GNU Affero General Public License}} (AGPL) as published by the Free # Software Foundation (FSF), either version 3 of the License, or (at your # option) any later version of the AGPL published by the FSF. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero -# General Public License for more details. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Affero +# General Public License}} for more details. # -# You should have received a copy of the GNU Affero General Public License +# You should have received a copy of the {{GNU Affero General Public License}} # along with this program in a file in the toplevel directory called # "AGPLv3". If not, see . # \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_118.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_118.RULE index ec1429e6cb..6f4a2bbcbe 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_118.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_118.RULE @@ -5,4 +5,4 @@ relevance: 100 --- This program is distributed under the terms of the - GNU Affero General Public License version 3.0 or later \ No newline at end of file + {{GNU Affero General Public License}} version 3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_119.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_119.RULE index 562ca31035..e3fa0938b7 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_119.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_119.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- This program is distributed under the terms of the - GNU Affero General Public License version 3.0 or later + {{GNU Affero General Public License}} version 3.0 or later see http://www.gnu.org/licenses/agpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_12.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_12.RULE index c2fe6c56f4..543e929003 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_12.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_12.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as + it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. + {{GNU Affero General Public License}} for more details. - You should have received a copy of the GNU Affero General Public License + You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_120.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_120.RULE index a3ae14d193..8c50cf1d16 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_120.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_120.RULE @@ -1,7 +1,8 @@ --- license_expression: agpl-3.0-plus is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -licensed under AGPL-3.0-or-later \ No newline at end of file +licensed under AGPL-3.0-or-later diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_121.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_121.RULE index 4bf0ca40b8..7754666c52 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_121.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_121.RULE @@ -10,4 +10,4 @@ ignorable_urls: LICENSE -This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, version 3 of the License or later. You should have received a copy of the GNU Affero General Public License along with this program. See the LICENSE file in the root directory. If not, see https://www.gnu.org/licenses/agpl.txt \ No newline at end of file +This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU Affero General Public License}} as published by the Free Software Foundation, version 3 of the License or later. You should have received a copy of the {{GNU Affero General Public License}} along with this program. See the LICENSE file in the root directory. If not, see https://www.gnu.org/licenses/agpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_122.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_122.RULE index 089ca542a9..1ca12fc9d7 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_122.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_122.RULE @@ -8,4 +8,4 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl.txt --- -This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, version 3 of the License or later. You should have received a copy of the GNU Affero General Public License along with this program. See the LICENSE file in the root directory. If not, see https://www.gnu.org/licenses/agpl.txt \ No newline at end of file +This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU Affero General Public License}} as published by the Free Software Foundation, version 3 of the License or later. You should have received a copy of the {{GNU Affero General Public License}} along with this program. See the LICENSE file in the root directory. If not, see https://www.gnu.org/licenses/agpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_123.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_123.RULE index 8062adf7ca..2fff250bb4 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_123.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_123.RULE @@ -7,7 +7,7 @@ minimum_coverage: 80 * LICENSE: * This program is free software: you can redistribute it - * and/or modify it under the terms of the GNU Affero + * and/or modify it under the terms of the {{GNU Affero * General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your - * option) any later version. \ No newline at end of file + * option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_124.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_124.RULE index cb477daebd..43cb041c86 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_124.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_124.RULE @@ -6,6 +6,6 @@ relevance: 100 # This software's license gives you freedom; you can copy, convey, # propagate, redistribute and/or modify this program under the terms of -# the GNU Affero General Public License (AGPL) as published by the Free +# the {{GNU Affero General Public License}} (AGPL) as published by the Free # Software Foundation (FSF), either version 3 of the License, or (at your # option) any later version of the AGPL published by the FSF. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_125.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_125.RULE index c4feab4c27..678a556890 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_125.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_125.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl --- -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). \ No newline at end of file +# {{License AGPL-3.0 or later}} (https://www.gnu.org/licenses/agpl). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_127.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_127.RULE index 1c45ba3e86..7a4631311d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_127.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_127.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -* License: GNU Affero General Public License version 3, or any later version +* License: {{GNU Affero General Public License}} version 3, or any later version * See top-level LICENSE file for more information \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_128.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_128.RULE index ed38f1e609..2c5daaf25a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_128.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_128.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -* License: GNU Affero General Public License version 3, or any later version \ No newline at end of file +* License: {{GNU Affero General Public License}} version 3, or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_13.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_13.RULE index 43d27ed111..e888b8d609 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_13.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_13.RULE @@ -5,7 +5,7 @@ relevance: 100 --- * This program is free software: you can redistribute it and/or modify * - * it under the terms of the GNU Affero General Public License as * + * it under the terms of the {{GNU Affero General Public License as * * published by the Free Software Foundation, either version 3 of the * - * License, or (at your option) any later version. * + * License, or (at your option) any later version}}. * * \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_137.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_137.RULE index 93e1a490d9..2c9d383f86 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_137.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_137.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as + it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. + {{GNU Affero General Public License}} for more details. - You should have received a copy of the GNU Affero General Public License + You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_138.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_138.RULE index 9f464f164e..77ec3a1fe4 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_138.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_138.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as + it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. + {{GNU Affero General Public License}} for more details. - You should have received a copy of the GNU Affero General Public License + You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_139.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_139.RULE index f3170d4bb4..070e434942 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_139.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_139.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as + it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. + {{GNU Affero General Public License}} for more details. - You should have received a copy of the GNU Affero General Public License + You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_141.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_141.RULE index 620327777b..6f3df4557b 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_141.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_141.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as + it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. + {{GNU Affero General Public License}} for more details. - You should have received a copy of the GNU Affero General Public License + You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_142.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_142.RULE index f9c6386cd4..da74a7af4f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_142.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_142.RULE @@ -5,17 +5,17 @@ relevance: 100 --- GPL Ghostscript is free software; you can redistribute it and/or -modify it under the terms of the GNU Affero General Public License +modify it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. GPL Ghostscript is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Affero General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public -License along with this program so you can know your rights and +You should have received a copy of the {{GNU Affero General Public +License}} along with this program so you can know your rights and responsibilities. It should be in a file named doc/COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_145.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_145.RULE index ba88d016cb..5f879a3497 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_145.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_145.RULE @@ -13,8 +13,8 @@ increase public awareness of Patented Technology, Inventor hereby grants a fully paid up, nonexclusive, royalty free license to practice the patents listed below ("the Patents") if and only if practiced in conjunction with software distributed under the -terms of any version of the GNU Affero General Public License as +terms of any version of the {{GNU Affero General Public License}} as published by the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111. Inventor reserves all other rights, including without limitation, licensing for software not -distributed under the GNU Affero General Public License. \ No newline at end of file +distributed under the {{GNU Affero General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_150.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_150.RULE index 626b3c13a7..7fdb2b0b60 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_150.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_150.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- jbig2dec is free software; you can redistribute it and/or modify -it under the terms the GNU Affero General Public License as +it under the terms the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. -You should have received a copy of the GNU Affero General Public -License along with this program in the file named COPYING. If not, +You should have received a copy of the {{GNU Affero General Public +License}} along with this program in the file named COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_151.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_151.RULE index e881db8608..130a048777 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_151.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_151.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- is free software; you can redistribute it and/or modify -it under the terms the GNU Affero General Public License as +it under the terms the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. -You should have received a copy of the GNU Affero General Public -License along with this program in the file named COPYING. If not, +You should have received a copy of the {{GNU Affero General Public +License}} along with this program in the file named COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_154.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_154.RULE index c4dbd2847d..dfb9dd02a8 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_154.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_154.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the GNU Affero General Public License (the "AGPL"). \ No newline at end of file +distributed under the {{GNU Affero General Public License}} (the "AGPL"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_155.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_155.RULE index fe5800d98a..16449368aa 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_155.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_155.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the GNU Affero General Public License \ No newline at end of file +distributed under the {{GNU Affero General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_156.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_156.RULE index 939a1e30a4..3cab185fb5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_156.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_156.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU Affero General Public License (the "AGPL"). \ No newline at end of file +under the {{GNU Affero General Public License}} (the "AGPL"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_16.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_16.RULE index b4152f2d6c..dd4cb7662d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_16.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_16.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published by + * it under the terms of the {{GNU Affero General Public License}} as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. + * {{GNU Affero General Public License}} for more details. * - * You should have received a copy of the GNU Affero General Public License + * You should have received a copy of the {{GNU Affero General Public License}} * along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_161.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_161.RULE index aaeb1c1cea..598fe36524 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_161.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_161.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- This script is part of GNU Ghostscript and is distributed under -the terms of the {{GNU Affero General Public License.}} See the file COPYING -for more information. +the terms of the {{GNU Affero General Public License}}. See the file COPYING +for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_162.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_162.RULE index 5643d95db7..b7f676bbff 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_162.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_162.RULE @@ -5,4 +5,4 @@ relevance: 100 --- This script is part of GNU Ghostscript and is distributed under -the terms of the GNU Affero General Public License. \ No newline at end of file +the terms of the {{GNU Affero General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_163.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_163.RULE index 0cbfdbca19..e1f208b6b1 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_163.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_163.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- This program is part of GNU Ghostscript and is distributed under -the terms of the GNU Affero General Public License. See the file COPYING +the terms of the {{GNU Affero General Public License}}. See the file COPYING for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_167.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_167.RULE index 9e85f2eed8..f855a68f51 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_167.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_167.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It is licensed under the GNU Affero General Public License. \ No newline at end of file +It is licensed under the {{GNU Affero General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_17.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_17.RULE index a55739c46c..7c5dae1fc6 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_17.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_17.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_172.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_172.RULE index d954f4c7a5..6227637338 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_172.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_172.RULE @@ -9,8 +9,8 @@ ignorable_urls: --- # Debsources is free software: you can -# redistribute it and/or modify it under the terms of the GNU Affero General +# redistribute it and/or modify it under the terms of the {{GNU Affero General # Public License as published by the Free Software Foundation, either version 3 -# of the License, or (at your option) any later version. For more information +# of the License, or (at your option) any later version}}. For more information # see the COPYING file at the top-level directory of this distribution and at # https://salsa.debian.org/qa/debsources/blob/master/COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_175.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_175.RULE index 23a239996c..2fe46ae56c 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_175.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_175.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.txt --- -# License: GNU Affero General Public License v3 or later +# License: {{GNU Affero General Public License}} v3 or later # A copy of GNU AGPL v3 should have been included in this software package in LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_187.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_187.RULE index 8894980c27..2f96d46091 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_187.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_187.RULE @@ -8,6 +8,6 @@ ignorable_urls: ## Legal -This software is licensed to anyone under the terms of the [GNU Affero General -Public License, version 3](https://www.gnu.org/licenses/agpl-3.0.en.html) (or +This software is licensed to anyone under the terms of the [{{GNU Affero General +Public License}}, version 3](https://www.gnu.org/licenses/agpl-3.0.en.html) (or any higher version of the same license, at your option). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_188.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_188.RULE index 37ef1986a3..8f3b4db7ba 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_188.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_188.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl-3.0.en.html --- -This software is licensed to anyone under the terms of the [GNU Affero General -Public License, version 3](https://www.gnu.org/licenses/agpl-3.0.en.html) (or +This software is licensed to anyone under the terms of the [{{GNU Affero General +Public License}}, version 3](https://www.gnu.org/licenses/agpl-3.0.en.html) (or any higher version of the same license, at your option). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_19.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_19.RULE index dc919eae49..b242edb45a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_19.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_19.RULE @@ -6,5 +6,5 @@ minimum_coverage: 85 --- This program is free software: you can redistribute it and/or modify it under -the terms of the GNU Affero General Public License as published by the Free +the terms of the {{GNU Affero General Public License}} as published by the Free Software Foundation, either version 3 of the License, or any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_191.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_191.RULE index 8dc4c75497..9daf34dfc4 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_191.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_191.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License, version 3 +it under the terms of the {{GNU Affero General Public License}}, version 3 or later, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more +FOR A PARTICULAR PURPOSE. See the {{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_192.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_192.RULE index abbf0b3377..0498ca8fd9 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_192.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_192.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License, version 3 +it under the terms of the {{GNU Affero General Public License}}, version 3 or later, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more +FOR A PARTICULAR PURPOSE. See the {{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_193.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_193.RULE index 2727b6fc9e..6a83991e33 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_193.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_193.RULE @@ -9,14 +9,14 @@ ignorable_urls: --- # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by +# it under the terms of the {{GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See th -# GNU Affero General Public License for more details. +# {{GNU Affero General Public License}} for more details. # # You should have received a copy of the GNU Affero General Public Licen # along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_194.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_194.RULE index 0fef0fe2e8..65a0cd432a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_194.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_194.RULE @@ -9,14 +9,14 @@ ignorable_urls: --- # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by +# it under the terms of the {{GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See th -# GNU Affero General Public License for more details. +# {{GNU Affero General Public License}} for more details. # # You should have received a copy of the GNU Affero General Public Licen # along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_195.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_195.RULE index 2e22e0a009..3101228873 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_195.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_195.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- // is free software: you can redistribute it and/or modify it under -// the terms of the GNU Affero General Public License as published by the Free +// the terms of the {{GNU Affero General Public License as published by the Free // Software Foundation, either version 3 of the License, or (at your option) -// any later version. +// any later version}}. // // is distributed in the hope that it will be useful, but WITHOUT // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -// FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License +// FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Affero General Public License}} // for more details. // -// You should have received a copy of the GNU Affero General Public License +// You should have received a copy of the {{GNU Affero General Public License}} // along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_196.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_196.RULE index eae8f84480..e587c3595c 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_196.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_196.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published by + it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. + {{GNU Affero General Public License}} for more details. - You should have received a copy of the GNU Affero General Public License + You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, use a search engine. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_197.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_197.RULE index 5b7e8c06db..b7336ccd25 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_197.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_197.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- # is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as +# it under the terms of the {{GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. +# License, or (at your option) any later version}}. ############################################################################ # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. +# {{GNU Affero General Public License}} for more details. ############################################################################ -# You should have received a copy of the GNU Affero General Public License +# You should have received a copy of the {{GNU Affero General Public License}} # along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_198.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_198.RULE index 90c3a6da9a..d558d1833e 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_198.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_198.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- # is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as +# it under the terms of the {{GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. +# License, or (at your option) any later version}}. ############################################################################ # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. +# {{GNU Affero General Public License}} for more details. ############################################################################ -# You should have received a copy of the GNU Affero General Public License +# You should have received a copy of the {{GNU Affero General Public License}} # along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_199.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_199.RULE index a5ee224044..0810ad3668 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_199.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_199.RULE @@ -7,13 +7,13 @@ minimum_coverage: 70 * * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as + * it under the terms of the {{GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. + * License, or (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. + * {{GNU Affero General Public License}} for more details. * - * You should have received a copy of the GNU Affero General Public License \ No newline at end of file + * You should have received a copy of the {{GNU Affero General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_208.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_208.RULE index 8db95c9374..a3e08f4449 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_208.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_208.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the GNU Affero GPL version 3 or later. \ No newline at end of file +distributed under the {{GNU Affero GPL version 3 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_212.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_212.RULE index 016198ea3e..4876beec33 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_212.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_212.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU Affero General Public License v3 or later \ No newline at end of file +{{GNU Affero General Public License}} v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_214.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_214.RULE index 22260395c2..cf512a67a6 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_214.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_214.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as +it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. +{{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_22.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_22.RULE index 0ded4c9a9a..0180fb39af 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_22.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_22.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_223.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_223.RULE index b5e06e956d..6821bcf5f2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_223.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_223.RULE @@ -10,8 +10,8 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU Affero GPL, version 3 -or later +redistribution under the terms of the {{GNU Affero GPL, version 3 +or later}} is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -21,7 +21,7 @@ Free Software Foundation, either version 3 of the License, or is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU Affero General Public License for more details. +See the {{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_224.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_224.RULE index 130312cf3b..f075706699 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_224.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_224.RULE @@ -21,7 +21,7 @@ Free Software Foundation, either version 3 of the License, or is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU Affero General Public License for more details. +See the {{GNU Affero General Public License}} for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_225.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_225.RULE index abc913f202..27c9baf0a9 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_225.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_225.RULE @@ -1,7 +1,8 @@ --- license_expression: agpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU Affero GPL, version 3 or later \ No newline at end of file +GNU Affero GPL version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_226.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_226.RULE index a20477ba4d..99c8d0f8d4 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_226.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_226.RULE @@ -1,7 +1,8 @@ --- license_expression: agpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Affero GPL, version 3 or later \ No newline at end of file +Affero GPL version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_230.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_230.RULE index 0942b44aaa..6eca53f5b4 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_230.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_230.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU Affero General Public license \ No newline at end of file +licensed under the terms of the {{GNU Affero General Public license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_232.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_232.RULE index 58a8b0c781..bef1a761aa 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_232.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_232.RULE @@ -6,9 +6,9 @@ notes: Some GPL references are misleading --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as published by +it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_243.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_243.RULE index 44a57783c3..ed18a8cdbe 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_243.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_243.RULE @@ -5,5 +5,5 @@ referenced_filenames: - AGPL-3 --- -GNU Affero General Public License, version 3 or any later version. +{{GNU Affero General Public License}}, version 3 or any later version. See AGPL-3 for the full text of this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_244.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_244.RULE index 01adada982..1d952b3a3a 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_244.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_244.RULE @@ -5,6 +5,6 @@ is_license_notice: yes GPL Ghostscript is free software; you can redistribute it and/or modify - it under the terms the GNU Affero General Public License + it under the terms the {{GNU Affero General Public License as published by the Free Software Foundation, - either version 3 of the License, or (at your option) any later version. \ No newline at end of file + either version 3 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_245.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_245.RULE index d73f1c9f3a..429ba2da95 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_245.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_245.RULE @@ -5,6 +5,6 @@ is_license_notice: yes is free software; you can redistribute it and/or modify - it under the terms the GNU Affero General Public License + it under the terms the {{GNU Affero General Public License as published by the Free Software Foundation, - either version 3 of the License, or (at your option) any later version. \ No newline at end of file + either version 3 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_246.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_246.RULE index 974e2ed1ba..2efd581d4b 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_246.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_246.RULE @@ -5,6 +5,6 @@ is_license_notice: yes are free software; you can redistribute and/or modify them - under the terms of the GNU Affero General Public License + under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, - either version 3 of the License, or (at your option) any later version. \ No newline at end of file + either version 3 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_247.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_247.RULE index 1cbe254f84..ffd4e4ba30 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_247.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_247.RULE @@ -5,6 +5,6 @@ is_license_notice: yes GhostPDL and GPL Ghostscript are free software; you can redistribute and/or modify them - under the terms of the GNU Affero General Public License + under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, - either version 3 of the License, or (at your option) any later version. \ No newline at end of file + either version 3 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_248.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_248.RULE index 42fb177335..96514e3145 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_248.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_248.RULE @@ -10,8 +10,8 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU Affero GPL, version 3 -or later +redistribution under the terms of the {{GNU Affero GPL, version 3 +or later}} is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -21,7 +21,7 @@ Free Software Foundation, either version 3 of the License, or is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU Affero General Public License for more details. +See the {{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_249.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_249.RULE index 9832a71edc..ea17bf3cd0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_249.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_249.RULE @@ -9,14 +9,14 @@ ignorable_urls: ("AGPL3" t "This program is free software: you can redistribute it and/or modify" - "it under the terms of the GNU Affero General Public License as published by" + "it under the terms of the {{GNU Affero General Public License as published by" "the Free Software Foundation, either version 3 of the License, or" - "(at your option) any later version." + "(at your option) any later version}}." "" "This program is distributed in the hope that it will be useful," "but WITHOUT ANY WARRANTY; without even the implied warranty of" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the" - "GNU Affero General Public License for more details." + "{{GNU Affero General Public License}} for more details." "" - "You should have received a copy of the GNU Affero General Public License" + "You should have received a copy of the {{GNU Affero General Public License}}" "along with this program. If not, see .") \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_251.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_251.RULE index 1e7c22f26d..5bad746067 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_251.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_251.RULE @@ -10,16 +10,16 @@ ignorable_urls: # This software's license gives you freedom; you can copy, convey, # propagate, redistribute and/or modify this program under the terms of -# the GNU Affero General Public License (AGPL) as published by the Free +# the {{GNU Affero General Public License}} (AGPL) as published by the Free # Software Foundation (FSF), either version 3 of the License, or (at your # option) any later version of the AGPL published by the FSF. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero -# General Public License for more details. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Affero +# General Public License}} for more details. # -# You should have received a copy of the GNU Affero General Public License +# You should have received a copy of the {{GNU Affero General Public License}} # along with this program in a file in the toplevel directory called # "AGPLv3". If not, see . # \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_252.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_252.RULE index 068c306053..29be5fca9d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_252.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_252.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published by + * it under the terms of the {{GNU Affero General Public License}} as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. + * {{GNU Affero General Public License}} for more details. * - * You should have received a copy of the GNU Affero General Public License + * You should have received a copy of the {{GNU Affero General Public License}} * along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_253.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_253.RULE index 39245d9831..bee9e37f9d 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_253.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_253.RULE @@ -7,16 +7,16 @@ ignorable_urls: - https://www.gnu.org/licenses/ --- -License: AGPL-3.0 +{{License: AGPL-3.0}} This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as + it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. + {{GNU Affero General Public License}} for more details. . - You should have received a copy of the GNU Affero General Public License + You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_254.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_254.RULE index fd85336c33..2f7e8e8ad9 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_254.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_254.RULE @@ -21,7 +21,7 @@ Free Software Foundation, either version 3 of the License, or is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU Affero General Public License for more details. +See the {{GNU Affero General Public License}} for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_255.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_255.RULE index 57c96ee57d..0b72f850ba 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_255.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_255.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- This program is distributed under the terms of the - GNU Affero General Public License version 3.0 or later + {{GNU Affero General Public License}} version 3.0 or later see https://www.gnu.org/licenses/agpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_263.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_263.RULE index 41a10e9088..f12c86fa54 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_263.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_263.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -AGPL-3.0+ GNU Affero General Public License v3.0 or later \ No newline at end of file +{{AGPL-3.0+}} {{GNU Affero General Public License v3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_264.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_264.RULE index 6db7e3d16c..740e7e8b65 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_264.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_264.RULE @@ -1,7 +1,7 @@ --- license_expression: agpl-3.0-plus is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_265.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_265.RULE index d08c727d40..e1c54c945e 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_265.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_265.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GNU Affero General Public License v3.0 or later AGPL-3.0+ \ No newline at end of file +{{GNU Affero General Public License v3.0 or later}} {{AGPL-3.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_266.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_266.RULE index 8d5a83a82d..70b9a18cee 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_266.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_266.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -license : AGPL-3.0+ \ No newline at end of file +license : {{AGPL-3.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_267.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_267.RULE index b15449b290..dd82e04fa4 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_267.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_267.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : AGPL-3.0+ \ No newline at end of file +licenseid : {{AGPL-3.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_268.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_268.RULE index b6d2f4738b..716d2c3866 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_268.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_268.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : GNU Affero General Public License v3.0 or later \ No newline at end of file +name : {{GNU Affero General Public License v3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_269.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_269.RULE index 87fa4b8524..574ae391e3 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_269.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_269.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -AGPL-3.0-or-later GNU Affero General Public License v3.0 or later \ No newline at end of file +{{AGPL-3.0-or-later}} {{GNU Affero General Public License v3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_270.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_270.RULE index cc0e65f099..af31ad4908 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_270.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_270.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU Affero General Public License v3.0 or later AGPL-3.0-or-later \ No newline at end of file +{{GNU Affero General Public License v3.0 or later}} {{AGPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_271.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_271.RULE index 679756b08c..9eeaa83cac 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_271.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_271.RULE @@ -1,10 +1,10 @@ --- license_expression: agpl-3.0-plus is_license_tag: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: AGPL-3.0-or-later \ No newline at end of file +License AGPL-3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_272.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_272.RULE index 7abc8b68aa..7101731878 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_272.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_272.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GNU Affero General Public License v3.0 or later \ No newline at end of file +license: {{GNU Affero General Public License v3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_273.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_273.RULE index c0202839ed..1c2cf90d6b 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_273.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_273.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: AGPL-3.0-or-later \ No newline at end of file +licenseId: {{AGPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_274.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_274.RULE index 40834366e1..f345dc12e3 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_274.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_274.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -['AFFERO', 'AGPL-3.0-or-later'], \ No newline at end of file +['AFFERO', '{{AGPL-3.0-or-later}}'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_275.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_275.RULE index 3ca9f4e2b7..0bb9723fc2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_275.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_275.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -['AGPL', 'AGPL-3.0-or-later'], \ No newline at end of file +['AGPL', '{{AGPL-3.0-or-later}}'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_279.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_279.RULE index 3d52c5fe8c..8b03d9f0a2 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_279.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_279.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_281.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_281.RULE index fbe845f1c6..2e15acd718 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_281.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_281.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_282.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_282.RULE index 9804732503..54cb922d7e 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_282.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_282.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: AGPL-3.0-or-later \ No newline at end of file +licenses: {{AGPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_283.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_283.RULE index 3391c20963..fe48af04f5 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_283.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_283.RULE @@ -6,8 +6,8 @@ ignorable_urls: --- AGPL -This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. +This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License along with this program. If not, see http://www.gnu.org/licenses/. \ No newline at end of file +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_285.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_285.RULE index 3758683c9e..e6e4fb9e28 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_285.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_285.RULE @@ -1,9 +1,10 @@ --- license_expression: agpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - https://spdx.org/licenses/AGPL-3.0-or-later --- -{{AGPL-3.0-or-later}} https://spdx.org/licenses/AGPL-3.0-or-later \ No newline at end of file +AGPL-3.0-or-later https://spdx.org/licenses/AGPL-3.0-or-later diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_290.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_290.RULE index eaef95208e..c205b30440 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_290.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_290.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: GNU AFFERO GENERAL PUBLIC LICENSE \ No newline at end of file +License: {{GNU AFFERO GENERAL PUBLIC LICENSE}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_291.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_291.RULE index 345e395d74..79c65e41e0 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_291.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_291.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Everyone is free to use 'under the conditions of the AGPL-3.0 License (see LICENSE file). \ No newline at end of file +Everyone is free to use 'under the conditions of the {{AGPL-3.0}} License (see LICENSE file). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_292.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_292.RULE index 798dd545bf..8a38665741 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_292.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_292.RULE @@ -5,4 +5,4 @@ is_license_notice: yes License -This program is Free Software: You can use, study share and improve it at your will. Specifically you can redistribute and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. \ No newline at end of file +This program is Free Software: You can use, study share and improve it at your will. Specifically you can redistribute and/or modify it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_293.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_293.RULE index 5f3161b193..6c99edb5ae 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_293.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_293.RULE @@ -3,4 +3,4 @@ license_expression: agpl-3.0-plus is_license_notice: yes --- -This program is Free Software: You can use, study share and improve it at your will. Specifically you can redistribute and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. \ No newline at end of file +This program is Free Software: You can use, study share and improve it at your will. Specifically you can redistribute and/or modify it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_294.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_294.RULE index 2efa4f167e..cc9e1e3216 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_294.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_294.RULE @@ -3,4 +3,4 @@ license_expression: agpl-3.0-plus is_license_notice: yes --- -You can redistribute and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. \ No newline at end of file +You can redistribute and/or modify it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_297.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_297.RULE index 1c60ca3992..ebfa6e123f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_297.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_297.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- The JavaScript code in this page is free software: you can - redistribute it and/or modify it under the terms of the GNU Affero + redistribute it and/or modify it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) - any later version. The code is distributed WITHOUT ANY WARRANTY; + any later version}}. The code is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU GPL for more details. diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_298.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_298.RULE index 65ec146f77..8f61033729 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_298.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_298.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it under -the terms of the GNU Affero General Public License as published by the Free +the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any -later version. +later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. -You should have received a copy of the GNU Affero General Public License along +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_299.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_299.RULE index a8722f98d3..1ad74b1eb8 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_299.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_299.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it under -the terms of the GNU Affero General Public License as published by the Free +the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any -later version. +later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. -You should have received a copy of the GNU Affero General Public License along +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_39.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_39.RULE index 4a88c3f52d..2a2a92ee23 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_39.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_39.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0-plus is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_5.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_5.RULE index 09c3442d95..28a3eef765 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_5.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_5.RULE @@ -10,14 +10,14 @@ Copyright / license Copyright GNU AGPL. Email me if you need another license. This program is free software: you can redistribute it and/or modify it -under the terms of the GNU Affero General Public license as published by +under the terms of the {{GNU Affero General Public license as published by the Free Software Foundation, either version 3 of the license, or (at -your option) any later version. +your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero -General Public license for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Affero +General Public license}} for more details. -You should have received a copy of the GNU Affero General Public license +You should have received a copy of the {{GNU Affero General Public license}} along with this program. If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_7.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_7.RULE index 11a405565d..5b6f5682dc 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_7.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_7.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This is free software: you can redistribute it and/or modify it -under the terms of the GNU Affero General Public license as published by +under the terms of the {{GNU Affero General Public license as published by the Free Software Foundation, either version 3 of the license, or (at -your option) any later version. +your option) any later version}}. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero -General Public license for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Affero +General Public license}} for more details. -You should have received a copy of the GNU Affero General Public license +You should have received a copy of the {{GNU Affero General Public license}} along with this . If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_8.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_8.RULE index b13f000afb..a3c6432651 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_8.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_8.RULE @@ -8,14 +8,14 @@ ignorable_urls: ("AGPL3" t "This program is free software: you can redistribute it and/or modify" - "it under the terms of the GNU Affero General Public License as published by" + "it under the terms of the {{GNU Affero General Public License as published by" "the Free Software Foundation, either version 3 of the License, or" - "(at your option) any later version." + "(at your option) any later version}}." "" "This program is distributed in the hope that it will be useful," "but WITHOUT ANY WARRANTY; without even the implied warranty of" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the" - "GNU Affero General Public License for more details." + "{{GNU Affero General Public License}} for more details." "" - "You should have received a copy of the GNU Affero General Public License" + "You should have received a copy of the {{GNU Affero General Public License}}" "along with this program. If not, see .") \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_84.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_84.RULE index a12db47f01..3278382b68 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_84.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_84.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0-plus is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_9.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_9.RULE index 532d47163f..7e328476d4 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_9.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_9.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- ~ This program is free software: you can redistribute it and/or modify - ~ it under the terms of the GNU Affero General Public License as + ~ it under the terms of the {{GNU Affero General Public License as ~ published by the Free Software Foundation, either version 3 of the - ~ License, or (at your option) any later version. + ~ License, or (at your option) any later version}}. ~ ~ This program is distributed in the hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the implied warranty of ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - ~ GNU Affero General Public License for more details. + ~ {{GNU Affero General Public License}} for more details. ~ - ~ You should have received a copy of the GNU Affero General Public License + ~ You should have received a copy of the {{GNU Affero General Public License}} ~ along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_93.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_93.RULE index 0bbd02bf29..bd64b50716 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_93.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_93.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0-plus is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_njs.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_njs.RULE index 3e4f1b2eee..e4e766892f 100644 --- a/src/licensedcode/data/rules/agpl-3.0-plus_njs.RULE +++ b/src/licensedcode/data/rules/agpl-3.0-plus_njs.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -this software is licensed under the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License or (at your option) any later version \ No newline at end of file +this software is licensed under the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License or (at your option) any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0-plus_required_phrase_1.RULE b/src/licensedcode/data/rules/agpl-3.0-plus_required_phrase_1.RULE new file mode 100644 index 0000000000..0b84c21943 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0-plus_required_phrase_1.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Affero General Public License as published by" "the Free Software Foundation, either version 3 of License, or" "(at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_0.RULE b/src/licensedcode/data/rules/agpl-3.0_0.RULE index 16d2b4e9ac..41758ffeac 100644 --- a/src/licensedcode/data/rules/agpl-3.0_0.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_0.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- * This is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License + * it under the terms of the {{GNU Affero General Public License * as published by the Free Software Foundation, version 3 of - * the License. + * the License}}. * * This is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See - * the GNU Affero General Public License for more details. + * the {{GNU Affero General Public License}} for more details. * - * You should have received a copy of the GNU Affero General - * Public License along with this program. If not, see + * You should have received a copy of the {{GNU Affero General + * Public License}} along with this program. If not, see * . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_01.RULE b/src/licensedcode/data/rules/agpl-3.0_01.RULE index 267c36563d..1008e14e9f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_01.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_01.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GNU Affero General Public License, Version 3 \ No newline at end of file +the {{GNU Affero General Public License, Version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_10.RULE b/src/licensedcode/data/rules/agpl-3.0_10.RULE index 95a131ec82..30d4708042 100644 --- a/src/licensedcode/data/rules/agpl-3.0_10.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_10.RULE @@ -1,7 +1,8 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU Affero General Public License 3.0 \ No newline at end of file +GNU Affero General Public License 3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_11.RULE b/src/licensedcode/data/rules/agpl-3.0_11.RULE index bf83f09125..72acd58cca 100644 --- a/src/licensedcode/data/rules/agpl-3.0_11.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_11.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0_115.RULE b/src/licensedcode/data/rules/agpl-3.0_115.RULE index aa11aa446a..2944e2dcf1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_115.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_115.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It's released under the GNU Affero GENERAL PUBLIC LICENSE, Version 3, 29 June 2007. \ No newline at end of file +It's released under the {{GNU Affero GENERAL PUBLIC LICENSE, Version 3}}, 29 June 2007. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_116.RULE b/src/licensedcode/data/rules/agpl-3.0_116.RULE index 493032efa3..77f9e6f6db 100644 --- a/src/licensedcode/data/rules/agpl-3.0_116.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_116.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It's released under the GNU Affero GENERAL PUBLIC LICENSE, \ No newline at end of file +It's released under the {{GNU Affero GENERAL PUBLIC LICENSE}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_118.RULE b/src/licensedcode/data/rules/agpl-3.0_118.RULE index 67da81c013..fc986c6024 100644 --- a/src/licensedcode/data/rules/agpl-3.0_118.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_118.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU Affero GENERAL PUBLIC LICENSE, Version 3, 29 June 2007. \ No newline at end of file +released under the {{GNU Affero GENERAL PUBLIC LICENSE, Version 3}}, 29 June 2007. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_119.RULE b/src/licensedcode/data/rules/agpl-3.0_119.RULE index f67325d466..d9d1901a03 100644 --- a/src/licensedcode/data/rules/agpl-3.0_119.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_119.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU Affero GENERAL PUBLIC LICENSE, \ No newline at end of file +released under the {{GNU Affero GENERAL PUBLIC LICENSE}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_120.RULE b/src/licensedcode/data/rules/agpl-3.0_120.RULE index a6f687cb01..fc292975a4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_120.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_120.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It's released under the GNU Affero GENERAL PUBLIC LICENSE, Version 3 \ No newline at end of file +It's released under the {{GNU Affero GENERAL PUBLIC LICENSE, Version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_121.RULE b/src/licensedcode/data/rules/agpl-3.0_121.RULE index ba8d4d6f3b..81c23a45c6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_121.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_121.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU Affero GENERAL PUBLIC LICENSE, Version 3 \ No newline at end of file +released under the {{GNU Affero GENERAL PUBLIC LICENSE, Version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_122.RULE b/src/licensedcode/data/rules/agpl-3.0_122.RULE index a646802106..fd91e5641b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_122.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_122.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU Affero GENERAL PUBLIC LICENSE, Version 3, 29 June 2007. \ No newline at end of file +{{GNU Affero GENERAL PUBLIC LICENSE, Version 3}}, 29 June 2007. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_123.RULE b/src/licensedcode/data/rules/agpl-3.0_123.RULE index eea4bd30e6..e80a93983f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_123.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_123.RULE @@ -1,7 +1,9 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU Affero GENERAL PUBLIC LICENSE, Version 3 \ No newline at end of file +GNU AFFERO GENERAL PUBLIC LICENSE +Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_127.RULE b/src/licensedcode/data/rules/agpl-3.0_127.RULE index 8e31b56263..097994b466 100644 --- a/src/licensedcode/data/rules/agpl-3.0_127.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_127.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU Affero GENERAL PUBLIC LICENSE, Version 3, 29 June 2007. \ No newline at end of file +under the {{GNU Affero GENERAL PUBLIC LICENSE, Version 3}}, 29 June 2007. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_128.RULE b/src/licensedcode/data/rules/agpl-3.0_128.RULE index 93a414bba7..b0b1510651 100644 --- a/src/licensedcode/data/rules/agpl-3.0_128.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_128.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU Affero GENERAL PUBLIC LICENSE, \ No newline at end of file +under the {{GNU Affero GENERAL PUBLIC LICENSE}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_129.RULE b/src/licensedcode/data/rules/agpl-3.0_129.RULE index ff9bcae7c7..0ff2ad60f1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_129.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_129.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU Affero GENERAL PUBLIC LICENSE, Version 3 \ No newline at end of file +under the {{GNU Affero GENERAL PUBLIC LICENSE, Version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_132.RULE b/src/licensedcode/data/rules/agpl-3.0_132.RULE index 4db989c6e8..01e3ba9668 100644 --- a/src/licensedcode/data/rules/agpl-3.0_132.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_132.RULE @@ -5,4 +5,4 @@ relevance: 100 --- Unless the folder itself contains a LICENSE stating otherwise, all the files -distributed here are released under the GNU AFFERO GENERAL PUBLIC LICENSE. \ No newline at end of file +distributed here are released under the {{GNU AFFERO GENERAL PUBLIC LICENSE}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_133.RULE b/src/licensedcode/data/rules/agpl-3.0_133.RULE index 3426ccf1d9..1f1c9e0b8e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_133.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_133.RULE @@ -1,7 +1,6 @@ --- license_expression: agpl-3.0 is_license_text: yes -relevance: 100 ignorable_urls: - http://www.gnu.org/licenses/ --- diff --git a/src/licensedcode/data/rules/agpl-3.0_134.RULE b/src/licensedcode/data/rules/agpl-3.0_134.RULE index 09c84bfc94..a56cec2f18 100644 --- a/src/licensedcode/data/rules/agpl-3.0_134.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_134.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed under the GNU Affero General Public License, version 3 (AGPLv3). The full text of this license is given below. \ No newline at end of file +Distributed under the {{GNU Affero General Public License, version 3 (AGPLv3}}). The full text of this license is given below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_135.RULE b/src/licensedcode/data/rules/agpl-3.0_135.RULE index 20de8e3b55..ebe8a7111c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_135.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_135.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed under the GNU Affero General Public License, version 3 (AGPLv3). \ No newline at end of file +Distributed under the {{GNU Affero General Public License, version 3 (AGPLv3}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_136.RULE b/src/licensedcode/data/rules/agpl-3.0_136.RULE index c4cc0fd98d..678984675f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_136.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_136.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU Affero General Public License, version 3 (AGPLv3). \ No newline at end of file +under the {{GNU Affero General Public License, version 3 (AGPLv3}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_137.RULE b/src/licensedcode/data/rules/agpl-3.0_137.RULE index d456285f3e..9a18f80203 100644 --- a/src/licensedcode/data/rules/agpl-3.0_137.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_137.RULE @@ -5,5 +5,5 @@ relevance: 100 --- source code -under the GNU Affero General Public License, version 3 (AGPL-3.0). +under the {{GNU Affero General Public License, version 3}} ({{AGPL-3.0}}). The full text of this license is given below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_138.RULE b/src/licensedcode/data/rules/agpl-3.0_138.RULE index 73566392b6..5b5cfc6ed7 100644 --- a/src/licensedcode/data/rules/agpl-3.0_138.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_138.RULE @@ -5,4 +5,4 @@ relevance: 100 --- source code -under the GNU Affero General Public License, version 3 (AGPL-3.0). \ No newline at end of file +under the {{GNU Affero General Public License, version 3}} ({{AGPL-3.0}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_139.RULE b/src/licensedcode/data/rules/agpl-3.0_139.RULE index 992516ce07..7e7d49dc02 100644 --- a/src/licensedcode/data/rules/agpl-3.0_139.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_139.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -under the GNU Affero General Public License, version 3 (AGPL-3.0). +under the {{GNU Affero General Public License, version 3}} ({{AGPL-3.0}}). The full text of this license is given below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_140.RULE b/src/licensedcode/data/rules/agpl-3.0_140.RULE index a7de627f82..b84f634711 100644 --- a/src/licensedcode/data/rules/agpl-3.0_140.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_140.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU Affero General Public License, version 3 (AGPL-3.0). \ No newline at end of file +under the {{GNU Affero General Public License, version 3}} ({{AGPL-3.0}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_141.RULE b/src/licensedcode/data/rules/agpl-3.0_141.RULE index 9c842e53c0..fc4a9260cd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_141.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_141.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -source code under the GNU Affero General Public License, version 3 -("AGPLv3"). The full text of this licence is given below. \ No newline at end of file +source code under the {{GNU Affero General Public License, version 3 +("AGPLv3}}"). The full text of this licence is given below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_142.RULE b/src/licensedcode/data/rules/agpl-3.0_142.RULE index b1a385eaa5..a678033eeb 100644 --- a/src/licensedcode/data/rules/agpl-3.0_142.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_142.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -under the GNU Affero General Public License, version 3 -("AGPLv3"). The full text of this licence is given below. \ No newline at end of file +under the {{GNU Affero General Public License, version 3 +("AGPLv3}}"). The full text of this licence is given below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_143.RULE b/src/licensedcode/data/rules/agpl-3.0_143.RULE index db6bd58866..0feac609ee 100644 --- a/src/licensedcode/data/rules/agpl-3.0_143.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_143.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -source code under the GNU Affero General Public License, version 3 -("AGPLv3"). \ No newline at end of file +source code under the {{GNU Affero General Public License, version 3 +("AGPLv3")}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_144.RULE b/src/licensedcode/data/rules/agpl-3.0_144.RULE index 92d1cc7af2..62a59554e0 100644 --- a/src/licensedcode/data/rules/agpl-3.0_144.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_144.RULE @@ -5,4 +5,4 @@ relevance: 100 --- All code here, except where otherwise indicated, is licensed under -the GNU Affero General Public License version 3. \ No newline at end of file +the {{GNU Affero General Public License version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_145.RULE b/src/licensedcode/data/rules/agpl-3.0_145.RULE index e6e3d58174..5bdd1db59e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_145.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_145.RULE @@ -5,4 +5,4 @@ relevance: 100 --- licensed under -the GNU Affero General Public License version 3. \ No newline at end of file +the {{GNU Affero General Public License version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_149.RULE b/src/licensedcode/data/rules/agpl-3.0_149.RULE index 341631364f..0c5b610dd0 100644 --- a/src/licensedcode/data/rules/agpl-3.0_149.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_149.RULE @@ -1,7 +1,6 @@ --- license_expression: agpl-3.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 2007 Free Software Foundation, Inc. https://fsf.org ignorable_holders: diff --git a/src/licensedcode/data/rules/agpl-3.0_150.RULE b/src/licensedcode/data/rules/agpl-3.0_150.RULE index e96e208d98..2e94acc162 100644 --- a/src/licensedcode/data/rules/agpl-3.0_150.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_150.RULE @@ -1,7 +1,6 @@ --- license_expression: agpl-3.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org ignorable_holders: diff --git a/src/licensedcode/data/rules/agpl-3.0_151.RULE b/src/licensedcode/data/rules/agpl-3.0_151.RULE index a1edfa3998..840bcd56f5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_151.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_151.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -distributed under the GNU AGPL v3 licence, +distributed under the {{GNU AGPL v3}} licence, which follows. If it is not the case, this is clearly indicated in the files. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_152.RULE b/src/licensedcode/data/rules/agpl-3.0_152.RULE index 93e80f0fa2..2c49eda7f2 100644 --- a/src/licensedcode/data/rules/agpl-3.0_152.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_152.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Most of the files are distributed under the GNU AGPL v3 licence, +Most of the files are distributed under the {{GNU AGPL v3}} licence, which follows. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_153.RULE b/src/licensedcode/data/rules/agpl-3.0_153.RULE index e220c7f416..4e99b61801 100644 --- a/src/licensedcode/data/rules/agpl-3.0_153.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_153.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the GNU AGPL v3 licence \ No newline at end of file +distributed under the {{GNU AGPL v3}} licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_154.RULE b/src/licensedcode/data/rules/agpl-3.0_154.RULE index c5d354f6c1..5fa1411c38 100644 --- a/src/licensedcode/data/rules/agpl-3.0_154.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_154.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the GNU AGPL v3 license \ No newline at end of file +distributed under the GNU {{AGPL v3 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_155.RULE b/src/licensedcode/data/rules/agpl-3.0_155.RULE index 3ebbb0814d..75e8a40c9c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_155.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_155.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -Most of the files are distributed under the GNU AGPL v3 licence, +Most of the files are distributed under the {{GNU AGPL v3}} licence, which follows. If it is not the case, this is clearly indicated in the files. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_158.RULE b/src/licensedcode/data/rules/agpl-3.0_158.RULE index 602fdcaaac..e84cfa0645 100644 --- a/src/licensedcode/data/rules/agpl-3.0_158.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_158.RULE @@ -1,7 +1,6 @@ --- license_expression: agpl-3.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org ignorable_holders: diff --git a/src/licensedcode/data/rules/agpl-3.0_159.RULE b/src/licensedcode/data/rules/agpl-3.0_159.RULE index 94e41175e6..c44b28c258 100644 --- a/src/licensedcode/data/rules/agpl-3.0_159.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_159.RULE @@ -1,7 +1,6 @@ --- license_expression: agpl-3.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org ignorable_holders: diff --git a/src/licensedcode/data/rules/agpl-3.0_160.RULE b/src/licensedcode/data/rules/agpl-3.0_160.RULE index d506a6f6ad..3912e8955c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_160.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_160.RULE @@ -1,7 +1,6 @@ --- license_expression: agpl-3.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 2007 Free Software Foundation, Inc. https://fsf.org ignorable_holders: diff --git a/src/licensedcode/data/rules/agpl-3.0_161.RULE b/src/licensedcode/data/rules/agpl-3.0_161.RULE index 8557aa42ba..89ac42aad4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_161.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_161.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License, version 3 +it under the terms of the {{GNU Affero General Public License, version 3}} (only), as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_162.RULE b/src/licensedcode/data/rules/agpl-3.0_162.RULE index 289313b44a..002170208c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_162.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_162.RULE @@ -9,22 +9,22 @@ ignorable_urls: --- # The source code of this program is made available -# under the terms of the GNU Affero General Public License version 3 -# (GNU AGPL V3) as published by the Free Software Foundation. +# under the terms of the {{GNU Affero General Public License version 3}} +# ({{GNU AGPL V3}}) as published by the Free Software Foundation. # # Binary versions of this program provided by Univention to you as # well as other copyrighted, protected or trademarked materials like # Logos, graphics, fonts, specific documentations and configurations, # cryptographic keys etc. are subject to a license agreement between -# you and Univention and not subject to the GNU AGPL V3. +# you and Univention and not subject to the {{GNU AGPL V3}}. # -# In the case you use this program under the terms of the GNU AGPL V3, +# In the case you use this program under the terms of the {{GNU AGPL V3}}, # the program is provided in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. +# {{GNU Affero General Public License}} for more details. # -# You should have received a copy of the GNU Affero General Public -# License with the Debian GNU/Linux or Univention distribution in file +# You should have received a copy of the {{GNU Affero General Public +# License}} with the Debian GNU/Linux or Univention distribution in file # /usr/share/common-licenses/AGPL-3; if not, see # . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_164.RULE b/src/licensedcode/data/rules/agpl-3.0_164.RULE index 8aa50f67c4..2a4aae4c88 100644 --- a/src/licensedcode/data/rules/agpl-3.0_164.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_164.RULE @@ -9,7 +9,7 @@ ignorable_urls: - GNU AFFERO GENERAL PUBLIC LICENSE (AGPL) Version 3.0 + {{GNU AFFERO GENERAL PUBLIC LICENSE (AGPL) Version 3}}.0 http://www.fsf.org/licensing/licenses/agpl.html repo diff --git a/src/licensedcode/data/rules/agpl-3.0_165.RULE b/src/licensedcode/data/rules/agpl-3.0_165.RULE index 5ec996e51d..0bca9093e0 100644 --- a/src/licensedcode/data/rules/agpl-3.0_165.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_165.RULE @@ -8,4 +8,4 @@ ignorable_holders: - GNU Affero General --- -copyright GNU Affero General Public License v3 \ No newline at end of file +copyright {{GNU Affero General Public License v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_166.RULE b/src/licensedcode/data/rules/agpl-3.0_166.RULE index 6b9172ff77..2f2e76fca3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_166.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_166.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -an Open Source project licensed under the terms of the AGPL license - The GNU Affero General Public License v3.0 \ No newline at end of file +an Open Source project licensed under the terms of the AGPL license - The {{GNU Affero General Public License v3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_167.RULE b/src/licensedcode/data/rules/agpl-3.0_167.RULE index 7e5f28b2cc..f1908f2735 100644 --- a/src/licensedcode/data/rules/agpl-3.0_167.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_167.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the AGPL license - The GNU Affero General Public License v3.0 \ No newline at end of file +licensed under the terms of the AGPL license - The {{GNU Affero General Public License v3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_168.RULE b/src/licensedcode/data/rules/agpl-3.0_168.RULE index 8f4bf89588..2f317d026d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_168.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_168.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- project licensed under the terms of -the AGPL license - `The GNU Affero General Public License v3.0 +the AGPL license - `The {{GNU Affero General Public License v3.0}} ` \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_169.RULE b/src/licensedcode/data/rules/agpl-3.0_169.RULE index 8633d56fc5..a0546b4a3f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_169.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_169.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- * The JavaScript code in this page is free software: you can redistribute it - * and/or modify it under the terms of the GNU Affero General Public License + * and/or modify it under the terms of the {{GNU Affero General Public License}} * (GNU AGPL) as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. The code is distributed * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL for more details. * - * You should have received a copy of the GNU Affero General Public License + * You should have received a copy of the {{GNU Affero General Public License}} * along with this code. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_171.RULE b/src/licensedcode/data/rules/agpl-3.0_171.RULE index c1321be013..183a257694 100644 --- a/src/licensedcode/data/rules/agpl-3.0_171.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_171.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -* This software is distributed under AGPL V3 licence. \ No newline at end of file +* This software is distributed under {{AGPL V3}} licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_172.RULE b/src/licensedcode/data/rules/agpl-3.0_172.RULE index a494e22af5..0ceaa06b1b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_172.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_172.RULE @@ -5,5 +5,5 @@ relevance: 100 --- * This program is a free software product. You can redistribute it and/or - * modify it under the terms of the GNU Affero General Public License (AGPL) - * version 3 as published by the Free Software Foundation. \ No newline at end of file + * modify it under the terms of the {{GNU Affero General Public License (AGPL) + * version 3}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_174.RULE b/src/licensedcode/data/rules/agpl-3.0_174.RULE index a5d9315f06..dc3d4c9212 100644 --- a/src/licensedcode/data/rules/agpl-3.0_174.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_174.RULE @@ -5,6 +5,6 @@ relevance: 100 --- # The source code of this program is made available -# under the terms of the GNU Affero General Public License version 3 -# (GNU AGPL V3) as published by the Free Software Foundation. +# under the terms of the {{GNU Affero General Public License version 3}} +# ({{GNU AGPL V3}}) as published by the Free Software Foundation. # \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_175.RULE b/src/licensedcode/data/rules/agpl-3.0_175.RULE index 2f2dbf7c5b..ee133b0a02 100644 --- a/src/licensedcode/data/rules/agpl-3.0_175.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_175.RULE @@ -6,9 +6,9 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl-3.0.en.html --- -__license__ = "AGPL-3.0-only" +__license__ = "{{AGPL-3.0-only}}" """ - Licensed under the GNU AGPL-3.0 License (the "License"); + {{Licensed under the GNU AGPL-3.0 License}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.gnu.org/licenses/agpl-3.0.en.html diff --git a/src/licensedcode/data/rules/agpl-3.0_176.RULE b/src/licensedcode/data/rules/agpl-3.0_176.RULE index 6ba252b88d..764e062602 100644 --- a/src/licensedcode/data/rules/agpl-3.0_176.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_176.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -__license__ = "AGPL-3.0-only" \ No newline at end of file +__license__ = "{{AGPL-3.0-only}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_178.RULE b/src/licensedcode/data/rules/agpl-3.0_178.RULE index 2a3fafe737..3943ce6bab 100644 --- a/src/licensedcode/data/rules/agpl-3.0_178.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_178.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -* License: GNU Affero General Public License version 3 \ No newline at end of file +* License: {{GNU Affero General Public License version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_181.RULE b/src/licensedcode/data/rules/agpl-3.0_181.RULE index f5bcf483d9..2410f2dd6c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_181.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_181.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl-3.0.en.html --- -# AGPL-v3 License +# {{AGPL-v3 License}} -The contents of this repository is available under the AGPL-v3 license, see the [AGPL-3.0](https://www.gnu.org/licenses/agpl-3.0.en.html) for full details. \ No newline at end of file +The contents of this repository is available under the {{AGPL-v3 license}}, see the [{{AGPL-3.0}}](https://www.gnu.org/licenses/agpl-3.0.en.html) for full details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_182.RULE b/src/licensedcode/data/rules/agpl-3.0_182.RULE index 70b5c106fa..6d8b4ec5a0 100644 --- a/src/licensedcode/data/rules/agpl-3.0_182.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_182.RULE @@ -1,7 +1,8 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -# AGPL-v3 License \ No newline at end of file +AGPL v3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_183.RULE b/src/licensedcode/data/rules/agpl-3.0_183.RULE index 5c65771629..87a43f0d29 100644 --- a/src/licensedcode/data/rules/agpl-3.0_183.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_183.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The contents of this repository is available under the AGPL-v3 license \ No newline at end of file +The contents of this repository is available under the {{AGPL-v3 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_184.RULE b/src/licensedcode/data/rules/agpl-3.0_184.RULE index ea631530e9..f1a23c7d9c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_184.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_184.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl-3.0.en.html --- -The contents of this repository is available under the AGPL-v3 license, see the [AGPL-3.0](https://www.gnu.org/licenses/agpl-3.0.en.html) for full details. \ No newline at end of file +The contents of this repository is available under the {{AGPL-v3 license}}, see the [{{AGPL-3.0}}](https://www.gnu.org/licenses/agpl-3.0.en.html) for full details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_185.RULE b/src/licensedcode/data/rules/agpl-3.0_185.RULE index b002bcfde2..e06f04a49c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_185.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_185.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl-3.0.en.html --- -see the [AGPL-3.0](https://www.gnu.org/licenses/agpl-3.0.en.html) for full details. \ No newline at end of file +see the [{{AGPL-3.0}}](https://www.gnu.org/licenses/agpl-3.0.en.html) for full details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_187.RULE b/src/licensedcode/data/rules/agpl-3.0_187.RULE index 84a0cb4580..8a4392248a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_187.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_187.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl-3.0 --- -`AGPL-3.0` - [GNU Affero General Public License 3.0](https://www.gnu.org/licenses/agpl-3.0) \ No newline at end of file +`{{AGPL-3.0}}` - [{{GNU Affero General Public License 3.0}}](https://www.gnu.org/licenses/agpl-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_19.RULE b/src/licensedcode/data/rules/agpl-3.0_19.RULE index 403a861b8e..911f298230 100644 --- a/src/licensedcode/data/rules/agpl-3.0_19.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_19.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0_193.RULE b/src/licensedcode/data/rules/agpl-3.0_193.RULE index a83bb2f351..0826f34f7a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_193.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_193.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- The font and related files in this directory are distributed under the -GNU AFFERO GENERAL PUBLIC LICENSE Version 3 (see the file COPYING) \ No newline at end of file +{{GNU AFFERO GENERAL PUBLIC LICENSE Version 3}} (see the file COPYING) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_194.RULE b/src/licensedcode/data/rules/agpl-3.0_194.RULE index 50733fbdc9..4e3f8e60ce 100644 --- a/src/licensedcode/data/rules/agpl-3.0_194.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_194.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- The font and related files in this directory are distributed under the -GNU AFFERO GENERAL PUBLIC LICENSE Version 3 \ No newline at end of file +{{GNU AFFERO GENERAL PUBLIC LICENSE Version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_195.RULE b/src/licensedcode/data/rules/agpl-3.0_195.RULE index c3ee0fdcfb..2799aa09bf 100644 --- a/src/licensedcode/data/rules/agpl-3.0_195.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_195.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -AGPL-3.0 \ No newline at end of file +{{AGPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_196.RULE b/src/licensedcode/data/rules/agpl-3.0_196.RULE index 16428a66fd..d69a6bb3e5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_196.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_196.RULE @@ -8,5 +8,5 @@ ignorable_urls: licenses { license { - name 'GNU Affero General Public License' + name '{{GNU Affero General Public License}}' url 'https://www.gnu.org/licenses/agpl-3.0.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_197.RULE b/src/licensedcode/data/rules/agpl-3.0_197.RULE index 4787148fdf..13bdf73aa7 100644 --- a/src/licensedcode/data/rules/agpl-3.0_197.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_197.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- license { - name 'GNU Affero General Public License' + name '{{GNU Affero General Public License}}' url 'https://www.gnu.org/licenses/agpl-3.0.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_198.RULE b/src/licensedcode/data/rules/agpl-3.0_198.RULE index cd5aef7b9a..e50ee3bec7 100644 --- a/src/licensedcode/data/rules/agpl-3.0_198.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_198.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -The project is licensed under AGPL v3 \ No newline at end of file +The project is {{licensed under AGPL v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_199.RULE b/src/licensedcode/data/rules/agpl-3.0_199.RULE index bd063d9b88..6be3038ad6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_199.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_199.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The project is licensed under AGPL v3 \ No newline at end of file +The project is {{licensed under AGPL v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_200.RULE b/src/licensedcode/data/rules/agpl-3.0_200.RULE index 392da11d5c..693585b0c3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_200.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_200.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: AGPL V3 \ No newline at end of file +License: {{AGPL V3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_202.RULE b/src/licensedcode/data/rules/agpl-3.0_202.RULE index 4b1020eee4..ce830cbe1a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_202.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_202.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -Licence: AGPL V3 \ No newline at end of file +Licence: {{AGPL V3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_203.RULE b/src/licensedcode/data/rules/agpl-3.0_203.RULE index 61888819cb..ee870d0080 100644 --- a/src/licensedcode/data/rules/agpl-3.0_203.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_203.RULE @@ -1,7 +1,8 @@ --- license_expression: agpl-3.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -licensed under the [GNU AGPL v3] \ No newline at end of file +licensed under the **GNU AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_204.RULE b/src/licensedcode/data/rules/agpl-3.0_204.RULE index e93eb9c3ef..052e1da8e8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_204.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_204.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -OpenSource (GNU AGPL v3) \ No newline at end of file +OpenSource ({{GNU AGPL v3}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_205.RULE b/src/licensedcode/data/rules/agpl-3.0_205.RULE index 1270711760..54d5aefc7f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_205.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_205.RULE @@ -9,7 +9,7 @@ ignorable_urls: The program users must agree to the following terms: -License notices This program is free software: you can redistribute it and/or modify it under the terms of the GNU AGPL v3 License as published by the Free Software Foundation, version 3 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL v3 License for more details www.gnu.org. +License notices This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU AGPL v3 License}} as published by the Free Software Foundation, version 3 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU AGPL v3 License}} for more details www.gnu.org. Disclaimer of Warranty There is no warranty for the program, to the extent permitted by applicable law; except when otherwise stated in writing the copyright holders and/or other parties provide the program "as is" without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. The entire risk as to the quality and performance of the program is with you. Should the program prove defective, you assume the cost of all necessary servicing, repair or correction. diff --git a/src/licensedcode/data/rules/agpl-3.0_206.RULE b/src/licensedcode/data/rules/agpl-3.0_206.RULE index 9cd37e5e17..ca5e202555 100644 --- a/src/licensedcode/data/rules/agpl-3.0_206.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_206.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license='GNU AGPL v3', \ No newline at end of file +license='{{GNU AGPL v3}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_207.RULE b/src/licensedcode/data/rules/agpl-3.0_207.RULE index 778c3ebc1b..e7c24d0082 100644 --- a/src/licensedcode/data/rules/agpl-3.0_207.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_207.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0_208.RULE b/src/licensedcode/data/rules/agpl-3.0_208.RULE index 5c86422ce0..c4f4aa80cb 100644 --- a/src/licensedcode/data/rules/agpl-3.0_208.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_208.RULE @@ -10,5 +10,5 @@ ignorable_urls: The program users must agree to the following terms: License notices -This program is free software: you can redistribute it and/or modify it under the terms of the GNU AGPL v3 License as published by the Free Software Foundation, version 3 of the License. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL v3 License for more details www.gnu.org. \ No newline at end of file +This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU AGPL v3 License}} as published by the Free Software Foundation, version 3 of the License. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU AGPL v3 License}} for more details www.gnu.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_209.RULE b/src/licensedcode/data/rules/agpl-3.0_209.RULE index 28fe6ed693..6bf0fe7031 100644 --- a/src/licensedcode/data/rules/agpl-3.0_209.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_209.RULE @@ -8,5 +8,5 @@ ignorable_urls: --- License notices -This program is free software: you can redistribute it and/or modify it under the terms of the GNU AGPL v3 License as published by the Free Software Foundation, version 3 of the License. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL v3 License for more details www.gnu.org. \ No newline at end of file +This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU AGPL v3 License}} as published by the Free Software Foundation, version 3 of the License. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU AGPL v3 License}} for more details www.gnu.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_210.RULE b/src/licensedcode/data/rules/agpl-3.0_210.RULE index dcee1a73cb..90c25fe7ca 100644 --- a/src/licensedcode/data/rules/agpl-3.0_210.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_210.RULE @@ -7,5 +7,5 @@ ignorable_urls: - http://www.gnu.org/ --- -This program is free software: you can redistribute it and/or modify it under the terms of the GNU AGPL v3 License as published by the Free Software Foundation, version 3 of the License. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL v3 License for more details www.gnu.org. \ No newline at end of file +This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU AGPL v3 License}} as published by the Free Software Foundation, version 3 of the License. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU AGPL v3 License}} for more details www.gnu.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_211.RULE b/src/licensedcode/data/rules/agpl-3.0_211.RULE index 7b94544e5f..ead42bc6cb 100644 --- a/src/licensedcode/data/rules/agpl-3.0_211.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_211.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0_212.RULE b/src/licensedcode/data/rules/agpl-3.0_212.RULE index eed6bd93d1..f830f83668 100644 --- a/src/licensedcode/data/rules/agpl-3.0_212.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_212.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GNU AGPL v3 License \ No newline at end of file +the {{GNU AGPL v3 License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_213.RULE b/src/licensedcode/data/rules/agpl-3.0_213.RULE index 8f7e65c4e9..9120a99b94 100644 --- a/src/licensedcode/data/rules/agpl-3.0_213.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_213.RULE @@ -10,10 +10,10 @@ ignorable_urls: //The program users must agree to the following terms: // //Copyright notices -//This program is free software: you can redistribute it and/or modify it under the terms of the GNU AGPL v3 License as published by the +//This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU AGPL v3 License}} as published by the //Free Software Foundation, version 3 of the License. //This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL v3 License for more details www.gnu.org. +//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU AGPL v3 License}} for more details www.gnu.org. // //Disclaimer of Warranty //There is no warranty for the program, to the extent permitted by applicable law; except when otherwise stated in writing the copyright diff --git a/src/licensedcode/data/rules/agpl-3.0_214.RULE b/src/licensedcode/data/rules/agpl-3.0_214.RULE index e932f92f91..136bcff47c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_214.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_214.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.gnu.org/ --- -This program is free software: you can redistribute it and/or modify it under the terms of the GNU AGPL v3 License as published by the Free Software Foundation, version 3 of the License. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL v3 License for more details www.gnu.org. +This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU AGPL v3 License}} as published by the Free Software Foundation, version 3 of the License. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU AGPL v3 License}} for more details www.gnu.org. Disclaimer of Warranty There is no warranty for the program, to the extent permitted by applicable law; except when otherwise stated in writing the copyright holders and/or other parties provide the program "as is" without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. The entire risk as to the quality and performance of the program is with you. Should the program prove defective, you assume the cost of all necessary servicing, repair or correction. diff --git a/src/licensedcode/data/rules/agpl-3.0_215.RULE b/src/licensedcode/data/rules/agpl-3.0_215.RULE index 544f2e0c37..eac79dcd55 100644 --- a/src/licensedcode/data/rules/agpl-3.0_215.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_215.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license='GNU AGPL v3.0' \ No newline at end of file +license='{{GNU AGPL v3.0}}' \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_216.RULE b/src/licensedcode/data/rules/agpl-3.0_216.RULE index cbb9a93d05..17db003996 100644 --- a/src/licensedcode/data/rules/agpl-3.0_216.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_216.RULE @@ -1,7 +1,8 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -AGPL v3' \ No newline at end of file +AGPL V3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_217.RULE b/src/licensedcode/data/rules/agpl-3.0_217.RULE index 93fb4dbc76..d6cebc83f8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_217.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_217.RULE @@ -1,7 +1,8 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU AGPL v3.0' \ No newline at end of file +GNU AGPL v3.0 diff --git a/src/licensedcode/data/rules/agpl-3.0_219.RULE b/src/licensedcode/data/rules/agpl-3.0_219.RULE index db7abe1f73..bb7a7814fe 100644 --- a/src/licensedcode/data/rules/agpl-3.0_219.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_219.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Open Source under GNU AGPL v3 \ No newline at end of file +Open Source under {{GNU AGPL v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_22.RULE b/src/licensedcode/data/rules/agpl-3.0_22.RULE index 23535291ff..a2bbfc1187 100644 --- a/src/licensedcode/data/rules/agpl-3.0_22.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_22.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license": "GNU Affero General Public License v3" \ No newline at end of file +license": "{{GNU Affero General Public License v3}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_221.RULE b/src/licensedcode/data/rules/agpl-3.0_221.RULE index 344d3978f0..298c450493 100644 --- a/src/licensedcode/data/rules/agpl-3.0_221.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_221.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under GNU AGPL v3.0. \ No newline at end of file +{{licensed under GNU AGPL v3}}.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_222.RULE b/src/licensedcode/data/rules/agpl-3.0_222.RULE index 477a437f4b..f0edf1d8e3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_222.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_222.RULE @@ -5,4 +5,4 @@ relevance: 100 --- # License -This project is licensed under the **GNU AGPL v3** \ No newline at end of file +This project is {{licensed under the **GNU AGPL v3}}** \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_223.RULE b/src/licensedcode/data/rules/agpl-3.0_223.RULE index bd8a9d718f..5723c66954 100644 --- a/src/licensedcode/data/rules/agpl-3.0_223.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_223.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the **GNU AGPL v3** \ No newline at end of file +This project is {{licensed under the **GNU AGPL v3}}** \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_224.RULE b/src/licensedcode/data/rules/agpl-3.0_224.RULE index 57ac4965fb..a71c21328d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_224.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_224.RULE @@ -8,5 +8,5 @@ referenced_filenames: --- # License -This project is licensed under the **GNU AGPL v3** +This project is {{licensed under the **GNU AGPL v3}}** For full details, please see `LICENSE.txt` and `AGPL-3.0.txt`. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_225.RULE b/src/licensedcode/data/rules/agpl-3.0_225.RULE index f27cdac0bd..0fc6569fc4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_225.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_225.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 95 --- -licensed under GNU AGPL v3.0. +{{licensed under GNU AGPL v3}}.0. This software is probably not suitable for commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_226.RULE b/src/licensedcode/data/rules/agpl-3.0_226.RULE index c7d1c99123..e1dba4a7ca 100644 --- a/src/licensedcode/data/rules/agpl-3.0_226.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_226.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://choosealicense.com/licenses/agpl-3.0/ --- -This project is licensed under the [GNU AGPL v3 License](https://choosealicense.com/licenses/agpl-3.0/ \ No newline at end of file +This project is {{licensed under the [GNU AGPL v3}} License](https://choosealicense.com/licenses/agpl-3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_227.RULE b/src/licensedcode/data/rules/agpl-3.0_227.RULE index e1f2f2a38e..ccd50bef4f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_227.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_227.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the [GNU AGPL v3 License] \ No newline at end of file +This project is {{licensed under the [GNU AGPL v3}} License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_228.RULE b/src/licensedcode/data/rules/agpl-3.0_228.RULE index 87ac735692..eabdfae572 100644 --- a/src/licensedcode/data/rules/agpl-3.0_228.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_228.RULE @@ -7,6 +7,6 @@ referenced_filenames: - AGPL-3.0.txt --- -This project is licensed under the GNU AGPL v3 +This project is {{licensed under the GNU AGPL v3}} For full details, please see LICENSE.txt and AGPL-3.0.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_229.RULE b/src/licensedcode/data/rules/agpl-3.0_229.RULE index 707584a9a0..dcaaddd27d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_229.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_229.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.txt --- -See LICENSE.txt to the root of the program for the GNU AGPL v3.0. +See LICENSE.txt to the root of the program for the {{GNU AGPL v3.0}}. you should see README.txt as well, for information on how to use the program, use it in another program, etc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_231.RULE b/src/licensedcode/data/rules/agpl-3.0_231.RULE index dca11477e8..c15a81377f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_231.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_231.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -List of files that applies to the GNU AGPL v3.0 \ No newline at end of file +List of files that applies to the {{GNU AGPL v3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_232.RULE b/src/licensedcode/data/rules/agpl-3.0_232.RULE index 9fac68aa58..6bde61bcdc 100644 --- a/src/licensedcode/data/rules/agpl-3.0_232.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_232.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/agpl.html --- -license http://www.gnu.org/licenses/agpl.html GNU AGPL v3 \ No newline at end of file +license http://www.gnu.org/licenses/agpl.html {{GNU AGPL v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_233.RULE b/src/licensedcode/data/rules/agpl-3.0_233.RULE index 1bd0158829..1efbc0bc35 100644 --- a/src/licensedcode/data/rules/agpl-3.0_233.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_233.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl.html --- -license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 \ No newline at end of file +license https://www.gnu.org/licenses/agpl.html {{GNU AGPL v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_234.RULE b/src/licensedcode/data/rules/agpl-3.0_234.RULE index eb4ef84515..c670591c86 100644 --- a/src/licensedcode/data/rules/agpl-3.0_234.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_234.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/agpl.html --- -license http://www.gnu.org/licenses/agpl.html GNU AGPL v3.0 \ No newline at end of file +license http://www.gnu.org/licenses/agpl.html {{GNU AGPL v3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_235.RULE b/src/licensedcode/data/rules/agpl-3.0_235.RULE index fae77e1782..335dbe1f6a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_235.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_235.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl.html --- -license https://www.gnu.org/licenses/agpl.html GNU AGPL v3.0 \ No newline at end of file +license https://www.gnu.org/licenses/agpl.html {{GNU AGPL v3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_236.RULE b/src/licensedcode/data/rules/agpl-3.0_236.RULE index 552e6b35e7..e1701c4886 100644 --- a/src/licensedcode/data/rules/agpl-3.0_236.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_236.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.txt --- -is free and open-source software. First-party web code is released -under the [GNU AGPL v3](LICENSE.txt). \ No newline at end of file +is free and open-source software. First-party web code is {{released +under the [GNU AGPL v3}}](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_237.RULE b/src/licensedcode/data/rules/agpl-3.0_237.RULE index f82a61789d..65b804d869 100644 --- a/src/licensedcode/data/rules/agpl-3.0_237.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_237.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -code is released under the [GNU AGPL v3](LICENSE.txt). \ No newline at end of file +code is {{released under the [GNU AGPL v3}}](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_238.RULE b/src/licensedcode/data/rules/agpl-3.0_238.RULE index 69a2903fe7..9b1b97c114 100644 --- a/src/licensedcode/data/rules/agpl-3.0_238.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_238.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -originally released under the GNU AGPL v3. \ No newline at end of file +originally {{released under the GNU AGPL v3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_239.RULE b/src/licensedcode/data/rules/agpl-3.0_239.RULE index 65ba17d9ba..e474382907 100644 --- a/src/licensedcode/data/rules/agpl-3.0_239.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_239.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- The source code of the software packages are -under the terms of the GNU Affero General Public License version 3 (GNU AGPL v3) +under the terms of the {{GNU Affero General Public License version 3}} ({{GNU AGPL v3}}) as published by the Free Software Foundation. (http://www.gnu.org/licenses/agpl-3.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_240.RULE b/src/licensedcode/data/rules/agpl-3.0_240.RULE index 175173caf4..3a151d5781 100644 --- a/src/licensedcode/data/rules/agpl-3.0_240.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_240.RULE @@ -5,5 +5,5 @@ relevance: 100 --- The code of the web" package is made available under the terms of -the GNU Affero General Public License version 3 (GNU AGPL v3) as published by +the {{GNU Affero General Public License version 3}} ({{GNU AGPL v3}}) as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_241.RULE b/src/licensedcode/data/rules/agpl-3.0_241.RULE index b944ffaa3b..6fa2266c4a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_241.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_241.RULE @@ -6,13 +6,13 @@ ignorable_urls: - http://www.gnu.org/licenses/agpl-3.0.html --- -In the case you use the software under the terms of the GNU AGPL v3, the +In the case you use the software under the terms of the {{GNU AGPL v3}}, the program is provided in the hope hat it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU Affero General Public License for more details. +See the {{GNU Affero General Public License}} for more details. -You can find a copy of the GNU Affero General Public License at this URI: +You can find a copy of the {{GNU Affero General Public License}} at this URI: http://www.gnu.org/licenses/agpl-3.0.html If not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_242.RULE b/src/licensedcode/data/rules/agpl-3.0_242.RULE index fd6c718f77..5192ff1539 100644 --- a/src/licensedcode/data/rules/agpl-3.0_242.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_242.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under GNU AGPL v3 license: \ No newline at end of file +{{Released under GNU AGPL v3}} license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_243.RULE b/src/licensedcode/data/rules/agpl-3.0_243.RULE index 40deae1a76..cafec75823 100644 --- a/src/licensedcode/data/rules/agpl-3.0_243.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_243.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -It is licensed under GNU AGPL v3.0 +It is {{licensed under GNU AGPL v3}}.0 * You should have received a copy of the license in this archive (see LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_252.RULE b/src/licensedcode/data/rules/agpl-3.0_252.RULE index a4de183889..32303508c4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_252.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_252.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: typo in license id --- -AGLPv3 (GNU Affero General Public License versio 3) \ No newline at end of file +AGLPv3 ({{GNU Affero General Public License}} versio 3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_253.RULE b/src/licensedcode/data/rules/agpl-3.0_253.RULE index c61acd9f7d..8eec477ac8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_253.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_253.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is distributed under the terms of the GNU Affero General Public License. \ No newline at end of file +This software is distributed under the terms of the {{GNU Affero General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_257.RULE b/src/licensedcode/data/rules/agpl-3.0_257.RULE index 9e449991fe..f106c9890e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_257.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_257.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it under -the terms of the GNU Affero General Public License as published by the Free -Software Foundation, version 3 of the License. +the terms of the {{GNU Affero General Public License as published by the Free +Software Foundation, version 3 of the License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more +FOR A PARTICULAR PURPOSE. See the {{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License along +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_258.RULE b/src/licensedcode/data/rules/agpl-3.0_258.RULE index 63e742cbab..2ebaca6ef4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_258.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_258.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it under -the terms of the GNU Affero General Public License as published by the Free -Software Foundation, version 3 of the License. +the terms of the {{GNU Affero General Public License as published by the Free +Software Foundation, version 3 of the License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more +FOR A PARTICULAR PURPOSE. See the {{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License along +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_259.RULE b/src/licensedcode/data/rules/agpl-3.0_259.RULE index 7d275ca173..05e42978bc 100644 --- a/src/licensedcode/data/rules/agpl-3.0_259.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_259.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as published by +it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. +{{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License +You should have received a copy of the {{GNU Affero General Public License}} along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_260.RULE b/src/licensedcode/data/rules/agpl-3.0_260.RULE index 71c6849462..a85252cb25 100644 --- a/src/licensedcode/data/rules/agpl-3.0_260.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_260.RULE @@ -5,13 +5,13 @@ relevance: 100 --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as published by -the Free Software Foundation, version 3 of the License. +it under the terms of the {{GNU Affero General Public License as published by +the Free Software Foundation, version 3 of the License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. +{{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, use a search engine. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_261.RULE b/src/licensedcode/data/rules/agpl-3.0_261.RULE index f9d41d4a34..fa922d8b7f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_261.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_261.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify it under -the terms of the GNU Affero General Public License as published by the Free Software -Foundation, version 3 of the License. +the terms of the {{GNU Affero General Public License as published by the Free Software +Foundation, version 3 of the License}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. +FOR A PARTICULAR PURPOSE. See the {{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License along with +You should have received a copy of the {{GNU Affero General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_263.RULE b/src/licensedcode/data/rules/agpl-3.0_263.RULE index 3720d56feb..9c89907c1f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_263.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_263.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under AGPL v3. \ No newline at end of file +distributed under {{AGPL v3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_264.RULE b/src/licensedcode/data/rules/agpl-3.0_264.RULE index d88f61c36c..44c40eee1e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_264.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_264.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the GNU Affero General Public License (AGPLv3). \ No newline at end of file +distributed under the {{GNU Affero General Public License (AGPLv3}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_265.RULE b/src/licensedcode/data/rules/agpl-3.0_265.RULE index 7da5e592dc..b10bdc4568 100644 --- a/src/licensedcode/data/rules/agpl-3.0_265.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_265.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the AGPL v3 license. \ No newline at end of file +distributed under the {{AGPL v3 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_267.RULE b/src/licensedcode/data/rules/agpl-3.0_267.RULE index 4b658ece36..02ae8000ef 100644 --- a/src/licensedcode/data/rules/agpl-3.0_267.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_267.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under GNU Affero General Public License version 3 \ No newline at end of file +This software is licensed under {{GNU Affero General Public License version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_268.RULE b/src/licensedcode/data/rules/agpl-3.0_268.RULE index 14447944fb..7c5f7909d5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_268.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_268.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is licensed under GNU Affero General Public License version 3 \ No newline at end of file +is licensed under {{GNU Affero General Public License version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_269.RULE b/src/licensedcode/data/rules/agpl-3.0_269.RULE index a04d7a2d95..eb9f5ecc61 100644 --- a/src/licensedcode/data/rules/agpl-3.0_269.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_269.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under GNU Affero General Public License version 3 \ No newline at end of file +licensed under {{GNU Affero General Public License version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_270.RULE b/src/licensedcode/data/rules/agpl-3.0_270.RULE index 5fd895ad33..b64efa69d4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_270.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_270.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl-3.0.html --- -is licensed under [GNU Affero General Public License version 3](https://www.gnu.org/licenses/agpl-3.0.html) \ No newline at end of file +is licensed under [{{GNU Affero General Public License version 3}}](https://www.gnu.org/licenses/agpl-3.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_271.RULE b/src/licensedcode/data/rules/agpl-3.0_271.RULE index 6c8fd3bbad..2dbe6a52be 100644 --- a/src/licensedcode/data/rules/agpl-3.0_271.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_271.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl-3.0.html --- -licensed under [GNU Affero General Public License version 3](https://www.gnu.org/licenses/agpl-3.0.html) \ No newline at end of file +licensed under [{{GNU Affero General Public License version 3}}](https://www.gnu.org/licenses/agpl-3.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_272.RULE b/src/licensedcode/data/rules/agpl-3.0_272.RULE index 5ce922d42f..2fde98459b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_272.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_272.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/agpl-3.0.html --- -is licensed under [GNU Affero General Public License version 3](http://www.gnu.org/licenses/agpl-3.0.html) \ No newline at end of file +is licensed under [{{GNU Affero General Public License version 3}}](http://www.gnu.org/licenses/agpl-3.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_273.RULE b/src/licensedcode/data/rules/agpl-3.0_273.RULE index 0ea98bd7ab..e3d2f6aa18 100644 --- a/src/licensedcode/data/rules/agpl-3.0_273.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_273.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/agpl-3.0.html --- -licensed under [GNU Affero General Public License version 3](http://www.gnu.org/licenses/agpl-3.0.html) \ No newline at end of file +licensed under [{{GNU Affero General Public License version 3}}](http://www.gnu.org/licenses/agpl-3.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_276.RULE b/src/licensedcode/data/rules/agpl-3.0_276.RULE index 8e2056e1f3..1e230a9e92 100644 --- a/src/licensedcode/data/rules/agpl-3.0_276.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_276.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 referenced_filenames: - AGPL-3.0.LICENSE diff --git a/src/licensedcode/data/rules/agpl-3.0_277.RULE b/src/licensedcode/data/rules/agpl-3.0_277.RULE index 3a54e95dc0..52699aa411 100644 --- a/src/licensedcode/data/rules/agpl-3.0_277.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_277.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -made available under the terms of the GNU Affero General Public License (AGPL). \ No newline at end of file +made available under the terms of the {{GNU Affero General Public License}} (AGPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_278.RULE b/src/licensedcode/data/rules/agpl-3.0_278.RULE index 6e1d61eef5..4cbfe56705 100644 --- a/src/licensedcode/data/rules/agpl-3.0_278.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_278.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -made available under the terms of the GNU Affero General Public License 3.0 (AGPL 3.0). \ No newline at end of file +made available under the terms of the {{GNU Affero General Public License 3.0}} ({{AGPL 3.0}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_279.RULE b/src/licensedcode/data/rules/agpl-3.0_279.RULE index 7131b07b1f..8dc6d33167 100644 --- a/src/licensedcode/data/rules/agpl-3.0_279.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_279.RULE @@ -1,7 +1,6 @@ --- license_expression: agpl-3.0 is_license_text: yes -relevance: 100 notes: minor variant with copyright sign ignorable_copyrights: - Copyright (c) 2007 Free Software Foundation, Inc. https://fsf.org diff --git a/src/licensedcode/data/rules/agpl-3.0_28.RULE b/src/licensedcode/data/rules/agpl-3.0_28.RULE index 84d57f9ca2..a61e87900e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_28.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_28.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://gnu.org/licenses/agpl.html --- -is currently distributed under the GNU Affero General Public License +is currently distributed under the {{GNU Affero General Public License}} https://gnu.org/licenses/agpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_280.RULE b/src/licensedcode/data/rules/agpl-3.0_280.RULE index 2490e034da..df4c7250e0 100644 --- a/src/licensedcode/data/rules/agpl-3.0_280.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_280.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE AGPL 3.0 THE TEXT OF WHICH IS SET FORTH IN THE APPENDIX OF THIS DOCUMENT. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{AGPL 3.0}} THE TEXT OF WHICH IS SET FORTH IN THE APPENDIX OF THIS DOCUMENT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_281.RULE b/src/licensedcode/data/rules/agpl-3.0_281.RULE index 4ed7939d16..02322b470f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_281.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_281.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -UNDER THE TERMS OF THE AGPL 3.0 \ No newline at end of file +UNDER THE TERMS OF THE {{AGPL 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_282.RULE b/src/licensedcode/data/rules/agpl-3.0_282.RULE index eedded7a88..4d01d5b575 100644 --- a/src/licensedcode/data/rules/agpl-3.0_282.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_282.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the terms of the GNU Affero General Public License, version 3, \ No newline at end of file +under the terms of the {{GNU Affero General Public License, version 3}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_283.RULE b/src/licensedcode/data/rules/agpl-3.0_283.RULE index d082974192..a065f69e74 100644 --- a/src/licensedcode/data/rules/agpl-3.0_283.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_283.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License, version 3, +it under the terms of the {{GNU Affero General Public License, version 3}}, as published by the Free Software Foundation. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. +{{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License +You should have received a copy of the {{GNU Affero General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_284.RULE b/src/licensedcode/data/rules/agpl-3.0_284.RULE index 0f7dc37f30..03ed4619b2 100644 --- a/src/licensedcode/data/rules/agpl-3.0_284.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_284.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License, version 3, +it under the terms of the {{GNU Affero General Public License, version 3}}, as published by the Free Software Foundation. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. +{{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License +You should have received a copy of the {{GNU Affero General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_285.RULE b/src/licensedcode/data/rules/agpl-3.0_285.RULE index 8cc180cd0a..b3e2a416ba 100644 --- a/src/licensedcode/data/rules/agpl-3.0_285.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_285.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0_286.RULE b/src/licensedcode/data/rules/agpl-3.0_286.RULE index 1892e72bc4..e141791d37 100644 --- a/src/licensedcode/data/rules/agpl-3.0_286.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_286.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under GNU AGPL v3 \ No newline at end of file +under {{GNU AGPL v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_287.RULE b/src/licensedcode/data/rules/agpl-3.0_287.RULE index 3e49b15548..28926e2113 100644 --- a/src/licensedcode/data/rules/agpl-3.0_287.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_287.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the terms GNU AGPL v3 \ No newline at end of file +under the terms {{GNU AGPL v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_288.RULE b/src/licensedcode/data/rules/agpl-3.0_288.RULE index 764ce1d9ff..7d16f7a500 100644 --- a/src/licensedcode/data/rules/agpl-3.0_288.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_288.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0_289.RULE b/src/licensedcode/data/rules/agpl-3.0_289.RULE index 2dd7b712a8..b5767f703b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_289.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_289.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -GNU AFFERO GENERAL PUBLIC LICENSE 3.0 is applicable to the following component(s). \ No newline at end of file +{{GNU AFFERO GENERAL PUBLIC LICENSE 3.0}} is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_29.RULE b/src/licensedcode/data/rules/agpl-3.0_29.RULE index d248996ead..d16089684e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_29.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_29.RULE @@ -6,16 +6,16 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as + it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. + {{GNU Affero General Public License}} for more details. - You should have received a copy of the GNU Affero General Public License + You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. diff --git a/src/licensedcode/data/rules/agpl-3.0_290.RULE b/src/licensedcode/data/rules/agpl-3.0_290.RULE index 3b77b03d38..95b506a948 100644 --- a/src/licensedcode/data/rules/agpl-3.0_290.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_290.RULE @@ -1,7 +1,8 @@ --- license_expression: agpl-3.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -License : AGPL 3.0 \ No newline at end of file +License: AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_291.RULE b/src/licensedcode/data/rules/agpl-3.0_291.RULE index e8d60d78bf..d8e7f8479c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_291.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_291.RULE @@ -5,5 +5,5 @@ relevance: 100 --- is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License, version 3, +it under the terms of the {{GNU Affero General Public License, version 3}}, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_292.RULE b/src/licensedcode/data/rules/agpl-3.0_292.RULE index 64e6da530b..59d2080711 100644 --- a/src/licensedcode/data/rules/agpl-3.0_292.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_292.RULE @@ -5,4 +5,4 @@ relevance: 100 --- is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License, version 3, \ No newline at end of file +it under the terms of the {{GNU Affero General Public License, version 3}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_293.RULE b/src/licensedcode/data/rules/agpl-3.0_293.RULE index 4a44cba561..c0b2ca2993 100644 --- a/src/licensedcode/data/rules/agpl-3.0_293.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_293.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -you can redistribute it and/or modify it under the terms of the GNU Affero General Public License, version 3, \ No newline at end of file +you can redistribute it and/or modify it under the terms of the {{GNU Affero General Public License, version 3}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_295.RULE b/src/licensedcode/data/rules/agpl-3.0_295.RULE index 94303ba6ee..7570614632 100644 --- a/src/licensedcode/data/rules/agpl-3.0_295.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_295.RULE @@ -8,11 +8,11 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl-3.0.html --- -Please note that some versions of Berkeley DB 6+ are under the GNU Affero -General Public License, version 3: +Please note that some versions of Berkeley DB 6+ are under the {{GNU Affero +General Public License, version 3}}: https://oss.oracle.com/pipermail/bdb/2013-June/000056.html -The AGPL-3.0 licence may impose special requirements for making available +The {{AGPL-3.0}} licence may impose special requirements for making available source code of server-side software. The text of the licence is: https://www.gnu.org/licenses/agpl-3.0.html http://opensource.org/licenses/AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_296.RULE b/src/licensedcode/data/rules/agpl-3.0_296.RULE index afc3c8f86a..82d4c03fc1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_296.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_296.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: seen in Mattermost --- -The software is released under the terms of the GNU Affero General Public License, version 3. \ No newline at end of file +The software is released under the terms of the {{GNU Affero General Public License, version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_297.RULE b/src/licensedcode/data/rules/agpl-3.0_297.RULE index 12113a15dd..4a2fe9d5f2 100644 --- a/src/licensedcode/data/rules/agpl-3.0_297.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_297.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: seen in Mattermost --- -The software is released under the terms of the GNU Affero General Public License, version 3.0 \ No newline at end of file +The software is released under the terms of the {{GNU Affero General Public License, version 3}}.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_298.RULE b/src/licensedcode/data/rules/agpl-3.0_298.RULE index c3fe8f7f84..94c8bd64be 100644 --- a/src/licensedcode/data/rules/agpl-3.0_298.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_298.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms GNU AGPL v3 \ No newline at end of file +licensed under the terms {{GNU AGPL v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_299.RULE b/src/licensedcode/data/rules/agpl-3.0_299.RULE index 4e1d627f5f..b0f8d93ecc 100644 --- a/src/licensedcode/data/rules/agpl-3.0_299.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_299.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed UNDER THE TERMS OF THE AGPL 3.0 \ No newline at end of file +licensed UNDER THE TERMS OF THE {{AGPL 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_3.RULE b/src/licensedcode/data/rules/agpl-3.0_3.RULE index 79112cb011..574b35961e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_3.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://www.fsf.org/licensing/licenses/agpl-3.0.html --- -GNU Affero General Public License v3 http://www.fsf.org/licensing/licenses/agpl-3.0.html \ No newline at end of file +{{GNU Affero General Public License v3}} http://www.fsf.org/licensing/licenses/agpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_30.RULE b/src/licensedcode/data/rules/agpl-3.0_30.RULE index 6e40e3d01d..850fb8a216 100644 --- a/src/licensedcode/data/rules/agpl-3.0_30.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_30.RULE @@ -6,11 +6,11 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License, version 3, +it under the terms of the {{GNU Affero General Public License, version 3}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. -You should have received a copy of the GNU Affero General Public License +{{GNU Affero General Public License}} for more details. +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_300.RULE b/src/licensedcode/data/rules/agpl-3.0_300.RULE index 306084ff09..b1ff256c57 100644 --- a/src/licensedcode/data/rules/agpl-3.0_300.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_300.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU Affero General Public License version 3 (GNU AGPL v3) \ No newline at end of file +licensed under the terms of the {{GNU Affero General Public License version 3}} ({{GNU AGPL v3}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_301.RULE b/src/licensedcode/data/rules/agpl-3.0_301.RULE index f4318ee3cf..6019d5a282 100644 --- a/src/licensedcode/data/rules/agpl-3.0_301.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_301.RULE @@ -8,12 +8,12 @@ ignorable_urls: --- * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License version 3. + * it under the terms of the {{GNU Affero General Public License version 3}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * - * You should have received a copy of the GNU Affero General Public License + * You should have received a copy of the {{GNU Affero General Public License}} * along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_303.RULE b/src/licensedcode/data/rules/agpl-3.0_303.RULE index 311fba4c2a..7f508e88e9 100644 --- a/src/licensedcode/data/rules/agpl-3.0_303.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_303.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under [AGPL-3.0 \ No newline at end of file +released under [{{AGPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_304.RULE b/src/licensedcode/data/rules/agpl-3.0_304.RULE index 1ae6e5ea74..d584bfe7d1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_304.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_304.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under [AGPL-3.0-only] \ No newline at end of file +released under [{{AGPL-3.0-only}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_305.RULE b/src/licensedcode/data/rules/agpl-3.0_305.RULE index 8da9b1c7c4..5270600d0e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_305.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_305.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -released under [AGPL-3.0-only](LICENSE). \ No newline at end of file +released under [{{AGPL-3.0-only}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_306.RULE b/src/licensedcode/data/rules/agpl-3.0_306.RULE index 082504e778..c91a8e8e5c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_306.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_306.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0_307.RULE b/src/licensedcode/data/rules/agpl-3.0_307.RULE index 30882aaab4..f6211bbb37 100644 --- a/src/licensedcode/data/rules/agpl-3.0_307.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_307.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the AGPL v3 license \ No newline at end of file +This project is {{licensed under the AGPL v3 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_309.RULE b/src/licensedcode/data/rules/agpl-3.0_309.RULE index 32f80b7abe..8205ee88be 100644 --- a/src/licensedcode/data/rules/agpl-3.0_309.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_309.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GNU Affero General Public License (AGPL) \ No newline at end of file +the {{GNU Affero General Public License}} (AGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_31.RULE b/src/licensedcode/data/rules/agpl-3.0_31.RULE index e18393b72e..1ee099ada1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_31.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_31.RULE @@ -7,5 +7,5 @@ relevance: 100 LICENSE Most MongoDB source files (src/mongo folder and below) are made available - under the terms of the GNU Affero General Public License (GNU AGPLv3). See + under the terms of the {{GNU Affero General Public License (GNU AGPLv3)}}. See individual files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_310.RULE b/src/licensedcode/data/rules/agpl-3.0_310.RULE index 93f05cb4ef..063eacc1f1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_310.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_310.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License -This project is licensed under the AGPL v3 license, see LICENSE.txt (./LICENSE.txt). \ No newline at end of file +This project is {{licensed under the AGPL v3 license}}, see LICENSE.txt (./LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_311.RULE b/src/licensedcode/data/rules/agpl-3.0_311.RULE index 699e5d6eb3..d44b298bb5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_311.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_311.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License -This project is licensed under the AGPL v3 license, see LICENSE.txt. \ No newline at end of file +This project is {{licensed under the AGPL v3 license}}, see LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_312.RULE b/src/licensedcode/data/rules/agpl-3.0_312.RULE index 7bc5f86e7d..bdee0c7cf3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_312.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_312.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -This project is licensed under the AGPL v3 license, see LICENSE.txt. \ No newline at end of file +This project is {{licensed under the AGPL v3 license}}, see LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_313.RULE b/src/licensedcode/data/rules/agpl-3.0_313.RULE index 800eb9f749..6f538b7d1a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_313.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_313.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -This project is licensed under the AGPL v3 license \ No newline at end of file +This project is {{licensed under the AGPL v3 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_314.RULE b/src/licensedcode/data/rules/agpl-3.0_314.RULE index 255109149f..a1f4e253d1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_314.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_314.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -license for this project is AGPL-3.0-only (LICENSE). \ No newline at end of file +license for this project is {{AGPL-3.0-only (LICENSE)}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_316.RULE b/src/licensedcode/data/rules/agpl-3.0_316.RULE index 05e2e490f5..f67fd58002 100644 --- a/src/licensedcode/data/rules/agpl-3.0_316.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_316.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under the AGPL-v3 license. \ No newline at end of file +Released under the {{AGPL-v3 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_317.RULE b/src/licensedcode/data/rules/agpl-3.0_317.RULE index 01a50c3ac6..a77ac20c37 100644 --- a/src/licensedcode/data/rules/agpl-3.0_317.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_317.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under the # strong AGPL-v3 License \ No newline at end of file +Released under the # strong {{AGPL-v3 License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_318.RULE b/src/licensedcode/data/rules/agpl-3.0_318.RULE index 29edabdd13..4a90ef79f0 100644 --- a/src/licensedcode/data/rules/agpl-3.0_318.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_318.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This repository is licensed under [AGPL-3.0] \ No newline at end of file +This repository is {{licensed under [AGPL-3.0}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_319.RULE b/src/licensedcode/data/rules/agpl-3.0_319.RULE index 5ca525d833..fa06f787b5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_319.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_319.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This repository is licensed under [AGPL-3.0](LICENSE). \ No newline at end of file +This repository is {{licensed under [AGPL-3.0}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_32.RULE b/src/licensedcode/data/rules/agpl-3.0_32.RULE index b5570c2c77..1fa07ec1ce 100644 --- a/src/licensedcode/data/rules/agpl-3.0_32.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_32.RULE @@ -5,4 +5,4 @@ relevance: 100 --- are made available - under the terms of the GNU Affero General Public License (GNU AGPLv3) \ No newline at end of file + under the terms of the {{GNU Affero General Public License (GNU AGPLv3}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_320.RULE b/src/licensedcode/data/rules/agpl-3.0_320.RULE index 478403241b..04cc30aa41 100644 --- a/src/licensedcode/data/rules/agpl-3.0_320.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_320.RULE @@ -1,7 +1,8 @@ --- license_expression: agpl-3.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -licensed under [AGPL-3.0] \ No newline at end of file +licensed under AGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_321.RULE b/src/licensedcode/data/rules/agpl-3.0_321.RULE index 270a568eab..e75534eab8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_321.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_321.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -licensed under [AGPL-3.0](/LICENSE) \ No newline at end of file +{{licensed under [AGPL-3.0}}](/LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_322.RULE b/src/licensedcode/data/rules/agpl-3.0_322.RULE index 41621fd012..b587569396 100644 --- a/src/licensedcode/data/rules/agpl-3.0_322.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_322.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- * This file is part of the Genode OS framework, which is distributed - * under the terms of the GNU Affero General Public License version 3. \ No newline at end of file + * under the terms of the {{GNU Affero General Public License version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_325.RULE b/src/licensedcode/data/rules/agpl-3.0_325.RULE index 597390400c..40ca5b2c98 100644 --- a/src/licensedcode/data/rules/agpl-3.0_325.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_325.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- The source code of the software packages are -under the terms of the GNU Affero General Public License version 3 (GNU AGPL v3) +under the terms of the {{GNU Affero General Public License version 3}} ({{GNU AGPL v3}}) as published by the Free Software Foundation. (https://www.gnu.org/licenses/agpl-3.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_327.RULE b/src/licensedcode/data/rules/agpl-3.0_327.RULE index 2e21648798..a76739c60c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_327.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_327.RULE @@ -6,13 +6,13 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl-3.0.html --- -In the case you use the software under the terms of the GNU AGPL v3, the +In the case you use the software under the terms of the {{GNU AGPL v3}}, the program is provided in the hope hat it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU Affero General Public License for more details. +See the {{GNU Affero General Public License}} for more details. -You can find a copy of the GNU Affero General Public License at this URI: +You can find a copy of the {{GNU Affero General Public License}} at this URI: https://www.gnu.org/licenses/agpl-3.0.html If not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_329.RULE b/src/licensedcode/data/rules/agpl-3.0_329.RULE index 8778af1816..e11137b68b 100644 --- a/src/licensedcode/data/rules/agpl-3.0_329.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_329.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- You can use, redistribute, and/or modify -this code under the terms of the GNU Affero General Public License -version 3. +this code under the terms of the {{GNU Affero General Public License +version 3}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. +{{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_33.RULE b/src/licensedcode/data/rules/agpl-3.0_33.RULE index 1b1703fdc3..c232a51f66 100644 --- a/src/licensedcode/data/rules/agpl-3.0_33.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_33.RULE @@ -5,4 +5,4 @@ relevance: 100 --- available - under the terms of the GNU Affero General Public License (GNU AGPLv3) \ No newline at end of file + under the terms of the {{GNU Affero General Public License (GNU AGPLv3}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_330.RULE b/src/licensedcode/data/rules/agpl-3.0_330.RULE index 06982d4cfd..0413c575cd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_330.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_330.RULE @@ -11,14 +11,14 @@ Copyright / license Copyright GNU AGPL. Email me if you need another license. This program is free software: you can redistribute it and/or modify it -under the terms of the GNU Affero General Public license as published by +under the terms of the {{GNU Affero General Public license as published by the Free Software Foundation, either version 3 of the license, or (at -your option) any later version. +your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero -General Public license for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Affero +General Public license}} for more details. -You should have received a copy of the GNU Affero General Public license +You should have received a copy of the {{GNU Affero General Public license}} along with this program. If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_331.RULE b/src/licensedcode/data/rules/agpl-3.0_331.RULE index bdc540001a..928125ccee 100644 --- a/src/licensedcode/data/rules/agpl-3.0_331.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_331.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License, -# version 3, as published by the Free Software Foundation. +# it under the terms of the {{GNU Affero General Public License, +# version 3}}, as published by the Free Software Foundation. # is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. +# {{GNU Affero General Public License}} for more details. # -# You should have received a copy of the GNU Affero General Public -# License, version 3, along with . If not, see +# You should have received a copy of the {{GNU Affero General Public +# License, version 3}}, along with . If not, see # # -# Licensed under the terms of the GNU Affero General Public License -# version 3 \ No newline at end of file +# Licensed under the terms of the {{GNU Affero General Public License +# version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_332.RULE b/src/licensedcode/data/rules/agpl-3.0_332.RULE index fdf12d7dcf..0887efad66 100644 --- a/src/licensedcode/data/rules/agpl-3.0_332.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_332.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- * This is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License + * it under the terms of the {{GNU Affero General Public License * as published by the Free Software Foundation, version 3 of - * the License. + * the License}}. * * This is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See - * the GNU Affero General Public License for more details. + * the {{GNU Affero General Public License}} for more details. * - * You should have received a copy of the GNU Affero General - * Public License along with this program. If not, see + * You should have received a copy of the {{GNU Affero General + * Public License}} along with this program. If not, see * . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_333.RULE b/src/licensedcode/data/rules/agpl-3.0_333.RULE index f2f9327cd7..b6af75dd34 100644 --- a/src/licensedcode/data/rules/agpl-3.0_333.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_333.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This is free software: you can redistribute it and/or modify it -under the terms of the GNU Affero General Public license as published by +under the terms of the {{GNU Affero General Public license as published by the Free Software Foundation, either version 3 of the license, or (at -your option) any later version. +your option) any later version}}. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero -General Public license for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Affero +General Public license}} for more details. -You should have received a copy of the GNU Affero General Public license +You should have received a copy of the {{GNU Affero General Public license}} along with this . If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_334.RULE b/src/licensedcode/data/rules/agpl-3.0_334.RULE index 38e025dca3..72dc8f6ff4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_334.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_334.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- * The JavaScript code in this page is free software: you can redistribute it - * and/or modify it under the terms of the GNU Affero General Public License + * and/or modify it under the terms of the {{GNU Affero General Public License}} * (GNU AGPL) as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. The code is distributed * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU AGPL for more details. * - * You should have received a copy of the GNU Affero General Public License + * You should have received a copy of the {{GNU Affero General Public License}} * along with this code. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_335.RULE b/src/licensedcode/data/rules/agpl-3.0_335.RULE index ab2db3376a..b20578e4f9 100644 --- a/src/licensedcode/data/rules/agpl-3.0_335.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_335.RULE @@ -1,7 +1,6 @@ --- license_expression: agpl-3.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org ignorable_holders: diff --git a/src/licensedcode/data/rules/agpl-3.0_336.RULE b/src/licensedcode/data/rules/agpl-3.0_336.RULE index d0486c6d51..d2e519b908 100644 --- a/src/licensedcode/data/rules/agpl-3.0_336.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_336.RULE @@ -7,16 +7,16 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as + it under the terms of the {{GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. + {{GNU Affero General Public License}} for more details. - You should have received a copy of the GNU Affero General Public License + You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. diff --git a/src/licensedcode/data/rules/agpl-3.0_338.RULE b/src/licensedcode/data/rules/agpl-3.0_338.RULE index 7aa8c25411..343d0e1b6e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_338.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_338.RULE @@ -1,7 +1,6 @@ --- license_expression: agpl-3.0 is_license_text: yes -relevance: 100 minimum_coverage: 99 notes: oodoo agpl ignorable_copyrights: diff --git a/src/licensedcode/data/rules/agpl-3.0_339.RULE b/src/licensedcode/data/rules/agpl-3.0_339.RULE index 2643c3b4b2..8b12b95c8e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_339.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_339.RULE @@ -1,7 +1,6 @@ --- license_expression: agpl-3.0 is_license_text: yes -relevance: 100 ignorable_urls: - https://www.gnu.org/licenses/ --- diff --git a/src/licensedcode/data/rules/agpl-3.0_34.RULE b/src/licensedcode/data/rules/agpl-3.0_34.RULE index bc948ee5cd..8b5a0a475c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_34.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_34.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the terms of the GNU Affero General Public License (GNU AGPLv3) \ No newline at end of file +under the terms of the {{GNU Affero General Public License (GNU AGPLv3}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_340.RULE b/src/licensedcode/data/rules/agpl-3.0_340.RULE index 5c858aa729..e85bb44a4f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_340.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_340.RULE @@ -9,7 +9,7 @@ ignorable_urls: --- * jQuery History is free software; You can redistribute it and/or modify it under the terms of - * the GNU Affero General Public License version 3 as published by the Free Software Foundation. + * the {{GNU Affero General Public License version 3}} as published by the Free Software Foundation. * You don't have to do anything special to accept the license and you don’t have to notify * anyone which that you have made that decision. * diff --git a/src/licensedcode/data/rules/agpl-3.0_341.RULE b/src/licensedcode/data/rules/agpl-3.0_341.RULE index c4da74377c..5188f2b0b3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_341.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_341.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- project licensed under the terms of -the AGPL license - `The GNU Affero General Public License v3.0 +the AGPL license - `The {{GNU Affero General Public License v3.0}} ` \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_342.RULE b/src/licensedcode/data/rules/agpl-3.0_342.RULE index fc33c72a08..63150d11dd 100644 --- a/src/licensedcode/data/rules/agpl-3.0_342.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_342.RULE @@ -8,7 +8,7 @@ ignorable_urls: - https://www.gnu.org/licenses/ --- -//You should have received a copy of the GNU Affero General Public License +//You should have received a copy of the {{GNU Affero General Public License}} //along with this program. If not, see . // // See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_343.RULE b/src/licensedcode/data/rules/agpl-3.0_343.RULE index ff80e2ebfa..9619fb0a6d 100644 --- a/src/licensedcode/data/rules/agpl-3.0_343.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_343.RULE @@ -9,22 +9,22 @@ ignorable_urls: --- # The source code of this program is made available -# under the terms of the GNU Affero General Public License version 3 -# (GNU AGPL V3) as published by the Free Software Foundation. +# under the terms of the {{GNU Affero General Public License version 3}} +# ({{GNU AGPL V3}}) as published by the Free Software Foundation. # # Binary versions of this program provided by Univention to you as # well as other copyrighted, protected or trademarked materials like # Logos, graphics, fonts, specific documentations and configurations, # cryptographic keys etc. are subject to a license agreement between -# you and Univention and not subject to the GNU AGPL V3. +# you and Univention and not subject to the {{GNU AGPL V3}}. # -# In the case you use this program under the terms of the GNU AGPL V3, +# In the case you use this program under the terms of the {{GNU AGPL V3}}, # the program is provided in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. +# {{GNU Affero General Public License}} for more details. # -# You should have received a copy of the GNU Affero General Public -# License with the Debian GNU/Linux or Univention distribution in file +# You should have received a copy of the {{GNU Affero General Public +# License}} with the Debian GNU/Linux or Univention distribution in file # /usr/share/common-licenses/AGPL-3; if not, see # . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_344.RULE b/src/licensedcode/data/rules/agpl-3.0_344.RULE index b22a4f3ab5..bc9b88d110 100644 --- a/src/licensedcode/data/rules/agpl-3.0_344.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_344.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- This is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License, version 3, +it under the terms of the {{GNU Affero General Public License, version 3}}, as published by the Free Software Foundation. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. -You should have received a copy of the GNU Affero General Public License +{{GNU Affero General Public License}} for more details. +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_345.RULE b/src/licensedcode/data/rules/agpl-3.0_345.RULE index ca9fbd144d..533156e480 100644 --- a/src/licensedcode/data/rules/agpl-3.0_345.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_345.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl-3.0.html --- -@license GNU Affero General Public License version 3 {@link https://www.gnu.org/licenses/agpl-3.0.html} \ No newline at end of file +@license {{GNU Affero General Public License version 3}} {@link https://www.gnu.org/licenses/agpl-3.0.html} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_346.RULE b/src/licensedcode/data/rules/agpl-3.0_346.RULE index 9f38203a6f..72aeba6221 100644 --- a/src/licensedcode/data/rules/agpl-3.0_346.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_346.RULE @@ -8,12 +8,12 @@ ignorable_urls: --- * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License version 3. + * it under the terms of the {{GNU Affero General Public License version 3}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * - * You should have received a copy of the GNU Affero General Public License + * You should have received a copy of the {{GNU Affero General Public License}} * along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_347.RULE b/src/licensedcode/data/rules/agpl-3.0_347.RULE index ca96020940..84c63cd3f5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_347.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_347.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License + * it under the terms of the {{GNU Affero General Public License * as published by the Free Software Foundation, version 3 of - * the License. + * the License}}. * * is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See - * the GNU Affero General Public License for more details. + * the {{GNU Affero General Public License}} for more details. * - * You should have received a copy of the GNU Affero General - * Public License along with this program. If not, see + * You should have received a copy of the {{GNU Affero General + * Public License}} along with this program. If not, see * . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_348.RULE b/src/licensedcode/data/rules/agpl-3.0_348.RULE index 6e18c6c32e..317b71d28c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_348.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_348.RULE @@ -12,6 +12,6 @@ as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. +{{GNU Affero General Public License}} for more details. You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_35.RULE b/src/licensedcode/data/rules/agpl-3.0_35.RULE index aa6a726a15..b6ba4f780f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_35.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_35.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License + * it under the terms of the {{GNU Affero General Public License * as published by the Free Software Foundation, version 3 of - * the License. + * the License}}. * * is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See - * the GNU Affero General Public License for more details. + * the {{GNU Affero General Public License}} for more details. * - * You should have received a copy of the GNU Affero General - * Public License along with this program. If not, see + * You should have received a copy of the {{GNU Affero General + * Public License}} along with this program. If not, see * . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_351.RULE b/src/licensedcode/data/rules/agpl-3.0_351.RULE index c4dd394010..fdefcb29be 100644 --- a/src/licensedcode/data/rules/agpl-3.0_351.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_351.RULE @@ -1,7 +1,6 @@ --- license_expression: agpl-3.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org ignorable_holders: diff --git a/src/licensedcode/data/rules/agpl-3.0_354.RULE b/src/licensedcode/data/rules/agpl-3.0_354.RULE index 6728ecc0be..b7897770a5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_354.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_354.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU Affero General Public License v3.0 \ No newline at end of file +released under the {{GNU Affero General Public License v3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_355.RULE b/src/licensedcode/data/rules/agpl-3.0_355.RULE index 21cf0fd996..3c6821352f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_355.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_355.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under GNU Affero General Public License version 3. \ No newline at end of file +under {{GNU Affero General Public License version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_357.RULE b/src/licensedcode/data/rules/agpl-3.0_357.RULE index e01635ecc8..69f4914b26 100644 --- a/src/licensedcode/data/rules/agpl-3.0_357.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_357.RULE @@ -1,6 +1,8 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes +relevance: 100 --- -{{AGPL-3.0 GNU Affero General Public License v3.0}} \ No newline at end of file +AGPL-3.0 GNU Affero General Public License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_358.RULE b/src/licensedcode/data/rules/agpl-3.0_358.RULE index 01b9f9ac85..5856e6b97a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_358.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_358.RULE @@ -1,7 +1,7 @@ --- license_expression: agpl-3.0 is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/agpl-3.0_359.RULE b/src/licensedcode/data/rules/agpl-3.0_359.RULE index 53a9c622a3..2b7d963d09 100644 --- a/src/licensedcode/data/rules/agpl-3.0_359.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_359.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GNU Affero General Public License v3.0 AGPL-3.0 \ No newline at end of file +{{GNU Affero General Public License v3.0}} {{AGPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_36.RULE b/src/licensedcode/data/rules/agpl-3.0_36.RULE index f7262cd72e..5197dea1ec 100644 --- a/src/licensedcode/data/rules/agpl-3.0_36.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_36.RULE @@ -5,4 +5,4 @@ relevance: 100 --- is free software you can redistribute it and or modify it under the terms of -the GNU Affero General Public License \ No newline at end of file +the {{GNU Affero General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_360.RULE b/src/licensedcode/data/rules/agpl-3.0_360.RULE index cf155d5db2..e7fea1f98f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_360.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_360.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : AGPL-3.0 \ No newline at end of file +licenseid : {{AGPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_361.RULE b/src/licensedcode/data/rules/agpl-3.0_361.RULE index 6ed3dbe70d..67b6626f98 100644 --- a/src/licensedcode/data/rules/agpl-3.0_361.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_361.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : GNU Affero General Public License v3.0 \ No newline at end of file +name : {{GNU Affero General Public License v3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_362.RULE b/src/licensedcode/data/rules/agpl-3.0_362.RULE index a3d69d95f7..55f6889705 100644 --- a/src/licensedcode/data/rules/agpl-3.0_362.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_362.RULE @@ -1,7 +1,7 @@ --- license_expression: agpl-3.0 is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name diff --git a/src/licensedcode/data/rules/agpl-3.0_363.RULE b/src/licensedcode/data/rules/agpl-3.0_363.RULE index 76d7aae4ad..4425b3ceb2 100644 --- a/src/licensedcode/data/rules/agpl-3.0_363.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_363.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: GNU Affero General Public License v3.0 only \ No newline at end of file +name: {{GNU Affero General Public License v3.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_364.RULE b/src/licensedcode/data/rules/agpl-3.0_364.RULE index 5b0a85bdfe..c99143c19c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_364.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_364.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -AGPL-3.0-only GNU Affero General Public License v3.0 only \ No newline at end of file +{{AGPL-3.0-only}} {{GNU Affero General Public License v3.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_365.RULE b/src/licensedcode/data/rules/agpl-3.0_365.RULE index 12e6417f38..0b6a1081d8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_365.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_365.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU Affero General Public License v3.0 only AGPL-3.0-only \ No newline at end of file +{{GNU Affero General Public License v3.0 only}} {{AGPL-3.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_366.RULE b/src/licensedcode/data/rules/agpl-3.0_366.RULE index 6bddf10fe5..819740f708 100644 --- a/src/licensedcode/data/rules/agpl-3.0_366.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_366.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GNU Affero General Public License v3.0 only \ No newline at end of file +license: {{GNU Affero General Public License v3.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_367.RULE b/src/licensedcode/data/rules/agpl-3.0_367.RULE index 3f7f186d6c..433e561bae 100644 --- a/src/licensedcode/data/rules/agpl-3.0_367.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_367.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: AGPL-3.0-only \ No newline at end of file +licenseId: {{AGPL-3.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_368.RULE b/src/licensedcode/data/rules/agpl-3.0_368.RULE index 11a0f24e77..d3ddda98d1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_368.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_368.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GNU Affero General Public License v3.0 \ No newline at end of file +license: {{GNU Affero General Public License v3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_37.RULE b/src/licensedcode/data/rules/agpl-3.0_37.RULE index 71ecb18ab0..e34dd437ca 100644 --- a/src/licensedcode/data/rules/agpl-3.0_37.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_37.RULE @@ -6,11 +6,11 @@ ignorable_urls: --- This is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License, version 3, +it under the terms of the {{GNU Affero General Public License, version 3}}, as published by the Free Software Foundation. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. -You should have received a copy of the GNU Affero General Public License +{{GNU Affero General Public License}} for more details. +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_370.RULE b/src/licensedcode/data/rules/agpl-3.0_370.RULE index 6eb220607c..97e61e3146 100644 --- a/src/licensedcode/data/rules/agpl-3.0_370.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_370.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -- LicenseRef-AGPL-3.0 \ No newline at end of file +- LicenseRef-{{AGPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_371.RULE b/src/licensedcode/data/rules/agpl-3.0_371.RULE index ba39f027c2..2c840f3720 100644 --- a/src/licensedcode/data/rules/agpl-3.0_371.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_371.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -license is AGPL-3.0-only. \ No newline at end of file +license is {{AGPL-3.0-only}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_377.RULE b/src/licensedcode/data/rules/agpl-3.0_377.RULE index f7c9208708..99e63a44c1 100644 --- a/src/licensedcode/data/rules/agpl-3.0_377.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_377.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0_379.RULE b/src/licensedcode/data/rules/agpl-3.0_379.RULE index 95686d27e7..5b2bc2d36c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_379.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_379.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0_38.RULE b/src/licensedcode/data/rules/agpl-3.0_38.RULE index d11c05a03f..b0b78338b3 100644 --- a/src/licensedcode/data/rules/agpl-3.0_38.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_38.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://choosealicense.com/licenses/agpl-3.0 --- -License: [`agpl-3.0`](http://choosealicense.com/licenses/agpl-3.0/) \ No newline at end of file +License: [`{{agpl-3.0}}`](http://choosealicense.com/licenses/agpl-3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_380.RULE b/src/licensedcode/data/rules/agpl-3.0_380.RULE index 0d9bd7a038..398deb0321 100644 --- a/src/licensedcode/data/rules/agpl-3.0_380.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_380.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: AGPL-3.0 \ No newline at end of file +licenses: {{AGPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_381.RULE b/src/licensedcode/data/rules/agpl-3.0_381.RULE index f6f8c27ce8..dc5995b8d5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_381.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_381.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: AGPL-3.0-only \ No newline at end of file +licenses: {{AGPL-3.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_385.RULE b/src/licensedcode/data/rules/agpl-3.0_385.RULE index 0ce57450fd..e30d1c4d9e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_385.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_385.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -under the conditions of the AGPL-3.0 License (see LICENSE file). \ No newline at end of file +under the conditions of the {{AGPL-3.0 License}} (see LICENSE file). \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_386.RULE b/src/licensedcode/data/rules/agpl-3.0_386.RULE index 3c44d81d82..83ab73f9d8 100644 --- a/src/licensedcode/data/rules/agpl-3.0_386.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_386.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the conditions of the AGPL-3.0 License \ No newline at end of file +under the conditions of the {{AGPL-3.0 License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_387.RULE b/src/licensedcode/data/rules/agpl-3.0_387.RULE index a1d3a9c809..b7a8ec6dc5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_387.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_387.RULE @@ -6,4 +6,4 @@ relevance: 100 License -GNU Affero General Public License, version 3 (AGPL-3.0) \ No newline at end of file +{{GNU Affero General Public License, version 3}} ({{AGPL-3.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_388.RULE b/src/licensedcode/data/rules/agpl-3.0_388.RULE index 8e6c9e0273..342bc52e55 100644 --- a/src/licensedcode/data/rules/agpl-3.0_388.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_388.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU Affero General Public License, version 3 (AGPL-3.0) \ No newline at end of file +{{GNU Affero General Public License, version 3}} ({{AGPL-3.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_395.RULE b/src/licensedcode/data/rules/agpl-3.0_395.RULE index a308b73391..3c66377393 100644 --- a/src/licensedcode/data/rules/agpl-3.0_395.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_395.RULE @@ -6,11 +6,11 @@ is_license_notice: yes /// License: AGPLv3 /// /// This program is free software: you can redistribute it and/or modify -/// it under the terms of the GNU Affero General Public License as +/// it under the terms of the {{GNU Affero General Public License}} as /// published by the Free Software Foundation, either version 3 of the /// License. /// /// This program is distributed in the hope that it will be useful, /// but WITHOUT ANY WARRANTY; without even the implied warranty of /// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -/// GNU Affero General Public License for more details. \ No newline at end of file +/// {{GNU Affero General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_396.RULE b/src/licensedcode/data/rules/agpl-3.0_396.RULE index 6dca27fa51..afca3f4505 100644 --- a/src/licensedcode/data/rules/agpl-3.0_396.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_396.RULE @@ -6,10 +6,10 @@ is_license_notice: yes License: AGPLv3 This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as +it under the terms of the {{GNU Affero General Public License}} as published by the Free Software Foundation, either version 3. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. \ No newline at end of file +{{GNU Affero General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_397.RULE b/src/licensedcode/data/rules/agpl-3.0_397.RULE index 0d4ef77090..28fb5dd91e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_397.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_397.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as +it under the terms of the {{GNU Affero General Public License}} as published by the Free Software Foundation, either version 3. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. \ No newline at end of file +{{GNU Affero General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_398.RULE b/src/licensedcode/data/rules/agpl-3.0_398.RULE index dade31fa8a..7e5539b35c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_398.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_398.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as +it under the terms of the {{GNU Affero General Public License}} as published by the Free Software Foundation, either version 3 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. \ No newline at end of file +{{GNU Affero General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_399.RULE b/src/licensedcode/data/rules/agpl-3.0_399.RULE index 7ad64a4706..cdd67413c4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_399.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_399.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as +it under the terms of the {{GNU Affero General Public License}} as published by the Free Software Foundation, either version 3 of the License. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. \ No newline at end of file +{{GNU Affero General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_40.RULE b/src/licensedcode/data/rules/agpl-3.0_40.RULE index b9e00be072..56625add3a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_40.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_40.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- * Alternatively, the contents of this file may be used under the - * terms of the GNU Affero General Public License (the [AGPLv3] + * terms of the {{GNU Affero General Public License (the [AGPLv3]}} * License), in which case the provisions of [AGPLv3] License are * applicable instead of those above. If you wish to allow use of your * version of this file only under the terms of the [AGPLv3] License diff --git a/src/licensedcode/data/rules/agpl-3.0_400.RULE b/src/licensedcode/data/rules/agpl-3.0_400.RULE index c8c5776dee..a493d07de4 100644 --- a/src/licensedcode/data/rules/agpl-3.0_400.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_400.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as +it under the terms of the {{GNU Affero General Public License}} as published by the Free Software Foundation, either version 3. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. \ No newline at end of file +{{GNU Affero General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_401.RULE b/src/licensedcode/data/rules/agpl-3.0_401.RULE index b2eba1a992..0b9329cdd2 100644 --- a/src/licensedcode/data/rules/agpl-3.0_401.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_401.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as +it under the terms of the {{GNU Affero General Public License}} as published by the Free Software Foundation, either version 3 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. +{{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_402.RULE b/src/licensedcode/data/rules/agpl-3.0_402.RULE index 8941296dd5..068d7868bf 100644 --- a/src/licensedcode/data/rules/agpl-3.0_402.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_402.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as +it under the terms of the {{GNU Affero General Public License}} as published by the Free Software Foundation, either version 3 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. +{{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_403.RULE b/src/licensedcode/data/rules/agpl-3.0_403.RULE index ee21592433..dbf421cd05 100644 --- a/src/licensedcode/data/rules/agpl-3.0_403.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_403.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as +it under the terms of the {{GNU Affero General Public License}} as published by the Free Software Foundation, either version 3. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. +{{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_404.RULE b/src/licensedcode/data/rules/agpl-3.0_404.RULE index 858a13e938..a7baa37d06 100644 --- a/src/licensedcode/data/rules/agpl-3.0_404.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_404.RULE @@ -7,7 +7,7 @@ ignorable_urls: - - is free software: you can redistribute it and/or modify -- it under the terms of the GNU Affero General Public License as published by +- it under the terms of the {{GNU Affero General Public License}} as published by - the Free Software Foundation, either version 3 of the License. - - is distributed in the hope that it will be useful, @@ -15,5 +15,5 @@ ignorable_urls: - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - -- You should have received a copy of the GNU Affero General Public License +- You should have received a copy of the {{GNU Affero General Public License}} - along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_405.RULE b/src/licensedcode/data/rules/agpl-3.0_405.RULE index 9a9e683b8c..27e25bd5c5 100644 --- a/src/licensedcode/data/rules/agpl-3.0_405.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_405.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- - is free software: you can redistribute it and/or modify -- it under the terms of the GNU Affero General Public License as published by +- it under the terms of the {{GNU Affero General Public License}} as published by - the Free Software Foundation, either version 3. - - is distributed in the hope that it will be useful, @@ -14,5 +14,5 @@ ignorable_urls: - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - -- You should have received a copy of the GNU Affero General Public License +- You should have received a copy of the {{GNU Affero General Public License}} - along with [[]]. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_406.RULE b/src/licensedcode/data/rules/agpl-3.0_406.RULE index 43e569baf3..fbe3586946 100644 --- a/src/licensedcode/data/rules/agpl-3.0_406.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_406.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License version 3. + * it under the terms of the {{GNU Affero General Public License version 3}}. * - * You should have received a copy of the GNU Affero General Public License + * You should have received a copy of the {{GNU Affero General Public License}} * along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_41.RULE b/src/licensedcode/data/rules/agpl-3.0_41.RULE index 76dd624fc4..7714588b29 100644 --- a/src/licensedcode/data/rules/agpl-3.0_41.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_41.RULE @@ -6,17 +6,17 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License, -# version 3, as published by the Free Software Foundation. +# it under the terms of the {{GNU Affero General Public License, +# version 3}}, as published by the Free Software Foundation. # is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. +# {{GNU Affero General Public License}} for more details. # -# You should have received a copy of the GNU Affero General Public -# License, version 3, along with . If not, see +# You should have received a copy of the {{GNU Affero General Public +# License, version 3}}, along with . If not, see # # -# Licensed under the terms of the GNU Affero General Public License -# version 3 \ No newline at end of file +# Licensed under the terms of the {{GNU Affero General Public License +# version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_42.RULE b/src/licensedcode/data/rules/agpl-3.0_42.RULE index eb05c16e43..1a66aea32e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_42.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_42.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -# Licensed under the terms of the GNU Affero General Public License -# version 3 \ No newline at end of file +# Licensed under the terms of the {{GNU Affero General Public License +# version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_43.RULE b/src/licensedcode/data/rules/agpl-3.0_43.RULE index aabf2ba388..a4bed9d94a 100644 --- a/src/licensedcode/data/rules/agpl-3.0_43.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_43.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/agpl-3.0.html --- -@license GNU Affero General Public License version 3 {@link http://www.gnu.org/licenses/agpl-3.0.html} \ No newline at end of file +@license {{GNU Affero General Public License version 3}} {@link http://www.gnu.org/licenses/agpl-3.0.html} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_44.RULE b/src/licensedcode/data/rules/agpl-3.0_44.RULE index dddff884f3..191e6930a7 100644 --- a/src/licensedcode/data/rules/agpl-3.0_44.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_44.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -spec.license = "GNU AGPL 3.0" \ No newline at end of file +spec.license = "{{GNU AGPL 3.0}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_45.RULE b/src/licensedcode/data/rules/agpl-3.0_45.RULE index 78ff78498b..75e7d3a214 100644 --- a/src/licensedcode/data/rules/agpl-3.0_45.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_45.RULE @@ -3,5 +3,4 @@ license_expression: agpl-3.0 is_license_notice: yes relevance: 100 --- - -Software is free software released under the "GNU Affero General Public License v3.0" \ No newline at end of file +Software is free software released under the "{{GNU Affero General Public License v3.0"}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_46.RULE b/src/licensedcode/data/rules/agpl-3.0_46.RULE index c1c684c600..faba33bb02 100644 --- a/src/licensedcode/data/rules/agpl-3.0_46.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_46.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- - GNU Affero General Public License v3 + {{GNU Affero General Public License v3}} http://www.fsf.org/licensing/licenses/agpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_5.RULE b/src/licensedcode/data/rules/agpl-3.0_5.RULE index b2d893ae7a..45da4ba892 100644 --- a/src/licensedcode/data/rules/agpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_5.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0_500.RULE b/src/licensedcode/data/rules/agpl-3.0_500.RULE index cd6984cdc2..448d918205 100644 --- a/src/licensedcode/data/rules/agpl-3.0_500.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_500.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Licensed under the GNU Affero General Public License v3.0. See LICENSE in the project root for license information. \ No newline at end of file +Licensed under the {{GNU Affero General Public License v3.0}}. See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_501.RULE b/src/licensedcode/data/rules/agpl-3.0_501.RULE index 20011b4243..c540494299 100644 --- a/src/licensedcode/data/rules/agpl-3.0_501.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_501.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -//You should have received a copy of the GNU Affero General Public License +//You should have received a copy of the {{GNU Affero General Public License}} //along with this program. If not, see . // // See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_54.RULE b/src/licensedcode/data/rules/agpl-3.0_54.RULE index d28865cb34..7104cb9b1c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_54.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_54.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://www.gnu.org/licenses/agpl-3.0.html diff --git a/src/licensedcode/data/rules/agpl-3.0_55.RULE b/src/licensedcode/data/rules/agpl-3.0_55.RULE index c64d9c0205..c4d046a72c 100644 --- a/src/licensedcode/data/rules/agpl-3.0_55.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_55.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/agpl-3.0_6.RULE b/src/licensedcode/data/rules/agpl-3.0_6.RULE index d4da3c249c..9d6783285e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_6.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_6.RULE @@ -4,8 +4,8 @@ is_license_reference: yes relevance: 90 --- -AGPL 3.0 -AGPL v3.0 +{{AGPL 3.0}} +{{AGPL v3.0}} AGPL3 AGPLv3 -AGPL 3.0 \ No newline at end of file +{{AGPL 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_8.RULE b/src/licensedcode/data/rules/agpl-3.0_8.RULE index 38ea746762..35cb518a7f 100644 --- a/src/licensedcode/data/rules/agpl-3.0_8.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_8.RULE @@ -8,7 +8,7 @@ ignorable_urls: - GNU Affero General Public License v3 + {{GNU Affero General Public License v3}} http://www.fsf.org/licensing/licenses/agpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_82.RULE b/src/licensedcode/data/rules/agpl-3.0_82.RULE index 020523496e..d35348d312 100644 --- a/src/licensedcode/data/rules/agpl-3.0_82.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_82.RULE @@ -1,7 +1,8 @@ --- license_expression: agpl-3.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -gnu agpl 3.0 \ No newline at end of file +GNU AGPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_98.RULE b/src/licensedcode/data/rules/agpl-3.0_98.RULE index 36113b21a2..cd12cfe6f6 100644 --- a/src/licensedcode/data/rules/agpl-3.0_98.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_98.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- You can use, redistribute, and/or modify -this code under the terms of the GNU Affero General Public License -version 3. +this code under the terms of the {{GNU Affero General Public License +version 3}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Affero General Public License for more details. +{{GNU Affero General Public License}} for more details. -You should have received a copy of the GNU Affero General Public License +You should have received a copy of the {{GNU Affero General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_99.RULE b/src/licensedcode/data/rules/agpl-3.0_99.RULE index 61c6e9f9b9..b51a3c40e2 100644 --- a/src/licensedcode/data/rules/agpl-3.0_99.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_99.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under AGPL-3.0 License. \ No newline at end of file +Released under {{AGPL-3.0 License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_jqh_1.RULE b/src/licensedcode/data/rules/agpl-3.0_jqh_1.RULE index 8da0bd856f..4c9367e7b9 100644 --- a/src/licensedcode/data/rules/agpl-3.0_jqh_1.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_jqh_1.RULE @@ -8,7 +8,7 @@ ignorable_urls: --- * jQuery History is free software; You can redistribute it and/or modify it under the terms of - * the GNU Affero General Public License version 3 as published by the Free Software Foundation. + * the {{GNU Affero General Public License version 3}} as published by the Free Software Foundation. * You don't have to do anything special to accept the license and you don’t have to notify * anyone which that you have made that decision. * diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_1.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_1.RULE new file mode 100644 index 0000000000..8f61285157 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_1.RULE @@ -0,0 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Affero General Public License + * as published by the Free Software Foundation, version 3 of + * the License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_10.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_10.RULE new file mode 100644 index 0000000000..0ec0afc8d7 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_10.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU AFFERO GENERAL PUBLIC LICENSE (AGPL) Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_11.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_11.RULE new file mode 100644 index 0000000000..86066d37fd --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_11.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu affero general public license as published by free software foundation version 3 of the license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_12.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_12.RULE new file mode 100644 index 0000000000..2174c94b02 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_12.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +is_required_phrase: yes +relevance: 100 +--- + +Licensed under GNU AGPL-3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_13.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_13.RULE new file mode 100644 index 0000000000..a2a844e614 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_13.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu affero general public license as published by free software foundation either version 3 of the license or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_14.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_14.RULE new file mode 100644 index 0000000000..9dbf73f48a --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_14.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +is_required_phrase: yes +relevance: 100 +--- + +released under [GNU AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_15.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_15.RULE new file mode 100644 index 0000000000..cd0a8b8c1b --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_15.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Affero General Public License (AGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_16.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_16.RULE new file mode 100644 index 0000000000..7f5e9ceb13 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_16.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under AGPL v3 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_17.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_17.RULE new file mode 100644 index 0000000000..6bf044021b --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_17.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_tag: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Affero General Public License * as published by Free Software Foundation, version 3 of * License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_18.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_18.RULE new file mode 100644 index 0000000000..a6fb54420e --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_18.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Affero General Public License as published by Free Software Foundation, either version 3 of License, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_19.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_19.RULE new file mode 100644 index 0000000000..372d75bb1a --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_19.RULE @@ -0,0 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/AGPL-3.0-only.html +--- + +[GNU Affero General Public License 3.0 only](https://spdx.org/licenses/AGPL-3.0-only.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_2.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_2.RULE new file mode 100644 index 0000000000..e1c6c5b480 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_2.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_3.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_3.RULE new file mode 100644 index 0000000000..d6e076dcd3 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_3.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Affero General Public License, version 3 (AGPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_4.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_4.RULE new file mode 100644 index 0000000000..0faba7bdd1 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_4.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +Licensed under the GNU AGPL-3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_5.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_5.RULE new file mode 100644 index 0000000000..0fb329eae5 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_5.RULE @@ -0,0 +1,10 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Affero General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_6.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_6.RULE new file mode 100644 index 0000000000..9f64e116aa --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_6.RULE @@ -0,0 +1,9 @@ +--- +license_expression: agpl-3.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +released +under the [GNU AGPL v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_7.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_7.RULE new file mode 100644 index 0000000000..d22bb6f77b --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_7.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Affero General Public License (the [AGPLv3] \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_8.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_8.RULE new file mode 100644 index 0000000000..e274d73e49 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Affero General Public License (GNU AGPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_required_phrase_9.RULE b/src/licensedcode/data/rules/agpl-3.0_required_phrase_9.RULE new file mode 100644 index 0000000000..275d86b732 --- /dev/null +++ b/src/licensedcode/data/rules/agpl-3.0_required_phrase_9.RULE @@ -0,0 +1,8 @@ +--- +license_expression: agpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +AGPL-3.0-only (LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/agpl-3.0_url_badge.RULE b/src/licensedcode/data/rules/agpl-3.0_url_badge.RULE index b8462a748f..5b23ed5c9e 100644 --- a/src/licensedcode/data/rules/agpl-3.0_url_badge.RULE +++ b/src/licensedcode/data/rules/agpl-3.0_url_badge.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/agpl-3.0 --- -[![License: AGPL v3](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0) \ No newline at end of file +[![License: {{AGPL v3}}](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1.SPDX.RULE b/src/licensedcode/data/rules/apache-1.1.SPDX.RULE index d3a6e95c4d..a05e502a1a 100644 --- a/src/licensedcode/data/rules/apache-1.1.SPDX.RULE +++ b/src/licensedcode/data/rules/apache-1.1.SPDX.RULE @@ -16,7 +16,7 @@ ignorable_emails: --- /* ==================================================================== - * The Apache Software License, Version 1.1 + * The {{Apache Software License, Version 1.1}} * * Copyright (c) The Apache Software Foundation. All rights * reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_0.RULE b/src/licensedcode/data/rules/apache-1.1_0.RULE index ff3180ee27..8d57c27e14 100644 --- a/src/licensedcode/data/rules/apache-1.1_0.RULE +++ b/src/licensedcode/data/rules/apache-1.1_0.RULE @@ -5,4 +5,4 @@ relevance: 100 --- and is licensed under the -Apache Software License, Version 1.1, \ No newline at end of file +{{Apache Software License, Version 1.1}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_100.RULE b/src/licensedcode/data/rules/apache-1.1_100.RULE index e20c991640..ac19f959d4 100644 --- a/src/licensedcode/data/rules/apache-1.1_100.RULE +++ b/src/licensedcode/data/rules/apache-1.1_100.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under Apache 1.1 \ No newline at end of file +under {{Apache 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_103.RULE b/src/licensedcode/data/rules/apache-1.1_103.RULE index 9600f522bf..f0b313c34f 100644 --- a/src/licensedcode/data/rules/apache-1.1_103.RULE +++ b/src/licensedcode/data/rules/apache-1.1_103.RULE @@ -15,7 +15,7 @@ ignorable_emails: --- * ============================================================================ - * The Apache Software License, Version 1.1 + * The {{Apache Software License, Version 1.1}} * ============================================================================ * * Copyright (C) 1999 The Apache Software Foundation. All rights reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_104.RULE b/src/licensedcode/data/rules/apache-1.1_104.RULE index 04caa8a0b7..556836f3b5 100644 --- a/src/licensedcode/data/rules/apache-1.1_104.RULE +++ b/src/licensedcode/data/rules/apache-1.1_104.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/Apache-1.1 \ No newline at end of file +licenses.nuget.org/{{Apache-1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_105.RULE b/src/licensedcode/data/rules/apache-1.1_105.RULE index f5fb250e8d..013b2cb11c 100644 --- a/src/licensedcode/data/rules/apache-1.1_105.RULE +++ b/src/licensedcode/data/rules/apache-1.1_105.RULE @@ -1,6 +1,7 @@ --- license_expression: apache-1.1 is_license_reference: yes +is_required_phrase: yes relevance: 99 --- diff --git a/src/licensedcode/data/rules/apache-1.1_11.RULE b/src/licensedcode/data/rules/apache-1.1_11.RULE index f9c560e374..61e6665e9e 100644 --- a/src/licensedcode/data/rules/apache-1.1_11.RULE +++ b/src/licensedcode/data/rules/apache-1.1_11.RULE @@ -13,7 +13,7 @@ ignorable_urls: - http://www.apache.org/ --- -* The Apache Software License, Version 1.1 +* The {{Apache Software License, Version 1.1}} * * Copyright (c) The Apache Software Foundation. All rights * reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_116.RULE b/src/licensedcode/data/rules/apache-1.1_116.RULE index 7d13be7679..da2882f985 100644 --- a/src/licensedcode/data/rules/apache-1.1_116.RULE +++ b/src/licensedcode/data/rules/apache-1.1_116.RULE @@ -10,6 +10,6 @@ ignorable_urls: This product includes software developed by the Apache Software Foundation (http://www.apache.org) - Your use of the code is subject to the terms and conditions of the Apache License, Version 1.1, + Your use of the code is subject to the terms and conditions of the {{Apache License, Version 1.1}}, available at http://www.apache.org/licenses/LICENSE-1.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_117.RULE b/src/licensedcode/data/rules/apache-1.1_117.RULE index 0610300fb1..113d0fccec 100644 --- a/src/licensedcode/data/rules/apache-1.1_117.RULE +++ b/src/licensedcode/data/rules/apache-1.1_117.RULE @@ -15,10 +15,10 @@ ignorable_emails: --- /* ==================================================================== - * The OpenSymphony Software License, Version 1.1 + * The {{OpenSymphony Software License, Version 1.1}} * - * (this license is derived and fully compatible with the Apache Software - * License - see http://www.apache.org/LICENSE.txt) + * ({{this license is derived and fully compatible with the Apache Software + * License}} - see http://www.apache.org/LICENSE.txt) * * Copyright (c) 2001 The OpenSymphony Group. All rights reserved. * diff --git a/src/licensedcode/data/rules/apache-1.1_12.RULE b/src/licensedcode/data/rules/apache-1.1_12.RULE index 2550047c40..347e14ffa0 100644 --- a/src/licensedcode/data/rules/apache-1.1_12.RULE +++ b/src/licensedcode/data/rules/apache-1.1_12.RULE @@ -15,7 +15,7 @@ ignorable_emails: /* * ============================================================================ - * The Apache Software License, Version 1.1 + * The {{Apache Software License, Version 1.1}} * ============================================================================ * * Copyright (C) The Apache Software Foundation. All diff --git a/src/licensedcode/data/rules/apache-1.1_13.RULE b/src/licensedcode/data/rules/apache-1.1_13.RULE index d60fbccb7b..b3d8511c39 100644 --- a/src/licensedcode/data/rules/apache-1.1_13.RULE +++ b/src/licensedcode/data/rules/apache-1.1_13.RULE @@ -17,7 +17,7 @@ ignorable_urls: // The Apache license appears below (as required). /* - * The Apache Software License, Version 1.1 + * The {{Apache Software License, Version 1.1}} * * Copyright (c) 1999-2000 The Apache Software Foundation. All rights * reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_14.RULE b/src/licensedcode/data/rules/apache-1.1_14.RULE index 87d316ec6e..1fef11df0b 100644 --- a/src/licensedcode/data/rules/apache-1.1_14.RULE +++ b/src/licensedcode/data/rules/apache-1.1_14.RULE @@ -13,7 +13,7 @@ ignorable_urls: - http://www.apache.org/ --- -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} Copyright (c) The Apache Software Foundation. All rights reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_16.RULE b/src/licensedcode/data/rules/apache-1.1_16.RULE index 83420c0abc..b21ebb6146 100644 --- a/src/licensedcode/data/rules/apache-1.1_16.RULE +++ b/src/licensedcode/data/rules/apache-1.1_16.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Apache Software License, Version 1.1, \ No newline at end of file +licensed under the {{Apache Software License, Version 1.1}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_17.RULE b/src/licensedcode/data/rules/apache-1.1_17.RULE index 5ea59635f9..3e6447d00c 100644 --- a/src/licensedcode/data/rules/apache-1.1_17.RULE +++ b/src/licensedcode/data/rules/apache-1.1_17.RULE @@ -12,7 +12,7 @@ ignorable_emails: --- ============================================================================ - The Apache Software License, Version 1.1 + The {{Apache Software License, Version 1.1}} ============================================================================ diff --git a/src/licensedcode/data/rules/apache-1.1_19.RULE b/src/licensedcode/data/rules/apache-1.1_19.RULE index d786e69968..7f775c72b3 100644 --- a/src/licensedcode/data/rules/apache-1.1_19.RULE +++ b/src/licensedcode/data/rules/apache-1.1_19.RULE @@ -12,7 +12,7 @@ ignorable_emails: - newmana@users.sourceforge.net --- -* The Apache Software License, Version 1.1 +* The {{Apache Software License, Version 1.1}} * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/apache-1.1_21.RULE b/src/licensedcode/data/rules/apache-1.1_21.RULE index c73e296a55..0ab0b775a0 100644 --- a/src/licensedcode/data/rules/apache-1.1_21.RULE +++ b/src/licensedcode/data/rules/apache-1.1_21.RULE @@ -14,7 +14,7 @@ ignorable_emails: - apache@apache.org --- -* The Apache Software License, Version 1.1 +* The {{Apache Software License, Version 1.1}} * * Copyright (c) 1999-2001 The Apache Software Foundation. All rights * reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_22.RULE b/src/licensedcode/data/rules/apache-1.1_22.RULE index 2466e09abe..1044169ea6 100644 --- a/src/licensedcode/data/rules/apache-1.1_22.RULE +++ b/src/licensedcode/data/rules/apache-1.1_22.RULE @@ -11,7 +11,7 @@ ignorable_emails: - newmana@users.sourceforge.net --- -* The Apache Software License, Version 1.1 +* The {{Apache Software License, Version 1.1}} * * * Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/apache-1.1_22_os.RULE b/src/licensedcode/data/rules/apache-1.1_22_os.RULE index c2fc07b566..f79e6ae895 100644 --- a/src/licensedcode/data/rules/apache-1.1_22_os.RULE +++ b/src/licensedcode/data/rules/apache-1.1_22_os.RULE @@ -11,9 +11,9 @@ ignorable_emails: - license@opensymphony.com --- -The OpenSymphony Software License, Version 1.1 +The {{OpenSymphony Software License, Version 1.1}} -(this license is derived and fully compatible with the Apache Software License - +({{this license is derived and fully compatible with the Apache Software License}} - see http://www.apache.org/LICENSE.txt) diff --git a/src/licensedcode/data/rules/apache-1.1_23.RULE b/src/licensedcode/data/rules/apache-1.1_23.RULE index 7289492d01..2de17e26c1 100644 --- a/src/licensedcode/data/rules/apache-1.1_23.RULE +++ b/src/licensedcode/data/rules/apache-1.1_23.RULE @@ -17,7 +17,7 @@ ignorable_emails: - apache@apache.org --- -* The Apache Software License, Version 1.1 +* The {{Apache Software License, Version 1.1}} * * * Copyright (c) The Apache Software Foundation. All rights * diff --git a/src/licensedcode/data/rules/apache-1.1_24.RULE b/src/licensedcode/data/rules/apache-1.1_24.RULE index 940af0ec0a..b049b03a1f 100644 --- a/src/licensedcode/data/rules/apache-1.1_24.RULE +++ b/src/licensedcode/data/rules/apache-1.1_24.RULE @@ -5,7 +5,7 @@ minimum_coverage: 80 notes: Apache 1.1 JRDF variant --- -* The Apache Software License, Version 1.1 +* The {{Apache Software License, Version 1.1}} * * * Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/apache-1.1_25.RULE b/src/licensedcode/data/rules/apache-1.1_25.RULE index ce04795dc0..25cb4a69c6 100644 --- a/src/licensedcode/data/rules/apache-1.1_25.RULE +++ b/src/licensedcode/data/rules/apache-1.1_25.RULE @@ -14,7 +14,7 @@ ignorable_emails: - apache@apache.org --- -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} Copyright (c) The Apache Software Foundation. All rights reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_28.RULE b/src/licensedcode/data/rules/apache-1.1_28.RULE index 25380b4444..8092050606 100644 --- a/src/licensedcode/data/rules/apache-1.1_28.RULE +++ b/src/licensedcode/data/rules/apache-1.1_28.RULE @@ -6,5 +6,5 @@ referenced_filenames: --- and is licensed under the -Apache Software License, Version 1.1, which is in the +{{Apache Software License, Version 1.1}}, which is in the LICENSE.xerces_2_5_0.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_29.RULE b/src/licensedcode/data/rules/apache-1.1_29.RULE index 303d2fec8b..6b3669b565 100644 --- a/src/licensedcode/data/rules/apache-1.1_29.RULE +++ b/src/licensedcode/data/rules/apache-1.1_29.RULE @@ -14,7 +14,7 @@ ignorable_emails: - apache@apache.org --- -* The Apache Software License, Version 1.1 +* The {{Apache Software License, Version 1.1}} * * Copyright (c) 2000-2002 The Apache Software Foundation . All rights * reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_3.RULE b/src/licensedcode/data/rules/apache-1.1_3.RULE index 65e246584a..1da8fcdaf1 100644 --- a/src/licensedcode/data/rules/apache-1.1_3.RULE +++ b/src/licensedcode/data/rules/apache-1.1_3.RULE @@ -17,7 +17,7 @@ ignorable_emails: * * ==================================================================== * - * The Apache Software License, Version 1.1 + * The {{Apache Software License, Version 1.1}} * * Copyright (c) The Apache Software Foundation. All rights * reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_30.RULE b/src/licensedcode/data/rules/apache-1.1_30.RULE index 3c6809058c..755a456191 100644 --- a/src/licensedcode/data/rules/apache-1.1_30.RULE +++ b/src/licensedcode/data/rules/apache-1.1_30.RULE @@ -16,7 +16,7 @@ ignorable_emails: - apache@apache.org --- -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} Copyright (c) 2002 The Apache Software Foundation. All rights reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_32.RULE b/src/licensedcode/data/rules/apache-1.1_32.RULE index e5a5bede74..2b876155f7 100644 --- a/src/licensedcode/data/rules/apache-1.1_32.RULE +++ b/src/licensedcode/data/rules/apache-1.1_32.RULE @@ -6,6 +6,6 @@ notes: Notice found in http://apache.org/licenses/LICENSE-1.1 but it is really an Apache Software Foundation component. " --- -Apache License 1.1 +{{Apache License 1.1}} ------------------ licenses/jrdf.LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_34.RULE b/src/licensedcode/data/rules/apache-1.1_34.RULE index 602d520267..6a5684ec88 100644 --- a/src/licensedcode/data/rules/apache-1.1_34.RULE +++ b/src/licensedcode/data/rules/apache-1.1_34.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Release declaration --- -released under Apache Software License, Version 1.1 \ No newline at end of file +released under {{Apache Software License, Version 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_35.RULE b/src/licensedcode/data/rules/apache-1.1_35.RULE index 3a9bebce82..d474365be5 100644 --- a/src/licensedcode/data/rules/apache-1.1_35.RULE +++ b/src/licensedcode/data/rules/apache-1.1_35.RULE @@ -14,7 +14,7 @@ ignorable_emails: - apache@apache.org --- -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} Copyright (c) The Apache Software Foundation. All rights reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_37.RULE b/src/licensedcode/data/rules/apache-1.1_37.RULE index e5e357fbd7..4b0adf61c8 100644 --- a/src/licensedcode/data/rules/apache-1.1_37.RULE +++ b/src/licensedcode/data/rules/apache-1.1_37.RULE @@ -7,8 +7,8 @@ ignorable_urls: - http://www.apache.org/LICENSE.txt --- -This license is derived and fully compatible with the Apache - Software license, see http://www.apache.org/LICENSE.txt +{{This license is derived and fully compatible with the Apache + Software license}}, see http://www.apache.org/LICENSE.txt Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/apache-1.1_38.RULE b/src/licensedcode/data/rules/apache-1.1_38.RULE index 62516bba67..fbb1992fb0 100644 --- a/src/licensedcode/data/rules/apache-1.1_38.RULE +++ b/src/licensedcode/data/rules/apache-1.1_38.RULE @@ -9,7 +9,7 @@ ignorable_emails: - info@caucho.com --- -* The Apache Software License, Version 1.1 +* The {{Apache Software License, Version 1.1}} * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/apache-1.1_42.RULE b/src/licensedcode/data/rules/apache-1.1_42.RULE index 7beabefcd9..b10fcb56de 100644 --- a/src/licensedcode/data/rules/apache-1.1_42.RULE +++ b/src/licensedcode/data/rules/apache-1.1_42.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-1.1.txt --- -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} http://www.apache.org/licenses/LICENSE-1.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_43.RULE b/src/licensedcode/data/rules/apache-1.1_43.RULE index 220d28f4f8..2c86589775 100644 --- a/src/licensedcode/data/rules/apache-1.1_43.RULE +++ b/src/licensedcode/data/rules/apache-1.1_43.RULE @@ -13,7 +13,7 @@ ignorable_emails: - apache@apache.org --- -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} Copyright (c) 2000 The Apache Software Foundation. All rights reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_44.RULE b/src/licensedcode/data/rules/apache-1.1_44.RULE index 60a08fc6d6..a549d0768b 100644 --- a/src/licensedcode/data/rules/apache-1.1_44.RULE +++ b/src/licensedcode/data/rules/apache-1.1_44.RULE @@ -6,8 +6,8 @@ ignorable_urls: --- * - * This license is derived and fully compatible with the Apache Software - * license, see http://www.apache.org/LICENSE.txt + * {{This license is derived and fully compatible with the Apache Software + * license}}, see http://www.apache.org/LICENSE.txt * * * Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/apache-1.1_45.RULE b/src/licensedcode/data/rules/apache-1.1_45.RULE index 95f1337fff..5301972fab 100644 --- a/src/licensedcode/data/rules/apache-1.1_45.RULE +++ b/src/licensedcode/data/rules/apache-1.1_45.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://www.apache.org/ --- -APACHE 1.1 +{{APACHE 1.1}} Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/apache-1.1_46.RULE b/src/licensedcode/data/rules/apache-1.1_46.RULE index a6c8fef930..2ea7aaa1c9 100644 --- a/src/licensedcode/data/rules/apache-1.1_46.RULE +++ b/src/licensedcode/data/rules/apache-1.1_46.RULE @@ -20,7 +20,7 @@ ignorable_emails: The Apache license appears below (as required). -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} Copyright (c) The Apache Software Foundation. All rights reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_47.RULE b/src/licensedcode/data/rules/apache-1.1_47.RULE index 45c4bbb0e9..5c57b35c4d 100644 --- a/src/licensedcode/data/rules/apache-1.1_47.RULE +++ b/src/licensedcode/data/rules/apache-1.1_47.RULE @@ -10,7 +10,7 @@ ignorable_emails: - apache@apache.org --- -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/apache-1.1_48.RULE b/src/licensedcode/data/rules/apache-1.1_48.RULE index a9ea87e05b..18650a62e8 100644 --- a/src/licensedcode/data/rules/apache-1.1_48.RULE +++ b/src/licensedcode/data/rules/apache-1.1_48.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.apache.org/LICENSE.txt --- -(this license is derived and fully compatible with the Apache Software -License - see http://www.apache.org/LICENSE.txt) \ No newline at end of file +({{this license is derived and fully compatible with the Apache Software +License}} - see http://www.apache.org/LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_49.RULE b/src/licensedcode/data/rules/apache-1.1_49.RULE index c0b750b327..ee12788812 100644 --- a/src/licensedcode/data/rules/apache-1.1_49.RULE +++ b/src/licensedcode/data/rules/apache-1.1_49.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/LICENSE.txt --- -The OpenSymphony Software License, Version 1.1 +The {{OpenSymphony Software License, Version 1.1}} -(this license is derived and fully compatible with the Apache Software -License - see http://www.apache.org/LICENSE.txt) \ No newline at end of file +({{this license is derived and fully compatible with the Apache Software +License}} - see http://www.apache.org/LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_5.RULE b/src/licensedcode/data/rules/apache-1.1_5.RULE index 295aa155fe..4a75ae592a 100644 --- a/src/licensedcode/data/rules/apache-1.1_5.RULE +++ b/src/licensedcode/data/rules/apache-1.1_5.RULE @@ -3,6 +3,6 @@ license_expression: apache-1.1 is_license_notice: yes --- -# This software is published under the terms of the Apache Software License # -# version 1.1, a copy of which has been included with this distribution in # +# This software is published under the terms of the {{Apache Software License # +# version 1.1}}, a copy of which has been included with this distribution in # # the LICENSE file. # \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_50.RULE b/src/licensedcode/data/rules/apache-1.1_50.RULE index ff4015860a..0abd438344 100644 --- a/src/licensedcode/data/rules/apache-1.1_50.RULE +++ b/src/licensedcode/data/rules/apache-1.1_50.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The OpenSymphony Software License, Version 1.1 \ No newline at end of file +The {{OpenSymphony Software License, Version 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_51.RULE b/src/licensedcode/data/rules/apache-1.1_51.RULE index 4008b6e4d4..3e2dae718e 100644 --- a/src/licensedcode/data/rules/apache-1.1_51.RULE +++ b/src/licensedcode/data/rules/apache-1.1_51.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The Apache Software License, Version 1.1 \ No newline at end of file +The {{Apache Software License, Version 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_53.RULE b/src/licensedcode/data/rules/apache-1.1_53.RULE index 46e7099adf..979fe743be 100644 --- a/src/licensedcode/data/rules/apache-1.1_53.RULE +++ b/src/licensedcode/data/rules/apache-1.1_53.RULE @@ -13,11 +13,11 @@ ignorable_emails: - apache@apache.org --- -The complete text of the Apache Software License Version 1.1 is as follows: +The complete text of the {{Apache Software License Version 1.1}} is as follows: /* * ================================================================ - * The Apache Software License, Version 1.1 + * The {{Apache Software License, Version 1.1}} * ================================================================ * * Copyright (C) The Apache Software Foundation. All diff --git a/src/licensedcode/data/rules/apache-1.1_58.RULE b/src/licensedcode/data/rules/apache-1.1_58.RULE index 438f4ee8cd..1c696ca32f 100644 --- a/src/licensedcode/data/rules/apache-1.1_58.RULE +++ b/src/licensedcode/data/rules/apache-1.1_58.RULE @@ -13,7 +13,7 @@ ignorable_emails: - apache@apache.org --- -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} Copyright (c) 2000 The Apache Software Foundation. All rights reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_59.RULE b/src/licensedcode/data/rules/apache-1.1_59.RULE index 450ec0c40e..bf901cb543 100644 --- a/src/licensedcode/data/rules/apache-1.1_59.RULE +++ b/src/licensedcode/data/rules/apache-1.1_59.RULE @@ -13,7 +13,7 @@ ignorable_emails: - apache@apache.org --- -* The Apache Software License, Version 1.1 +* The {{Apache Software License, Version 1.1}} * * Copyright (c) The Apache Software Foundation. All rights * reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_6.RULE b/src/licensedcode/data/rules/apache-1.1_6.RULE index 25e8c2598f..ed7ffad4db 100644 --- a/src/licensedcode/data/rules/apache-1.1_6.RULE +++ b/src/licensedcode/data/rules/apache-1.1_6.RULE @@ -8,8 +8,8 @@ ignorable_urls: Open Software License, Version 1.1 - * This license is derived and fully compatible with the Apache - * Software license, see http://www.apache.org/LICENSE.txt + * {{This license is derived and fully compatible with the Apache + * Software license}}, see http://www.apache.org/LICENSE.txt * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/apache-1.1_61.RULE b/src/licensedcode/data/rules/apache-1.1_61.RULE index 4f1438970b..ac49ecf21a 100644 --- a/src/licensedcode/data/rules/apache-1.1_61.RULE +++ b/src/licensedcode/data/rules/apache-1.1_61.RULE @@ -15,7 +15,7 @@ ignorable_emails: --- /* - * The Apache Software License, Version 1.1 + * The {{Apache Software License, Version 1.1}} * * * Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/apache-1.1_62.RULE b/src/licensedcode/data/rules/apache-1.1_62.RULE index 1eb607c3db..7611df936a 100644 --- a/src/licensedcode/data/rules/apache-1.1_62.RULE +++ b/src/licensedcode/data/rules/apache-1.1_62.RULE @@ -17,7 +17,7 @@ Apache Software License /* ==================================================================== - * The Apache Software License, Version 1.1 + * The {{Apache Software License, Version 1.1}} * * Copyright (c) The Apache Software Foundation. Allrights diff --git a/src/licensedcode/data/rules/apache-1.1_63.RULE b/src/licensedcode/data/rules/apache-1.1_63.RULE index 431cd101e1..eb05bf121d 100644 --- a/src/licensedcode/data/rules/apache-1.1_63.RULE +++ b/src/licensedcode/data/rules/apache-1.1_63.RULE @@ -17,10 +17,10 @@ ignorable_emails: --- is licensed under the -Apache Software License, Version 1.1, which is reproduced below. +{{Apache Software License, Version 1.1}}, which is reproduced below. /* -* The Apache Software License, Version 1.1 +* The {{Apache Software License, Version 1.1}} * * * Copyright (c) The Apache Software Foundation. All rights diff --git a/src/licensedcode/data/rules/apache-1.1_67.RULE b/src/licensedcode/data/rules/apache-1.1_67.RULE index 5043b7c65b..2333b772ef 100644 --- a/src/licensedcode/data/rules/apache-1.1_67.RULE +++ b/src/licensedcode/data/rules/apache-1.1_67.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Available under the Apache 1.1 license. \ No newline at end of file +Available under the {{Apache 1.1 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_68.RULE b/src/licensedcode/data/rules/apache-1.1_68.RULE index 01347a7baa..48dadbead8 100644 --- a/src/licensedcode/data/rules/apache-1.1_68.RULE +++ b/src/licensedcode/data/rules/apache-1.1_68.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Available under the Apache 1.1 license. copyright and licensing has been reviewed and approved by the Apache Software Foundation \ No newline at end of file +Available under the {{Apache 1.1 license}}. copyright and licensing has been reviewed and approved by the Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_69.RULE b/src/licensedcode/data/rules/apache-1.1_69.RULE index 1ba30164d5..575270f17e 100644 --- a/src/licensedcode/data/rules/apache-1.1_69.RULE +++ b/src/licensedcode/data/rules/apache-1.1_69.RULE @@ -14,7 +14,7 @@ ignorable_emails: --- ==================================================================== -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} Copyright (c) The Apache Software Foundation. All rights reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_70.RULE b/src/licensedcode/data/rules/apache-1.1_70.RULE index ac65c222e7..061249d657 100644 --- a/src/licensedcode/data/rules/apache-1.1_70.RULE +++ b/src/licensedcode/data/rules/apache-1.1_70.RULE @@ -1,8 +1,9 @@ --- license_expression: apache-1.1 is_license_tag: yes +is_required_phrase: yes relevance: 90 notes: tag as documented in the Module-Build pod --- -license apache_1_1 \ No newline at end of file +license {{apache_1_1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_71.RULE b/src/licensedcode/data/rules/apache-1.1_71.RULE index 7b8d1c93fa..8ebeb80ed7 100644 --- a/src/licensedcode/data/rules/apache-1.1_71.RULE +++ b/src/licensedcode/data/rules/apache-1.1_71.RULE @@ -14,7 +14,7 @@ ignorable_emails: --- /* ==================================================================== - * The Apache Software License, Version 1.1 + * The {{Apache Software License, Version 1.1}} * * Copyright (c) 2000 The Apache Software Foundation. All rights * reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_72.RULE b/src/licensedcode/data/rules/apache-1.1_72.RULE index bc73cd7d63..cee654b8f9 100644 --- a/src/licensedcode/data/rules/apache-1.1_72.RULE +++ b/src/licensedcode/data/rules/apache-1.1_72.RULE @@ -13,7 +13,7 @@ ignorable_emails: - apache@apache.org --- -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} Copyright (c) 2000 The Apache Software Foundation. All rights reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_73.RULE b/src/licensedcode/data/rules/apache-1.1_73.RULE index 878b8d46b1..87b4a76648 100644 --- a/src/licensedcode/data/rules/apache-1.1_73.RULE +++ b/src/licensedcode/data/rules/apache-1.1_73.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://apache.org/licenses/LICENSE-1.1 --- -The distribution is licensed under the Apache Software License, Version 1.1 (http://apache.org/licenses/LICENSE-1.1). \ No newline at end of file +The distribution is licensed under the {{Apache Software License, Version 1.1}} (http://apache.org/licenses/LICENSE-1.1). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_74.RULE b/src/licensedcode/data/rules/apache-1.1_74.RULE index 99dd72b30d..8f6b8c07af 100644 --- a/src/licensedcode/data/rules/apache-1.1_74.RULE +++ b/src/licensedcode/data/rules/apache-1.1_74.RULE @@ -10,9 +10,9 @@ ignorable_emails: - apache@apache.org --- -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} - The Apache Software License, Version 1.1 + The {{Apache Software License, Version 1.1}} Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/apache-1.1_75.RULE b/src/licensedcode/data/rules/apache-1.1_75.RULE index e696115084..21c5f7e3eb 100644 --- a/src/licensedcode/data/rules/apache-1.1_75.RULE +++ b/src/licensedcode/data/rules/apache-1.1_75.RULE @@ -10,7 +10,7 @@ ignorable_emails: - apache@apache.org --- -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/src/licensedcode/data/rules/apache-1.1_79.RULE b/src/licensedcode/data/rules/apache-1.1_79.RULE index a51565ae53..8ec09669dc 100644 --- a/src/licensedcode/data/rules/apache-1.1_79.RULE +++ b/src/licensedcode/data/rules/apache-1.1_79.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-1.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Apache Software License, version 1.1 \ No newline at end of file +Apache Software License, Version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_82.RULE b/src/licensedcode/data/rules/apache-1.1_82.RULE index 7921a9839f..3e59de38a4 100644 --- a/src/licensedcode/data/rules/apache-1.1_82.RULE +++ b/src/licensedcode/data/rules/apache-1.1_82.RULE @@ -14,10 +14,10 @@ ignorable_emails: - apache@apache.org --- -========================= Apache-1.1 ========================= +========================= {{Apache-1.1}} ========================= -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} Copyright (c) 1999-2003 The Apache Software Foundation. All rights reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_83.RULE b/src/licensedcode/data/rules/apache-1.1_83.RULE index 6191c1b248..fb0aebf92f 100644 --- a/src/licensedcode/data/rules/apache-1.1_83.RULE +++ b/src/licensedcode/data/rules/apache-1.1_83.RULE @@ -5,5 +5,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-1.1.txt --- -The Apache Software License, Version 1.1 +The {{Apache Software License, Version 1.1}} https://www.apache.org/licenses/LICENSE-1.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_89.RULE b/src/licensedcode/data/rules/apache-1.1_89.RULE index d69509899b..eb9c1b9f28 100644 --- a/src/licensedcode/data/rules/apache-1.1_89.RULE +++ b/src/licensedcode/data/rules/apache-1.1_89.RULE @@ -14,7 +14,7 @@ ignorable_emails: - apache@apache.org --- -Apache License 1.1 +{{Apache License 1.1}} Copyright (c) 2000 The Apache Software Foundation. All rights reserved. diff --git a/src/licensedcode/data/rules/apache-1.1_9.RULE b/src/licensedcode/data/rules/apache-1.1_9.RULE index f81118a8f2..3d6193d7b2 100644 --- a/src/licensedcode/data/rules/apache-1.1_9.RULE +++ b/src/licensedcode/data/rules/apache-1.1_9.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Apache License 1.1 \ No newline at end of file +{{Apache License 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_90.RULE b/src/licensedcode/data/rules/apache-1.1_90.RULE index 8a63960ac2..992003f034 100644 --- a/src/licensedcode/data/rules/apache-1.1_90.RULE +++ b/src/licensedcode/data/rules/apache-1.1_90.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://cglib.sourceforge.net/license.htm --- -Licensed under the Apache License, Version 1.1:http://cglib.sourceforge.net/license.htm \ No newline at end of file +Licensed under the {{Apache License, Version 1.1}}:http://cglib.sourceforge.net/license.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_91.RULE b/src/licensedcode/data/rules/apache-1.1_91.RULE index 18617ea228..555186239c 100644 --- a/src/licensedcode/data/rules/apache-1.1_91.RULE +++ b/src/licensedcode/data/rules/apache-1.1_91.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Apache software license. See Apache Software License version 1.1 \ No newline at end of file +licensed under the Apache software license. See {{Apache Software License version 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_92.RULE b/src/licensedcode/data/rules/apache-1.1_92.RULE index d4ad83961d..a1223986e6 100644 --- a/src/licensedcode/data/rules/apache-1.1_92.RULE +++ b/src/licensedcode/data/rules/apache-1.1_92.RULE @@ -13,7 +13,7 @@ ignorable_emails: - apache@apache.org --- -Apache License 1.1 Copyright (c) 2000 The Apache Software Foundation. All +{{Apache License 1.1}} Copyright (c) 2000 The Apache Software Foundation. All rights reserved. Redistribution and use in source and binary forms, with or without modification, diff --git a/src/licensedcode/data/rules/apache-1.1_93.RULE b/src/licensedcode/data/rules/apache-1.1_93.RULE index 3dc95fa13f..404e370758 100644 --- a/src/licensedcode/data/rules/apache-1.1_93.RULE +++ b/src/licensedcode/data/rules/apache-1.1_93.RULE @@ -3,4 +3,4 @@ license_expression: apache-1.1 is_license_reference: yes --- -Apache-1.1 Apache License 1.1 \ No newline at end of file +{{Apache-1.1}} {{Apache License 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_94.RULE b/src/licensedcode/data/rules/apache-1.1_94.RULE index cad3e7b68a..7ac3a18846 100644 --- a/src/licensedcode/data/rules/apache-1.1_94.RULE +++ b/src/licensedcode/data/rules/apache-1.1_94.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: Apache License 1.1 \ No newline at end of file +name: {{Apache License 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_95.RULE b/src/licensedcode/data/rules/apache-1.1_95.RULE index 22b47cf2c0..41a0b9b5dc 100644 --- a/src/licensedcode/data/rules/apache-1.1_95.RULE +++ b/src/licensedcode/data/rules/apache-1.1_95.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Apache License 1.1 Apache-1.1 \ No newline at end of file +{{Apache License 1.1}} {{Apache-1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_96.RULE b/src/licensedcode/data/rules/apache-1.1_96.RULE index f76255a899..205e359053 100644 --- a/src/licensedcode/data/rules/apache-1.1_96.RULE +++ b/src/licensedcode/data/rules/apache-1.1_96.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: Apache License 1.1 \ No newline at end of file +license: {{Apache License 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_97.RULE b/src/licensedcode/data/rules/apache-1.1_97.RULE index d7cde0f282..51d47e0a26 100644 --- a/src/licensedcode/data/rules/apache-1.1_97.RULE +++ b/src/licensedcode/data/rules/apache-1.1_97.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: Apache-1.1 \ No newline at end of file +licenseId: {{Apache-1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_required_phrase_1.RULE b/src/licensedcode/data/rules/apache-1.1_required_phrase_1.RULE new file mode 100644 index 0000000000..107e0548fe --- /dev/null +++ b/src/licensedcode/data/rules/apache-1.1_required_phrase_1.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_tag: yes +is_required_phrase: yes +--- + +apache license version 1 1 diff --git a/src/licensedcode/data/rules/apache-1.1_required_phrase_2.RULE b/src/licensedcode/data/rules/apache-1.1_required_phrase_2.RULE new file mode 100644 index 0000000000..0144faed98 --- /dev/null +++ b/src/licensedcode/data/rules/apache-1.1_required_phrase_2.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_tag: yes +is_required_phrase: yes +--- + +apache software license v1 1 diff --git a/src/licensedcode/data/rules/apache-1.1_required_phrase_3.RULE b/src/licensedcode/data/rules/apache-1.1_required_phrase_3.RULE new file mode 100644 index 0000000000..37c93a1c62 --- /dev/null +++ b/src/licensedcode/data/rules/apache-1.1_required_phrase_3.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_tag: yes +is_required_phrase: yes +--- + +opensymphony software license diff --git a/src/licensedcode/data/rules/apache-1.1_required_phrase_4.RULE b/src/licensedcode/data/rules/apache-1.1_required_phrase_4.RULE new file mode 100644 index 0000000000..35031bf0f6 --- /dev/null +++ b/src/licensedcode/data/rules/apache-1.1_required_phrase_4.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_tag: yes +is_required_phrase: yes +--- + +this license is derived and fully compatible with the apache software license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_required_phrase_5.RULE b/src/licensedcode/data/rules/apache-1.1_required_phrase_5.RULE new file mode 100644 index 0000000000..ada9839f93 --- /dev/null +++ b/src/licensedcode/data/rules/apache-1.1_required_phrase_5.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_tag: yes +is_required_phrase: yes +--- + +{{apache 1 1}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-1.1_required_phrase_6.RULE b/src/licensedcode/data/rules/apache-1.1_required_phrase_6.RULE new file mode 100644 index 0000000000..c936b99d34 --- /dev/null +++ b/src/licensedcode/data/rules/apache-1.1_required_phrase_6.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-1.1 +is_license_tag: yes +is_required_phrase: yes +--- + +this license is derived and fully compatible with apache software license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0-oracle-glassfish.RULE b/src/licensedcode/data/rules/apache-2.0-oracle-glassfish.RULE index e89ace94f7..834ae3acab 100644 --- a/src/licensedcode/data/rules/apache-2.0-oracle-glassfish.RULE +++ b/src/licensedcode/data/rules/apache-2.0-oracle-glassfish.RULE @@ -9,7 +9,7 @@ ignorable_urls: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * - * Oracle licenses this file to You under the Apache License, Version 2.0 + * Oracle licenses this file to You under the {{Apache License, Version 2.0}} * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * diff --git a/src/licensedcode/data/rules/apache-2.0.RULE b/src/licensedcode/data/rules/apache-2.0.RULE index c1c02cffb6..7e4876e65a 100644 --- a/src/licensedcode/data/rules/apache-2.0.RULE +++ b/src/licensedcode/data/rules/apache-2.0.RULE @@ -6,6 +6,6 @@ notes: Common in Apache notices --- ============================================================================= -= NOTICE file corresponding to section 4d of the Apache License Version 2.0 = += NOTICE file corresponding to section 4d of the {{Apache License Version 2.0}} = ============================================================================= This product includes software developed by \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_10.RULE b/src/licensedcode/data/rules/apache-2.0_10.RULE index 331cc81594..624c933eb0 100644 --- a/src/licensedcode/data/rules/apache-2.0_10.RULE +++ b/src/licensedcode/data/rules/apache-2.0_10.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -License: Apache License 2.0 \ No newline at end of file +License: {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_100.RULE b/src/licensedcode/data/rules/apache-2.0_100.RULE index dbd0721959..42cf1cb3d4 100644 --- a/src/licensedcode/data/rules/apache-2.0_100.RULE +++ b/src/licensedcode/data/rules/apache-2.0_100.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This project is licensed under the Apache 2.0 license \ No newline at end of file +This project is {{licensed under the Apache 2.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1000.RULE b/src/licensedcode/data/rules/apache-2.0_1000.RULE index 93d9f94aef..eaecf5526e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1000.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1000.RULE @@ -12,7 +12,7 @@ ignorable_urls: The APL v2.0: - Licensed under the Apache License, Version 2.0 (the "License"); + {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -25,5 +25,5 @@ The APL v2.0: See the License for the specific language governing permissions and limitations under the License. -On Debian systems, the text of the Apache License Version 2.0, +On Debian systems, the text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1001.RULE b/src/licensedcode/data/rules/apache-2.0_1001.RULE index 6dea5e841f..2c5ef057cd 100644 --- a/src/licensedcode/data/rules/apache-2.0_1001.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1001.RULE @@ -7,5 +7,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems, the text of the Apache License Version 2.0, +On Debian systems, the text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1002.RULE b/src/licensedcode/data/rules/apache-2.0_1002.RULE index c624104631..3f86fc3b58 100644 --- a/src/licensedcode/data/rules/apache-2.0_1002.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1002.RULE @@ -9,7 +9,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -22,5 +22,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. -On Debian systems, the text of the Apache License Version 2.0, +On Debian systems, the text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1003.RULE b/src/licensedcode/data/rules/apache-2.0_1003.RULE index 4a5046b979..ad04afda14 100644 --- a/src/licensedcode/data/rules/apache-2.0_1003.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1003.RULE @@ -9,7 +9,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -21,5 +21,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. -On Debian systems, the text of Apache License, Version 2.0 +On Debian systems, the text of {{Apache License, Version 2.0}} can be found in /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1004.RULE b/src/licensedcode/data/rules/apache-2.0_1004.RULE index ad0da56001..7e793cd636 100644 --- a/src/licensedcode/data/rules/apache-2.0_1004.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1004.RULE @@ -9,7 +9,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -22,5 +22,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. -On Debian systems, the text of the Apache License Version 2.0, +On Debian systems, the text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1005.RULE b/src/licensedcode/data/rules/apache-2.0_1005.RULE index ac22ebfc33..ca29f971cc 100644 --- a/src/licensedcode/data/rules/apache-2.0_1005.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1005.RULE @@ -9,7 +9,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . diff --git a/src/licensedcode/data/rules/apache-2.0_1006.RULE b/src/licensedcode/data/rules/apache-2.0_1006.RULE index 5a4d06834d..1dfec91261 100644 --- a/src/licensedcode/data/rules/apache-2.0_1006.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1006.RULE @@ -9,7 +9,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -21,5 +21,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. -On Debian systems, the text of Apache License, Version 2.0 +On Debian systems, the text of {{Apache License, Version 2.0}} can be found in /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1007.RULE b/src/licensedcode/data/rules/apache-2.0_1007.RULE index 086daf0fae..6ee704adc6 100644 --- a/src/licensedcode/data/rules/apache-2.0_1007.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1007.RULE @@ -12,7 +12,7 @@ ignorable_urls: The APL v2.0: - Licensed under the Apache License, Version 2.0 (the "License"); + {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -25,5 +25,5 @@ The APL v2.0: See the License for the specific language governing permissions and limitations under the License. -On Debian systems, the text of the Apache License Version 2.0, +On Debian systems, the text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1008.RULE b/src/licensedcode/data/rules/apache-2.0_1008.RULE index b89cf78c42..7bcd81b719 100644 --- a/src/licensedcode/data/rules/apache-2.0_1008.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1008.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems, the text of the Apache version 2.0 license +{{On Debian systems, the text of the Apache version 2.0 license}} can be found in "/usr/share/common-licenses/Apache-2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1009.RULE b/src/licensedcode/data/rules/apache-2.0_1009.RULE index fb8c5dfcab..9831f1d3ff 100644 --- a/src/licensedcode/data/rules/apache-2.0_1009.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1009.RULE @@ -8,8 +8,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache-2.0 - Licensed under the Apache License, Version 2.0 (the "License"); +{{License: Apache-2.0 + Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -21,5 +21,5 @@ License: Apache-2.0 See the License for the specific language governing permissions and limitations under the License. . - On Debian systems, the text of the Apache version 2.0 license + {{On Debian systems, the text of the Apache version 2.0 license}} can be found in "/usr/share/common-licenses/Apache-2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_101.RULE b/src/licensedcode/data/rules/apache-2.0_101.RULE index 34f4319f27..5cc961198f 100644 --- a/src/licensedcode/data/rules/apache-2.0_101.RULE +++ b/src/licensedcode/data/rules/apache-2.0_101.RULE @@ -6,4 +6,4 @@ relevance: 100 ## License -This project is licensed under the [Apache 2.0](LICENSE) license \ No newline at end of file +This project is {{licensed under the [Apache 2.0](LICENSE}}) license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1010.RULE b/src/licensedcode/data/rules/apache-2.0_1010.RULE index d0bb514985..8a30cd8141 100644 --- a/src/licensedcode/data/rules/apache-2.0_1010.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1010.RULE @@ -7,8 +7,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache-2.0 - Licensed under the Apache License, Version 2.0 (the "License"); +{{License: Apache-2.0 + Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -20,6 +20,6 @@ License: Apache-2.0 See the License for the specific language governing permissions and limitations under the License. . - On Debian systems, the text of the Apache License, Version 2.0 can be + On Debian systems, the text of the {{Apache License, Version 2.0}} can be found in the file - `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file + `{{/usr/share/common-licenses/Apache-2.0}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1011.RULE b/src/licensedcode/data/rules/apache-2.0_1011.RULE index 5174140326..486adaa50c 100644 --- a/src/licensedcode/data/rules/apache-2.0_1011.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1011.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . diff --git a/src/licensedcode/data/rules/apache-2.0_1012.RULE b/src/licensedcode/data/rules/apache-2.0_1012.RULE index 9299e13c87..8eb0ea5b05 100644 --- a/src/licensedcode/data/rules/apache-2.0_1012.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1012.RULE @@ -6,7 +6,7 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. . Unless required by applicable law or agreed to in writing, software @@ -15,6 +15,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. . -On Debian systems, the text of the Apache License version 2.0 +On Debian systems, the text of the {{Apache License version 2.0}} can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1013.RULE b/src/licensedcode/data/rules/apache-2.0_1013.RULE index 09262e1de3..f176877291 100644 --- a/src/licensedcode/data/rules/apache-2.0_1013.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1013.RULE @@ -7,8 +7,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache-2.0 - Licensed under the Apache License, Version 2.0 (the "License"); +{{License: Apache-2.0 + Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -20,6 +20,6 @@ License: Apache-2.0 See the License for the specific language governing permissions and limitations under the License. . - On Debian systems, the text of the Apache License, Version 2.0 can be + On Debian systems, the text of the {{Apache License, Version 2.0}} can be found in the file - `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file + `{{/usr/share/common-licenses/Apache-2.0}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1014.RULE b/src/licensedcode/data/rules/apache-2.0_1014.RULE index 08d82245b3..532c56158d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1014.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1014.RULE @@ -7,5 +7,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems, the text of the Apache Software License version 2 can +On Debian systems, the text of the {{Apache Software License version 2}} can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1015.RULE b/src/licensedcode/data/rules/apache-2.0_1015.RULE index 3cc3ff95d3..08d0c3a83d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1015.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1015.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems, the text of the Apache License, Version 2.0 can be +On Debian systems, the text of the {{Apache License, Version 2.0}} can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1016.RULE b/src/licensedcode/data/rules/apache-2.0_1016.RULE index 437dfc6ace..9eca3cfe47 100644 --- a/src/licensedcode/data/rules/apache-2.0_1016.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1016.RULE @@ -8,10 +8,10 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed to the Apache Software Foundation (ASF) under one or more +{{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 + The ASF licenses this file to You under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -23,5 +23,5 @@ Licensed to the Apache Software Foundation (ASF) under one or more See the License for the specific language governing permissions and limitations under the License. . - On Debian systems, the text of the Apache Software License version 2 can + On Debian systems, the text of the {{Apache Software License version 2}} can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1017.RULE b/src/licensedcode/data/rules/apache-2.0_1017.RULE index a0dd372a39..fefc76dd77 100644 --- a/src/licensedcode/data/rules/apache-2.0_1017.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1017.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems, the text of the Apache License, Version 2.0 can be +On Debian systems, the text of the {{Apache License, Version 2.0}} can be found at /usr/share/common-licenses/Apache-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1018.RULE b/src/licensedcode/data/rules/apache-2.0_1018.RULE index 45403f84e9..e11b318d1e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1018.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1018.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems, the full text of the Apache license version 2 can +On Debian systems, the full text of the {{Apache license version 2}} can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1019.RULE b/src/licensedcode/data/rules/apache-2.0_1019.RULE index cbecee776f..36d8326db5 100644 --- a/src/licensedcode/data/rules/apache-2.0_1019.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1019.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_102.RULE b/src/licensedcode/data/rules/apache-2.0_102.RULE index f334c53ab0..ccd10b72b9 100644 --- a/src/licensedcode/data/rules/apache-2.0_102.RULE +++ b/src/licensedcode/data/rules/apache-2.0_102.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the [Apache 2.0](LICENSE) license \ No newline at end of file +This project is {{licensed under the [Apache 2.0](LICENSE}}) license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1020.RULE b/src/licensedcode/data/rules/apache-2.0_1020.RULE index 61cf12f59b..ac04cdad10 100644 --- a/src/licensedcode/data/rules/apache-2.0_1020.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1020.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems the complete license text of the Apache license version 2.0 +On Debian systems the complete license text of the {{Apache license version 2.0}} can be found at /usr/share/common-licenses/Apache-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1021.RULE b/src/licensedcode/data/rules/apache-2.0_1021.RULE index 308781f48c..0fe7b81f8d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1021.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1021.RULE @@ -1,9 +1,10 @@ --- license_expression: apache-2.0 is_license_notice: yes +relevance: 99 --- This software was submitted by Cisco Systems to the Apache Software Foundation in July 1997. Future revisions and derivatives of this source code must acknowledge Cisco Systems as the original contributor of this module. - All other licensing and usage conditions are those of the Apache Software Foundation. \ No newline at end of file + All other {{licensing and usage conditions are those of the Apache Software Foundation}}. diff --git a/src/licensedcode/data/rules/apache-2.0_1022.RULE b/src/licensedcode/data/rules/apache-2.0_1022.RULE index fbfe5b8eaa..8ffb48d806 100644 --- a/src/licensedcode/data/rules/apache-2.0_1022.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1022.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Code is released under the Apache 2.0 license. \ No newline at end of file +Code is released under the {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1023.RULE b/src/licensedcode/data/rules/apache-2.0_1023.RULE index f84e31a456..0efc93eafa 100644 --- a/src/licensedcode/data/rules/apache-2.0_1023.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1023.RULE @@ -3,7 +3,7 @@ license_expression: apache-2.0 is_license_notice: yes --- -That work is also covered by the Apache 2 License, following copyright: +That work is also covered by the {{Apache 2 License}}, following copyright: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/licensedcode/data/rules/apache-2.0_1024.RULE b/src/licensedcode/data/rules/apache-2.0_1024.RULE index 01624d3fb0..33707f4968 100644 --- a/src/licensedcode/data/rules/apache-2.0_1024.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1024.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -That work is also covered by the Apache 2 License \ No newline at end of file +That work is also covered by the {{Apache 2 License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1025.RULE b/src/licensedcode/data/rules/apache-2.0_1025.RULE index e3738dcc83..b21910513f 100644 --- a/src/licensedcode/data/rules/apache-2.0_1025.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1025.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -covered by the Apache 2 License \ No newline at end of file +covered by the {{Apache 2 License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1026.RULE b/src/licensedcode/data/rules/apache-2.0_1026.RULE index 7381d13221..dc68ac67a3 100644 --- a/src/licensedcode/data/rules/apache-2.0_1026.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1026.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This SDK is distributed under the Apache License, Version 2.0, see LICENSE for more information. \ No newline at end of file +This SDK is distributed under the {{Apache License, Version 2.0}}, see LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1027.RULE b/src/licensedcode/data/rules/apache-2.0_1027.RULE index f343e9e52e..5b3e8fb15e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1027.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1027.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -licensed under the http://www.apache.org/licenses/LICENSE-2.0.html[Apache 2.0] license. \ No newline at end of file +licensed under the http://www.apache.org/licenses/LICENSE-2.0.html[{{Apache 2.0] license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1029.RULE b/src/licensedcode/data/rules/apache-2.0_1029.RULE index 8f8bf3fdb5..03945fc9c6 100644 --- a/src/licensedcode/data/rules/apache-2.0_1029.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1029.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The Apache 2.0 License text \ No newline at end of file +The {{Apache 2.0 License}} text \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_103.RULE b/src/licensedcode/data/rules/apache-2.0_103.RULE index 4801d61abb..7c4226b801 100644 --- a/src/licensedcode/data/rules/apache-2.0_103.RULE +++ b/src/licensedcode/data/rules/apache-2.0_103.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Code made available under Apache License version 2.0. \ No newline at end of file +Code made available under {{Apache License version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1030.RULE b/src/licensedcode/data/rules/apache-2.0_1030.RULE index bf0ba82188..0a9fe74d69 100644 --- a/src/licensedcode/data/rules/apache-2.0_1030.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1030.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the Apache License, version 2 (“ALv2”), quoted below. \ No newline at end of file +This software is licensed under the {{Apache License, version 2}} (“ALv2”), quoted below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1033.RULE b/src/licensedcode/data/rules/apache-2.0_1033.RULE index ebe1953e3d..f0c9c75e84 100644 --- a/src/licensedcode/data/rules/apache-2.0_1033.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1033.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems, a copy of the Apache license is available in +{{On Debian systems, a copy of the Apache license is available}} in . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1034.RULE b/src/licensedcode/data/rules/apache-2.0_1034.RULE index c55f87bf01..77076fb80a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1034.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1034.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems, a copy of the Apache license is available in +{{On Debian systems, a copy of the Apache license is available}} in /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1035.RULE b/src/licensedcode/data/rules/apache-2.0_1035.RULE index 17ac990e72..ab1da47d4a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1035.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1035.RULE @@ -21,4 +21,4 @@ ignorable_urls: limitations under the License. . {{On Debian systems, a copy of the Apache license is available}} in - . \ No newline at end of file + < file://{{/usr/share/common-licenses/Apache-2.0}} >. diff --git a/src/licensedcode/data/rules/apache-2.0_1037.RULE b/src/licensedcode/data/rules/apache-2.0_1037.RULE index 865434bd78..0ac0e8d7bc 100644 --- a/src/licensedcode/data/rules/apache-2.0_1037.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1037.RULE @@ -7,8 +7,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Unless otherwise specified, all software contained herein is licensed -under the Apache License, Version 2.0 (the "License"); +Unless otherwise specified, all software contained herein is {{licensed +under the Apache License, Version 2.0 (the "License}}"); you may not use this software except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_1039.RULE b/src/licensedcode/data/rules/apache-2.0_1039.RULE index 017ae81ea0..7065f3a609 100644 --- a/src/licensedcode/data/rules/apache-2.0_1039.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1039.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: Apache License 2.0 \ No newline at end of file +name: {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_104.RULE b/src/licensedcode/data/rules/apache-2.0_104.RULE index e522d80821..996e42711a 100644 --- a/src/licensedcode/data/rules/apache-2.0_104.RULE +++ b/src/licensedcode/data/rules/apache-2.0_104.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under Apache License version 2.0. \ No newline at end of file +under {{Apache License version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1041.RULE b/src/licensedcode/data/rules/apache-2.0_1041.RULE index b800a86369..ce77a3573b 100644 --- a/src/licensedcode/data/rules/apache-2.0_1041.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1041.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: Apache-2.0 \ No newline at end of file +licenseId: {{Apache-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1042.RULE b/src/licensedcode/data/rules/apache-2.0_1042.RULE index 25bd811508..a40f071c9e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1042.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1042.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Apache License Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +{{Apache License Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1046.RULE b/src/licensedcode/data/rules/apache-2.0_1046.RULE index 094065c51b..2bad2a6c55 100644 --- a/src/licensedcode/data/rules/apache-2.0_1046.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1046.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'APACHE20': 'Apache-2.0', \ No newline at end of file +'APACHE20': '{{Apache-2.0}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1047.RULE b/src/licensedcode/data/rules/apache-2.0_1047.RULE index 119dba02be..1218397b17 100644 --- a/src/licensedcode/data/rules/apache-2.0_1047.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1047.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'Http://www.apache.org/licenses/LICENSE-2.0': 'Apache-2.0', \ No newline at end of file +'{{Http://www.apache.org/licenses/LICENSE-2.0}}': '{{Apache-2.0}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1048.RULE b/src/licensedcode/data/rules/apache-2.0_1048.RULE index 28b88d79f8..f8ff4f6ad7 100644 --- a/src/licensedcode/data/rules/apache-2.0_1048.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1048.RULE @@ -8,4 +8,4 @@ ignorable_urls: - http://www.apache.org/licenses --- -'Apache 2.0 http://www.apache.org/licenses/': 'Apache-2.0', \ No newline at end of file +'{{Apache 2.0}} http://www.apache.org/licenses/': '{{Apache-2.0}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1049.RULE b/src/licensedcode/data/rules/apache-2.0_1049.RULE index 128278f2a4..a6d8d7d25f 100644 --- a/src/licensedcode/data/rules/apache-2.0_1049.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1049.RULE @@ -8,4 +8,4 @@ ignorable_urls: - http://www.apache.org/licenses/ --- -'Apache 2.0 http://www.apache.org/licenses/ \ No newline at end of file +'{{Apache 2.0}} http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_105.RULE b/src/licensedcode/data/rules/apache-2.0_105.RULE index 500cc3ae56..a5db998be3 100644 --- a/src/licensedcode/data/rules/apache-2.0_105.RULE +++ b/src/licensedcode/data/rules/apache-2.0_105.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under Apache License version 2.0. \ No newline at end of file +available under {{Apache License version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1062.RULE b/src/licensedcode/data/rules/apache-2.0_1062.RULE index 1513957254..c5b24313a5 100644 --- a/src/licensedcode/data/rules/apache-2.0_1062.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1062.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under the Apache 2.0 license. \ No newline at end of file +available under the {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1063.RULE b/src/licensedcode/data/rules/apache-2.0_1063.RULE index abc649fc84..693c49f313 100644 --- a/src/licensedcode/data/rules/apache-2.0_1063.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1063.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Redistributed under the the Apache License 2.0 at http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +Redistributed under the the {{Apache License 2.0}} at http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1064.RULE b/src/licensedcode/data/rules/apache-2.0_1064.RULE index 20c8761f58..a2d4f6cdaf 100644 --- a/src/licensedcode/data/rules/apache-2.0_1064.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1064.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under Apache Licence 2.0 \ No newline at end of file +available under {{Apache Licence 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1065.RULE b/src/licensedcode/data/rules/apache-2.0_1065.RULE index eed84f7302..858a5137f1 100644 --- a/src/licensedcode/data/rules/apache-2.0_1065.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1065.RULE @@ -6,4 +6,4 @@ ignorable_urls: --- ## License -This project is distributed under the Apache license, Version 2.0: http://www.apache.org/licenses/LICENSE-2. \ No newline at end of file +This project is distributed under the {{Apache license, Version 2.0}}: http://www.apache.org/licenses/LICENSE-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1068.RULE b/src/licensedcode/data/rules/apache-2.0_1068.RULE index 335ea37cda..f2fe9a3fca 100644 --- a/src/licensedcode/data/rules/apache-2.0_1068.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1068.RULE @@ -6,8 +6,8 @@ ignorable_urls: --- Unless stated otherwise as described above, all files in this -directory are licensed under the Apache License, Version 2.0 (the -"License"); you may not use these files except in compliance with the +directory are {{licensed under the Apache License, Version 2.0 (the +"License}}"); you may not use these files except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1069.RULE b/src/licensedcode/data/rules/apache-2.0_1069.RULE index 41a48fceba..08ec030687 100644 --- a/src/licensedcode/data/rules/apache-2.0_1069.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1069.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Apache-2.0 Apache License 2.0 \ No newline at end of file +{{Apache-2.0}} {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1072.RULE b/src/licensedcode/data/rules/apache-2.0_1072.RULE index 89566c626d..ea2dcef9c3 100644 --- a/src/licensedcode/data/rules/apache-2.0_1072.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1072.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Apache License 2.0 Apache-2.0 \ No newline at end of file +{{Apache License 2.0}} {{Apache-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1075.RULE b/src/licensedcode/data/rules/apache-2.0_1075.RULE index 71e212ba7c..2f29e2663d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1075.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1075.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 98 --- -also covered by the Apache 2 License, following copyright: \ No newline at end of file +also covered by the {{Apache 2 License}}, following copyright: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1076.RULE b/src/licensedcode/data/rules/apache-2.0_1076.RULE index 6b43a45fd3..a163a9ec36 100644 --- a/src/licensedcode/data/rules/apache-2.0_1076.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1076.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Licensed under the Apache License, Version 2.0, see LICENSE for details \ No newline at end of file +{{Licensed under the Apache License, Version 2.0}}, see LICENSE for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1077.RULE b/src/licensedcode/data/rules/apache-2.0_1077.RULE index 61002a3609..eb5cb367e7 100644 --- a/src/licensedcode/data/rules/apache-2.0_1077.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1077.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -wikipedia.org/wiki/Apache_License#Apache_License_2.0 \ No newline at end of file +{{ wikipedia.org/wiki/Apache_License}}#{{Apache_License_2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1078.RULE b/src/licensedcode/data/rules/apache-2.0_1078.RULE index a39fcef586..03d5c1dfca 100644 --- a/src/licensedcode/data/rules/apache-2.0_1078.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1078.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -See Apache License for terms and restrictions. \ No newline at end of file +See {{Apache License}} for terms and restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1079.RULE b/src/licensedcode/data/rules/apache-2.0_1079.RULE index de873474b4..da15f0d1a5 100644 --- a/src/licensedcode/data/rules/apache-2.0_1079.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1079.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the Apache Software License, Version 2.0 \ No newline at end of file +distributed under {{the Apache Software License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1080.RULE b/src/licensedcode/data/rules/apache-2.0_1080.RULE index e2a2ab12ca..6b104d10c4 100644 --- a/src/licensedcode/data/rules/apache-2.0_1080.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1080.RULE @@ -9,4 +9,4 @@ ignorable_urls: Licensed to under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. - licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. \ No newline at end of file + licenses this file to you under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1081.RULE b/src/licensedcode/data/rules/apache-2.0_1081.RULE index b3a51f5a04..f1a6dc5978 100644 --- a/src/licensedcode/data/rules/apache-2.0_1081.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1081.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -NOTICE file corresponding to section 4(d) of the Apache License, Version 2. \ No newline at end of file +NOTICE file corresponding to section 4(d) of the {{Apache License, Version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1082.RULE b/src/licensedcode/data/rules/apache-2.0_1082.RULE index a1ec908487..d94ce6e56f 100644 --- a/src/licensedcode/data/rules/apache-2.0_1082.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1082.RULE @@ -1,6 +1,7 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 95 --- diff --git a/src/licensedcode/data/rules/apache-2.0_1085.RULE b/src/licensedcode/data/rules/apache-2.0_1085.RULE index ff767b7df6..d4fd3e1344 100644 --- a/src/licensedcode/data/rules/apache-2.0_1085.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1085.RULE @@ -1,6 +1,7 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/apache-2.0_1086.RULE b/src/licensedcode/data/rules/apache-2.0_1086.RULE index 4bf9ea89b4..ae4e865ced 100644 --- a/src/licensedcode/data/rules/apache-2.0_1086.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1086.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: apache-2.0 \ No newline at end of file +licenses: {{apache-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1089.RULE b/src/licensedcode/data/rules/apache-2.0_1089.RULE index 46229d7cb1..40cfd2ae90 100644 --- a/src/licensedcode/data/rules/apache-2.0_1089.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1089.RULE @@ -7,7 +7,7 @@ ignorable_urls: * You may modify and redistribute as long as this attribution remains. * - * Licensed under the Apache License, Version 2.0 (the "License"); + * {{Licensed under the Apache License, Version 2.0 (the "License}}"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * diff --git a/src/licensedcode/data/rules/apache-2.0_1090.RULE b/src/licensedcode/data/rules/apache-2.0_1090.RULE index 3fd8ea7b72..579170f62c 100644 --- a/src/licensedcode/data/rules/apache-2.0_1090.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1090.RULE @@ -2,13 +2,13 @@ license_expression: apache-2.0 is_license_notice: yes ignorable_urls: - - http://{{aws.amazon.com/apache2.0 + - http://aws.amazon.com/apache2.0/ --- You may not use this file except in compliance with the License. A copy of the License is located at - http://{{aws.amazon.com/apache2.0/}} + {{ http://aws.amazon.com/apache2.0/ }} or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express diff --git a/src/licensedcode/data/rules/apache-2.0_1091.RULE b/src/licensedcode/data/rules/apache-2.0_1091.RULE index ffe5d86e10..509a6d07ba 100644 --- a/src/licensedcode/data/rules/apache-2.0_1091.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1091.RULE @@ -1,8 +1,8 @@ --- license_expression: apache-2.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -licensed under the Apache -License, Version 2.0 (the "License"): \ No newline at end of file +Licensed under the Apache License, Version 2.0 (the "License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1093.RULE b/src/licensedcode/data/rules/apache-2.0_1093.RULE index 7e2886c835..80ac95b987 100644 --- a/src/licensedcode/data/rules/apache-2.0_1093.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1093.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the Apache Software License, Version 2.0. \ No newline at end of file +released under {{the Apache Software License, Version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1094.RULE b/src/licensedcode/data/rules/apache-2.0_1094.RULE index 6ec0cf8539..e8e061b74f 100644 --- a/src/licensedcode/data/rules/apache-2.0_1094.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1094.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Apache 2.0 \ No newline at end of file +{{Apache 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1095.RULE b/src/licensedcode/data/rules/apache-2.0_1095.RULE index 6119cc2d06..d0ec45a89c 100644 --- a/src/licensedcode/data/rules/apache-2.0_1095.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1095.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under Apache License 2.0("{{ALv2}}"), \ No newline at end of file +licensed under {{Apache License 2.0}}("{{ALv2}}"), \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1099.RULE b/src/licensedcode/data/rules/apache-2.0_1099.RULE index bafd0b5d15..323aba78b4 100644 --- a/src/licensedcode/data/rules/apache-2.0_1099.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1099.RULE @@ -1,8 +1,9 @@ --- license_expression: apache-2.0 is_license_reference: yes -is_continuous: yes -relevance: 100 +is_required_phrase: yes +relevance: 99 +notes: the + seems to imply "or later" --- -{{Apache-2.0+}} \ No newline at end of file +Apache-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_11.RULE b/src/licensedcode/data/rules/apache-2.0_11.RULE index 963cc396d4..3354d05edf 100644 --- a/src/licensedcode/data/rules/apache-2.0_11.RULE +++ b/src/licensedcode/data/rules/apache-2.0_11.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This file is released under Apache 2.0 \ No newline at end of file +This file is released under {{Apache 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1100.RULE b/src/licensedcode/data/rules/apache-2.0_1100.RULE index b977c938de..5117732a3e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1100.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1100.RULE @@ -5,5 +5,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -open source project licensed under the -[Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0). \ No newline at end of file +open source project {{licensed under the +[Apache License, Version 2.0}}](https://www.apache.org/licenses/LICENSE-2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1101.RULE b/src/licensedcode/data/rules/apache-2.0_1101.RULE index 03136d1ab7..7b376caf99 100644 --- a/src/licensedcode/data/rules/apache-2.0_1101.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1101.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://spdx.org/licenses/Apache-2.0.html --- -- [Apache-2.0](https://spdx.org/licenses/Apache-2.0.html). \ No newline at end of file +- [{{Apache-2.0}}](https://spdx.org/licenses/Apache-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1103.RULE b/src/licensedcode/data/rules/apache-2.0_1103.RULE index bdee293490..805dfc3e01 100644 --- a/src/licensedcode/data/rules/apache-2.0_1103.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1103.RULE @@ -8,6 +8,7 @@ ignorable_authors: - Giuseppe Scrivano ignorable_urls: - https://github.com/opencontainers/runc/issues/2144#issuecomment-543116397 +skip_for_required_phrase_generation: yes --- // Although ebpf.c is {{originally licensed under LGPL-3.0-or-later}}, the author (Giuseppe Scrivano) diff --git a/src/licensedcode/data/rules/apache-2.0_1104.RULE b/src/licensedcode/data/rules/apache-2.0_1104.RULE index 20b812466e..d57d70acf6 100644 --- a/src/licensedcode/data/rules/apache-2.0_1104.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1104.RULE @@ -9,4 +9,4 @@ ignorable_authors: --- // Although ebpf.c is originally licensed under LGPL-3.0-or-later, the author (Giuseppe Scrivano) -// agreed to relicense the file in Apache License 2.0 \ No newline at end of file +// agreed to relicense the file in {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1105.RULE b/src/licensedcode/data/rules/apache-2.0_1105.RULE index 4fe16b2ff4..6ee6a4adf8 100644 --- a/src/licensedcode/data/rules/apache-2.0_1105.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1105.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This project uses [the Apache 2.0 license](./LICENSE). \ No newline at end of file +This project uses [the {{Apache 2.0 license}}](./LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1106.RULE b/src/licensedcode/data/rules/apache-2.0_1106.RULE index cad3531c0e..634a496e79 100644 --- a/src/licensedcode/data/rules/apache-2.0_1106.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1106.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project uses the Apache 2.0 license \ No newline at end of file +This project uses the {{Apache 2.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1107.RULE b/src/licensedcode/data/rules/apache-2.0_1107.RULE index effeb3ccbe..82e00a1cdf 100644 --- a/src/licensedcode/data/rules/apache-2.0_1107.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1107.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -library and tools are licenced under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +library and tools are licenced under {{Apache 2.0}}: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1108.RULE b/src/licensedcode/data/rules/apache-2.0_1108.RULE index bca54e4f45..600bcc725e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1108.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1108.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -library and tools are licenced under Apache 2.0 \ No newline at end of file +library and tools are licenced under {{Apache 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1109.RULE b/src/licensedcode/data/rules/apache-2.0_1109.RULE index d93fb9b45e..24e6933574 100644 --- a/src/licensedcode/data/rules/apache-2.0_1109.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1109.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licenced under Apache 2.0 \ No newline at end of file +licenced under {{Apache 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1111.RULE b/src/licensedcode/data/rules/apache-2.0_1111.RULE index 7f5253f265..7bc47f1c32 100644 --- a/src/licensedcode/data/rules/apache-2.0_1111.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1111.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The software is provided under Apache-2.0. \ No newline at end of file +The software is provided under {{Apache-2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1113.RULE b/src/licensedcode/data/rules/apache-2.0_1113.RULE index dde2b0b3f2..abb0ef4691 100644 --- a/src/licensedcode/data/rules/apache-2.0_1113.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1113.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -released under the Apache 2.0 license. See the [LICENSE](LICENSE) file for details. \ No newline at end of file +released under the {{Apache 2.0 license}}. See the [LICENSE](LICENSE) file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1114.RULE b/src/licensedcode/data/rules/apache-2.0_1114.RULE index b0fe37fb9a..fc2370121a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1114.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1114.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The toolkit itself is licensed as Apache Software License 2.0. \ No newline at end of file +The toolkit itself is licensed as {{Apache Software License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1118.RULE b/src/licensedcode/data/rules/apache-2.0_1118.RULE index bcf15fd3ae..ac42d7c6bf 100644 --- a/src/licensedcode/data/rules/apache-2.0_1118.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1118.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The generated code is also licensed under Apache Software License 2.0 \ No newline at end of file +The generated code is also licensed under {{Apache Software License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1119.RULE b/src/licensedcode/data/rules/apache-2.0_1119.RULE index a23a5735df..26db84be09 100644 --- a/src/licensedcode/data/rules/apache-2.0_1119.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1119.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -### Apache License ### - All the remaining project files are covered by the Apache license: \ No newline at end of file +### {{Apache License}} ### + All the remaining project files are covered by the {{Apache license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1121.RULE b/src/licensedcode/data/rules/apache-2.0_1121.RULE index 7e65aaf7db..25582ed1f0 100644 --- a/src/licensedcode/data/rules/apache-2.0_1121.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1121.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -covered by the Apache license: \ No newline at end of file +covered by the {{Apache license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1131.RULE b/src/licensedcode/data/rules/apache-2.0_1131.RULE index d49350970e..5802a62327 100644 --- a/src/licensedcode/data/rules/apache-2.0_1131.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1131.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -The package is licensed under the Apache License 2.0. \ No newline at end of file +The package is licensed under the {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1132.RULE b/src/licensedcode/data/rules/apache-2.0_1132.RULE index b376c53439..bf79a2e8a3 100644 --- a/src/licensedcode/data/rules/apache-2.0_1132.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1132.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The package is licensed under the Apache License 2.0. \ No newline at end of file +The package is licensed under the {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1133.RULE b/src/licensedcode/data/rules/apache-2.0_1133.RULE index 40a98f4be8..030f6c66cc 100644 --- a/src/licensedcode/data/rules/apache-2.0_1133.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1133.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -package is licensed under the Apache License 2.0. \ No newline at end of file +package is licensed under the {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1137.RULE b/src/licensedcode/data/rules/apache-2.0_1137.RULE index 5ca2a6172a..88c117dbc5 100644 --- a/src/licensedcode/data/rules/apache-2.0_1137.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1137.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -spdx_license="Apache-2.0" \ No newline at end of file +spdx_{{license="Apache-2.0}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1138.RULE b/src/licensedcode/data/rules/apache-2.0_1138.RULE index cc8b4bf055..4d2c1587cf 100644 --- a/src/licensedcode/data/rules/apache-2.0_1138.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1138.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: See https://raw.githubusercontent.com/spring-projects/spring-framework/main/src/docs/dist/license.txt --- -section 4d of the Apache License, Version 2.0 \ No newline at end of file +section 4d of the {{Apache License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1139.RULE b/src/licensedcode/data/rules/apache-2.0_1139.RULE index 1320c84b2c..9a936c4fb3 100644 --- a/src/licensedcode/data/rules/apache-2.0_1139.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1139.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- # Li`cense - released under the Apache 2.0 license. See the [LICENSE](LICENSE) file for details. \ No newline at end of file + released under the {{Apache 2.0 license}}. See the [LICENSE](LICENSE) file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1141.RULE b/src/licensedcode/data/rules/apache-2.0_1141.RULE index 686a51e133..4e487b3a86 100644 --- a/src/licensedcode/data/rules/apache-2.0_1141.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1141.RULE @@ -6,4 +6,4 @@ referenced_filenames: - License.txt --- -Licensed under the Apache-2.0 License. See License.txt in the project root for license information. \ No newline at end of file +{{Licensed under the Apache-2.0 License}}. See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1144.RULE b/src/licensedcode/data/rules/apache-2.0_1144.RULE index 7870216988..690f5f4e01 100644 --- a/src/licensedcode/data/rules/apache-2.0_1144.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1144.RULE @@ -3,7 +3,7 @@ license_expression: apache-2.0 is_license_notice: yes --- -This software component is licensed by ST under Apache License, Version 2.0, +This software component is licensed by ST under {{Apache License, Version 2.0}}, the "License"; You may not use this file except in compliance with the License. You may obtain a copy of the License at: - opensource.org/licenses/Apache-2.0 \ No newline at end of file + {{ opensource.org/licenses/Apache-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1145.RULE b/src/licensedcode/data/rules/apache-2.0_1145.RULE index 5934f57be6..6857276e26 100644 --- a/src/licensedcode/data/rules/apache-2.0_1145.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1145.RULE @@ -3,7 +3,7 @@ license_expression: apache-2.0 is_license_notice: yes --- -This software component is licensed by under Apache License, Version 2.0, +This software component is licensed by under {{Apache License, Version 2.0}}, the "License"; You may not use this file except in compliance with the License. You may obtain a copy of the License at: - opensource.org/licenses/Apache-2.0 \ No newline at end of file + {{ opensource.org/licenses/Apache-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1146.RULE b/src/licensedcode/data/rules/apache-2.0_1146.RULE index 01b909db84..6cee5e0356 100644 --- a/src/licensedcode/data/rules/apache-2.0_1146.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1146.RULE @@ -1,6 +1,7 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/apache-2.0_1147.RULE b/src/licensedcode/data/rules/apache-2.0_1147.RULE index 4e42afdccb..f620533aa2 100644 --- a/src/licensedcode/data/rules/apache-2.0_1147.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1147.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -libraries are under the Apache License 2.0 +libraries are under the {{Apache License 2.0}} (see @url{http://www.apache.org/licenses/LICENSE-2.0} for details) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_115.RULE b/src/licensedcode/data/rules/apache-2.0_115.RULE index d12df2e64c..b7e4f05765 100644 --- a/src/licensedcode/data/rules/apache-2.0_115.RULE +++ b/src/licensedcode/data/rules/apache-2.0_115.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -code is licensed under the Apache-2.0 license. \ No newline at end of file +code is {{licensed under the Apache-2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1150.RULE b/src/licensedcode/data/rules/apache-2.0_1150.RULE index 3faaa448a4..b02b45b8d2 100644 --- a/src/licensedcode/data/rules/apache-2.0_1150.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1150.RULE @@ -7,7 +7,7 @@ ignorable_urls: - Apache License, Version 2.0 + {{Apache License, Version 2.0}} https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/src/licensedcode/data/rules/apache-2.0_1152.RULE b/src/licensedcode/data/rules/apache-2.0_1152.RULE index e9afe26764..9865d6da57 100644 --- a/src/licensedcode/data/rules/apache-2.0_1152.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1152.RULE @@ -6,4 +6,4 @@ referenced_filenames: notes: https://github.com/soajs/soajs.oauth --- -Use of this source code is governed by an Apache license that can be found in the LICENSE file at the root of this repository. \ No newline at end of file +Use of this source code is governed by an {{Apache license}} that can be found in the LICENSE file at the root of this repository. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1153.RULE b/src/licensedcode/data/rules/apache-2.0_1153.RULE index 14fc92b60a..522e76ceec 100644 --- a/src/licensedcode/data/rules/apache-2.0_1153.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1153.RULE @@ -8,8 +8,8 @@ ignorable_urls: - All files contained in this JAR are licensed under the Apache - 2.0 license, unless noted differently in their source (see + All files contained in this JAR are {{licensed under the Apache + 2.0 license}}, unless noted differently in their source (see swing2swt). diff --git a/src/licensedcode/data/rules/apache-2.0_1154.RULE b/src/licensedcode/data/rules/apache-2.0_1154.RULE index 2a881a8d95..e2c1c4af7e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1154.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1154.RULE @@ -8,8 +8,8 @@ ignorable_urls: - All files contained in this JAR are licensed under the Apache - 2.0 license, unless noted differently in their source (see + All files contained in this JAR are {{licensed under the Apache + 2.0 license}}, unless noted differently in their source (see swing2swt). diff --git a/src/licensedcode/data/rules/apache-2.0_1155.RULE b/src/licensedcode/data/rules/apache-2.0_1155.RULE index b33fbe8445..10842fc538 100644 --- a/src/licensedcode/data/rules/apache-2.0_1155.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1155.RULE @@ -3,5 +3,5 @@ license_expression: apache-2.0 is_license_notice: yes --- -All files contained in this JAR are licensed under the Apache 2.0 license, +All files contained in this JAR are {{licensed under the Apache 2.0 license}}, unless noted differently in their source \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1158.RULE b/src/licensedcode/data/rules/apache-2.0_1158.RULE index 9f587236d4..a393a6fd99 100644 --- a/src/licensedcode/data/rules/apache-2.0_1158.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1158.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/apache2.0.php --- -http://www.opensource.org/licenses/apache2.0.php Apache License, 2.0 \ No newline at end of file +http://www.opensource.org/licenses/apache2.0.php {{Apache License, 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_116.RULE b/src/licensedcode/data/rules/apache-2.0_116.RULE index e26ddeaec2..7293c91ea3 100644 --- a/src/licensedcode/data/rules/apache-2.0_116.RULE +++ b/src/licensedcode/data/rules/apache-2.0_116.RULE @@ -8,4 +8,4 @@ referenced_filenames: License ------- -The package is licensed under the Apache License 2.0. Please see the LICENSE file for details. \ No newline at end of file +The package is licensed under the {{Apache License 2.0}}. Please see the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1160.RULE b/src/licensedcode/data/rules/apache-2.0_1160.RULE index 38bdab7dcb..d683fe50a0 100644 --- a/src/licensedcode/data/rules/apache-2.0_1160.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1160.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/apachepl.php --- -http://www.opensource.org/licenses/apachepl.php Apache Software License \ No newline at end of file +http://www.opensource.org/licenses/apachepl.php {{Apache Software License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1161.RULE b/src/licensedcode/data/rules/apache-2.0_1161.RULE index 8d0becff97..4ee915bb86 100644 --- a/src/licensedcode/data/rules/apache-2.0_1161.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1161.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2 --- -under the Apache License, Version 2.0http://www.apache.org/licenses/LICENSE-2 \ No newline at end of file +under the {{Apache License, Version 2}}.0http://www.apache.org/licenses/LICENSE-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1164.RULE b/src/licensedcode/data/rules/apache-2.0_1164.RULE index 23f4802bed..cb89bc3380 100644 --- a/src/licensedcode/data/rules/apache-2.0_1164.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1164.RULE @@ -5,8 +5,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -* The Netty Project licenses this file to you under the Apache License, - * version 2.0 (the "License"); you may not use this file except in compliance +* The Netty Project licenses this file to you under the {{Apache License, + * version 2.0}} (the "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at: * * https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1165.RULE b/src/licensedcode/data/rules/apache-2.0_1165.RULE index c17bbf83f1..d35b4671a3 100644 --- a/src/licensedcode/data/rules/apache-2.0_1165.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1165.RULE @@ -6,10 +6,10 @@ ignorable_urls: --- /* - * Licensed to the Apache Software Foundation (ASF) under one or more + * {{Licensed to the Apache Software Foundation}} (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright owlocationNameEntitieship. - * The ASF licenses this file to You under the Apache License, Version 2.0 + * The ASF licenses this file to You under the {{Apache License, Version 2.0}} * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * @@ -20,4 +20,4 @@ ignorable_urls: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */ + */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1166.RULE b/src/licensedcode/data/rules/apache-2.0_1166.RULE index 4aea9e9288..02eb748c54 100644 --- a/src/licensedcode/data/rules/apache-2.0_1166.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1166.RULE @@ -8,7 +8,7 @@ ignorable_urls: * Please see LICENSE.txt * for applicable license terms and NOTICE.txt for applicable notices. * - * Licensed under the Apache License, Version 2.0 (the "License"); + * {{Licensed under the Apache License, Version 2.0 (the "License}}"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * diff --git a/src/licensedcode/data/rules/apache-2.0_1168.RULE b/src/licensedcode/data/rules/apache-2.0_1168.RULE index 278642e2d8..0f85d7baaf 100644 --- a/src/licensedcode/data/rules/apache-2.0_1168.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1168.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -License Apache 2 +License: Apache 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1169.RULE b/src/licensedcode/data/rules/apache-2.0_1169.RULE index 8e788b91d6..4471a2d292 100644 --- a/src/licensedcode/data/rules/apache-2.0_1169.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1169.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License Apache License v2 +License {{Apache License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1170.RULE b/src/licensedcode/data/rules/apache-2.0_1170.RULE index e877b5ef10..36b180ad71 100644 --- a/src/licensedcode/data/rules/apache-2.0_1170.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1170.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License Apache Software License - Version 2.0 +License {{Apache Software License - Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1171.RULE b/src/licensedcode/data/rules/apache-2.0_1171.RULE index 968ba33cd3..e8798de29c 100644 --- a/src/licensedcode/data/rules/apache-2.0_1171.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1171.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -License Apache Software License - Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) +License {{Apache Software License - Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1172.RULE b/src/licensedcode/data/rules/apache-2.0_1172.RULE index e4eec1b0a2..95e2e3281e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1172.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1172.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License The Apache License, Version 2.0 +License The {{Apache License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1173.RULE b/src/licensedcode/data/rules/apache-2.0_1173.RULE index fbd5711268..3a20e2272e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1173.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1173.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License The Apache Software License, Version 2.0 +License {{The Apache Software License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1174.RULE b/src/licensedcode/data/rules/apache-2.0_1174.RULE index 1cd0eec3fd..6d284a1c15 100644 --- a/src/licensedcode/data/rules/apache-2.0_1174.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1174.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -Apache 2 (http://www.apache.org/licenses/LICENSE-2.0.txt) +{{Apache 2}} (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1175.RULE b/src/licensedcode/data/rules/apache-2.0_1175.RULE index 9de71d4660..aa089fb52a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1175.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1175.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) +{{Apache License 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1176.RULE b/src/licensedcode/data/rules/apache-2.0_1176.RULE index 88b43e2b68..b5394d4acd 100644 --- a/src/licensedcode/data/rules/apache-2.0_1176.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1176.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) +{{Apache License, Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1177.RULE b/src/licensedcode/data/rules/apache-2.0_1177.RULE index fb9a9a1bef..256c69fa7c 100644 --- a/src/licensedcode/data/rules/apache-2.0_1177.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1177.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) +{{Apache License, Version 2.0}} (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1178.RULE b/src/licensedcode/data/rules/apache-2.0_1178.RULE index 8851364099..cef3c35d8e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1178.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1178.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -Apache Software License - Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) +{{Apache Software License - Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1179.RULE b/src/licensedcode/data/rules/apache-2.0_1179.RULE index 5c257c7dee..f062221b4b 100644 --- a/src/licensedcode/data/rules/apache-2.0_1179.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1179.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -Apache-2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) +{{Apache-2.0}} (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1180.RULE b/src/licensedcode/data/rules/apache-2.0_1180.RULE index 5d1abeb57a..80f64be5b1 100644 --- a/src/licensedcode/data/rules/apache-2.0_1180.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1180.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The Apache Software License, Version 2.0 (src/assemble/EHCACHE-CORE-LICENSE.txt) +{{The Apache Software License, Version 2.0}} (src/assemble/EHCACHE-CORE-LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1181.RULE b/src/licensedcode/data/rules/apache-2.0_1181.RULE index da19e89397..7fd7ce2790 100644 --- a/src/licensedcode/data/rules/apache-2.0_1181.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1181.RULE @@ -4,5 +4,5 @@ is_license_tag: yes relevance: 100 --- - - Apache-2.0 +<{{license> + Apache-2}}.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1182.RULE b/src/licensedcode/data/rules/apache-2.0_1182.RULE index 8351194f69..1938866a7f 100644 --- a/src/licensedcode/data/rules/apache-2.0_1182.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1182.RULE @@ -4,5 +4,5 @@ is_license_tag: yes relevance: 100 --- - - Apache 2 \ No newline at end of file +{{ + Apache 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1183.RULE b/src/licensedcode/data/rules/apache-2.0_1183.RULE index 89fb9c979f..5cf689c8bd 100644 --- a/src/licensedcode/data/rules/apache-2.0_1183.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1183.RULE @@ -5,4 +5,4 @@ relevance: 100 --- - Apache License 2.0 \ No newline at end of file + {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1184.RULE b/src/licensedcode/data/rules/apache-2.0_1184.RULE index 8b825dda18..f3fb348983 100644 --- a/src/licensedcode/data/rules/apache-2.0_1184.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1184.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Use of this source code is governed by an Apache license that can be found in the LICENSE file \ No newline at end of file +Use of this source code is governed by an {{Apache license}} that can be found in the LICENSE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1185.RULE b/src/licensedcode/data/rules/apache-2.0_1185.RULE index cfe4305a66..fba3a4e8ff 100644 --- a/src/licensedcode/data/rules/apache-2.0_1185.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1185.RULE @@ -5,4 +5,4 @@ relevance: 100 --- - Apache License v2 \ No newline at end of file + {{Apache License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1186.RULE b/src/licensedcode/data/rules/apache-2.0_1186.RULE index 3139585f0a..87d2e7a644 100644 --- a/src/licensedcode/data/rules/apache-2.0_1186.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1186.RULE @@ -5,4 +5,4 @@ relevance: 100 --- - Apache License, Version 2.0 \ No newline at end of file + {{Apache License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1187.RULE b/src/licensedcode/data/rules/apache-2.0_1187.RULE index dabacea4e1..ac074766a3 100644 --- a/src/licensedcode/data/rules/apache-2.0_1187.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1187.RULE @@ -5,4 +5,4 @@ relevance: 100 --- - Apache Software License - Version 2.0 \ No newline at end of file + {{Apache Software License - Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1188.RULE b/src/licensedcode/data/rules/apache-2.0_1188.RULE index 6a665a3c16..cfa0cff78e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1188.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1188.RULE @@ -5,4 +5,4 @@ relevance: 100 --- - The Apache License, Version 2.0 \ No newline at end of file + The {{Apache License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1189.RULE b/src/licensedcode/data/rules/apache-2.0_1189.RULE index be7c7c3ad7..262e695eb5 100644 --- a/src/licensedcode/data/rules/apache-2.0_1189.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1189.RULE @@ -5,4 +5,4 @@ relevance: 100 --- - The Apache Software License, Version 2.0 \ No newline at end of file + {{The Apache Software License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1190.RULE b/src/licensedcode/data/rules/apache-2.0_1190.RULE index 493c3254ba..85f31ebe6b 100644 --- a/src/licensedcode/data/rules/apache-2.0_1190.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1190.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- - - Apache-2.0 +<{{license> + Apache-2}}.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1191.RULE b/src/licensedcode/data/rules/apache-2.0_1191.RULE index 166c642b4f..350d57fb2e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1191.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1191.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- - - Apache 2 +<{{license> + Apache 2}} (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1192.RULE b/src/licensedcode/data/rules/apache-2.0_1192.RULE index 6e7e30598d..fac7c67ce2 100644 --- a/src/licensedcode/data/rules/apache-2.0_1192.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1192.RULE @@ -5,5 +5,5 @@ relevance: 100 --- - Apache License 2.0 + {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1193.RULE b/src/licensedcode/data/rules/apache-2.0_1193.RULE index d366e4d804..26b7e2d13b 100644 --- a/src/licensedcode/data/rules/apache-2.0_1193.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1193.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - Apache License 2.0 + {{Apache License 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1194.RULE b/src/licensedcode/data/rules/apache-2.0_1194.RULE index 4a836256a8..5719d955cb 100644 --- a/src/licensedcode/data/rules/apache-2.0_1194.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1194.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- - Apache License v2 + {{Apache License v2}} (http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1195.RULE b/src/licensedcode/data/rules/apache-2.0_1195.RULE index bba11ef6b8..b55f0200cd 100644 --- a/src/licensedcode/data/rules/apache-2.0_1195.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1195.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - Apache License, Version 2.0 + {{Apache License, Version 2.0}} (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1196.RULE b/src/licensedcode/data/rules/apache-2.0_1196.RULE index cfc6f3ce7d..2bcba2b29f 100644 --- a/src/licensedcode/data/rules/apache-2.0_1196.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1196.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - Apache License, Version 2.0 + {{Apache License, Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1197.RULE b/src/licensedcode/data/rules/apache-2.0_1197.RULE index 28949fd200..47130b92d9 100644 --- a/src/licensedcode/data/rules/apache-2.0_1197.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1197.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - Apache Software License - Version 2.0 + {{Apache Software License - Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1198.RULE b/src/licensedcode/data/rules/apache-2.0_1198.RULE index edb377c784..a82f8b45c5 100644 --- a/src/licensedcode/data/rules/apache-2.0_1198.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1198.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - The Apache License, Version 2.0 + The {{Apache License, Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1199.RULE b/src/licensedcode/data/rules/apache-2.0_1199.RULE index bd24d48a58..4c37d26ee6 100644 --- a/src/licensedcode/data/rules/apache-2.0_1199.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1199.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - The Apache Software License, Version 2.0 + {{The Apache Software License, Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_12.RULE b/src/licensedcode/data/rules/apache-2.0_12.RULE index ef903e233e..1589183c1a 100644 --- a/src/licensedcode/data/rules/apache-2.0_12.RULE +++ b/src/licensedcode/data/rules/apache-2.0_12.RULE @@ -7,8 +7,8 @@ ignorable_urls: - https://www.apache.org/licenses/ --- -This copy of is licensed under the -Apache (Software) License, version 2.0 ("the License"). +This copy of is licensed under {{the +Apache (Software) License, version 2.0}} ("the License"). See the License for details about distribution rights, and the specific rights regarding derivate works. diff --git a/src/licensedcode/data/rules/apache-2.0_120.RULE b/src/licensedcode/data/rules/apache-2.0_120.RULE index 5332f48ca2..8becc2b3c3 100644 --- a/src/licensedcode/data/rules/apache-2.0_120.RULE +++ b/src/licensedcode/data/rules/apache-2.0_120.RULE @@ -6,4 +6,4 @@ referenced_filenames: - License.txt --- -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. \ No newline at end of file +// {{Licensed under the Apache License, Version 2.0}}. See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1200.RULE b/src/licensedcode/data/rules/apache-2.0_1200.RULE index 144a3dc1ee..28cfb8de70 100644 --- a/src/licensedcode/data/rules/apache-2.0_1200.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1200.RULE @@ -5,5 +5,5 @@ relevance: 100 --- - The Apache Software License, Version 2.0 + {{The Apache Software License, Version 2.0}} (src/assemble/EHCACHE-CORE-LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1201.RULE b/src/licensedcode/data/rules/apache-2.0_1201.RULE index a5fc010441..df062d8d79 100644 --- a/src/licensedcode/data/rules/apache-2.0_1201.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1201.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The original class is published under Apache 2.0 license \ No newline at end of file +The original class is published under {{Apache 2.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1202.RULE b/src/licensedcode/data/rules/apache-2.0_1202.RULE index dd3d8f8476..a99b083467 100644 --- a/src/licensedcode/data/rules/apache-2.0_1202.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1202.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -published under Apache 2.0 license \ No newline at end of file +published under {{Apache 2.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1203.RULE b/src/licensedcode/data/rules/apache-2.0_1203.RULE index 21ad0b62b5..b494f18ece 100644 --- a/src/licensedcode/data/rules/apache-2.0_1203.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1203.RULE @@ -3,11 +3,11 @@ license_expression: apache-2.0 is_license_notice: yes relevance: 95 ignorable_authors: + - the Apache Software Foundation - the Apache Software Foundation http://www.apache.org/ http://www.apache.org - - the Apache Software Foundation. Therefore ignorable_urls: - http://www.apache.org/ --- -developed by the Apache Software Foundation. Therefore: -This product includes software developed by the Apache Software Foundation http://www.apache.org/">http://www.apache.org/ \ No newline at end of file +{{developed by the Apache Software Foundation}}. +This product includes software {{developed by the Apache Software Foundation}} http://www.apache.org/">http://www.apache.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1204.RULE b/src/licensedcode/data/rules/apache-2.0_1204.RULE index bc30b6fed1..78aae94922 100644 --- a/src/licensedcode/data/rules/apache-2.0_1204.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1204.RULE @@ -8,8 +8,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -code is subject to the terms and conditions of the Apache Software License 2.0. A copy of the license is contained in the +code is subject to the terms and conditions of the {{Apache Software License 2.0}}. A copy of the license is contained in the file LICENSE and is also available at http://www.apache.org/licenses/LICENSE-2.0.html. The Apache attribution NOTICE file is included with the Content in - accordance with 4d of the Apache License, Version 2.0. \ No newline at end of file + accordance with 4d of the {{Apache License, Version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1205.RULE b/src/licensedcode/data/rules/apache-2.0_1205.RULE index c33013e7c3..130731224a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1205.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1205.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -code is subject to the terms and conditions of the Apache Software License 2.0. A copy of the license is contained +code is subject to the terms and conditions of the {{Apache Software License 2.0}}. A copy of the license is contained in the file LICENSE and is also available at http://www.apache.org/licenses/LICENSE-2.0.html. -

The Apache attribution NOTICE file is included with the Content in accordance with 4d of the Apache License, Version 2.0.

\ No newline at end of file +

The Apache attribution NOTICE file is included with the Content in accordance with 4d of the {{Apache License, Version 2.0}}.

\ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1206.RULE b/src/licensedcode/data/rules/apache-2.0_1206.RULE index 761229886a..58549c7d6a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1206.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1206.RULE @@ -7,5 +7,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -code is subject to the terms and conditions of the Apache Software License 2.0. A copy of the license is contained in the +code is subject to the terms and conditions of the {{Apache Software License 2.0}}. A copy of the license is contained in the file LICENSE and is also available at http://www.apache.org/licenses/LICENSE-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1207.RULE b/src/licensedcode/data/rules/apache-2.0_1207.RULE index 0f69ea62c0..c3fee544c8 100644 --- a/src/licensedcode/data/rules/apache-2.0_1207.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1207.RULE @@ -6,4 +6,4 @@ referenced_filenames: --- The Apache attribution NOTICE file is included with the Content in - accordance with 4d of the Apache License, Version 2.0. \ No newline at end of file + accordance with 4d of the {{Apache License, Version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1208.RULE b/src/licensedcode/data/rules/apache-2.0_1208.RULE index 8180b23094..fd41f2fe39 100644 --- a/src/licensedcode/data/rules/apache-2.0_1208.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1208.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -code is subject to the terms and conditions of the Apache Software License 2.0. +code is subject to the terms and conditions of the {{Apache Software License 2.0}}. A copy of the license is contained in the file LICENSE and is also available at http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1209.RULE b/src/licensedcode/data/rules/apache-2.0_1209.RULE index 0b0f9dbad9..6dbd9d0eb4 100644 --- a/src/licensedcode/data/rules/apache-2.0_1209.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1209.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -code is subject to the terms and conditions of the Apache Software License 2.0. \ No newline at end of file +code is subject to the terms and conditions of the {{Apache Software License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_121.RULE b/src/licensedcode/data/rules/apache-2.0_121.RULE index 9da1b6449c..49be4c7f36 100644 --- a/src/licensedcode/data/rules/apache-2.0_121.RULE +++ b/src/licensedcode/data/rules/apache-2.0_121.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); you may not use +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use these files except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_1210.RULE b/src/licensedcode/data/rules/apache-2.0_1210.RULE index 12e8ded079..aec5038245 100644 --- a/src/licensedcode/data/rules/apache-2.0_1210.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1210.RULE @@ -6,4 +6,4 @@ referenced_filenames: --- The Apache attribution NOTICE file is included -with the Content in accordance with 4d of the Apache License, Version 2.0. \ No newline at end of file +with the Content in accordance with 4d of the {{Apache License, Version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1211.RULE b/src/licensedcode/data/rules/apache-2.0_1211.RULE index c3fa0210cf..011fe92d43 100644 --- a/src/licensedcode/data/rules/apache-2.0_1211.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1211.RULE @@ -6,4 +6,4 @@ ignorable_urls: --- code is subject to the terms and conditions -of the Apache License, Version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0.html. \ No newline at end of file +of the {{Apache License, Version 2.0}}, available at http://www.apache.org/licenses/LICENSE-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1212.RULE b/src/licensedcode/data/rules/apache-2.0_1212.RULE index 12f2f9e24a..2ae8383b08 100644 --- a/src/licensedcode/data/rules/apache-2.0_1212.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1212.RULE @@ -6,4 +6,4 @@ ignorable_urls: --- code is subject to the terms and conditions -of the Apache License, Version 2.0, available at https://www.apache.org/licenses/LICENSE-2.0.html. \ No newline at end of file +of the {{Apache License, Version 2.0}}, available at https://www.apache.org/licenses/LICENSE-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1213.RULE b/src/licensedcode/data/rules/apache-2.0_1213.RULE index 013bc4c464..b594f47200 100644 --- a/src/licensedcode/data/rules/apache-2.0_1213.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1213.RULE @@ -11,7 +11,7 @@ ignorable_urls: This product includes software developed by the Apache Software Foundation (http://www.apache.org) - Your use of the code is subject to the terms and conditions of the Apache License, Version 2.0, + Your use of the code is subject to the terms and conditions of the {{Apache License, Version 2.0}}, available at http://www.apache.org/licenses/LICENSE-2.0.html. diff --git a/src/licensedcode/data/rules/apache-2.0_1214.RULE b/src/licensedcode/data/rules/apache-2.0_1214.RULE index 69ca2ad716..e661445d8e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1214.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1214.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License Apache-2.0 LICENSE \ No newline at end of file +License {{Apache-2.0 LICENSE}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1215.RULE b/src/licensedcode/data/rules/apache-2.0_1215.RULE index 8fed0b5dc0..417b92dab3 100644 --- a/src/licensedcode/data/rules/apache-2.0_1215.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1215.RULE @@ -2,6 +2,7 @@ license_expression: apache-2.0 is_license_tag: yes relevance: 100 +skip_for_required_phrase_generation: yes --- -License Apache-2 LICENSE \ No newline at end of file +License {{Apache-2}} LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_1216.RULE b/src/licensedcode/data/rules/apache-2.0_1216.RULE index 3daf60b073..9cfcd05e91 100644 --- a/src/licensedcode/data/rules/apache-2.0_1216.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1216.RULE @@ -2,7 +2,8 @@ license_expression: apache-2.0 is_license_tag: yes relevance: 100 +skip_for_required_phrase_generation: yes --- -Bundle-License: "Apache License, Version 2.0";link="https://www.apache - .org/licenses/LICENSE-2.0.txt" \ No newline at end of file +Bundle-License: "{{Apache License, Version 2.0}}";link="{{https://www.apache + .org/licenses/LICENSE-2.0.txt}}" diff --git a/src/licensedcode/data/rules/apache-2.0_1217.RULE b/src/licensedcode/data/rules/apache-2.0_1217.RULE index 5674623341..28082ff38b 100644 --- a/src/licensedcode/data/rules/apache-2.0_1217.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1217.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://opensource.org/licenses/apache2.0.php --- -License: Apache License, Version 2.0 (http://opensource.org/licenses/apache2.0.php) \ No newline at end of file +License: {{Apache License, Version 2.0}} (http://opensource.org/licenses/apache2.0.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_122.RULE b/src/licensedcode/data/rules/apache-2.0_122.RULE index ab13210ebf..155336e296 100644 --- a/src/licensedcode/data/rules/apache-2.0_122.RULE +++ b/src/licensedcode/data/rules/apache-2.0_122.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License v2.0 +Licensed under the {{Apache License v2.0}} http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1220.RULE b/src/licensedcode/data/rules/apache-2.0_1220.RULE index 4909aec436..92e1a4ff22 100644 --- a/src/licensedcode/data/rules/apache-2.0_1220.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1220.RULE @@ -7,5 +7,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -~ License: Apache License, Version 2.0 +~ License: {{Apache License, Version 2.0}} ~ See the license.txt file in the root directory or . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1221.RULE b/src/licensedcode/data/rules/apache-2.0_1221.RULE index 222dff2df6..5bb03cd630 100644 --- a/src/licensedcode/data/rules/apache-2.0_1221.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1221.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- Red Hat Inc. All Rights Reserved. - Released under the Apache Software License 2.0.]]> \ No newline at end of file + Released under the {{Apache Software License 2.0}}.]]> \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1222.RULE b/src/licensedcode/data/rules/apache-2.0_1222.RULE index 6e3e6d81f6..ff4a31b3f2 100644 --- a/src/licensedcode/data/rules/apache-2.0_1222.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1222.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://aws.amazon.com/apache2.0 --- -* Licensed under the Apache License, Version 2.0 (the "License"); +* {{Licensed under the Apache License, Version 2.0 (the "License}}"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * diff --git a/src/licensedcode/data/rules/apache-2.0_1223.RULE b/src/licensedcode/data/rules/apache-2.0_1223.RULE index 8e6f81269c..5a93fbc156 100644 --- a/src/licensedcode/data/rules/apache-2.0_1223.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1223.RULE @@ -11,8 +11,8 @@ ignorable_urls: --- ========================================================================= - == NOTICE file corresponding to section 4(d) of the Apache License, == - == Version 2.0, in this case for the Apache XmlBeans distribution. == + == NOTICE file corresponding to section 4(d) of the {{Apache License, == + == Version 2.0}}, in this case for the Apache XmlBeans distribution. == ========================================================================= This product includes software developed at diff --git a/src/licensedcode/data/rules/apache-2.0_1224.RULE b/src/licensedcode/data/rules/apache-2.0_1224.RULE index 8f289232af..df79d5d52b 100644 --- a/src/licensedcode/data/rules/apache-2.0_1224.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1224.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- ========================================================================= - == NOTICE file corresponding to section 4(d) of the Apache License, == - == Version 2.0, in this case for the Apache XmlBeans distribution. == + == NOTICE file corresponding to section 4(d) of the {{Apache License, == + == Version 2.0}}, in this case for the Apache XmlBeans distribution. == ========================================================================= \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1225.RULE b/src/licensedcode/data/rules/apache-2.0_1225.RULE index 6a8e7b303a..f3a23291c8 100644 --- a/src/licensedcode/data/rules/apache-2.0_1225.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1225.RULE @@ -7,9 +7,9 @@ ignorable_urls: - The Apache Software License, Version 2.0 + {{The Apache Software License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0.txt repo - All files under Apache 2 + {{All files under Apache 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1226.RULE b/src/licensedcode/data/rules/apache-2.0_1226.RULE index 951cab9f32..d007ed3067 100644 --- a/src/licensedcode/data/rules/apache-2.0_1226.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1226.RULE @@ -1,8 +1,8 @@ --- license_expression: apache-2.0 is_license_tag: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 --- -{{All files under Apache 2}} \ No newline at end of file +All files under Apache 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1228.RULE b/src/licensedcode/data/rules/apache-2.0_1228.RULE index c912af378c..dbb26b8b91 100644 --- a/src/licensedcode/data/rules/apache-2.0_1228.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1228.RULE @@ -7,7 +7,7 @@ ignorable_urls: - Apache License 2.0 + {{Apache License 2.0}} http://www.apache.org/licenses/LICENSE-2.0 repo diff --git a/src/licensedcode/data/rules/apache-2.0_123.RULE b/src/licensedcode/data/rules/apache-2.0_123.RULE index 82ecbfb678..2a691251dc 100644 --- a/src/licensedcode/data/rules/apache-2.0_123.RULE +++ b/src/licensedcode/data/rules/apache-2.0_123.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License v2.0 +Licensed under the {{Apache License v2.0}} https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1230.RULE b/src/licensedcode/data/rules/apache-2.0_1230.RULE index 2c03a9d600..f4077f74d9 100644 --- a/src/licensedcode/data/rules/apache-2.0_1230.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1230.RULE @@ -24,7 +24,7 @@ ignorable_urls: * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * - * Licensed under the Apache License, Version 2.0 (the "License"); + * {{Licensed under the Apache License, Version 2.0 (the "License}}"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_1232.RULE b/src/licensedcode/data/rules/apache-2.0_1232.RULE index 3dabdfe792..c2dec1270f 100644 --- a/src/licensedcode/data/rules/apache-2.0_1232.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1232.RULE @@ -7,7 +7,7 @@ ignorable_urls: - Apache License, Version 2.0 + {{Apache License, Version 2.0}} repo http://www.apache.org/licenses/LICENSE-2.0.html diff --git a/src/licensedcode/data/rules/apache-2.0_1234.RULE b/src/licensedcode/data/rules/apache-2.0_1234.RULE index a729af5f62..8b3998b906 100644 --- a/src/licensedcode/data/rules/apache-2.0_1234.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1234.RULE @@ -3,4 +3,4 @@ license_expression: apache-2.0 is_license_notice: yes --- - \ No newline at end of file + \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1235.RULE b/src/licensedcode/data/rules/apache-2.0_1235.RULE index 3a1ace6728..78b74be9a9 100644 --- a/src/licensedcode/data/rules/apache-2.0_1235.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1235.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- ~ All rights reserved. This program and the accompanying materials - ~ are made available under the terms of the Apache License, Version 2.0 which + ~ are made available under the terms of the {{Apache License, Version 2.0}} which ~ accompanies this distribution and is available at ~ http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1238.RULE b/src/licensedcode/data/rules/apache-2.0_1238.RULE index b04fa8bcec..0d444f6d46 100644 --- a/src/licensedcode/data/rules/apache-2.0_1238.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1238.RULE @@ -5,8 +5,8 @@ ignorable_urls: - http://www.apache.org/licenses/ --- -This copy of Jackson JSON processor is licensed under the -Apache (Software) License, version 2.0 ("the License"). +This copy of Jackson JSON processor is licensed under {{the +Apache (Software) License, version 2.0}} ("the License"). See the License for details about distribution rights, and the specific rights regarding derivate works. diff --git a/src/licensedcode/data/rules/apache-2.0_1239.RULE b/src/licensedcode/data/rules/apache-2.0_1239.RULE index 5fc0e0e5a6..40cd12c5f3 100644 --- a/src/licensedcode/data/rules/apache-2.0_1239.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1239.RULE @@ -7,7 +7,7 @@ ignorable_urls: - Apache License, Version 2.0 + {{Apache License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_124.RULE b/src/licensedcode/data/rules/apache-2.0_124.RULE index 62bf8b8b30..225e59b802 100644 --- a/src/licensedcode/data/rules/apache-2.0_124.RULE +++ b/src/licensedcode/data/rules/apache-2.0_124.RULE @@ -1,6 +1,7 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 notes: this is in spanish --- diff --git a/src/licensedcode/data/rules/apache-2.0_1242.RULE b/src/licensedcode/data/rules/apache-2.0_1242.RULE index 18f0495616..89e3bbe487 100644 --- a/src/licensedcode/data/rules/apache-2.0_1242.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1242.RULE @@ -6,11 +6,11 @@ ignorable_urls: --- /** - * Licensed to the Apache Software Foundation (ASF) under one + * {{Licensed to the Apache Software Foundation}} (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the + * to you under the {{Apache License, Version 2.0}} (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * @@ -25,5 +25,5 @@ ignorable_urls: */ /* * Code in this file derives from source code in Woodstox which - * carries a ASL 2.0 license. + * carries a {{ASL 2.0 license}}. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1243.RULE b/src/licensedcode/data/rules/apache-2.0_1243.RULE index 8c04e28688..de203c70f6 100644 --- a/src/licensedcode/data/rules/apache-2.0_1243.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1243.RULE @@ -7,5 +7,5 @@ referenced_filenames: ## Licensing -Jackson 2.x core and extension components are licensed under Apache License 2.0 +Jackson 2.x core and extension components are licensed under {{Apache License 2.0}} To find the details that apply to this artifact see the accompanying LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1244.RULE b/src/licensedcode/data/rules/apache-2.0_1244.RULE index 53e45809e1..5be6b2cbe5 100644 --- a/src/licensedcode/data/rules/apache-2.0_1244.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1244.RULE @@ -7,7 +7,7 @@ ignorable_urls: - Apache License, Version 2.0 + {{Apache License, Version 2.0}} https://aws.amazon.com/apache2.0 repo diff --git a/src/licensedcode/data/rules/apache-2.0_1246.RULE b/src/licensedcode/data/rules/apache-2.0_1246.RULE index 10fcdd705e..11b74aee18 100644 --- a/src/licensedcode/data/rules/apache-2.0_1246.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1246.RULE @@ -7,7 +7,7 @@ ignorable_urls: - The Apache License, Version 2.0 + The {{Apache License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1247.RULE b/src/licensedcode/data/rules/apache-2.0_1247.RULE index 5e5dff4bb8..266bc82ae9 100644 --- a/src/licensedcode/data/rules/apache-2.0_1247.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1247.RULE @@ -4,8 +4,9 @@ is_license_notice: yes ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt - https://www.apache.org/ +is_deprecated: yes --- -From: 'The {{Apache Software Foundation}}' (https://www.apache.org/) +From: 'The Apache Software Foundation' (https://www.apache.org/) License: The {{Apache Software License, Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt) License: The {{Apache Software License, Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt) diff --git a/src/licensedcode/data/rules/apache-2.0_1248.RULE b/src/licensedcode/data/rules/apache-2.0_1248.RULE index be9fb1c9d1..440cd7ade7 100644 --- a/src/licensedcode/data/rules/apache-2.0_1248.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1248.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -governed by an Apache license that can be found in the LICENSE file \ No newline at end of file +governed by an {{Apache license}} that can be found in the LICENSE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_125.RULE b/src/licensedcode/data/rules/apache-2.0_125.RULE index cb041a6ca1..6a9dd20c72 100644 --- a/src/licensedcode/data/rules/apache-2.0_125.RULE +++ b/src/licensedcode/data/rules/apache-2.0_125.RULE @@ -6,4 +6,4 @@ referenced_filenames: - License.txt --- -Licensed under the Apache License, Version 2.0. See License.txt in t \ No newline at end of file +{{Licensed under the Apache License, Version 2.0}}. See License.txt in t \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1250.RULE b/src/licensedcode/data/rules/apache-2.0_1250.RULE index 25cf1adc0e..852cc5326e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1250.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1250.RULE @@ -6,6 +6,6 @@ relevance: 100 - Apache License Version 2.0 + {{Apache License Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1254.RULE b/src/licensedcode/data/rules/apache-2.0_1254.RULE index 85fd40e20e..b2bc3b0389 100644 --- a/src/licensedcode/data/rules/apache-2.0_1254.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1254.RULE @@ -8,7 +8,7 @@ ignorable_urls: - Apache License 2.0 + {{Apache License 2.0}} http://www.apache.org/licenses/LICENSE-2.0.html repo diff --git a/src/licensedcode/data/rules/apache-2.0_1258.RULE b/src/licensedcode/data/rules/apache-2.0_1258.RULE index 78f84f2226..88030a4a8f 100644 --- a/src/licensedcode/data/rules/apache-2.0_1258.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1258.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The Apache 2.0 licence \ No newline at end of file +The {{Apache 2.0 licence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_126.RULE b/src/licensedcode/data/rules/apache-2.0_126.RULE index 5258a58192..f074a6f452 100644 --- a/src/licensedcode/data/rules/apache-2.0_126.RULE +++ b/src/licensedcode/data/rules/apache-2.0_126.RULE @@ -6,9 +6,9 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Apache 2.0 License +{{Apache 2.0 License}} - Licensed under the Apache License, Version 2.0 (the "License"); + {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -20,4 +20,4 @@ Apache 2.0 License See the License for the specific language governing permissions and limitations under the License. -See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. \ No newline at end of file +See the {{Apache Version 2.0 License}} for specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1262.RULE b/src/licensedcode/data/rules/apache-2.0_1262.RULE index 3a29c1b21c..0111fc3b23 100644 --- a/src/licensedcode/data/rules/apache-2.0_1262.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1262.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at the following link. diff --git a/src/licensedcode/data/rules/apache-2.0_1263.RULE b/src/licensedcode/data/rules/apache-2.0_1263.RULE index 66eb10341b..17b6aa057e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1263.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1263.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at the following link. diff --git a/src/licensedcode/data/rules/apache-2.0_1264.RULE b/src/licensedcode/data/rules/apache-2.0_1264.RULE index c0b1243010..24892e9bfe 100644 --- a/src/licensedcode/data/rules/apache-2.0_1264.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1264.RULE @@ -5,7 +5,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at the following link. diff --git a/src/licensedcode/data/rules/apache-2.0_1265.RULE b/src/licensedcode/data/rules/apache-2.0_1265.RULE index 725837a74a..6d96005764 100644 --- a/src/licensedcode/data/rules/apache-2.0_1265.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1265.RULE @@ -5,7 +5,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at the following link. diff --git a/src/licensedcode/data/rules/apache-2.0_1266.RULE b/src/licensedcode/data/rules/apache-2.0_1266.RULE index 52f50fc0fe..191090f2b4 100644 --- a/src/licensedcode/data/rules/apache-2.0_1266.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1266.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this software except in compliance with the License. You may obtain a copy of the License at the following link. diff --git a/src/licensedcode/data/rules/apache-2.0_1267.RULE b/src/licensedcode/data/rules/apache-2.0_1267.RULE index 8aafd487f3..7e0d7798ec 100644 --- a/src/licensedcode/data/rules/apache-2.0_1267.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1267.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this software except in compliance with the License. You may obtain a copy of the License at the following link. diff --git a/src/licensedcode/data/rules/apache-2.0_1268.RULE b/src/licensedcode/data/rules/apache-2.0_1268.RULE index 8508952bfd..21d8218020 100644 --- a/src/licensedcode/data/rules/apache-2.0_1268.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1268.RULE @@ -5,7 +5,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this software except in compliance with the License. You may obtain a copy of the License at the following link. diff --git a/src/licensedcode/data/rules/apache-2.0_1269.RULE b/src/licensedcode/data/rules/apache-2.0_1269.RULE index 25c41f1c93..b2bb808718 100644 --- a/src/licensedcode/data/rules/apache-2.0_1269.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1269.RULE @@ -5,7 +5,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this software except in compliance with the License. You may obtain a copy of the License at the following link. diff --git a/src/licensedcode/data/rules/apache-2.0_127.RULE b/src/licensedcode/data/rules/apache-2.0_127.RULE index 10dcb943a3..1dffda6e4b 100644 --- a/src/licensedcode/data/rules/apache-2.0_127.RULE +++ b/src/licensedcode/data/rules/apache-2.0_127.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. \ No newline at end of file +{{Licensed under the Apache License, Version 2.0}}. See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1270.RULE b/src/licensedcode/data/rules/apache-2.0_1270.RULE index 3b2d7460f5..95c58af382 100644 --- a/src/licensedcode/data/rules/apache-2.0_1270.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1270.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -licensed under the Apache License, Version 2.0 (the "License"); +{{licensed under the Apache License, Version 2.0 (the "License}}"); - you may not use this software except in compliance with the License. - You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) diff --git a/src/licensedcode/data/rules/apache-2.0_1271.RULE b/src/licensedcode/data/rules/apache-2.0_1271.RULE index 49d5811975..fc125edd32 100644 --- a/src/licensedcode/data/rules/apache-2.0_1271.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1271.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- licenses { - license { - name 'Apache 2.0' + {{license { + name 'Apache 2}}.0' url 'https://www.apache.org/licenses/LICENSE-2.0.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1276.RULE b/src/licensedcode/data/rules/apache-2.0_1276.RULE index de0fefd229..ce36fa3c91 100644 --- a/src/licensedcode/data/rules/apache-2.0_1276.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1276.RULE @@ -5,6 +5,6 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -name: Apache License, Version 2.0 +name: {{Apache License, Version 2.0}} url: https://www.apache.org/licenses/LICENSE-2.0.txt comments: A business-friendly OSS license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1277.RULE b/src/licensedcode/data/rules/apache-2.0_1277.RULE index efe114db13..4ed0b85d19 100644 --- a/src/licensedcode/data/rules/apache-2.0_1277.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1277.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -name: The Apache Software License, Version 2.0 +name: {{The Apache Software License, Version 2.0}} url: http://www.apache.org/licenses/LICENSE-2.0.txt comments: A business-friendly OSS license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1279.RULE b/src/licensedcode/data/rules/apache-2.0_1279.RULE index 00834e2ec1..f4262b7cc3 100644 --- a/src/licensedcode/data/rules/apache-2.0_1279.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1279.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -name: Apache License v2.0 +name: {{Apache License v2.0}} url: http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_128.RULE b/src/licensedcode/data/rules/apache-2.0_128.RULE index 0bbd1fb2ee..0771003e22 100644 --- a/src/licensedcode/data/rules/apache-2.0_128.RULE +++ b/src/licensedcode/data/rules/apache-2.0_128.RULE @@ -6,4 +6,4 @@ referenced_filenames: - License.txt --- -Licensed under the Apache License, Version 2.0. See License.txt in the project root for license details. \ No newline at end of file +{{Licensed under the Apache License, Version 2.0}}. See License.txt in the project root for license details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1280.RULE b/src/licensedcode/data/rules/apache-2.0_1280.RULE index 19ae35b32d..c1733a54a6 100644 --- a/src/licensedcode/data/rules/apache-2.0_1280.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1280.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -They are distributed under the Apache License http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file +They are distributed under the {{Apache License}} http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1281.RULE b/src/licensedcode/data/rules/apache-2.0_1281.RULE index e0e70971fa..ce848d0c34 100644 --- a/src/licensedcode/data/rules/apache-2.0_1281.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1281.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -distributed under the Apache License http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file +distributed under the {{Apache License}} http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1282.RULE b/src/licensedcode/data/rules/apache-2.0_1282.RULE index 1cb8d91dbc..6c5c393d1a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1282.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1282.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -They are distributed under the Apache License https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file +They are distributed under the {{Apache License}} https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1283.RULE b/src/licensedcode/data/rules/apache-2.0_1283.RULE index 39070dd2bc..8eb20c4188 100644 --- a/src/licensedcode/data/rules/apache-2.0_1283.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1283.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -distributed under the Apache License https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file +distributed under the {{Apache License}} https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1284.RULE b/src/licensedcode/data/rules/apache-2.0_1284.RULE index b08cd4700f..328cb1ba50 100644 --- a/src/licensedcode/data/rules/apache-2.0_1284.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1284.RULE @@ -11,7 +11,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -* Licensed under the Apache License, Version 2.0 (the "License"); +* {{Licensed under the Apache License, Version 2.0 (the "License}}"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * diff --git a/src/licensedcode/data/rules/apache-2.0_1285.RULE b/src/licensedcode/data/rules/apache-2.0_1285.RULE index 6d9aa201aa..69f8b442b7 100644 --- a/src/licensedcode/data/rules/apache-2.0_1285.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1285.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Primary open source license changed to Apache 2.0 license. \ No newline at end of file +Primary open source license changed to {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1286.RULE b/src/licensedcode/data/rules/apache-2.0_1286.RULE index 184b3a59b8..0aa7fdbb46 100644 --- a/src/licensedcode/data/rules/apache-2.0_1286.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1286.RULE @@ -7,6 +7,6 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -This library is Licensed under the Apache License, Version 2.0. A copy me be +This library is {{Licensed under the Apache License, Version 2.0}}. A copy me be found in the file 'LICENSE' and at http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1287.RULE b/src/licensedcode/data/rules/apache-2.0_1287.RULE index 1237cdd6d0..9f30b677e7 100644 --- a/src/licensedcode/data/rules/apache-2.0_1287.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1287.RULE @@ -6,9 +6,9 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -* Apache License 2.0: +* {{Apache License 2.0}}: * - * Licensed under the Apache License, Version 2.0 (the "License"); you may + * {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * diff --git a/src/licensedcode/data/rules/apache-2.0_1288.RULE b/src/licensedcode/data/rules/apache-2.0_1288.RULE index bdfbb9701b..3e8d030b83 100644 --- a/src/licensedcode/data/rules/apache-2.0_1288.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1288.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -library is licensed under the terms of the Apache -license. See [LICENSE](LICENSE) for more information. \ No newline at end of file +library is licensed under the terms of the {{Apache +license}}. See [LICENSE](LICENSE) for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1289.RULE b/src/licensedcode/data/rules/apache-2.0_1289.RULE index 82fddda8a0..5aae43c173 100644 --- a/src/licensedcode/data/rules/apache-2.0_1289.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1289.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -license: library is licensed under the terms of the Apache -license. See [LICENSE](LICENSE) for more information. \ No newline at end of file +license: library is licensed under the terms of the {{Apache +license}}. See [LICENSE](LICENSE) for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_129.RULE b/src/licensedcode/data/rules/apache-2.0_129.RULE index 124e384636..201fb2767e 100644 --- a/src/licensedcode/data/rules/apache-2.0_129.RULE +++ b/src/licensedcode/data/rules/apache-2.0_129.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -Licensed under the Apache License, Version 2.0. See LICENSE.txt file in the project root for full license information. \ No newline at end of file +{{Licensed under the Apache License, Version 2.0}}. See LICENSE.txt file in the project root for full license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1290.RULE b/src/licensedcode/data/rules/apache-2.0_1290.RULE index 21ba8b8518..dad3880bc9 100644 --- a/src/licensedcode/data/rules/apache-2.0_1290.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1290.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -licensed under the terms of the Apache -license. See [LICENSE](LICENSE) for more information. \ No newline at end of file +licensed under the terms of the {{Apache +license}}. See [LICENSE](LICENSE) for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1291.RULE b/src/licensedcode/data/rules/apache-2.0_1291.RULE index b676213cb8..142d3d7abd 100644 --- a/src/licensedcode/data/rules/apache-2.0_1291.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1291.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -licensed under the terms of the Apache license. \ No newline at end of file +licensed under the terms of the {{Apache license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1293.RULE b/src/licensedcode/data/rules/apache-2.0_1293.RULE index 8aced22e7e..0f0eaf34b8 100644 --- a/src/licensedcode/data/rules/apache-2.0_1293.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1293.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -Licensed under the Apache License, Version 2.0. +{{Licensed under the Apache License, Version 2.0}}. License text: See LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1295.RULE b/src/licensedcode/data/rules/apache-2.0_1295.RULE index 452c122cc4..9531981100 100644 --- a/src/licensedcode/data/rules/apache-2.0_1295.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1295.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Directories include an Apache license file -Apache License Version 2.0, January 2004 \ No newline at end of file +Directories include an {{Apache license}} file +{{Apache License Version 2.0}}, January 2004 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1296.RULE b/src/licensedcode/data/rules/apache-2.0_1296.RULE index 7ac3abb1f5..109cd81897 100644 --- a/src/licensedcode/data/rules/apache-2.0_1296.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1296.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -The above component is licensed under -Apache License Version 2.0, January 2004 \ No newline at end of file +The above component is {{licensed under +Apache License Version 2.0}}, January 2004 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1297.RULE b/src/licensedcode/data/rules/apache-2.0_1297.RULE index 6e2ea9e3fa..6959a8336c 100644 --- a/src/licensedcode/data/rules/apache-2.0_1297.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1297.RULE @@ -1,17 +1,17 @@ --- license_expression: apache-2.0 is_license_notice: yes -ignorable_urls: - - http://www.apache.org/licenses/LICENSE-2.0 ignorable_copyrights: - - Copyright (c), Oracle and/or its affiliates + - Copyright (c), Oracle and/or its affiliates ignorable_holders: - - Oracle and/or its affiliates + - Oracle and/or its affiliates +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 --- -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} Copyright (c) , Oracle and/or its affiliates. All rights reserved. -Licensed under the Apache License, Version 2.0 (the "License"); You may not +{{Licensed under the Apache License, Version 2.0 (the "License}}"); You may not use this product except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. A copy of the license is also reproduced below. Unless required by applicable law or @@ -20,4 +20,4 @@ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -Apache License Version 2.0, January 2004 +{{Apache License Version 2.0}}, January 2004 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1298.RULE b/src/licensedcode/data/rules/apache-2.0_1298.RULE index d09a023a0a..52a3eba71f 100644 --- a/src/licensedcode/data/rules/apache-2.0_1298.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1298.RULE @@ -5,11 +5,11 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Apache License Version 2.0, January 2004 +{{Apache License Version 2.0}}, January 2004 -The following applies to all products licensed under the Apache 2.0 -License: You may not use the identified files except in compliance -with the Apache License, Version 2.0 (the "License.") You may obtain a +The following applies to all products {{licensed under the Apache 2.0 +License}}: You may not use the identified files except in compliance +with the {{Apache License, Version 2.0}} (the "License.") You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. A copy of the license is also reproduced below. Unless required by applicable law or agreed to in writing, software distributed under the diff --git a/src/licensedcode/data/rules/apache-2.0_1299.RULE b/src/licensedcode/data/rules/apache-2.0_1299.RULE index 0285467096..4318e67a4a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1299.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1299.RULE @@ -7,6 +7,6 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at: +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_13.RULE b/src/licensedcode/data/rules/apache-2.0_13.RULE index 5c68a58b41..e840b1d5a5 100644 --- a/src/licensedcode/data/rules/apache-2.0_13.RULE +++ b/src/licensedcode/data/rules/apache-2.0_13.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -- Apache 2.0 : http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +- {{Apache 2.0}} : http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_130.RULE b/src/licensedcode/data/rules/apache-2.0_130.RULE index 134bc7db3d..94454b50fe 100644 --- a/src/licensedcode/data/rules/apache-2.0_130.RULE +++ b/src/licensedcode/data/rules/apache-2.0_130.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Licensed under the Apache License, Version 2.0. See LICENSE file in the project root for full license information. \ No newline at end of file +{{Licensed under the Apache License, Version 2.0}}. See LICENSE file in the project root for full license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1300.RULE b/src/licensedcode/data/rules/apache-2.0_1300.RULE index d1803f3bc1..16fa667d81 100644 --- a/src/licensedcode/data/rules/apache-2.0_1300.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1300.RULE @@ -7,6 +7,6 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the [LICENSE](LICENSE) file, or at: +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the [LICENSE](LICENSE) file, or at: [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1301.RULE b/src/licensedcode/data/rules/apache-2.0_1301.RULE index a62a1e9b29..694c654bb0 100644 --- a/src/licensedcode/data/rules/apache-2.0_1301.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1301.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at: diff --git a/src/licensedcode/data/rules/apache-2.0_1302.RULE b/src/licensedcode/data/rules/apache-2.0_1302.RULE index 09d1788c52..81e0c7ece4 100644 --- a/src/licensedcode/data/rules/apache-2.0_1302.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1302.RULE @@ -7,7 +7,7 @@ ignorable_urls: - Apache License, Version 2.0 + {{Apache License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0.txt repo A business-friendly OSS license diff --git a/src/licensedcode/data/rules/apache-2.0_1303.RULE b/src/licensedcode/data/rules/apache-2.0_1303.RULE index 3bba764fc7..be354a4bf2 100644 --- a/src/licensedcode/data/rules/apache-2.0_1303.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1303.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- - Apache License, Version 2.0 + {{Apache License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0.txt repo A business-friendly OSS license diff --git a/src/licensedcode/data/rules/apache-2.0_1304.RULE b/src/licensedcode/data/rules/apache-2.0_1304.RULE index 32df82597b..3123ef60d8 100644 --- a/src/licensedcode/data/rules/apache-2.0_1304.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1304.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- - Apache License, Version 2.0 + {{Apache License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1305.RULE b/src/licensedcode/data/rules/apache-2.0_1305.RULE index 6795012b83..749ec293ca 100644 --- a/src/licensedcode/data/rules/apache-2.0_1305.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1305.RULE @@ -7,7 +7,7 @@ ignorable_urls: -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} http://www.apache.org/license/LICENSE-2.0.txt repo diff --git a/src/licensedcode/data/rules/apache-2.0_1306.RULE b/src/licensedcode/data/rules/apache-2.0_1306.RULE index a4d6492563..2382fc8e89 100644 --- a/src/licensedcode/data/rules/apache-2.0_1306.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1306.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} http://www.apache.org/license/LICENSE-2.0.txt repo \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1307.RULE b/src/licensedcode/data/rules/apache-2.0_1307.RULE index 191169e93b..bb49c9fdbf 100644 --- a/src/licensedcode/data/rules/apache-2.0_1307.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1307.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} http://www.apache.org/license/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1308.RULE b/src/licensedcode/data/rules/apache-2.0_1308.RULE index 614604733e..41e4e9b202 100644 --- a/src/licensedcode/data/rules/apache-2.0_1308.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1308.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} http://www.apache.org/license/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1309.RULE b/src/licensedcode/data/rules/apache-2.0_1309.RULE index 36fa8e710e..1948437f7e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1309.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1309.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} http://www.apache.org/license/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1310.RULE b/src/licensedcode/data/rules/apache-2.0_1310.RULE index 9e4b946f42..146fcbb115 100644 --- a/src/licensedcode/data/rules/apache-2.0_1310.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1310.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.apache.org/license/LICENSE-2.0.txt --- -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} http://www.apache.org/license/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1311.RULE b/src/licensedcode/data/rules/apache-2.0_1311.RULE index 756ae4ce21..918bb1ba0a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1311.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1311.RULE @@ -5,7 +5,7 @@ ignorable_urls: - https://opensource.org/licenses/Apache-2.0 --- - - Apache-2.0 +<{{license> + Apache-2}}.0 https://opensource.org/licenses/Apache-2.0 - Apache License, Version 2.0 \ No newline at end of file + {{Apache License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1312.RULE b/src/licensedcode/data/rules/apache-2.0_1312.RULE index 8da8a6f24f..2786c30742 100644 --- a/src/licensedcode/data/rules/apache-2.0_1312.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1312.RULE @@ -5,6 +5,6 @@ ignorable_urls: - https://opensource.org/licenses/Apache-2.0 --- -Apache-2.0 +{{Apache-2.0}} https://opensource.org/licenses/Apache-2.0 - Apache License, Version 2.0 \ No newline at end of file + {{Apache License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1313.RULE b/src/licensedcode/data/rules/apache-2.0_1313.RULE index bac957322b..b17f86e517 100644 --- a/src/licensedcode/data/rules/apache-2.0_1313.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1313.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://opensource.org/licenses/Apache-2.0 --- - - Apache-2.0 +<{{license> + Apache-2}}.0 https://opensource.org/licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1314.RULE b/src/licensedcode/data/rules/apache-2.0_1314.RULE index 9ca4af9bc1..80533c3460 100644 --- a/src/licensedcode/data/rules/apache-2.0_1314.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1314.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/Apache-2.0 --- -Apache-2.0 +{{Apache-2.0}} https://opensource.org/licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1316.RULE b/src/licensedcode/data/rules/apache-2.0_1316.RULE index a795e88245..9e6c6e4df1 100644 --- a/src/licensedcode/data/rules/apache-2.0_1316.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1316.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -name: The Apache Software License, Version 2.0 \ No newline at end of file +name: {{The Apache Software License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1319.RULE b/src/licensedcode/data/rules/apache-2.0_1319.RULE index 95a0059704..a36e23bff9 100644 --- a/src/licensedcode/data/rules/apache-2.0_1319.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1319.RULE @@ -7,6 +7,6 @@ referenced_filenames: --- - The Apache Software License, Version 2.0 + {{The Apache Software License, Version 2.0}} /LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_132.RULE b/src/licensedcode/data/rules/apache-2.0_132.RULE index 79b03498df..e87436696d 100644 --- a/src/licensedcode/data/rules/apache-2.0_132.RULE +++ b/src/licensedcode/data/rules/apache-2.0_132.RULE @@ -1,7 +1,10 @@ --- license_expression: apache-2.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -Apache 2.0 licensed \ No newline at end of file +APACHE 2.0 + +Licensed \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1320.RULE b/src/licensedcode/data/rules/apache-2.0_1320.RULE index 19c0409588..3eb47ec92d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1320.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1320.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- - The Apache Software License, Version 2.0 + {{The Apache Software License, Version 2.0}} /LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1321.RULE b/src/licensedcode/data/rules/apache-2.0_1321.RULE index e4ffd04f2f..7a486b4420 100644 --- a/src/licensedcode/data/rules/apache-2.0_1321.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1321.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.txt --- -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} /LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1322.RULE b/src/licensedcode/data/rules/apache-2.0_1322.RULE index 97b690ff9f..e631603cb8 100644 --- a/src/licensedcode/data/rules/apache-2.0_1322.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1322.RULE @@ -7,7 +7,7 @@ ignorable_urls: licenses> - The Apache Software License, Version 2.0 + {{The Apache Software License, Version 2.0}} http://ehcache.sourceforge.net/LICENSE.txt repo - The license is the standard wording from the Apache license \ No newline at end of file + The license is the standard wording from the {{Apache license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1323.RULE b/src/licensedcode/data/rules/apache-2.0_1323.RULE index 92888ce05d..9dcc9fe942 100644 --- a/src/licensedcode/data/rules/apache-2.0_1323.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1323.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} http://ehcache.sourceforge.net/LICENSE.txt repo -The license is the standard wording from the Apache license \ No newline at end of file +The license is the standard wording from the {{Apache license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1324.RULE b/src/licensedcode/data/rules/apache-2.0_1324.RULE index bf66fe0dda..f7aa4127f9 100644 --- a/src/licensedcode/data/rules/apache-2.0_1324.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1324.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://ehcache.sourceforge.net/LICENSE.txt --- -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} http://ehcache.sourceforge.net/LICENSE.txt repo -The license is the standard wording from the Apache license \ No newline at end of file +The license is the standard wording from the {{Apache license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1325.RULE b/src/licensedcode/data/rules/apache-2.0_1325.RULE index ac9844596b..4152040142 100644 --- a/src/licensedcode/data/rules/apache-2.0_1325.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1325.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} http://ehcache.sourceforge.net/LICENSE.txt -The license is the standard wording from the Apache license \ No newline at end of file +The license is the standard wording from the {{Apache license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1326.RULE b/src/licensedcode/data/rules/apache-2.0_1326.RULE index b958149c17..2bf216bf61 100644 --- a/src/licensedcode/data/rules/apache-2.0_1326.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1326.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://ehcache.sourceforge.net/LICENSE.txt --- -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} http://ehcache.sourceforge.net/LICENSE.txt -The license is the standard wording from the Apache license \ No newline at end of file +The license is the standard wording from the {{Apache license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1327.RULE b/src/licensedcode/data/rules/apache-2.0_1327.RULE index ea15211da6..f287243e3f 100644 --- a/src/licensedcode/data/rules/apache-2.0_1327.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1327.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://ehcache.sourceforge.net/LICENSE.txt --- -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} http://ehcache.sourceforge.net/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1328.RULE b/src/licensedcode/data/rules/apache-2.0_1328.RULE index 000f20b474..b7e2cd0796 100644 --- a/src/licensedcode/data/rules/apache-2.0_1328.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1328.RULE @@ -6,4 +6,4 @@ ignorable_urls: --- http://ehcache.sourceforge.net/LICENSE.txt -The license is the standard wording from the Apache license \ No newline at end of file +The license is the standard wording from the {{Apache license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_133.RULE b/src/licensedcode/data/rules/apache-2.0_133.RULE index 5048f9ca59..7ff764702d 100644 --- a/src/licensedcode/data/rules/apache-2.0_133.RULE +++ b/src/licensedcode/data/rules/apache-2.0_133.RULE @@ -5,4 +5,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -This project bundles the following dependencies under the Apache Software License 2.0. (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file +This project bundles the following dependencies under the {{Apache Software License 2.0}}. (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1331.RULE b/src/licensedcode/data/rules/apache-2.0_1331.RULE index 6b19a6c914..d1633dba6a 100644 --- a/src/licensedcode/data/rules/apache-2.0_1331.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1331.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is available under the Apache License \ No newline at end of file +is available under the {{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1332.RULE b/src/licensedcode/data/rules/apache-2.0_1332.RULE index 24c9d98c7e..376212ecbd 100644 --- a/src/licensedcode/data/rules/apache-2.0_1332.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1332.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under the Apache License \ No newline at end of file +available under the {{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1333.RULE b/src/licensedcode/data/rules/apache-2.0_1333.RULE index f7cde362ab..9626ea822e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1333.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1333.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -it is freely available under the Apache License. \ No newline at end of file +it is freely available under the {{Apache License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1334.RULE b/src/licensedcode/data/rules/apache-2.0_1334.RULE index 609473c24c..5cec4d5b42 100644 --- a/src/licensedcode/data/rules/apache-2.0_1334.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1334.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is freely available under the Apache License. \ No newline at end of file +is freely available under the {{Apache License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1335.RULE b/src/licensedcode/data/rules/apache-2.0_1335.RULE index b97ca97604..b9c135bae6 100644 --- a/src/licensedcode/data/rules/apache-2.0_1335.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1335.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -It is available under the https://www.apache.org/licenses/LICENSE-2.0">Apache License \ No newline at end of file +It is available under the https://www.apache.org/licenses/LICENSE-2.0">{{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1336.RULE b/src/licensedcode/data/rules/apache-2.0_1336.RULE index 76916470a8..ef477a4d0d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1336.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1336.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -available under the https://www.apache.org/licenses/LICENSE-2.0">Apache License \ No newline at end of file +available under the https://www.apache.org/licenses/LICENSE-2.0">{{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1337.RULE b/src/licensedcode/data/rules/apache-2.0_1337.RULE index cf2800a515..fd9b301a4d 100644 --- a/src/licensedcode/data/rules/apache-2.0_1337.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1337.RULE @@ -3,5 +3,5 @@ license_expression: apache-2.0 is_license_notice: yes --- -A copy of the Apache 2.0 license is reproduced below. This license applies only +A copy of the {{Apache 2.0 license}} is reproduced below. This license applies only to files that indicate as such in their license header. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1341.RULE b/src/licensedcode/data/rules/apache-2.0_1341.RULE index 06d7d7b1b0..cc285a1f44 100644 --- a/src/licensedcode/data/rules/apache-2.0_1341.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1341.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -[Apache 2](https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file +[{{Apache 2}}](https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1342.RULE b/src/licensedcode/data/rules/apache-2.0_1342.RULE index 96ba05a3da..acc3b88c79 100644 --- a/src/licensedcode/data/rules/apache-2.0_1342.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1342.RULE @@ -6,4 +6,4 @@ referenced_filenames: --- ## License -The code in this project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details. \ No newline at end of file +The code in this project is {{licensed under the Apache 2.0 License}} - see the [LICENSE](LICENSE) file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1343.RULE b/src/licensedcode/data/rules/apache-2.0_1343.RULE index ed2fe85819..6bd2f0d598 100644 --- a/src/licensedcode/data/rules/apache-2.0_1343.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1343.RULE @@ -5,4 +5,4 @@ referenced_filenames: - LICENSE --- -The code in this project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details. \ No newline at end of file +The code in this project is {{licensed under the Apache 2.0 License}} - see the [LICENSE](LICENSE) file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1345.RULE b/src/licensedcode/data/rules/apache-2.0_1345.RULE index 40333764ec..efc1afd084 100644 --- a/src/licensedcode/data/rules/apache-2.0_1345.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1345.RULE @@ -17,4 +17,4 @@ newer version instead, at your option. This software consists of voluntary contributions made by many individuals. For exact contribution history, see the revision -history and logs, available at {{http://subversion.tigris.org/}}. \ No newline at end of file +history and logs, available at http://subversion.tigris.org/. diff --git a/src/licensedcode/data/rules/apache-2.0_1347.RULE b/src/licensedcode/data/rules/apache-2.0_1347.RULE index cf995b2b22..9e95d617a5 100644 --- a/src/licensedcode/data/rules/apache-2.0_1347.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1347.RULE @@ -1,8 +1,8 @@ --- license_expression: apache-2.0 is_license_notice: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 --- -{{Subversion is released under a Apache/BSD-style}} \ No newline at end of file +Subversion is released under a Apache/BSD-style \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1351.RULE b/src/licensedcode/data/rules/apache-2.0_1351.RULE index b1846a24a0..66ac523c26 100644 --- a/src/licensedcode/data/rules/apache-2.0_1351.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1351.RULE @@ -7,12 +7,12 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache-2.0 - Licensed to the Apache Software Foundation (ASF) under one +{{License: Apache-2.0}} + {{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the + to you under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . diff --git a/src/licensedcode/data/rules/apache-2.0_1352.RULE b/src/licensedcode/data/rules/apache-2.0_1352.RULE index 5e81b3a770..0da219eb1f 100644 --- a/src/licensedcode/data/rules/apache-2.0_1352.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1352.RULE @@ -5,7 +5,7 @@ referenced_filenames: - LICENSE --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at LICENSE(./LICENSE) file for details. Unless required by applicable law or agreed to in writing, software diff --git a/src/licensedcode/data/rules/apache-2.0_1353.RULE b/src/licensedcode/data/rules/apache-2.0_1353.RULE index e1cc290ee9..451ca3adb9 100644 --- a/src/licensedcode/data/rules/apache-2.0_1353.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1353.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -This code is licensed under the Apache License, Version 2.0. You may +This code is {{licensed under the Apache License, Version 2.0}}. You may obtain a copy of this license in the LICENSE.txt file in the root directory of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. diff --git a/src/licensedcode/data/rules/apache-2.0_1354.RULE b/src/licensedcode/data/rules/apache-2.0_1354.RULE index 9d357fa200..4348231251 100644 --- a/src/licensedcode/data/rules/apache-2.0_1354.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1354.RULE @@ -7,6 +7,6 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -This code is licensed under the Apache License, Version 2.0. You may +This code is {{licensed under the Apache License, Version 2.0}}. You may obtain a copy of this license in the LICENSE.txt file in the root directory of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1355.RULE b/src/licensedcode/data/rules/apache-2.0_1355.RULE index 1639234241..1d2844ce5e 100644 --- a/src/licensedcode/data/rules/apache-2.0_1355.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1355.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -This project uses the Apache License 2.0 \ No newline at end of file +This project uses the {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1356.RULE b/src/licensedcode/data/rules/apache-2.0_1356.RULE index 64b1fbb1f8..65776e6400 100644 --- a/src/licensedcode/data/rules/apache-2.0_1356.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1356.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project uses the Apache License 2.0 \ No newline at end of file +This project uses the {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1357.RULE b/src/licensedcode/data/rules/apache-2.0_1357.RULE index dd356696f1..2363ac1012 100644 --- a/src/licensedcode/data/rules/apache-2.0_1357.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1357.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- All rights reserved. This program and the accompanying materials -are made available under the terms of the Apache Software License v2.0 +are made available under the terms of the {{Apache Software License v2.0}} which accompanies this distribution, and is available at https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1358.RULE b/src/licensedcode/data/rules/apache-2.0_1358.RULE index 57e3632f5c..0843de5c06 100644 --- a/src/licensedcode/data/rules/apache-2.0_1358.RULE +++ b/src/licensedcode/data/rules/apache-2.0_1358.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- This program and the accompanying materials -are made available under the terms of the Apache Software License v2.0 +are made available under the terms of the {{Apache Software License v2.0}} which accompanies this distribution, and is available at https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_135_1.RULE b/src/licensedcode/data/rules/apache-2.0_135_1.RULE index 248f57a6a3..297c20877d 100644 --- a/src/licensedcode/data/rules/apache-2.0_135_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_135_1.RULE @@ -10,5 +10,5 @@ ignorable_urls: --- distributed under the -[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0), +[{{Apache License, Version 2.0}}](http://www.apache.org/licenses/LICENSE-2.0), see LICENSE.txt and NOTICE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_136.RULE b/src/licensedcode/data/rules/apache-2.0_136.RULE index cf10357692..63b4d24038 100644 --- a/src/licensedcode/data/rules/apache-2.0_136.RULE +++ b/src/licensedcode/data/rules/apache-2.0_136.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -The Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file +The {{Apache License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1365.RULE b/src/licensedcode/data/rules/apache-2.0_1365.RULE new file mode 100644 index 0000000000..60fa57bd95 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1365.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + +source code is licensed under the Apache Licence, Version 2.0 [http://www.apache.org/licenses/LICENSE-2.0.html](http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1366.RULE b/src/licensedcode/data/rules/apache-2.0_1366.RULE new file mode 100644 index 0000000000..4251b13513 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1366.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +library under The Apache Licence, version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1367.RULE b/src/licensedcode/data/rules/apache-2.0_1367.RULE new file mode 100644 index 0000000000..7a34829531 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1367.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +under the terms of the Apache Licence, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1368.RULE b/src/licensedcode/data/rules/apache-2.0_1368.RULE new file mode 100644 index 0000000000..0d9361da6b --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1368.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +--- + +licensed under the Apache Licence, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1369.RULE b/src/licensedcode/data/rules/apache-2.0_1369.RULE new file mode 100644 index 0000000000..9588071b3b --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1369.RULE @@ -0,0 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - https://github.com/gchq/CyberChef/blob/master/LICENSE +--- + +License (Apache Licence, Version 2.0): https://github.com/gchq/CyberChef/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_137.RULE b/src/licensedcode/data/rules/apache-2.0_137.RULE index ec3f22ce47..c420038dfb 100644 --- a/src/licensedcode/data/rules/apache-2.0_137.RULE +++ b/src/licensedcode/data/rules/apache-2.0_137.RULE @@ -6,4 +6,4 @@ relevance: 100 License -Permission to modify and redistribute is granted under the terms of the Apache 2.0 license. \ No newline at end of file +Permission to modify and redistribute is granted under the terms of the {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1370.RULE b/src/licensedcode/data/rules/apache-2.0_1370.RULE new file mode 100644 index 0000000000..96ef906783 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1370.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +relevance: 100 +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0.html +--- + +licensed under +`Apache Licence, Version 2.0 `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_1371.RULE b/src/licensedcode/data/rules/apache-2.0_1371.RULE new file mode 100644 index 0000000000..636666b4fa --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_1371.RULE @@ -0,0 +1,18 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +ignorable_urls: + - http://www.apache.org/licenses/LICENSE-2.0 +--- + +Licensed under the Apache Licence, Version 2.0 (the "Licence"); +you may not use this project except in compliance with the Licence. +You may obtain a copy of the Licence at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the Licence is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the Licence for the specific language governing permissions and +limitations under the Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_138.RULE b/src/licensedcode/data/rules/apache-2.0_138.RULE index 8d40ab0e0e..d8f3136e9b 100644 --- a/src/licensedcode/data/rules/apache-2.0_138.RULE +++ b/src/licensedcode/data/rules/apache-2.0_138.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -// This source is released under the Apache 2.0 License \ No newline at end of file +// This source is released under the {{Apache 2.0 License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_139.RULE b/src/licensedcode/data/rules/apache-2.0_139.RULE index 9395c93097..a91a6185f6 100644 --- a/src/licensedcode/data/rules/apache-2.0_139.RULE +++ b/src/licensedcode/data/rules/apache-2.0_139.RULE @@ -7,4 +7,4 @@ referenced_filenames: License - is licensed under the terms of the Apache 2.0 license, the full version of which can be found in the LICENSE file included in the distribution. \ No newline at end of file + is licensed under the terms of the {{Apache 2.0 license}}, the full version of which can be found in the LICENSE file included in the distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_14.RULE b/src/licensedcode/data/rules/apache-2.0_14.RULE index 5360fcd80f..80e733a0b4 100644 --- a/src/licensedcode/data/rules/apache-2.0_14.RULE +++ b/src/licensedcode/data/rules/apache-2.0_14.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Release declaration --- -released under Apache Software License, Version 2.0 \ No newline at end of file +released under {{Apache Software License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_140.RULE b/src/licensedcode/data/rules/apache-2.0_140.RULE index e56a1fa9fe..0f3420f894 100644 --- a/src/licensedcode/data/rules/apache-2.0_140.RULE +++ b/src/licensedcode/data/rules/apache-2.0_140.RULE @@ -5,4 +5,4 @@ referenced_filenames: - LICENSE --- -is licensed under the terms of the Apache 2.0 license, the full version of which can be found in the LICENSE file included in the distribution. \ No newline at end of file +is licensed under the terms of the {{Apache 2.0 license}}, the full version of which can be found in the LICENSE file included in the distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_141.RULE b/src/licensedcode/data/rules/apache-2.0_141.RULE index 7c0461ab99..fcd0e02084 100644 --- a/src/licensedcode/data/rules/apache-2.0_141.RULE +++ b/src/licensedcode/data/rules/apache-2.0_141.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed by SugarCRM under the Apache 2.0 license. \ No newline at end of file +Licensed by SugarCRM under the {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_142.RULE b/src/licensedcode/data/rules/apache-2.0_142.RULE index 716f396214..2b79226986 100644 --- a/src/licensedcode/data/rules/apache-2.0_142.RULE +++ b/src/licensedcode/data/rules/apache-2.0_142.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -(Apache License v2.00) \ No newline at end of file +({{Apache License v2}}.00) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_143.RULE b/src/licensedcode/data/rules/apache-2.0_143.RULE index 79bfa8e03f..ffc82de50b 100644 --- a/src/licensedcode/data/rules/apache-2.0_143.RULE +++ b/src/licensedcode/data/rules/apache-2.0_143.RULE @@ -8,4 +8,4 @@ ignorable_urls: License -Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +{{Apache License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_144.RULE b/src/licensedcode/data/rules/apache-2.0_144.RULE index 1f7edcb6d8..c9eb0f419b 100644 --- a/src/licensedcode/data/rules/apache-2.0_144.RULE +++ b/src/licensedcode/data/rules/apache-2.0_144.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -is released under the Apache 2.0 license. +is released under the {{Apache 2.0 license}}. See LICENSE for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_146.RULE b/src/licensedcode/data/rules/apache-2.0_146.RULE index 3834df731f..5379e63790 100644 --- a/src/licensedcode/data/rules/apache-2.0_146.RULE +++ b/src/licensedcode/data/rules/apache-2.0_146.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -POM_LICENCE_NAME=The Apache Software License, Version 2.0 +POM_LICENCE_NAME={{The Apache Software License, Version 2.0}} POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_147.RULE b/src/licensedcode/data/rules/apache-2.0_147.RULE index a0d7768457..47daeb7eed 100644 --- a/src/licensedcode/data/rules/apache-2.0_147.RULE +++ b/src/licensedcode/data/rules/apache-2.0_147.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -LICENCE_NAME=The Apache Software License, Version 2.0 +LICENCE_NAME={{The Apache Software License, Version 2.0}} LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_148.RULE b/src/licensedcode/data/rules/apache-2.0_148.RULE index 265de2151a..31ab8a3e99 100644 --- a/src/licensedcode/data/rules/apache-2.0_148.RULE +++ b/src/licensedcode/data/rules/apache-2.0_148.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -under the terms of the Apache License 2.0 \ No newline at end of file +under the terms of the {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_149.RULE b/src/licensedcode/data/rules/apache-2.0_149.RULE index 09bd5bba96..35ab0797a3 100644 --- a/src/licensedcode/data/rules/apache-2.0_149.RULE +++ b/src/licensedcode/data/rules/apache-2.0_149.RULE @@ -9,7 +9,7 @@ ignorable_urls: - The Apache Software License, Version 2.0 + {{The Apache Software License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/src/licensedcode/data/rules/apache-2.0_15.RULE b/src/licensedcode/data/rules/apache-2.0_15.RULE index 8f08387e9c..6d29b06f63 100644 --- a/src/licensedcode/data/rules/apache-2.0_15.RULE +++ b/src/licensedcode/data/rules/apache-2.0_15.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Apache License Version 2 +{{Apache License Version 2}} http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_150.RULE b/src/licensedcode/data/rules/apache-2.0_150.RULE index b01c9460b3..27480bd479 100644 --- a/src/licensedcode/data/rules/apache-2.0_150.RULE +++ b/src/licensedcode/data/rules/apache-2.0_150.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -library is licensed under the Apache License, Version 2.0: \ No newline at end of file +library is {{licensed under the Apache License, Version 2.0}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_151.RULE b/src/licensedcode/data/rules/apache-2.0_151.RULE index af0669b4d9..38636aeeeb 100644 --- a/src/licensedcode/data/rules/apache-2.0_151.RULE +++ b/src/licensedcode/data/rules/apache-2.0_151.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -licensed under the Apache License, Version 2.0: \ No newline at end of file +Licensed under the Apache License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_152.RULE b/src/licensedcode/data/rules/apache-2.0_152.RULE index 6cc798d8c9..50b88b6eb9 100644 --- a/src/licensedcode/data/rules/apache-2.0_152.RULE +++ b/src/licensedcode/data/rules/apache-2.0_152.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is licensed under the Apache License, Version 2.0: \ No newline at end of file +is {{licensed under the Apache License, Version 2.0}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_153.RULE b/src/licensedcode/data/rules/apache-2.0_153.RULE index 968e8985d9..570c85d1bd 100644 --- a/src/licensedcode/data/rules/apache-2.0_153.RULE +++ b/src/licensedcode/data/rules/apache-2.0_153.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Javascript library is licensed under the Apache License, Version 2.0: \ No newline at end of file +Javascript library is {{licensed under the Apache License, Version 2.0}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_154.RULE b/src/licensedcode/data/rules/apache-2.0_154.RULE index dfe9fdcd10..9ee70f4ee8 100644 --- a/src/licensedcode/data/rules/apache-2.0_154.RULE +++ b/src/licensedcode/data/rules/apache-2.0_154.RULE @@ -7,9 +7,9 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Javascript library is licensed under the Apache License, Version 2.0: +Javascript library is {{licensed under the Apache License, Version 2.0}}: -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_155.RULE b/src/licensedcode/data/rules/apache-2.0_155.RULE index 98ed89faed..8388452291 100644 --- a/src/licensedcode/data/rules/apache-2.0_155.RULE +++ b/src/licensedcode/data/rules/apache-2.0_155.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the Apache License, Version 2.0 (the "Apache License") \ No newline at end of file +This software is {{licensed under the Apache License, Version 2.0}} (the "{{Apache License}}") \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_156.RULE b/src/licensedcode/data/rules/apache-2.0_156.RULE index c87e086d2a..52b44516fe 100644 --- a/src/licensedcode/data/rules/apache-2.0_156.RULE +++ b/src/licensedcode/data/rules/apache-2.0_156.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the Apache License, Version 2.0 (the "Apache License") \ No newline at end of file +the {{Apache License, Version 2.0}} (the "{{Apache License}}") \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_157.RULE b/src/licensedcode/data/rules/apache-2.0_157.RULE index 55b89434df..32c7712768 100644 --- a/src/licensedcode/data/rules/apache-2.0_157.RULE +++ b/src/licensedcode/data/rules/apache-2.0_157.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -18,4 +18,4 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. -See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. \ No newline at end of file +See the {{Apache Version 2.0 License}} for specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_158.RULE b/src/licensedcode/data/rules/apache-2.0_158.RULE index 5f2d095ca2..4065b7e76b 100644 --- a/src/licensedcode/data/rules/apache-2.0_158.RULE +++ b/src/licensedcode/data/rules/apache-2.0_158.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- # ===============LICENSE_START======================================================= -# Apache-2.0 +# {{Apache-2.0}} # =================================================================================== # =================================================================================== # This software file is distributed by -# under the Apache License, Version 2.0 (the "License"); +# under the {{Apache License, Version 2.0}} (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # diff --git a/src/licensedcode/data/rules/apache-2.0_159.RULE b/src/licensedcode/data/rules/apache-2.0_159.RULE index 230d02fd67..be326c0e64 100644 --- a/src/licensedcode/data/rules/apache-2.0_159.RULE +++ b/src/licensedcode/data/rules/apache-2.0_159.RULE @@ -9,7 +9,7 @@ ignorable_urls: ============LICENSE_START======================================================= ================================================================================ This software file is distributed by -under the Apache License, Version 2.0 (the "License"); +under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_16.RULE b/src/licensedcode/data/rules/apache-2.0_16.RULE index 4544f51ebb..b411a105ba 100644 --- a/src/licensedcode/data/rules/apache-2.0_16.RULE +++ b/src/licensedcode/data/rules/apache-2.0_16.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is Open Source and available under the Apache 2 License. \ No newline at end of file +is Open Source and available under the {{Apache 2 License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_160.RULE b/src/licensedcode/data/rules/apache-2.0_160.RULE index c52c445919..76ee160f83 100644 --- a/src/licensedcode/data/rules/apache-2.0_160.RULE +++ b/src/licensedcode/data/rules/apache-2.0_160.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -under the Apache License, Version 2.0 (the "License"); +under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_162.RULE b/src/licensedcode/data/rules/apache-2.0_162.RULE index 333a5b40ca..ea5a679841 100644 --- a/src/licensedcode/data/rules/apache-2.0_162.RULE +++ b/src/licensedcode/data/rules/apache-2.0_162.RULE @@ -5,5 +5,5 @@ referenced_filenames: - org/apache/LICENSE --- -The command line interpreter is covered by the Apache Software -License. See the org/apache/LICENSE file for details. \ No newline at end of file +The command line interpreter is covered by the {{Apache Software +License}}. See the org/apache/LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_163.RULE b/src/licensedcode/data/rules/apache-2.0_163.RULE index 3375418154..0ecd07196d 100644 --- a/src/licensedcode/data/rules/apache-2.0_163.RULE +++ b/src/licensedcode/data/rules/apache-2.0_163.RULE @@ -3,7 +3,7 @@ license_expression: apache-2.0 is_license_notice: yes --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. Unless required by applicable law or agreed to in writing, software diff --git a/src/licensedcode/data/rules/apache-2.0_165.RULE b/src/licensedcode/data/rules/apache-2.0_165.RULE index 8b3b08af2f..32e61a316b 100644 --- a/src/licensedcode/data/rules/apache-2.0_165.RULE +++ b/src/licensedcode/data/rules/apache-2.0_165.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- The majority of the source code in the project is licensed -under the terms of the Apache License, Version 2.0, available from: +under the terms of the {{Apache License, Version 2.0}}, available from: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_166.RULE b/src/licensedcode/data/rules/apache-2.0_166.RULE index 911d610878..4bb10cbc54 100644 --- a/src/licensedcode/data/rules/apache-2.0_166.RULE +++ b/src/licensedcode/data/rules/apache-2.0_166.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -is licensed under the Apache License, -Version 2.0. You may obtain a copy of this license at +is {{licensed under the Apache License, +Version 2.0}}. You may obtain a copy of this license at http://www.apache.org/licenses/LICENSE-2.0 . You may also have additional legal rights not granted by this license. diff --git a/src/licensedcode/data/rules/apache-2.0_167.RULE b/src/licensedcode/data/rules/apache-2.0_167.RULE index 06936aeccf..8d2dd00660 100644 --- a/src/licensedcode/data/rules/apache-2.0_167.RULE +++ b/src/licensedcode/data/rules/apache-2.0_167.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -is released under the Apache 2.0 license. See [LICENSE.txt] \ No newline at end of file +is released under the {{Apache 2.0 license}}. See [LICENSE.txt] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_168.RULE b/src/licensedcode/data/rules/apache-2.0_168.RULE index d94f5590ec..c4e52326c7 100644 --- a/src/licensedcode/data/rules/apache-2.0_168.RULE +++ b/src/licensedcode/data/rules/apache-2.0_168.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the Apache 2.0 license. \ No newline at end of file +released under the {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_169.RULE b/src/licensedcode/data/rules/apache-2.0_169.RULE index 05a307095f..54bb2ef5d9 100644 --- a/src/licensedcode/data/rules/apache-2.0_169.RULE +++ b/src/licensedcode/data/rules/apache-2.0_169.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- released under the -[Apache License version 2](http://www.apache.org/licenses/ \ No newline at end of file +[{{Apache License version 2}}](http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_17.RULE b/src/licensedcode/data/rules/apache-2.0_17.RULE index 302ca3875b..0387f3e736 100644 --- a/src/licensedcode/data/rules/apache-2.0_17.RULE +++ b/src/licensedcode/data/rules/apache-2.0_17.RULE @@ -5,9 +5,9 @@ ignorable_urls: - http://www.apache.org/licenses/ --- -Apache License +{{Apache License -Version 2.0, January 2004 +Version 2.0}}, January 2004 http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_170.RULE b/src/licensedcode/data/rules/apache-2.0_170.RULE index 2c21c0dc88..1fe8b9429d 100644 --- a/src/licensedcode/data/rules/apache-2.0_170.RULE +++ b/src/licensedcode/data/rules/apache-2.0_170.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/ --- -[Apache License version 2](http://www.apache.org/licenses/ \ No newline at end of file +[{{Apache License version 2}}](http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_172.RULE b/src/licensedcode/data/rules/apache-2.0_172.RULE index 8b8e9a84e9..246fe21365 100644 --- a/src/licensedcode/data/rules/apache-2.0_172.RULE +++ b/src/licensedcode/data/rules/apache-2.0_172.RULE @@ -8,4 +8,4 @@ referenced_filenames: License - is under the Apache 2.0 license. See the [LICENSE](LICENSE) file for details \ No newline at end of file + is under the {{Apache 2.0 license}}. See the [LICENSE](LICENSE) file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_173.RULE b/src/licensedcode/data/rules/apache-2.0_173.RULE index 262de2dc7c..0f1be0bbf9 100644 --- a/src/licensedcode/data/rules/apache-2.0_173.RULE +++ b/src/licensedcode/data/rules/apache-2.0_173.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -is under the Apache 2.0 license. See the [LICENSE](LICENSE) file for details \ No newline at end of file +is under the {{Apache 2.0 license}}. See the [LICENSE](LICENSE) file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_174.RULE b/src/licensedcode/data/rules/apache-2.0_174.RULE index ed2fa7fc3d..752edfa61e 100644 --- a/src/licensedcode/data/rules/apache-2.0_174.RULE +++ b/src/licensedcode/data/rules/apache-2.0_174.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the Apache 2.0 license. \ No newline at end of file +under the {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_175.RULE b/src/licensedcode/data/rules/apache-2.0_175.RULE index d5378cd51c..31059b2304 100644 --- a/src/licensedcode/data/rules/apache-2.0_175.RULE +++ b/src/licensedcode/data/rules/apache-2.0_175.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the Apache 2.0 license. \ No newline at end of file +the {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_176.RULE b/src/licensedcode/data/rules/apache-2.0_176.RULE index c162d24537..d595b1c9d5 100644 --- a/src/licensedcode/data/rules/apache-2.0_176.RULE +++ b/src/licensedcode/data/rules/apache-2.0_176.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Apache 2.0 license. \ No newline at end of file +Apache 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_177.RULE b/src/licensedcode/data/rules/apache-2.0_177.RULE index 4d6a3e9c8e..36dfb619bd 100644 --- a/src/licensedcode/data/rules/apache-2.0_177.RULE +++ b/src/licensedcode/data/rules/apache-2.0_177.RULE @@ -6,7 +6,7 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -License: Apache 2.0 +{{License: Apache 2.0}} On Debian GNU/Linux system you can find the complete text of the -Apache-2.0 license in `/usr/share/common-licenses/Apache-2.0' \ No newline at end of file +{{Apache-2.0 license}} in `/usr/share/common-licenses/Apache-2.0' \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_178.RULE b/src/licensedcode/data/rules/apache-2.0_178.RULE index 9bf1d6d225..8c06e9695f 100644 --- a/src/licensedcode/data/rules/apache-2.0_178.RULE +++ b/src/licensedcode/data/rules/apache-2.0_178.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- On Debian GNU/Linux system you can find the complete text of the -Apache-2.0 license in `/usr/share/common-licenses/Apache-2.0' \ No newline at end of file +{{Apache-2.0 license}} in `/usr/share/common-licenses/Apache-2.0' \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_18.RULE b/src/licensedcode/data/rules/apache-2.0_18.RULE index f2870b2332..e03e92188a 100644 --- a/src/licensedcode/data/rules/apache-2.0_18.RULE +++ b/src/licensedcode/data/rules/apache-2.0_18.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is covered by the Apache License version 2.0 \ No newline at end of file +is covered by the {{Apache License version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_181.RULE b/src/licensedcode/data/rules/apache-2.0_181.RULE index 8680dfaa52..458abf8097 100644 --- a/src/licensedcode/data/rules/apache-2.0_181.RULE +++ b/src/licensedcode/data/rules/apache-2.0_181.RULE @@ -8,4 +8,4 @@ ignorable_urls: - https://img.shields.io/badge/License-Apache%202.0-blue.svg --- -[![Apache 2.0 License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE) \ No newline at end of file +[![{{Apache 2.0 License}}](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_182.RULE b/src/licensedcode/data/rules/apache-2.0_182.RULE index 2e6ef4e198..ac6b1933a0 100644 --- a/src/licensedcode/data/rules/apache-2.0_182.RULE +++ b/src/licensedcode/data/rules/apache-2.0_182.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The Apache License, Version 2.0 \ No newline at end of file +The {{Apache License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_183.RULE b/src/licensedcode/data/rules/apache-2.0_183.RULE index e5bfbe815a..c158a17387 100644 --- a/src/licensedcode/data/rules/apache-2.0_183.RULE +++ b/src/licensedcode/data/rules/apache-2.0_183.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -All code and contributions are under Apache License \ No newline at end of file +All code and contributions are under {{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_184.RULE b/src/licensedcode/data/rules/apache-2.0_184.RULE index e4ffc2ac05..6e232b76bc 100644 --- a/src/licensedcode/data/rules/apache-2.0_184.RULE +++ b/src/licensedcode/data/rules/apache-2.0_184.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -* All code and contributions are under link:/LICENSE.txt[Apache License] \ No newline at end of file +* All code and contributions are under link:/LICENSE.txt[{{Apache License}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_185.RULE b/src/licensedcode/data/rules/apache-2.0_185.RULE index f2eaa25e03..3353d74fb9 100644 --- a/src/licensedcode/data/rules/apache-2.0_185.RULE +++ b/src/licensedcode/data/rules/apache-2.0_185.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Based on code from Snap.svg (Apache 2 license) \ No newline at end of file +Based on code from Snap.svg ({{Apache 2 license}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_186.RULE b/src/licensedcode/data/rules/apache-2.0_186.RULE index a86a672f11..d012705255 100644 --- a/src/licensedcode/data/rules/apache-2.0_186.RULE +++ b/src/licensedcode/data/rules/apache-2.0_186.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +{{License: Apache 2.0}} (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_187.RULE b/src/licensedcode/data/rules/apache-2.0_187.RULE index 241ac177ef..6e48fb869b 100644 --- a/src/licensedcode/data/rules/apache-2.0_187.RULE +++ b/src/licensedcode/data/rules/apache-2.0_187.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -License: Apache 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file +{{License: Apache 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_188.RULE b/src/licensedcode/data/rules/apache-2.0_188.RULE index d1208f5091..f792f94a44 100644 --- a/src/licensedcode/data/rules/apache-2.0_188.RULE +++ b/src/licensedcode/data/rules/apache-2.0_188.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +License: {{Apache 2.0 License}} (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_189.RULE b/src/licensedcode/data/rules/apache-2.0_189.RULE index cc88028ed5..8aa837ccf0 100644 --- a/src/licensedcode/data/rules/apache-2.0_189.RULE +++ b/src/licensedcode/data/rules/apache-2.0_189.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -License: Apache 2.0 License (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file +License: {{Apache 2.0 License}} (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_19.RULE b/src/licensedcode/data/rules/apache-2.0_19.RULE index 9a27bafaf8..1c979a73a1 100644 --- a/src/licensedcode/data/rules/apache-2.0_19.RULE +++ b/src/licensedcode/data/rules/apache-2.0_19.RULE @@ -10,6 +10,6 @@ ignorable_urls: Acknowlegdement ----------------- - includes free software developed by the Apache Software Foundation + {{includes free software developed by the Apache Software Foundation }} (http://www.apache.org/) and other organizations -For more Information see legal/LIBRARIES-FAQ \ No newline at end of file +For more Information see legal/LIBRARIES-FAQ diff --git a/src/licensedcode/data/rules/apache-2.0_190.RULE b/src/licensedcode/data/rules/apache-2.0_190.RULE index 55a8521065..ea124d66b8 100644 --- a/src/licensedcode/data/rules/apache-2.0_190.RULE +++ b/src/licensedcode/data/rules/apache-2.0_190.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -License: Apache 2 (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file +{{License: Apache 2}} (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_191.RULE b/src/licensedcode/data/rules/apache-2.0_191.RULE index 1feb6fee07..902519096e 100644 --- a/src/licensedcode/data/rules/apache-2.0_191.RULE +++ b/src/licensedcode/data/rules/apache-2.0_191.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/ --- -License: Apache License 2.0 (http://www.apache.org/licenses/ \ No newline at end of file +License: {{Apache License 2.0}} (http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_192.RULE b/src/licensedcode/data/rules/apache-2.0_192.RULE index 6e6e77f15d..e031693a52 100644 --- a/src/licensedcode/data/rules/apache-2.0_192.RULE +++ b/src/licensedcode/data/rules/apache-2.0_192.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -License: Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file +License: {{Apache License 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_193.RULE b/src/licensedcode/data/rules/apache-2.0_193.RULE index 9582a43867..c9f547816b 100644 --- a/src/licensedcode/data/rules/apache-2.0_193.RULE +++ b/src/licensedcode/data/rules/apache-2.0_193.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://github.com/amplab/tachyon/blob/master/LICENSE --- -License: Apache License (https://github.com/amplab/tachyon/blob/master/LICENSE \ No newline at end of file +License: {{Apache License}} (https://github.com/amplab/tachyon/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_194.RULE b/src/licensedcode/data/rules/apache-2.0_194.RULE index 20306042cc..f1d76be53e 100644 --- a/src/licensedcode/data/rules/apache-2.0_194.RULE +++ b/src/licensedcode/data/rules/apache-2.0_194.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache License (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +License: {{Apache License}} (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_195.RULE b/src/licensedcode/data/rules/apache-2.0_195.RULE index c4104c380d..5563d4c97a 100644 --- a/src/licensedcode/data/rules/apache-2.0_195.RULE +++ b/src/licensedcode/data/rules/apache-2.0_195.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -License: Apache License (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file +License: {{Apache License}} (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_196.RULE b/src/licensedcode/data/rules/apache-2.0_196.RULE index ae154afa21..c553a03608 100644 --- a/src/licensedcode/data/rules/apache-2.0_196.RULE +++ b/src/licensedcode/data/rules/apache-2.0_196.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -License: Apache License (../LICENSE.txt \ No newline at end of file +License: {{Apache License}} (../LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_198.RULE b/src/licensedcode/data/rules/apache-2.0_198.RULE index 52690e3525..222346fad3 100644 --- a/src/licensedcode/data/rules/apache-2.0_198.RULE +++ b/src/licensedcode/data/rules/apache-2.0_198.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache License (v2.0 (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +License: {{Apache License (v2.0}} (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_199.RULE b/src/licensedcode/data/rules/apache-2.0_199.RULE index 5f74f28d5e..32960d4b18 100644 --- a/src/licensedcode/data/rules/apache-2.0_199.RULE +++ b/src/licensedcode/data/rules/apache-2.0_199.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://aws.amazon.com/apache2.0 --- -License: Apache License, Version 2.0 (https://aws.amazon.com/apache2.0 \ No newline at end of file +License: {{Apache License, Version 2.0}} (https://aws.amazon.com/apache2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_2.RULE b/src/licensedcode/data/rules/apache-2.0_2.RULE index 0fd0c1af34..a700c1f923 100644 --- a/src/licensedcode/data/rules/apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_2.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at +{{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_200.RULE b/src/licensedcode/data/rules/apache-2.0_200.RULE index 24aceaed8a..2d89ec7334 100644 --- a/src/licensedcode/data/rules/apache-2.0_200.RULE +++ b/src/licensedcode/data/rules/apache-2.0_200.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file +License: {{Apache License, Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_201.RULE b/src/licensedcode/data/rules/apache-2.0_201.RULE index 0e1b0bdef0..f379def3fe 100644 --- a/src/licensedcode/data/rules/apache-2.0_201.RULE +++ b/src/licensedcode/data/rules/apache-2.0_201.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -License: Apache License Version 2.0 (LICENSE.txt \ No newline at end of file +License: {{Apache License Version 2.0}} (LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_203.RULE b/src/licensedcode/data/rules/apache-2.0_203.RULE index a89143a849..be4874668f 100644 --- a/src/licensedcode/data/rules/apache-2.0_203.RULE +++ b/src/licensedcode/data/rules/apache-2.0_203.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache Software License - Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +License: {{Apache Software License - Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_207.RULE b/src/licensedcode/data/rules/apache-2.0_207.RULE index 9809febf1b..2a0ae64921 100644 --- a/src/licensedcode/data/rules/apache-2.0_207.RULE +++ b/src/licensedcode/data/rules/apache-2.0_207.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License: the Apache License, ASL Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +License: the {{Apache License}}, {{ASL Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_208.RULE b/src/licensedcode/data/rules/apache-2.0_208.RULE index 36bc0eb854..fed36d945d 100644 --- a/src/licensedcode/data/rules/apache-2.0_208.RULE +++ b/src/licensedcode/data/rules/apache-2.0_208.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -License: The Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file +License: The {{Apache License, Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_209.RULE b/src/licensedcode/data/rules/apache-2.0_209.RULE index 67aa34cb7b..b1affa7e94 100644 --- a/src/licensedcode/data/rules/apache-2.0_209.RULE +++ b/src/licensedcode/data/rules/apache-2.0_209.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: The Apache Software License, Version 2.0 (file://${basedir}/LICENSE \ No newline at end of file +License: {{The Apache Software License, Version 2.0}} (file://${basedir}/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_210.RULE b/src/licensedcode/data/rules/apache-2.0_210.RULE index 4bf7ffdfea..ae27bd1e26 100644 --- a/src/licensedcode/data/rules/apache-2.0_210.RULE +++ b/src/licensedcode/data/rules/apache-2.0_210.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://jpam.sourceforge.net/LICENSE.txt --- -License: The Apache Software License, Version 2.0 (http://jpam.sourceforge.net/LICENSE.txt \ No newline at end of file +License: {{The Apache Software License, Version 2.0}} (http://jpam.sourceforge.net/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_211.RULE b/src/licensedcode/data/rules/apache-2.0_211.RULE index 5cb78898da..ee8141c14e 100644 --- a/src/licensedcode/data/rules/apache-2.0_211.RULE +++ b/src/licensedcode/data/rules/apache-2.0_211.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +License: {{The Apache Software License, Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_212.RULE b/src/licensedcode/data/rules/apache-2.0_212.RULE index 07faedc316..f416da2cb4 100644 --- a/src/licensedcode/data/rules/apache-2.0_212.RULE +++ b/src/licensedcode/data/rules/apache-2.0_212.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -License: The Apache Software License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt" \ No newline at end of file +License: {{The Apache Software License, Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_215.RULE b/src/licensedcode/data/rules/apache-2.0_215.RULE index 8b93a52fa4..a5deb6e5d2 100644 --- a/src/licensedcode/data/rules/apache-2.0_215.RULE +++ b/src/licensedcode/data/rules/apache-2.0_215.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -published under the terms of the Apache Software License. \ No newline at end of file +published under the terms of the {{Apache Software License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_216.RULE b/src/licensedcode/data/rules/apache-2.0_216.RULE index 9f64502db9..777b05af0e 100644 --- a/src/licensedcode/data/rules/apache-2.0_216.RULE +++ b/src/licensedcode/data/rules/apache-2.0_216.RULE @@ -1,9 +1,10 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file +https://www.apache.org/licenses/LICENSE-2.0.txt diff --git a/src/licensedcode/data/rules/apache-2.0_217.RULE b/src/licensedcode/data/rules/apache-2.0_217.RULE index 7dcefd319f..6964877b02 100644 --- a/src/licensedcode/data/rules/apache-2.0_217.RULE +++ b/src/licensedcode/data/rules/apache-2.0_217.RULE @@ -1,7 +1,7 @@ --- license_expression: apache-2.0 is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 --- diff --git a/src/licensedcode/data/rules/apache-2.0_218.RULE b/src/licensedcode/data/rules/apache-2.0_218.RULE index 5b5781ec5f..d2e8191939 100644 --- a/src/licensedcode/data/rules/apache-2.0_218.RULE +++ b/src/licensedcode/data/rules/apache-2.0_218.RULE @@ -1,6 +1,7 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/apache-2.0_219.RULE b/src/licensedcode/data/rules/apache-2.0_219.RULE index 7a02c3df34..1d06ac2e3d 100644 --- a/src/licensedcode/data/rules/apache-2.0_219.RULE +++ b/src/licensedcode/data/rules/apache-2.0_219.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -The license is the standard wording from the Apache license \ No newline at end of file +The license is the standard wording from the {{Apache license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_22.RULE b/src/licensedcode/data/rules/apache-2.0_22.RULE index 471ab93fc9..5aaebb56ad 100644 --- a/src/licensedcode/data/rules/apache-2.0_22.RULE +++ b/src/licensedcode/data/rules/apache-2.0_22.RULE @@ -9,5 +9,5 @@ ignorable_urls: - OSGi Alliance Notice ---------------------------------------------------------------------- This product includes the OSGi Service Platform API code from the OSGi -Alliance provided under an Apache 2 license. +Alliance provided under an {{Apache 2 license}}. http://www.osgi.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_220.RULE b/src/licensedcode/data/rules/apache-2.0_220.RULE index 167bec4074..a98c392243 100644 --- a/src/licensedcode/data/rules/apache-2.0_220.RULE +++ b/src/licensedcode/data/rules/apache-2.0_220.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Apache Software License - Version 2.0 \ No newline at end of file +Apache Software License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_2216.RULE b/src/licensedcode/data/rules/apache-2.0_2216.RULE index 944adfbac2..041e551a57 100644 --- a/src/licensedcode/data/rules/apache-2.0_2216.RULE +++ b/src/licensedcode/data/rules/apache-2.0_2216.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- This program and the accompanying materials - are made available under the terms of the Apache License, Version 2.0 which + are made available under the terms of the {{Apache License, Version 2.0}} which accompanies this distribution and is available at http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_2217.RULE b/src/licensedcode/data/rules/apache-2.0_2217.RULE index e370d6fc87..058fc8072d 100644 --- a/src/licensedcode/data/rules/apache-2.0_2217.RULE +++ b/src/licensedcode/data/rules/apache-2.0_2217.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- This program and the accompanying materials - are made available under the terms of the Apache License, Version 2.0 \ No newline at end of file + are made available under the terms of the {{Apache License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_223.RULE b/src/licensedcode/data/rules/apache-2.0_223.RULE index c81926e141..c4afcecc80 100644 --- a/src/licensedcode/data/rules/apache-2.0_223.RULE +++ b/src/licensedcode/data/rules/apache-2.0_223.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the Apache License, ASL Version 2.0 \ No newline at end of file +the {{Apache License}}, {{ASL Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_224.RULE b/src/licensedcode/data/rules/apache-2.0_224.RULE index f74d957b09..328c2f374b 100644 --- a/src/licensedcode/data/rules/apache-2.0_224.RULE +++ b/src/licensedcode/data/rules/apache-2.0_224.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -and is Apache License 2.0. \ No newline at end of file +and is {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_225.RULE b/src/licensedcode/data/rules/apache-2.0_225.RULE index da6c01ba20..59b7f9c798 100644 --- a/src/licensedcode/data/rules/apache-2.0_225.RULE +++ b/src/licensedcode/data/rules/apache-2.0_225.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is Apache License 2.0. \ No newline at end of file +is {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_226.RULE b/src/licensedcode/data/rules/apache-2.0_226.RULE index 8269961994..0e99f3140c 100644 --- a/src/licensedcode/data/rules/apache-2.0_226.RULE +++ b/src/licensedcode/data/rules/apache-2.0_226.RULE @@ -9,10 +9,10 @@ ignorable_urls: - The Apache Software License, Version 2.0 + {{The Apache Software License, Version 2.0}} http://ehcache.sourceforge.net/LICENSE.txt repo - The license is the standard wording from the Apache license, but with + The license is the standard wording from the {{Apache license}}, but with Greg Luck as copyright owner. diff --git a/src/licensedcode/data/rules/apache-2.0_227.RULE b/src/licensedcode/data/rules/apache-2.0_227.RULE index 3b17725e35..5cc2eea125 100644 --- a/src/licensedcode/data/rules/apache-2.0_227.RULE +++ b/src/licensedcode/data/rules/apache-2.0_227.RULE @@ -9,5 +9,5 @@ ignorable_urls: - The Apache Software License, Version 2.0 + {{The Apache Software License, Version 2.0}} http://ehcache.sourceforge.net/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_228.RULE b/src/licensedcode/data/rules/apache-2.0_228.RULE index d65b97540e..408b53c92f 100644 --- a/src/licensedcode/data/rules/apache-2.0_228.RULE +++ b/src/licensedcode/data/rules/apache-2.0_228.RULE @@ -5,6 +5,6 @@ relevance: 100 minimum_coverage: 100 --- -The license is the standard wording from the Apache license, but with +The license is the standard wording from the {{Apache license}}, but with Greg Luck as copyright owner. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_229.RULE b/src/licensedcode/data/rules/apache-2.0_229.RULE index 0856a8d51e..cb8e2bd601 100644 --- a/src/licensedcode/data/rules/apache-2.0_229.RULE +++ b/src/licensedcode/data/rules/apache-2.0_229.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -code is licensed under the Apache Software License 2.0, which is +code is licensed under the {{Apache Software License 2.0}}, which is in the LICENSE in the root directory of this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_23.RULE b/src/licensedcode/data/rules/apache-2.0_23.RULE index f7714e8f33..1e163f09ba 100644 --- a/src/licensedcode/data/rules/apache-2.0_23.RULE +++ b/src/licensedcode/data/rules/apache-2.0_23.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0(the "License"); +{{Licensed under the Apache License, Version 2.0(the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_231.RULE b/src/licensedcode/data/rules/apache-2.0_231.RULE index 5d47ae50d5..beafb42870 100644 --- a/src/licensedcode/data/rules/apache-2.0_231.RULE +++ b/src/licensedcode/data/rules/apache-2.0_231.RULE @@ -9,7 +9,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -22,5 +22,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. -On Debian systems, the complete text of the Apache License Version 2.0, +On Debian systems, the complete text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_232.RULE b/src/licensedcode/data/rules/apache-2.0_232.RULE index 1c6116f5a0..75d2536c22 100644 --- a/src/licensedcode/data/rules/apache-2.0_232.RULE +++ b/src/licensedcode/data/rules/apache-2.0_232.RULE @@ -7,5 +7,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems, the complete text of the Apache License Version 2.0, +On Debian systems, the complete text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_233.RULE b/src/licensedcode/data/rules/apache-2.0_233.RULE index c85094d19c..ad7f01d319 100644 --- a/src/licensedcode/data/rules/apache-2.0_233.RULE +++ b/src/licensedcode/data/rules/apache-2.0_233.RULE @@ -6,8 +6,8 @@ ignorable_urls: --- This program and the accompanying materials -are made available under the terms of the under the Apache License, -Version 2.0 (the "License”); you may not use this file except in compliance +are made available under the terms of the under the {{Apache License, +Version 2.0}} (the "License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_234.RULE b/src/licensedcode/data/rules/apache-2.0_234.RULE index 62faa452d8..3d94d36eed 100644 --- a/src/licensedcode/data/rules/apache-2.0_234.RULE +++ b/src/licensedcode/data/rules/apache-2.0_234.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -which is covered by an Apache 2.0 license \ No newline at end of file +which is covered by an {{Apache 2.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_235.RULE b/src/licensedcode/data/rules/apache-2.0_235.RULE index 56f4dff588..16aa096810 100644 --- a/src/licensedcode/data/rules/apache-2.0_235.RULE +++ b/src/licensedcode/data/rules/apache-2.0_235.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_236.RULE b/src/licensedcode/data/rules/apache-2.0_236.RULE index ff27e4af1e..db335f9672 100644 --- a/src/licensedcode/data/rules/apache-2.0_236.RULE +++ b/src/licensedcode/data/rules/apache-2.0_236.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -* The Project licenses this file to you under the Apache License, - * version 2.0 (the "License"); you may not use this file except in compliance +* The Project licenses this file to you under the {{Apache License, + * version 2.0}} (the "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_237.RULE b/src/licensedcode/data/rules/apache-2.0_237.RULE index 839fe597b1..e6669df14c 100644 --- a/src/licensedcode/data/rules/apache-2.0_237.RULE +++ b/src/licensedcode/data/rules/apache-2.0_237.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -is licensed under the Apache -2.0 license. \ No newline at end of file +is {{licensed under the Apache +2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_238.RULE b/src/licensedcode/data/rules/apache-2.0_238.RULE index abff7f6390..4aedf9f9bf 100644 --- a/src/licensedcode/data/rules/apache-2.0_238.RULE +++ b/src/licensedcode/data/rules/apache-2.0_238.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -licensed under the Apache 2.0 license. \ No newline at end of file +licensed under the Apache 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_239.RULE b/src/licensedcode/data/rules/apache-2.0_239.RULE index a98398c44a..fd3f6950e0 100644 --- a/src/licensedcode/data/rules/apache-2.0_239.RULE +++ b/src/licensedcode/data/rules/apache-2.0_239.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This material is licensed under the Apache Software License, Version 2.0 \ No newline at end of file +This material is licensed under {{the Apache Software License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_24.RULE b/src/licensedcode/data/rules/apache-2.0_24.RULE index f51ba40d53..a3019812b4 100644 --- a/src/licensedcode/data/rules/apache-2.0_24.RULE +++ b/src/licensedcode/data/rules/apache-2.0_24.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://aws.amazon.com/apache2.0 --- -* Licensed under the Apache License, Version 2.0 (the "License"). +* {{Licensed under the Apache License, Version 2.0 (the "License}}"). * You may not use this file except in compliance with the License. * A copy of the License is located at * diff --git a/src/licensedcode/data/rules/apache-2.0_240.RULE b/src/licensedcode/data/rules/apache-2.0_240.RULE index 83f4f93e7c..994165b9bd 100644 --- a/src/licensedcode/data/rules/apache-2.0_240.RULE +++ b/src/licensedcode/data/rules/apache-2.0_240.RULE @@ -9,7 +9,7 @@ ignorable_urls: - Apache License Version 2 + {{Apache License Version 2}} http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_241.RULE b/src/licensedcode/data/rules/apache-2.0_241.RULE index 104e3e748f..ee4971fdcd 100644 --- a/src/licensedcode/data/rules/apache-2.0_241.RULE +++ b/src/licensedcode/data/rules/apache-2.0_241.RULE @@ -12,5 +12,5 @@ ignorable_urls: ## License This SDK is distributed under the -[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0), +[{{Apache License, Version 2.0}}](http://www.apache.org/licenses/LICENSE-2.0), see LICENSE.txt and NOTICE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_242.RULE b/src/licensedcode/data/rules/apache-2.0_242.RULE index 7f4a92f158..c06e1c2318 100644 --- a/src/licensedcode/data/rules/apache-2.0_242.RULE +++ b/src/licensedcode/data/rules/apache-2.0_242.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -released under the Apache 2.0 license. See [LICENSE.txt] \ No newline at end of file +released under the {{Apache 2.0 license}}. See [LICENSE.txt] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_243.RULE b/src/licensedcode/data/rules/apache-2.0_243.RULE index 29a2c4cc66..d1b4d03437 100644 --- a/src/licensedcode/data/rules/apache-2.0_243.RULE +++ b/src/licensedcode/data/rules/apache-2.0_243.RULE @@ -9,5 +9,5 @@ referenced_filenames: License license -Project source code files are made available under the Apache License, Version 2.0 -(Apache-2.0), located in the [LICENSE](LICENSE) file. \ No newline at end of file +Project source code files are made available under the {{Apache License, Version 2.0}} +({{Apache-2.0}}), located in the [LICENSE](LICENSE) file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_244.RULE b/src/licensedcode/data/rules/apache-2.0_244.RULE index 00c72abc07..0b62b5b36f 100644 --- a/src/licensedcode/data/rules/apache-2.0_244.RULE +++ b/src/licensedcode/data/rules/apache-2.0_244.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -Project source code files are made available under the Apache License, Version 2.0 -(Apache-2.0), located in the [LICENSE](LICENSE) file. \ No newline at end of file +Project source code files are made available under the {{Apache License, Version 2.0}} +({{Apache-2.0}}), located in the [LICENSE](LICENSE) file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_245.RULE b/src/licensedcode/data/rules/apache-2.0_245.RULE index fd57957f60..15fd18d2d9 100644 --- a/src/licensedcode/data/rules/apache-2.0_245.RULE +++ b/src/licensedcode/data/rules/apache-2.0_245.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- Code is released under the -[Apache 2.0 license](LICENSE.code). \ No newline at end of file +[{{Apache 2.0 license}}](LICENSE.code). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_247.RULE b/src/licensedcode/data/rules/apache-2.0_247.RULE index 7686b5743f..8ba7d8de99 100644 --- a/src/licensedcode/data/rules/apache-2.0_247.RULE +++ b/src/licensedcode/data/rules/apache-2.0_247.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The software is released under the terms of the Apache License, version 2.0. \ No newline at end of file +The software is released under the terms of the {{Apache License, version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_25.RULE b/src/licensedcode/data/rules/apache-2.0_25.RULE index 0f1d596735..f82e85997e 100644 --- a/src/licensedcode/data/rules/apache-2.0_25.RULE +++ b/src/licensedcode/data/rules/apache-2.0_25.RULE @@ -1,9 +1,10 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_250.RULE b/src/licensedcode/data/rules/apache-2.0_250.RULE index fbfa37333d..8dde3be5bf 100644 --- a/src/licensedcode/data/rules/apache-2.0_250.RULE +++ b/src/licensedcode/data/rules/apache-2.0_250.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -redistributed under the Apache Software - License v2.0 \ No newline at end of file +redistributed under the {{Apache Software + License v2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_251.RULE b/src/licensedcode/data/rules/apache-2.0_251.RULE index a4fd5bfdf7..ce3e753f52 100644 --- a/src/licensedcode/data/rules/apache-2.0_251.RULE +++ b/src/licensedcode/data/rules/apache-2.0_251.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -the Apache Software - License v2.0 \ No newline at end of file +the {{Apache Software + License v2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_252.RULE b/src/licensedcode/data/rules/apache-2.0_252.RULE index 51fb8ce31e..e334ce7431 100644 --- a/src/licensedcode/data/rules/apache-2.0_252.RULE +++ b/src/licensedcode/data/rules/apache-2.0_252.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The complete text of the Apache 2.0 License is as follows: \ No newline at end of file +The complete text of the {{Apache 2.0 License}} is as follows: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_253.RULE b/src/licensedcode/data/rules/apache-2.0_253.RULE index 0229d69c7d..988a7c32e1 100644 --- a/src/licensedcode/data/rules/apache-2.0_253.RULE +++ b/src/licensedcode/data/rules/apache-2.0_253.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -released under the Apache 2.0 license. +released under the {{Apache 2.0 license}}. See LICENSE for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_254.RULE b/src/licensedcode/data/rules/apache-2.0_254.RULE index b0611af055..6a39b4f8cd 100644 --- a/src/licensedcode/data/rules/apache-2.0_254.RULE +++ b/src/licensedcode/data/rules/apache-2.0_254.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -Per the LICENSE file licensed under the Apache License, version 2.0, the text of which +Per the LICENSE file {{licensed under the Apache License, version 2.0}}, the text of which is included above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_256.RULE b/src/licensedcode/data/rules/apache-2.0_256.RULE index cfbd5f9110..93856aa6fb 100644 --- a/src/licensedcode/data/rules/apache-2.0_256.RULE +++ b/src/licensedcode/data/rules/apache-2.0_256.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -apache2 Apache License Version 2.0 +apache2 {{Apache License Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_257.RULE b/src/licensedcode/data/rules/apache-2.0_257.RULE index 55a8515bbe..82039db491 100644 --- a/src/licensedcode/data/rules/apache-2.0_257.RULE +++ b/src/licensedcode/data/rules/apache-2.0_257.RULE @@ -6,9 +6,9 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -"licenses": [ +{{"licenses": [ { - "type": "Apache-2.0", + "type": "Apache-2.0}}", "url": "http://www.apache.org/licenses/LICENSE-2.0" } ], \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_258.RULE b/src/licensedcode/data/rules/apache-2.0_258.RULE index a9664c0b07..1c8114fadd 100644 --- a/src/licensedcode/data/rules/apache-2.0_258.RULE +++ b/src/licensedcode/data/rules/apache-2.0_258.RULE @@ -6,10 +6,10 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -"license": "Apache-2.0", - "licenses": [ +"{{license": "Apache-2.0}}", + "{{licenses": [ { - "type": "Apache-2.0", + "type": "Apache-2.0}}", "url": "http://www.apache.org/licenses/LICENSE-2.0" } ], \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_259.RULE b/src/licensedcode/data/rules/apache-2.0_259.RULE index d8289bbcfe..2b87a7309c 100644 --- a/src/licensedcode/data/rules/apache-2.0_259.RULE +++ b/src/licensedcode/data/rules/apache-2.0_259.RULE @@ -7,9 +7,9 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -SPDX-License-Identifier: Apache-2.0 +SPDX-License-Identifier: {{Apache-2.0}} -Licensed under the Apache License, Version 2.0 (the "License"); you may +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_25_notice.RULE b/src/licensedcode/data/rules/apache-2.0_25_notice.RULE index 3a1b8f8a82..03cdb8d90b 100644 --- a/src/licensedcode/data/rules/apache-2.0_25_notice.RULE +++ b/src/licensedcode/data/rules/apache-2.0_25_notice.RULE @@ -7,11 +7,11 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -* Licensed to the Apache Software Foundation (ASF) under one +* {{Licensed to the Apache Software Foundation}} (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the + * to you under the {{Apache License, Version 2.0}} (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * @@ -28,4 +28,4 @@ ignorable_urls: * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see - * . \ No newline at end of file + * . diff --git a/src/licensedcode/data/rules/apache-2.0_260.RULE b/src/licensedcode/data/rules/apache-2.0_260.RULE index 9ec694d4ae..0d34947c2b 100644 --- a/src/licensedcode/data/rules/apache-2.0_260.RULE +++ b/src/licensedcode/data/rules/apache-2.0_260.RULE @@ -7,4 +7,4 @@ notes: Thrift Software License is a boost-1.0 The following files contain some portions of code contributed under the Thrift Software License (see doc/old-thrift-license.txt), and relicensed -under the Apache 2.0 License: \ No newline at end of file +under the {{Apache 2.0 License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_261.RULE b/src/licensedcode/data/rules/apache-2.0_261.RULE index 3dff8dbb3f..510c98aeb7 100644 --- a/src/licensedcode/data/rules/apache-2.0_261.RULE +++ b/src/licensedcode/data/rules/apache-2.0_261.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This package and the Debian packaging is licensed under the Apache License, -see `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file +This package and the Debian packaging is licensed under the {{Apache License}}, +see `{{/usr/share/common-licenses/Apache-2.0}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_262.RULE b/src/licensedcode/data/rules/apache-2.0_262.RULE index e540f0cf65..6e4c165b6b 100644 --- a/src/licensedcode/data/rules/apache-2.0_262.RULE +++ b/src/licensedcode/data/rules/apache-2.0_262.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- - \ No newline at end of file + \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_263.RULE b/src/licensedcode/data/rules/apache-2.0_263.RULE index 3aee535f7d..b42cdc65e0 100644 --- a/src/licensedcode/data/rules/apache-2.0_263.RULE +++ b/src/licensedcode/data/rules/apache-2.0_263.RULE @@ -6,11 +6,11 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed to the Apache Software Foundation (ASF) under one +{{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the + to you under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_264.RULE b/src/licensedcode/data/rules/apache-2.0_264.RULE index 06e8e041d8..52ccb296e3 100644 --- a/src/licensedcode/data/rules/apache-2.0_264.RULE +++ b/src/licensedcode/data/rules/apache-2.0_264.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: Apache License v2.0 \ No newline at end of file +License: {{Apache License v2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_266.RULE b/src/licensedcode/data/rules/apache-2.0_266.RULE index 478a9f469b..3721e72811 100644 --- a/src/licensedcode/data/rules/apache-2.0_266.RULE +++ b/src/licensedcode/data/rules/apache-2.0_266.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -Licensed under Apache License, Version 2.0. \ No newline at end of file +Licensed under Apache License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_267.RULE b/src/licensedcode/data/rules/apache-2.0_267.RULE index 150451880a..bb0c8eb26f 100644 --- a/src/licensedcode/data/rules/apache-2.0_267.RULE +++ b/src/licensedcode/data/rules/apache-2.0_267.RULE @@ -6,5 +6,5 @@ relevance: 100 licenses { license { - name 'The Apache Software License, Version 2.0' + name '{{The Apache Software License, Version 2.0}}' url "${project.license}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_268.RULE b/src/licensedcode/data/rules/apache-2.0_268.RULE index abdadc9406..414c7c8335 100644 --- a/src/licensedcode/data/rules/apache-2.0_268.RULE +++ b/src/licensedcode/data/rules/apache-2.0_268.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -license" : "Apache License, Version 2.0" +license" : "{{Apache License, Version 2.0}}" url" : "http://www.apache.org/licenses/LICENSE-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_27.RULE b/src/licensedcode/data/rules/apache-2.0_27.RULE index 879f63378e..1c6196f1eb 100644 --- a/src/licensedcode/data/rules/apache-2.0_27.RULE +++ b/src/licensedcode/data/rules/apache-2.0_27.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is released under the [Apache License, Version 2.0]. \ No newline at end of file +is released under the [{{Apache License, Version 2.0}}]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_272.RULE b/src/licensedcode/data/rules/apache-2.0_272.RULE index 41b70ffd98..39fbc4decb 100644 --- a/src/licensedcode/data/rules/apache-2.0_272.RULE +++ b/src/licensedcode/data/rules/apache-2.0_272.RULE @@ -1,6 +1,7 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://aws.amazon.com/apache2.0/ diff --git a/src/licensedcode/data/rules/apache-2.0_28.RULE b/src/licensedcode/data/rules/apache-2.0_28.RULE index 2033a8932b..bd69401b4e 100644 --- a/src/licensedcode/data/rules/apache-2.0_28.RULE +++ b/src/licensedcode/data/rules/apache-2.0_28.RULE @@ -5,13 +5,13 @@ notes: Weird apache notice, gpl-style --- This program is free software; you can redistribute it and/or - modify it under the terms of the Apache License, Version 2.0 + modify it under the terms of the {{Apache License, Version 2.0}} as published by the Apache Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - Apache License for more details. + {{Apache License}} for more details. - You should have received a copy of the Apache License along + You should have received a {{copy of the Apache License}} along with this program; if not, contact to the Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_284.RULE b/src/licensedcode/data/rules/apache-2.0_284.RULE index 3507bd1844..eea31cc733 100644 --- a/src/licensedcode/data/rules/apache-2.0_284.RULE +++ b/src/licensedcode/data/rules/apache-2.0_284.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the Apache Software License 2.0 (see license text below) \ No newline at end of file +Licensed under the {{Apache Software License 2.0}} (see license text below) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_285.RULE b/src/licensedcode/data/rules/apache-2.0_285.RULE index 7cf69ef109..8fe79ba6d0 100644 --- a/src/licensedcode/data/rules/apache-2.0_285.RULE +++ b/src/licensedcode/data/rules/apache-2.0_285.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this project except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_286.RULE b/src/licensedcode/data/rules/apache-2.0_286.RULE index a114649bc4..5b6bf5bd9f 100644 --- a/src/licensedcode/data/rules/apache-2.0_286.RULE +++ b/src/licensedcode/data/rules/apache-2.0_286.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://tldrlegal.com/license/apache-license-2.0- --- -https://tldrlegal.com/license/apache-license-2.0-(apache-2.0) \ No newline at end of file +https://tldrlegal.com/license/apache-license-2.0-({{apache-2.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_29.RULE b/src/licensedcode/data/rules/apache-2.0_29.RULE index 03b022d473..f3347ab18a 100644 --- a/src/licensedcode/data/rules/apache-2.0_29.RULE +++ b/src/licensedcode/data/rules/apache-2.0_29.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This library is licensed under the Apache 2.0 License. \ No newline at end of file +This library is {{licensed under the Apache 2.0 License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_291.RULE b/src/licensedcode/data/rules/apache-2.0_291.RULE index b199f15e3d..f0ad123a8e 100644 --- a/src/licensedcode/data/rules/apache-2.0_291.RULE +++ b/src/licensedcode/data/rules/apache-2.0_291.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the Apache License, Version 2 \ No newline at end of file +Licensed under the {{Apache License, Version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_293.RULE b/src/licensedcode/data/rules/apache-2.0_293.RULE index a74850d8ca..1a14020d29 100644 --- a/src/licensedcode/data/rules/apache-2.0_293.RULE +++ b/src/licensedcode/data/rules/apache-2.0_293.RULE @@ -4,5 +4,5 @@ is_license_tag: yes relevance: 100 --- -license: Apache Software - license_family: Apache \ No newline at end of file +license: {{Apache Software + license}}_family: Apache \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_294.RULE b/src/licensedcode/data/rules/apache-2.0_294.RULE index 87d7efb283..6da08f76c1 100644 --- a/src/licensedcode/data/rules/apache-2.0_294.RULE +++ b/src/licensedcode/data/rules/apache-2.0_294.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE --- -license: Apache Software - license_family: Apache - license_file: LICENSE \ No newline at end of file +license: {{Apache Software + license}}_family: {{Apache + license}}_file: LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_295.RULE b/src/licensedcode/data/rules/apache-2.0_295.RULE index 1f57ba9c3a..d34721b050 100644 --- a/src/licensedcode/data/rules/apache-2.0_295.RULE +++ b/src/licensedcode/data/rules/apache-2.0_295.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. \ No newline at end of file +{{Licensed under the Apache License, Version 2.0 (the \"License}}\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. See the {{Apache Version 2.0 License}} for specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_296.RULE b/src/licensedcode/data/rules/apache-2.0_296.RULE index 0eca2794b6..fd25e183a6 100644 --- a/src/licensedcode/data/rules/apache-2.0_296.RULE +++ b/src/licensedcode/data/rules/apache-2.0_296.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE --- -This script falls under the Apache License. +This script falls under the {{Apache License}}. See http://www.apache.org/licenses/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_297.RULE b/src/licensedcode/data/rules/apache-2.0_297.RULE index 61e2a5431a..7dcc6d6ba1 100644 --- a/src/licensedcode/data/rules/apache-2.0_297.RULE +++ b/src/licensedcode/data/rules/apache-2.0_297.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -* The Apache 2.0 License +* The {{Apache 2.0 License}} http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_298.RULE b/src/licensedcode/data/rules/apache-2.0_298.RULE index f39dc76724..ec20be63eb 100644 --- a/src/licensedcode/data/rules/apache-2.0_298.RULE +++ b/src/licensedcode/data/rules/apache-2.0_298.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -* The Apache 2.0 License +* The {{Apache 2.0 License}} https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_299.RULE b/src/licensedcode/data/rules/apache-2.0_299.RULE index d4a7a8110b..ad159c8b54 100644 --- a/src/licensedcode/data/rules/apache-2.0_299.RULE +++ b/src/licensedcode/data/rules/apache-2.0_299.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Project uses the Apache License Version 2.0 software license. \ No newline at end of file +Project uses the {{Apache License Version 2.0}} software license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_2_1.RULE b/src/licensedcode/data/rules/apache-2.0_2_1.RULE index 51151a3857..d09392af6f 100644 --- a/src/licensedcode/data/rules/apache-2.0_2_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_2_1.RULE @@ -9,7 +9,7 @@ ignorable_urls: If licensing your own work: Copyright [yyyy] [name of copyright owner] -Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_3.RULE b/src/licensedcode/data/rules/apache-2.0_3.RULE index 8942a596dc..84b14dbb08 100644 --- a/src/licensedcode/data/rules/apache-2.0_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_3.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 75 --- -{{Apache License 2.0}} \ No newline at end of file +Apache License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_30.RULE b/src/licensedcode/data/rules/apache-2.0_30.RULE index c0a5f1277b..136598795b 100644 --- a/src/licensedcode/data/rules/apache-2.0_30.RULE +++ b/src/licensedcode/data/rules/apache-2.0_30.RULE @@ -5,6 +5,6 @@ minimum_coverage: 20 notes: Apache license variant --- -Apache, the Apache feather logo, and OpenOffice are trademarks of The Apache Software Foundation. +Apache, the Apache feather logo, and OpenOffice are {{trademarks of The Apache Software Foundation}}. OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. -Other names appearing on the site may be trademarks of their respective owners. \ No newline at end of file +Other names appearing on the site may be trademarks of their respective owners. diff --git a/src/licensedcode/data/rules/apache-2.0_300.RULE b/src/licensedcode/data/rules/apache-2.0_300.RULE index c53d8213fd..f3027e36ce 100644 --- a/src/licensedcode/data/rules/apache-2.0_300.RULE +++ b/src/licensedcode/data/rules/apache-2.0_300.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -== NOTICE file corresponding to section 4 d of the Apache License, == -== Version 2.0 == \ No newline at end of file +== NOTICE file corresponding to section 4 d of the {{Apache License, == +== Version 2.0}} == \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_301.RULE b/src/licensedcode/data/rules/apache-2.0_301.RULE index e693716208..c39739d551 100644 --- a/src/licensedcode/data/rules/apache-2.0_301.RULE +++ b/src/licensedcode/data/rules/apache-2.0_301.RULE @@ -12,7 +12,7 @@ ignorable_urls: Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. - Accellera licenses this file to you under the Apache License, Version 2.0 + Accellera licenses this file to you under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_303.RULE b/src/licensedcode/data/rules/apache-2.0_303.RULE index 15d6ebcb48..175bcece53 100644 --- a/src/licensedcode/data/rules/apache-2.0_303.RULE +++ b/src/licensedcode/data/rules/apache-2.0_303.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This software is licensed under the Apache 2.0 License. \ No newline at end of file +This software is {{licensed under the Apache 2.0 License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_304.RULE b/src/licensedcode/data/rules/apache-2.0_304.RULE index ec253fc952..13c90c531f 100644 --- a/src/licensedcode/data/rules/apache-2.0_304.RULE +++ b/src/licensedcode/data/rules/apache-2.0_304.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -Apache 2 license; see COPYING \ No newline at end of file +{{Apache 2 license}}; see COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_305.RULE b/src/licensedcode/data/rules/apache-2.0_305.RULE index 4412f646d4..86d3a82044 100644 --- a/src/licensedcode/data/rules/apache-2.0_305.RULE +++ b/src/licensedcode/data/rules/apache-2.0_305.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Apache 2 license \ No newline at end of file +Apache 2 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_306.RULE b/src/licensedcode/data/rules/apache-2.0_306.RULE index 1f87d4dcde..c3a950c822 100644 --- a/src/licensedcode/data/rules/apache-2.0_306.RULE +++ b/src/licensedcode/data/rules/apache-2.0_306.RULE @@ -6,4 +6,4 @@ referenced_filenames: - INHERIT_LICENSE_FROM_PACKAGE --- -This file is distributed under the same license as the {{Puppet}} {{automation}} framework package. \ No newline at end of file +This file is {{distributed under the same license as the Puppet automation}} framework package. diff --git a/src/licensedcode/data/rules/apache-2.0_308.RULE b/src/licensedcode/data/rules/apache-2.0_308.RULE index ce7ebe526f..5cb3f9f322 100644 --- a/src/licensedcode/data/rules/apache-2.0_308.RULE +++ b/src/licensedcode/data/rules/apache-2.0_308.RULE @@ -7,4 +7,4 @@ referenced_filenames: - LICENSE --- -distributed under the Apache 2 license; the text of this license can be found in the LICENSE file. \ No newline at end of file +distributed under the {{Apache 2 license}}; the text of this license can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_309.RULE b/src/licensedcode/data/rules/apache-2.0_309.RULE index b2a4805a55..9f1f51b709 100644 --- a/src/licensedcode/data/rules/apache-2.0_309.RULE +++ b/src/licensedcode/data/rules/apache-2.0_309.RULE @@ -8,4 +8,4 @@ ignorable_urls: License licensed under the -[Apache 2 license](http://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file +[{{Apache 2 license}}](http://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_310.RULE b/src/licensedcode/data/rules/apache-2.0_310.RULE index 01ab5aed38..a541431b8d 100644 --- a/src/licensedcode/data/rules/apache-2.0_310.RULE +++ b/src/licensedcode/data/rules/apache-2.0_310.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- licensed under the -[Apache 2 license](http://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file +[{{Apache 2 license}}](http://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_312.RULE b/src/licensedcode/data/rules/apache-2.0_312.RULE index 32a0932938..5c687d5a59 100644 --- a/src/licensedcode/data/rules/apache-2.0_312.RULE +++ b/src/licensedcode/data/rules/apache-2.0_312.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -subcomponent licensed under the Apache License 2.0. \ No newline at end of file +subcomponent licensed under the {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_313.RULE b/src/licensedcode/data/rules/apache-2.0_313.RULE index bce1257ef9..6690dd729d 100644 --- a/src/licensedcode/data/rules/apache-2.0_313.RULE +++ b/src/licensedcode/data/rules/apache-2.0_313.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Apache License 2.0. \ No newline at end of file +licensed under the {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_314.RULE b/src/licensedcode/data/rules/apache-2.0_314.RULE index 4e6cf7e3bd..d08dce5125 100644 --- a/src/licensedcode/data/rules/apache-2.0_314.RULE +++ b/src/licensedcode/data/rules/apache-2.0_314.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- Use of this source code is governed by the -Apache 2.0 license that can be found in the license/LICENSE.txt file." \ No newline at end of file +{{Apache 2.0 license}} that can be found in the license/LICENSE.txt file." \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_315.RULE b/src/licensedcode/data/rules/apache-2.0_315.RULE index 48e03cbafa..af6518b8e1 100644 --- a/src/licensedcode/data/rules/apache-2.0_315.RULE +++ b/src/licensedcode/data/rules/apache-2.0_315.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses = ["notice"], # Apache 2.0 \ No newline at end of file +licenses = ["notice"], # {{Apache 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_316.RULE b/src/licensedcode/data/rules/apache-2.0_316.RULE index 6350bc2d9f..01eb2c3df2 100644 --- a/src/licensedcode/data/rules/apache-2.0_316.RULE +++ b/src/licensedcode/data/rules/apache-2.0_316.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -under the Apache 2.0 license. See the LICENSE file for details. \ No newline at end of file +under the {{Apache 2.0 license}}. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_317.RULE b/src/licensedcode/data/rules/apache-2.0_317.RULE index 2178f5cdf2..bff527c512 100644 --- a/src/licensedcode/data/rules/apache-2.0_317.RULE +++ b/src/licensedcode/data/rules/apache-2.0_317.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -distributed under Apache 2.0 License. More details in LICENSE. \ No newline at end of file +distributed under {{Apache 2.0 License}}. More details in LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_318.RULE b/src/licensedcode/data/rules/apache-2.0_318.RULE index da8400cfb5..3618fcf45a 100644 --- a/src/licensedcode/data/rules/apache-2.0_318.RULE +++ b/src/licensedcode/data/rules/apache-2.0_318.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This code is licensed under Apache License, Version 2.0 (ASL2.0). \ No newline at end of file +This code is {{licensed under Apache License, Version 2.0}} (ASL2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_319.RULE b/src/licensedcode/data/rules/apache-2.0_319.RULE index 4bc9e8ccce..61c8b06d75 100644 --- a/src/licensedcode/data/rules/apache-2.0_319.RULE +++ b/src/licensedcode/data/rules/apache-2.0_319.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is licensed under Apache License, Version 2.0 (ASL2.0). \ No newline at end of file +This code is {{licensed under Apache License, Version 2.0}} (ASL2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_32.RULE b/src/licensedcode/data/rules/apache-2.0_32.RULE index f13a9b030b..9be7165e1d 100644 --- a/src/licensedcode/data/rules/apache-2.0_32.RULE +++ b/src/licensedcode/data/rules/apache-2.0_32.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Declaration in difference language --- -Open Source unter der Apache License Version 2 \ No newline at end of file +Open Source unter der {{Apache License Version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_320.RULE b/src/licensedcode/data/rules/apache-2.0_320.RULE index 0fdc437d11..9f42964e2d 100644 --- a/src/licensedcode/data/rules/apache-2.0_320.RULE +++ b/src/licensedcode/data/rules/apache-2.0_320.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under Apache License, Version 2.0 (ASL2.0). \ No newline at end of file +{{licensed under Apache License, Version 2.0}} (ASL2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_321.RULE b/src/licensedcode/data/rules/apache-2.0_321.RULE index 568e3f4f08..a0e279625f 100644 --- a/src/licensedcode/data/rules/apache-2.0_321.RULE +++ b/src/licensedcode/data/rules/apache-2.0_321.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -licensed under Apache License, Version 2.0, as found in the LICENSE file. \ No newline at end of file +{{licensed under Apache License, Version 2.0}}, as found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_322.RULE b/src/licensedcode/data/rules/apache-2.0_322.RULE index 8339abcbbd..3d87f46fc6 100644 --- a/src/licensedcode/data/rules/apache-2.0_322.RULE +++ b/src/licensedcode/data/rules/apache-2.0_322.RULE @@ -1,6 +1,7 @@ --- license_expression: apache-2.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/apache-2.0_323.RULE b/src/licensedcode/data/rules/apache-2.0_323.RULE index dec33fc722..6d98f3c950 100644 --- a/src/licensedcode/data/rules/apache-2.0_323.RULE +++ b/src/licensedcode/data/rules/apache-2.0_323.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Apache Software License \ No newline at end of file +Apache Software License diff --git a/src/licensedcode/data/rules/apache-2.0_324.RULE b/src/licensedcode/data/rules/apache-2.0_324.RULE index c4a77247d7..84e62a3c88 100644 --- a/src/licensedcode/data/rules/apache-2.0_324.RULE +++ b/src/licensedcode/data/rules/apache-2.0_324.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at [apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) diff --git a/src/licensedcode/data/rules/apache-2.0_325.RULE b/src/licensedcode/data/rules/apache-2.0_325.RULE index 420aa04582..f88a6c46b5 100644 --- a/src/licensedcode/data/rules/apache-2.0_325.RULE +++ b/src/licensedcode/data/rules/apache-2.0_325.RULE @@ -14,7 +14,7 @@ license. Because this is my personal repository, the license you receive to my code and resources is from me and not my employer -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_327.RULE b/src/licensedcode/data/rules/apache-2.0_327.RULE index 4d0a45612f..acd86ec79b 100644 --- a/src/licensedcode/data/rules/apache-2.0_327.RULE +++ b/src/licensedcode/data/rules/apache-2.0_327.RULE @@ -8,4 +8,4 @@ referenced_filenames: License -This project is licensed under the terms of the Apache 2.0 open source license. Please refer to LICENSE for the full terms. \ No newline at end of file +This project is licensed under the terms of the {{Apache 2.0 open source license}}. Please refer to LICENSE for the full terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_328.RULE b/src/licensedcode/data/rules/apache-2.0_328.RULE index 8c452923a1..7f602e8078 100644 --- a/src/licensedcode/data/rules/apache-2.0_328.RULE +++ b/src/licensedcode/data/rules/apache-2.0_328.RULE @@ -7,4 +7,4 @@ minimum_coverage: 70 License -This project is licensed under the terms of the Apache 2.0 open source license. \ No newline at end of file +This project is licensed under the terms of the {{Apache 2.0 open source license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_329.RULE b/src/licensedcode/data/rules/apache-2.0_329.RULE index 76bfbb856e..8137dcb22f 100644 --- a/src/licensedcode/data/rules/apache-2.0_329.RULE +++ b/src/licensedcode/data/rules/apache-2.0_329.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the terms of the Apache 2.0 open source license. \ No newline at end of file +This project is licensed under the terms of the {{Apache 2.0 open source license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_33.RULE b/src/licensedcode/data/rules/apache-2.0_33.RULE index da26cd69a5..cb686a0ad5 100644 --- a/src/licensedcode/data/rules/apache-2.0_33.RULE +++ b/src/licensedcode/data/rules/apache-2.0_33.RULE @@ -9,9 +9,9 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed to the Apache Software Foundation (ASF) under one or more contributor -license agreements. The ASF licenses this work to You under the Apache License, -Version 2.0 (the "License"); you may not use this work except in compliance +{{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor +license agreements. The ASF licenses this work to You under the {{Apache License, +Version 2.0}} (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_330.RULE b/src/licensedcode/data/rules/apache-2.0_330.RULE index 68b2fbb5d0..a0ff88e450 100644 --- a/src/licensedcode/data/rules/apache-2.0_330.RULE +++ b/src/licensedcode/data/rules/apache-2.0_330.RULE @@ -9,7 +9,7 @@ ignorable_urls: ## License and Copyright -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_331.RULE b/src/licensedcode/data/rules/apache-2.0_331.RULE index 16e0e1ff0a..7a22c00ef5 100644 --- a/src/licensedcode/data/rules/apache-2.0_331.RULE +++ b/src/licensedcode/data/rules/apache-2.0_331.RULE @@ -7,9 +7,9 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License:: Apache License, Version 2.0 +License:: {{Apache License, Version 2.0}} -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_332.RULE b/src/licensedcode/data/rules/apache-2.0_332.RULE index 04675aa9f7..903c1ead88 100644 --- a/src/licensedcode/data/rules/apache-2.0_332.RULE +++ b/src/licensedcode/data/rules/apache-2.0_332.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -published under the Apache License, Version 2.0, January 2004 if not stated otherwise. \ No newline at end of file +published under the {{Apache License, Version 2.0}}, January 2004 if not stated otherwise. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_333.RULE b/src/licensedcode/data/rules/apache-2.0_333.RULE index 292751bc89..4ca15e30ed 100644 --- a/src/licensedcode/data/rules/apache-2.0_333.RULE +++ b/src/licensedcode/data/rules/apache-2.0_333.RULE @@ -9,7 +9,7 @@ ignorable_urls: License: - Licensed under the Apache License, Version 2.0 (the "License"); + {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_334.RULE b/src/licensedcode/data/rules/apache-2.0_334.RULE index b03cef450f..dd0d4bac19 100644 --- a/src/licensedcode/data/rules/apache-2.0_334.RULE +++ b/src/licensedcode/data/rules/apache-2.0_334.RULE @@ -11,7 +11,7 @@ ignorable_urls: License: - Licensed under the Apache License, Version 2.0 (the "License"); + {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -25,6 +25,6 @@ License: The Debian packaging is: -and is licensed under the Apache 2.0 license. +and is {{licensed under the Apache 2.0 license}}. See "/usr/share/common-licenses/Apache-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_335.RULE b/src/licensedcode/data/rules/apache-2.0_335.RULE index f8fa8bec80..1411f2dde0 100644 --- a/src/licensedcode/data/rules/apache-2.0_335.RULE +++ b/src/licensedcode/data/rules/apache-2.0_335.RULE @@ -9,7 +9,7 @@ ignorable_urls: License: - Licensed under the Apache License, Version 2.0 (the "License"); + {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -23,4 +23,4 @@ License: The Debian packaging is: -and is licensed under the Apache 2.0 license. \ No newline at end of file +and is {{licensed under the Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_337.RULE b/src/licensedcode/data/rules/apache-2.0_337.RULE index 53ddcd3a19..ecd7084439 100644 --- a/src/licensedcode/data/rules/apache-2.0_337.RULE +++ b/src/licensedcode/data/rules/apache-2.0_337.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licenced under apache license 2.0 \ No newline at end of file +licenced under {{apache license 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_338.RULE b/src/licensedcode/data/rules/apache-2.0_338.RULE index b2a4a90d39..05bd4cfcfc 100644 --- a/src/licensedcode/data/rules/apache-2.0_338.RULE +++ b/src/licensedcode/data/rules/apache-2.0_338.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -made available under the terms of the Apache License 2.0. See the LICENSE file that accompanies this distribution for the full text of the license. \ No newline at end of file +made available under the terms of the {{Apache License 2.0}}. See the LICENSE file that accompanies this distribution for the full text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_339.RULE b/src/licensedcode/data/rules/apache-2.0_339.RULE index e81e1cd115..fb44391355 100644 --- a/src/licensedcode/data/rules/apache-2.0_339.RULE +++ b/src/licensedcode/data/rules/apache-2.0_339.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -available under the terms of the Apache License 2.0. See the LICENSE file that accompanies this distribution for the full text of the license. \ No newline at end of file +available under the terms of the {{Apache License 2.0}}. See the LICENSE file that accompanies this distribution for the full text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_347.RULE b/src/licensedcode/data/rules/apache-2.0_347.RULE index 9df45448b3..54129dcb58 100644 --- a/src/licensedcode/data/rules/apache-2.0_347.RULE +++ b/src/licensedcode/data/rules/apache-2.0_347.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -aws.amazon.com/apache2.0, \ No newline at end of file +aws.amazon.com/apache2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_35.RULE b/src/licensedcode/data/rules/apache-2.0_35.RULE index e7d5084e98..96f8389ea2 100644 --- a/src/licensedcode/data/rules/apache-2.0_35.RULE +++ b/src/licensedcode/data/rules/apache-2.0_35.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Apache License (http://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file +{{Apache License}} (http://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_354.RULE b/src/licensedcode/data/rules/apache-2.0_354.RULE index 32deb0e83d..73bb8a34a6 100644 --- a/src/licensedcode/data/rules/apache-2.0_354.RULE +++ b/src/licensedcode/data/rules/apache-2.0_354.RULE @@ -8,4 +8,4 @@ referenced_filenames: License -This project is licensed under the Apache 2.0 License - see the LICENSE.txt file for details \ No newline at end of file +This project is {{licensed under the Apache 2.0 License}} - see the LICENSE.txt file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_355.RULE b/src/licensedcode/data/rules/apache-2.0_355.RULE index 0d2fa456fb..b5bcadf4c8 100644 --- a/src/licensedcode/data/rules/apache-2.0_355.RULE +++ b/src/licensedcode/data/rules/apache-2.0_355.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -This project is licensed under the Apache 2.0 License - see the LICENSE.txt file for details \ No newline at end of file +This project is {{licensed under the Apache 2.0 License}} - see the LICENSE.txt file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_356.RULE b/src/licensedcode/data/rules/apache-2.0_356.RULE index fc8fcfc3ff..30fd6d75fe 100644 --- a/src/licensedcode/data/rules/apache-2.0_356.RULE +++ b/src/licensedcode/data/rules/apache-2.0_356.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -license: - name: Apache 2.0 +{{license: + name: Apache 2}}.0 url: http://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_357.RULE b/src/licensedcode/data/rules/apache-2.0_357.RULE index 5618f13a87..9fc310647a 100644 --- a/src/licensedcode/data/rules/apache-2.0_357.RULE +++ b/src/licensedcode/data/rules/apache-2.0_357.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -license: - name: Apache 2.0 +{{license: + name: Apache 2}}.0 url: https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_358.RULE b/src/licensedcode/data/rules/apache-2.0_358.RULE index c14d7ed1cf..297831b876 100644 --- a/src/licensedcode/data/rules/apache-2.0_358.RULE +++ b/src/licensedcode/data/rules/apache-2.0_358.RULE @@ -7,9 +7,9 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -SPDX-License-Identifier: Apache-2.0 +SPDX-License-Identifier: {{Apache-2.0}} -Licensed under the Apache License, Version 2.0 (the "License"); you may +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_359.RULE b/src/licensedcode/data/rules/apache-2.0_359.RULE index c61715f144..f7b56fdecb 100644 --- a/src/licensedcode/data/rules/apache-2.0_359.RULE +++ b/src/licensedcode/data/rules/apache-2.0_359.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- ## License -is open source software under the [Apache License 2.0](LICENSE). Complete license and copyright information can be found in +is open source software under the [{{Apache License 2.0}}](LICENSE). Complete license and copyright information can be found in the source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_36.RULE b/src/licensedcode/data/rules/apache-2.0_36.RULE index b8262f3a18..5765bc259d 100644 --- a/src/licensedcode/data/rules/apache-2.0_36.RULE +++ b/src/licensedcode/data/rules/apache-2.0_36.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -licenses this file to you under the Apache License, version 2.0 +licenses this file to you under the {{Apache License, version 2.0}} * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * diff --git a/src/licensedcode/data/rules/apache-2.0_360.RULE b/src/licensedcode/data/rules/apache-2.0_360.RULE index a81246c174..48bf60affe 100644 --- a/src/licensedcode/data/rules/apache-2.0_360.RULE +++ b/src/licensedcode/data/rules/apache-2.0_360.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -open source software under the [Apache License 2.0] \ No newline at end of file +open source software under the [{{Apache License 2.0}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_361.RULE b/src/licensedcode/data/rules/apache-2.0_361.RULE index 83a1aa0897..a6785eabbf 100644 --- a/src/licensedcode/data/rules/apache-2.0_361.RULE +++ b/src/licensedcode/data/rules/apache-2.0_361.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Any code that you want to contribute to the project must be licensed under the [Apache License 2.0](LICENSE). \ No newline at end of file +Any code that you want to contribute to the project must be licensed under the [{{Apache License 2.0}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_362.RULE b/src/licensedcode/data/rules/apache-2.0_362.RULE index aa8742dcd2..2d6dd447c8 100644 --- a/src/licensedcode/data/rules/apache-2.0_362.RULE +++ b/src/licensedcode/data/rules/apache-2.0_362.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -licensed under the [Apache License 2.0](LICENSE). \ No newline at end of file +licensed under the [{{Apache License 2.0}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_363.RULE b/src/licensedcode/data/rules/apache-2.0_363.RULE index 6e4fbaf7d3..6abfb04c52 100644 --- a/src/licensedcode/data/rules/apache-2.0_363.RULE +++ b/src/licensedcode/data/rules/apache-2.0_363.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -available under an Apache license. \ No newline at end of file +available under an {{Apache license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_364.RULE b/src/licensedcode/data/rules/apache-2.0_364.RULE index 02a49469c6..dfc4a78bea 100644 --- a/src/licensedcode/data/rules/apache-2.0_364.RULE +++ b/src/licensedcode/data/rules/apache-2.0_364.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.md --- -The software in this package is published under the terms of the Apache License, Version 2.0 (the "License"), +The software in this package is published under the terms of the {{Apache License, Version 2.0}} (the "License"), a copy of which has been included with this distribution in the LICENSE.md file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_365.RULE b/src/licensedcode/data/rules/apache-2.0_365.RULE index 95b5daca0c..0e17b05605 100644 --- a/src/licensedcode/data/rules/apache-2.0_365.RULE +++ b/src/licensedcode/data/rules/apache-2.0_365.RULE @@ -6,5 +6,5 @@ minimum_coverage: 70 --- License -The environment is licensed under the Apache License, Version 2.0 -library is licensed under the Apache License, Version 2.0. \ No newline at end of file +The environment is {{licensed under the Apache License, Version 2.0}} +library is {{licensed under the Apache License, Version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_366.RULE b/src/licensedcode/data/rules/apache-2.0_366.RULE index d6ab690d04..a711d29823 100644 --- a/src/licensedcode/data/rules/apache-2.0_366.RULE +++ b/src/licensedcode/data/rules/apache-2.0_366.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -The environment is licensed under the Apache License, Version 2.0 \ No newline at end of file +The environment is {{licensed under the Apache License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_367.RULE b/src/licensedcode/data/rules/apache-2.0_367.RULE index 6903647a2f..b406334f8c 100644 --- a/src/licensedcode/data/rules/apache-2.0_367.RULE +++ b/src/licensedcode/data/rules/apache-2.0_367.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The environment is licensed under the Apache License, Version 2.0 \ No newline at end of file +The environment is {{licensed under the Apache License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_368.RULE b/src/licensedcode/data/rules/apache-2.0_368.RULE index cbced49f24..d544821742 100644 --- a/src/licensedcode/data/rules/apache-2.0_368.RULE +++ b/src/licensedcode/data/rules/apache-2.0_368.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Released under the terms of the Apache license. See LICENSE for more info. \ No newline at end of file +Released under the terms of the {{Apache license}}. See LICENSE for more info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_369.RULE b/src/licensedcode/data/rules/apache-2.0_369.RULE index 0ac47baeb1..514866aa44 100644 --- a/src/licensedcode/data/rules/apache-2.0_369.RULE +++ b/src/licensedcode/data/rules/apache-2.0_369.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Released under the terms of the Apache license. \ No newline at end of file +Released under the terms of the {{Apache license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_37.RULE b/src/licensedcode/data/rules/apache-2.0_37.RULE index 717ee9442a..e061df00f5 100644 --- a/src/licensedcode/data/rules/apache-2.0_37.RULE +++ b/src/licensedcode/data/rules/apache-2.0_37.RULE @@ -3,9 +3,9 @@ license_expression: apache-2.0 is_license_notice: yes --- -APACHE 2.0 +{{APACHE 2.0 -Licensed under the Apache License, Version 20 \(the "License"\); +Licensed}} under the {{Apache License}}, Version 20 \(the "License"\); you may not use this file except in compliance with the License You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_370.RULE b/src/licensedcode/data/rules/apache-2.0_370.RULE index c5d08eb0a1..7d41675847 100644 --- a/src/licensedcode/data/rules/apache-2.0_370.RULE +++ b/src/licensedcode/data/rules/apache-2.0_370.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed under the Apache license \ No newline at end of file +Distributed under the {{Apache license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_371.RULE b/src/licensedcode/data/rules/apache-2.0_371.RULE index bbefdc37e7..2884aa5256 100644 --- a/src/licensedcode/data/rules/apache-2.0_371.RULE +++ b/src/licensedcode/data/rules/apache-2.0_371.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed to you under the Apache 2.0 open source license. \ No newline at end of file +licensed to you under the {{Apache 2.0 open source license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_372.RULE b/src/licensedcode/data/rules/apache-2.0_372.RULE index 0b7221601d..2134b351a5 100644 --- a/src/licensedcode/data/rules/apache-2.0_372.RULE +++ b/src/licensedcode/data/rules/apache-2.0_372.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the Apache 2.0 open source license. \ No newline at end of file +under the {{Apache 2.0 open source license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_373.RULE b/src/licensedcode/data/rules/apache-2.0_373.RULE index d3662c23fa..1c25bdb30e 100644 --- a/src/licensedcode/data/rules/apache-2.0_373.RULE +++ b/src/licensedcode/data/rules/apache-2.0_373.RULE @@ -5,4 +5,4 @@ relevance: 100 --- original work created at the University of Michigan, and is -licensed under the Apache 2.0 license. \ No newline at end of file +{{licensed under the Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_374.RULE b/src/licensedcode/data/rules/apache-2.0_374.RULE index 5444cea957..813208d217 100644 --- a/src/licensedcode/data/rules/apache-2.0_374.RULE +++ b/src/licensedcode/data/rules/apache-2.0_374.RULE @@ -9,4 +9,4 @@ ignorable_holders: --- All other files are copyright Regents of the University of -Michigan, and fall under the Apache 2.0 license. \ No newline at end of file +Michigan, and fall under the {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_375.RULE b/src/licensedcode/data/rules/apache-2.0_375.RULE index 4f96265513..c211497afa 100644 --- a/src/licensedcode/data/rules/apache-2.0_375.RULE +++ b/src/licensedcode/data/rules/apache-2.0_375.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- * This code is released under the - * Apache License Version 2.0 http://www.apache.org/licenses/. \ No newline at end of file + * {{Apache License Version 2.0}} http://www.apache.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_376.RULE b/src/licensedcode/data/rules/apache-2.0_376.RULE index cb448f83c9..e4ea00782b 100644 --- a/src/licensedcode/data/rules/apache-2.0_376.RULE +++ b/src/licensedcode/data/rules/apache-2.0_376.RULE @@ -5,4 +5,4 @@ relevance: 100 --- * This code is released under the - * Apache License Version 2.0 \ No newline at end of file + * {{Apache License Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_377.RULE b/src/licensedcode/data/rules/apache-2.0_377.RULE index eda0db64b9..19c9a25d92 100644 --- a/src/licensedcode/data/rules/apache-2.0_377.RULE +++ b/src/licensedcode/data/rules/apache-2.0_377.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the Apache Software License, v.2 \ No newline at end of file +This project is licensed under the {{Apache Software License}}, v.2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_378.RULE b/src/licensedcode/data/rules/apache-2.0_378.RULE index 545b3dc0fc..2fc67d77dc 100644 --- a/src/licensedcode/data/rules/apache-2.0_378.RULE +++ b/src/licensedcode/data/rules/apache-2.0_378.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -includes only Apache 2.0 licensed code: \ No newline at end of file +includes only {{Apache 2.0 licensed}} code: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_379.RULE b/src/licensedcode/data/rules/apache-2.0_379.RULE index e5d71e3906..7b98d3315b 100644 --- a/src/licensedcode/data/rules/apache-2.0_379.RULE +++ b/src/licensedcode/data/rules/apache-2.0_379.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -Apache 2.0 licensed code: \ No newline at end of file +{{Apache 2.0 licensed}} code: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_38.RULE b/src/licensedcode/data/rules/apache-2.0_38.RULE index db7813b89c..5244a9a5b2 100644 --- a/src/licensedcode/data/rules/apache-2.0_38.RULE +++ b/src/licensedcode/data/rules/apache-2.0_38.RULE @@ -7,10 +7,10 @@ ignorable_urls: --- LICENSE -* Licensed to the Apache Software Foundation (ASF) under one or more +* {{Licensed to the Apache Software Foundation}} (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. -* The ASF licenses this file to you under the Apache License, Version 2.0 +* The ASF licenses this file to you under the {{Apache License, Version 2.0}} * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at: * http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_380.RULE b/src/licensedcode/data/rules/apache-2.0_380.RULE index 88375bb96f..4eeaf0ddc6 100644 --- a/src/licensedcode/data/rules/apache-2.0_380.RULE +++ b/src/licensedcode/data/rules/apache-2.0_380.RULE @@ -1,7 +1,6 @@ --- license_expression: apache-2.0 is_license_text: yes -relevance: 100 minimum_coverage: 90 ignorable_copyrights: - Copyright 1999-2005 The Apache Software Foundation diff --git a/src/licensedcode/data/rules/apache-2.0_382.RULE b/src/licensedcode/data/rules/apache-2.0_382.RULE index 2bb3af4f8b..fb33bdd459 100644 --- a/src/licensedcode/data/rules/apache-2.0_382.RULE +++ b/src/licensedcode/data/rules/apache-2.0_382.RULE @@ -5,4 +5,4 @@ relevance: 100 --- This product includes software from the Spring Framework, -under the Apache License 2.0 \ No newline at end of file +under the {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_383.RULE b/src/licensedcode/data/rules/apache-2.0_383.RULE index 6b271f1a68..20a10f094b 100644 --- a/src/licensedcode/data/rules/apache-2.0_383.RULE +++ b/src/licensedcode/data/rules/apache-2.0_383.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the Apache License 2.0 \ No newline at end of file +under the {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_384.RULE b/src/licensedcode/data/rules/apache-2.0_384.RULE index 2dd615b1f9..62d4d78bb9 100644 --- a/src/licensedcode/data/rules/apache-2.0_384.RULE +++ b/src/licensedcode/data/rules/apache-2.0_384.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This product includes software under the Apache License 2.0 \ No newline at end of file +This product includes software under the {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_385.RULE b/src/licensedcode/data/rules/apache-2.0_385.RULE index c31b3b5147..06017967ea 100644 --- a/src/licensedcode/data/rules/apache-2.0_385.RULE +++ b/src/licensedcode/data/rules/apache-2.0_385.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the Apache License, version 2 ("ALv2"). \ No newline at end of file +This software is licensed under the {{Apache License, version 2}} ("ALv2"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_386.RULE b/src/licensedcode/data/rules/apache-2.0_386.RULE index 89299d8122..d6272e42ff 100644 --- a/src/licensedcode/data/rules/apache-2.0_386.RULE +++ b/src/licensedcode/data/rules/apache-2.0_386.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the Apache License, version 2 \ No newline at end of file +This software is licensed under the {{Apache License, version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_387.RULE b/src/licensedcode/data/rules/apache-2.0_387.RULE index d3f51cfd37..b9c4fd546d 100644 --- a/src/licensedcode/data/rules/apache-2.0_387.RULE +++ b/src/licensedcode/data/rules/apache-2.0_387.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the Apache License, version 2 ("ALv2"). \ No newline at end of file +under the {{Apache License, version 2}} ("ALv2"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_388.RULE b/src/licensedcode/data/rules/apache-2.0_388.RULE index 2fec3017ad..16d384f074 100644 --- a/src/licensedcode/data/rules/apache-2.0_388.RULE +++ b/src/licensedcode/data/rules/apache-2.0_388.RULE @@ -1,6 +1,7 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 95 --- diff --git a/src/licensedcode/data/rules/apache-2.0_389.RULE b/src/licensedcode/data/rules/apache-2.0_389.RULE index fd48ad93f6..e3464cef12 100644 --- a/src/licensedcode/data/rules/apache-2.0_389.RULE +++ b/src/licensedcode/data/rules/apache-2.0_389.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the Apache License, version 2 ("ALv2"). \ No newline at end of file +the {{Apache License, version 2}} ("ALv2"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_39.RULE b/src/licensedcode/data/rules/apache-2.0_39.RULE index 86bd69959d..24522d0082 100644 --- a/src/licensedcode/data/rules/apache-2.0_39.RULE +++ b/src/licensedcode/data/rules/apache-2.0_39.RULE @@ -9,7 +9,7 @@ ignorable_urls: - Apache License Version 2 + {{Apache License Version 2}} http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_390.RULE b/src/licensedcode/data/rules/apache-2.0_390.RULE index 1a6619dc0f..555c1ad514 100644 --- a/src/licensedcode/data/rules/apache-2.0_390.RULE +++ b/src/licensedcode/data/rules/apache-2.0_390.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Apache License, version 2 ("ALv2"). \ No newline at end of file +{{Apache License, version 2}} ("ALv2"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_391.RULE b/src/licensedcode/data/rules/apache-2.0_391.RULE index d039bfbddd..55c93a24e3 100644 --- a/src/licensedcode/data/rules/apache-2.0_391.RULE +++ b/src/licensedcode/data/rules/apache-2.0_391.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Apache License, version 2 \ No newline at end of file +Apache license version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_392.RULE b/src/licensedcode/data/rules/apache-2.0_392.RULE index 4fba9f584d..40eb9115f3 100644 --- a/src/licensedcode/data/rules/apache-2.0_392.RULE +++ b/src/licensedcode/data/rules/apache-2.0_392.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the Apache License, version 2 \ No newline at end of file +the {{Apache License, version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_393.RULE b/src/licensedcode/data/rules/apache-2.0_393.RULE index adc5f9ffc3..103df87e4d 100644 --- a/src/licensedcode/data/rules/apache-2.0_393.RULE +++ b/src/licensedcode/data/rules/apache-2.0_393.RULE @@ -8,4 +8,4 @@ ignorable_urls: --- This is free software, licensed under: -https://github.com/elastic/elasticsearch-perl/blob/master/LICENSE.txt[The Apache License Version 2.0]. \ No newline at end of file +https://github.com/elastic/elasticsearch-perl/blob/master/LICENSE.txt[The {{Apache License Version 2.0}}]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_394.RULE b/src/licensedcode/data/rules/apache-2.0_394.RULE index db735b1997..5dc6f9a4b6 100644 --- a/src/licensedcode/data/rules/apache-2.0_394.RULE +++ b/src/licensedcode/data/rules/apache-2.0_394.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -is licensed under the -Apache (Software) License, version 2.0 ("the License"). +is licensed under {{the +Apache (Software) License, version 2.0}} ("the License"). See the License for details about distribution rights, and the specific rights regarding derivate works. diff --git a/src/licensedcode/data/rules/apache-2.0_395.RULE b/src/licensedcode/data/rules/apache-2.0_395.RULE index 04bf73b6d9..7a4f6d5b7e 100644 --- a/src/licensedcode/data/rules/apache-2.0_395.RULE +++ b/src/licensedcode/data/rules/apache-2.0_395.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -This is licensed under the -Apache (Software) License, version 2.0 ("the License"). +This is licensed under {{the +Apache (Software) License, version 2.0}} ("the License"). See the License for details about distribution rights, and the specific rights regarding derivate works. diff --git a/src/licensedcode/data/rules/apache-2.0_396.RULE b/src/licensedcode/data/rules/apache-2.0_396.RULE index 6d8e9e35c7..1b7c4f2443 100644 --- a/src/licensedcode/data/rules/apache-2.0_396.RULE +++ b/src/licensedcode/data/rules/apache-2.0_396.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -licensed under the -Apache (Software) License, version 2.0 ("the License"). +licensed under {{the +Apache (Software) License, version 2.0}} ("the License"). See the License for details about distribution rights, and the specific rights regarding derivate works. diff --git a/src/licensedcode/data/rules/apache-2.0_397.RULE b/src/licensedcode/data/rules/apache-2.0_397.RULE index e80ee77646..8eccfaa0b6 100644 --- a/src/licensedcode/data/rules/apache-2.0_397.RULE +++ b/src/licensedcode/data/rules/apache-2.0_397.RULE @@ -11,11 +11,11 @@ ignorable_urls: License The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the -Content is provided to you under the terms and conditions of the Apache License, Version 2.0. A copy of the Apache -License, Version 2.0 is available at http://www.apache.org/licenses/LICENSE-2.0.txt +Content is provided to you under the terms and conditions of the {{Apache License, Version 2.0}}. A copy of the {{Apache +License, Version 2.0}} is available at http://www.apache.org/licenses/LICENSE-2.0.txt If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor’s license that was provided with the Content. If no such license exists, contact the -Redistributor. Unless otherwise indicated below, the terms and conditions of the Apache License, Version 2.0 still apply +Redistributor. Unless otherwise indicated below, the terms and conditions of the {{Apache License, Version 2.0}} still apply to any source code in the Content and such source code may be obtained at http://www.eclipse.org](http://www.eclipse.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_398.RULE b/src/licensedcode/data/rules/apache-2.0_398.RULE index 3a448fa5f5..b1d138286f 100644 --- a/src/licensedcode/data/rules/apache-2.0_398.RULE +++ b/src/licensedcode/data/rules/apache-2.0_398.RULE @@ -1,7 +1,6 @@ --- license_expression: apache-2.0 is_license_text: yes -relevance: 100 --- Apache License diff --git a/src/licensedcode/data/rules/apache-2.0_399.RULE b/src/licensedcode/data/rules/apache-2.0_399.RULE index ad05cc3702..5515305558 100644 --- a/src/licensedcode/data/rules/apache-2.0_399.RULE +++ b/src/licensedcode/data/rules/apache-2.0_399.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -NOTICE file for use with the Apache License, Version 2.0, \ No newline at end of file +NOTICE file for use with the {{Apache License, Version 2.0}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_4.RULE b/src/licensedcode/data/rules/apache-2.0_4.RULE index 494c064aa8..ad147e80ec 100644 --- a/src/licensedcode/data/rules/apache-2.0_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_4.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Apache License V2.0 \ No newline at end of file +Apache License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_40.RULE b/src/licensedcode/data/rules/apache-2.0_40.RULE index 644352ec4e..526a636b09 100644 --- a/src/licensedcode/data/rules/apache-2.0_40.RULE +++ b/src/licensedcode/data/rules/apache-2.0_40.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -name: The Apache Software License, Version 2.0 +name: {{The Apache Software License, Version 2.0}} url: http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_400.RULE b/src/licensedcode/data/rules/apache-2.0_400.RULE index f4b64426db..aa06ce44f8 100644 --- a/src/licensedcode/data/rules/apache-2.0_400.RULE +++ b/src/licensedcode/data/rules/apache-2.0_400.RULE @@ -12,7 +12,7 @@ ignorable_urls: Licensed by under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. - licenses this file to You under the Apache License, Version 2.0 + licenses this file to You under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_401.RULE b/src/licensedcode/data/rules/apache-2.0_401.RULE index 6d1a515421..3f052ff907 100644 --- a/src/licensedcode/data/rules/apache-2.0_401.RULE +++ b/src/licensedcode/data/rules/apache-2.0_401.RULE @@ -11,7 +11,7 @@ ignorable_urls: Licensed by SAS under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. -SAS licenses this file to You under the Apache License, Version 2.0 +SAS licenses this file to You under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_402.RULE b/src/licensedcode/data/rules/apache-2.0_402.RULE index fd0927f06e..20fe1ef626 100644 --- a/src/licensedcode/data/rules/apache-2.0_402.RULE +++ b/src/licensedcode/data/rules/apache-2.0_402.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -system that is Apache 2.0 Licensed. \ No newline at end of file +system that is {{Apache 2.0 Licensed}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_403.RULE b/src/licensedcode/data/rules/apache-2.0_403.RULE index 52aab2bcb0..a23ede0976 100644 --- a/src/licensedcode/data/rules/apache-2.0_403.RULE +++ b/src/licensedcode/data/rules/apache-2.0_403.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- ## License -is licensed under the Apache License, Version 2.0 (LICENSE). \ No newline at end of file +is {{licensed under the Apache License, Version 2.0}} (LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_404.RULE b/src/licensedcode/data/rules/apache-2.0_404.RULE index ab35b8b8ed..8eccf8b1e5 100644 --- a/src/licensedcode/data/rules/apache-2.0_404.RULE +++ b/src/licensedcode/data/rules/apache-2.0_404.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- ## License -licensed under the Apache License, Version 2.0 (LICENSE). \ No newline at end of file +{{licensed under the Apache License, Version 2.0}} (LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_405.RULE b/src/licensedcode/data/rules/apache-2.0_405.RULE index 7dd8c93dd6..53ac769ea4 100644 --- a/src/licensedcode/data/rules/apache-2.0_405.RULE +++ b/src/licensedcode/data/rules/apache-2.0_405.RULE @@ -5,4 +5,4 @@ relevance: 100 --- ## License -licensed under the Apache License, Version 2.0 \ No newline at end of file +{{licensed under the Apache License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_406.RULE b/src/licensedcode/data/rules/apache-2.0_406.RULE index 41f503de37..dc9e4b78ef 100644 --- a/src/licensedcode/data/rules/apache-2.0_406.RULE +++ b/src/licensedcode/data/rules/apache-2.0_406.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -licensed under the Apache License, Version 2.0 (LICENSE). \ No newline at end of file +{{licensed under the Apache License, Version 2.0}} (LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_407.RULE b/src/licensedcode/data/rules/apache-2.0_407.RULE index c5a9d0ca17..ca31123be5 100644 --- a/src/licensedcode/data/rules/apache-2.0_407.RULE +++ b/src/licensedcode/data/rules/apache-2.0_407.RULE @@ -5,4 +5,4 @@ relevance: 100 --- ## License -is licensed under the Apache License, Version 2.0 \ No newline at end of file +is {{licensed under the Apache License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_408.RULE b/src/licensedcode/data/rules/apache-2.0_408.RULE index 626e4d2074..6c51887ec5 100644 --- a/src/licensedcode/data/rules/apache-2.0_408.RULE +++ b/src/licensedcode/data/rules/apache-2.0_408.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Open Source Software Licensed Under the Apache License, Version 2.0: \ No newline at end of file +Open Source Software {{Licensed Under the Apache License, Version 2.0}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_409.RULE b/src/licensedcode/data/rules/apache-2.0_409.RULE index 2df3382c37..c5c6eb08a9 100644 --- a/src/licensedcode/data/rules/apache-2.0_409.RULE +++ b/src/licensedcode/data/rules/apache-2.0_409.RULE @@ -1,7 +1,6 @@ --- license_expression: apache-2.0 is_license_text: yes -relevance: 100 minimum_coverage: 99 ignorable_urls: - http://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_40_1.RULE b/src/licensedcode/data/rules/apache-2.0_40_1.RULE index e423ad3f0a..d0817aead9 100644 --- a/src/licensedcode/data/rules/apache-2.0_40_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_40_1.RULE @@ -7,5 +7,5 @@ ignorable_urls: - The Apache Software License, Version 2.0 + {{The Apache Software License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_41.RULE b/src/licensedcode/data/rules/apache-2.0_41.RULE index 617293c229..b249e17300 100644 --- a/src/licensedcode/data/rules/apache-2.0_41.RULE +++ b/src/licensedcode/data/rules/apache-2.0_41.RULE @@ -12,7 +12,7 @@ ignorable_urls: The APL v2.0: - Licensed under the Apache License, Version 2.0 (the "License"); + {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -25,5 +25,5 @@ The APL v2.0: See the License for the specific language governing permissions and limitations under the License. -On Debian systems, the complete text of the Apache License Version 2.0, +On Debian systems, the complete text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_410.RULE b/src/licensedcode/data/rules/apache-2.0_410.RULE index 6eee6f9914..1e26a78877 100644 --- a/src/licensedcode/data/rules/apache-2.0_410.RULE +++ b/src/licensedcode/data/rules/apache-2.0_410.RULE @@ -7,8 +7,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache-2.0 - Licensed under the Apache License, Version 2.0 (the "License"); +{{License: Apache-2.0 + Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -20,6 +20,6 @@ License: Apache-2.0 See the License for the specific language governing permissions and limitations under the License. . - On Debian systems, the full text of the Apache License, Version 2.0 can be + On Debian systems, the full text of the {{Apache License, Version 2.0}} can be found in the file - `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file + `{{/usr/share/common-licenses/Apache-2.0}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_411.RULE b/src/licensedcode/data/rules/apache-2.0_411.RULE index 7aa5e8ff88..9ed71caa94 100644 --- a/src/licensedcode/data/rules/apache-2.0_411.RULE +++ b/src/licensedcode/data/rules/apache-2.0_411.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -libraries are under the Apache License 2.0. \ No newline at end of file +libraries are under the {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_412.RULE b/src/licensedcode/data/rules/apache-2.0_412.RULE index f982a469c3..aa2a3c50fc 100644 --- a/src/licensedcode/data/rules/apache-2.0_412.RULE +++ b/src/licensedcode/data/rules/apache-2.0_412.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All code in this repository is licensed under Apache License 2.0. \ No newline at end of file +All code in this repository is licensed under {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_413.RULE b/src/licensedcode/data/rules/apache-2.0_413.RULE index 6e0de00115..6f691483e2 100644 --- a/src/licensedcode/data/rules/apache-2.0_413.RULE +++ b/src/licensedcode/data/rules/apache-2.0_413.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under Apache License 2.0. \ No newline at end of file +licensed under {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_414.RULE b/src/licensedcode/data/rules/apache-2.0_414.RULE index 33e304e1f9..34d58620e7 100644 --- a/src/licensedcode/data/rules/apache-2.0_414.RULE +++ b/src/licensedcode/data/rules/apache-2.0_414.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -This is released under the Apache license. \ No newline at end of file +This is released under the {{Apache license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_415.RULE b/src/licensedcode/data/rules/apache-2.0_415.RULE index 0ef15fc707..46c2da3a51 100644 --- a/src/licensedcode/data/rules/apache-2.0_415.RULE +++ b/src/licensedcode/data/rules/apache-2.0_415.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -released under the Apache license. \ No newline at end of file +released under the {{Apache license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_416.RULE b/src/licensedcode/data/rules/apache-2.0_416.RULE index 93baa4bfbc..08726f337a 100644 --- a/src/licensedcode/data/rules/apache-2.0_416.RULE +++ b/src/licensedcode/data/rules/apache-2.0_416.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -under the Apache license. \ No newline at end of file +under the {{Apache license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_417.RULE b/src/licensedcode/data/rules/apache-2.0_417.RULE index 952ae19e1a..b7e655e355 100644 --- a/src/licensedcode/data/rules/apache-2.0_417.RULE +++ b/src/licensedcode/data/rules/apache-2.0_417.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 90 --- -the Apache license. \ No newline at end of file +the {{Apache license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_419.RULE b/src/licensedcode/data/rules/apache-2.0_419.RULE index 08c61c4dd4..732286c854 100644 --- a/src/licensedcode/data/rules/apache-2.0_419.RULE +++ b/src/licensedcode/data/rules/apache-2.0_419.RULE @@ -6,5 +6,5 @@ referenced_filenames: - apache-2.0.txt --- -Unless specifically indicated otherwise in a file, files are licensed -under the Apache 2.0 license, as can be found in: apache-2.0.txt \ No newline at end of file +Unless specifically indicated otherwise in a file, files are {{licensed +under the Apache 2.0 license}}, as can be found in: apache-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_42.RULE b/src/licensedcode/data/rules/apache-2.0_42.RULE index 561497bae1..dfd62cf55f 100644 --- a/src/licensedcode/data/rules/apache-2.0_42.RULE +++ b/src/licensedcode/data/rules/apache-2.0_42.RULE @@ -1,9 +1,10 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -http://www.apache.org/licenses/LICENSE-2.0.txt +http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_420.RULE b/src/licensedcode/data/rules/apache-2.0_420.RULE index 8fb34383b3..c763539e04 100644 --- a/src/licensedcode/data/rules/apache-2.0_420.RULE +++ b/src/licensedcode/data/rules/apache-2.0_420.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Terms of the Apache License Version 2.0: \ No newline at end of file +Terms of the {{Apache License Version 2.0}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_421.RULE b/src/licensedcode/data/rules/apache-2.0_421.RULE index cbbdd238f4..675c64ab58 100644 --- a/src/licensedcode/data/rules/apache-2.0_421.RULE +++ b/src/licensedcode/data/rules/apache-2.0_421.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Software Licensed under the Apache License Version 2.0 \ No newline at end of file +Software {{Licensed under the Apache License Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_422.RULE b/src/licensedcode/data/rules/apache-2.0_422.RULE index 7506f82e79..2d39dc3222 100644 --- a/src/licensedcode/data/rules/apache-2.0_422.RULE +++ b/src/licensedcode/data/rules/apache-2.0_422.RULE @@ -1,7 +1,6 @@ --- license_expression: apache-2.0 is_license_text: yes -relevance: 100 ignorable_urls: - http://www.apache.org/licenses/ --- diff --git a/src/licensedcode/data/rules/apache-2.0_423.RULE b/src/licensedcode/data/rules/apache-2.0_423.RULE index 814732d280..dd1b009470 100644 --- a/src/licensedcode/data/rules/apache-2.0_423.RULE +++ b/src/licensedcode/data/rules/apache-2.0_423.RULE @@ -6,4 +6,4 @@ relevance: 100 ========================================================================= == NOTICE file corresponding to the section 4 d of == - == the Apache License, Version 2.0, \ No newline at end of file + == the {{Apache License, Version 2.0}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_424.RULE b/src/licensedcode/data/rules/apache-2.0_424.RULE index 027bf98d6e..14c40ebfa5 100644 --- a/src/licensedcode/data/rules/apache-2.0_424.RULE +++ b/src/licensedcode/data/rules/apache-2.0_424.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -The Apache 2 license (given in full in [LICENSE.txt](LICENSE.txt)) applies to all code in this repository \ No newline at end of file +The {{Apache 2 license}} (given in full in [LICENSE.txt](LICENSE.txt)) applies to all code in this repository \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_426.RULE b/src/licensedcode/data/rules/apache-2.0_426.RULE index 00c881b067..b632b45fec 100644 --- a/src/licensedcode/data/rules/apache-2.0_426.RULE +++ b/src/licensedcode/data/rules/apache-2.0_426.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/aosp_license.txt --- -License: Apache 2 ([license/third_party/aosp_license.txt][aosp]) \ No newline at end of file +{{License: Apache 2}} ([license/third_party/aosp_license.txt][aosp]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_428.RULE b/src/licensedcode/data/rules/apache-2.0_428.RULE index 56d1bbafd4..50e877495b 100644 --- a/src/licensedcode/data/rules/apache-2.0_428.RULE +++ b/src/licensedcode/data/rules/apache-2.0_428.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/closure-compiler_LICENSE.txt --- -License: Apache 2 ([license/third_party/closure-compiler_LICENSE.txt][closure-compiler]) \ No newline at end of file +{{License: Apache 2}} ([license/third_party/closure-compiler_LICENSE.txt][closure-compiler]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_43.RULE b/src/licensedcode/data/rules/apache-2.0_43.RULE index 1fd0c367c2..01d624f501 100644 --- a/src/licensedcode/data/rules/apache-2.0_43.RULE +++ b/src/licensedcode/data/rules/apache-2.0_43.RULE @@ -9,7 +9,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -21,5 +21,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. -On Debian systems, the complete text of Apache License, Version 2.0 +On Debian systems, the complete text of {{Apache License, Version 2.0}} can be found in /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_430.RULE b/src/licensedcode/data/rules/apache-2.0_430.RULE index 766f5fb7f9..717e95773d 100644 --- a/src/licensedcode/data/rules/apache-2.0_430.RULE +++ b/src/licensedcode/data/rules/apache-2.0_430.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/gradle_license.txt --- -License: Apache 2 ([license/third_party/gradle_license.txt][gradle]) \ No newline at end of file +{{License: Apache 2}} ([license/third_party/gradle_license.txt][gradle]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_431.RULE b/src/licensedcode/data/rules/apache-2.0_431.RULE index b4595c6326..37848a6a84 100644 --- a/src/licensedcode/data/rules/apache-2.0_431.RULE +++ b/src/licensedcode/data/rules/apache-2.0_431.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/guava_license.txt --- -License: Apache 2 ([license/third_party/guava_license.txt][guava]) \ No newline at end of file +{{License: Apache 2}} ([license/third_party/guava_license.txt][guava]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_433.RULE b/src/licensedcode/data/rules/apache-2.0_433.RULE index 4a471ebfdc..371e6c7ad8 100644 --- a/src/licensedcode/data/rules/apache-2.0_433.RULE +++ b/src/licensedcode/data/rules/apache-2.0_433.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/gwt_license.txt --- -License: Apache 2 ([license/third_party/gwt_license.txt][gwt]) \ No newline at end of file +{{License: Apache 2}} ([license/third_party/gwt_license.txt][gwt]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_436.RULE b/src/licensedcode/data/rules/apache-2.0_436.RULE index c09d38cf3e..a5df9f1239 100644 --- a/src/licensedcode/data/rules/apache-2.0_436.RULE +++ b/src/licensedcode/data/rules/apache-2.0_436.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/testdata/dagger_license.txt --- -License: Apache 2 ([license/third_party/testdata/dagger_license.txt][dagger]) \ No newline at end of file +{{License: Apache 2}} ([license/third_party/testdata/dagger_license.txt][dagger]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_437.RULE b/src/licensedcode/data/rules/apache-2.0_437.RULE index 25318d9612..7fc7504755 100644 --- a/src/licensedcode/data/rules/apache-2.0_437.RULE +++ b/src/licensedcode/data/rules/apache-2.0_437.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/testdata/rxjava_license.txt --- -License: Apache 2 ([license/third_party/testdata/rxjava_license.txt][rxjava]) \ No newline at end of file +{{License: Apache 2}} ([license/third_party/testdata/rxjava_license.txt][rxjava]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_439.RULE b/src/licensedcode/data/rules/apache-2.0_439.RULE index 11e3b9cbb7..170de33e53 100644 --- a/src/licensedcode/data/rules/apache-2.0_439.RULE +++ b/src/licensedcode/data/rules/apache-2.0_439.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/testdata/spring_license.txt --- -License: Apache 2 ([license/third_party/testdata/spring_license.txt][spring]) \ No newline at end of file +{{License: Apache 2}} ([license/third_party/testdata/spring_license.txt][spring]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_441.RULE b/src/licensedcode/data/rules/apache-2.0_441.RULE index c3d21eec1e..5c71ff53d9 100644 --- a/src/licensedcode/data/rules/apache-2.0_441.RULE +++ b/src/licensedcode/data/rules/apache-2.0_441.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -distributed under the Apache 2 license \ No newline at end of file +distributed under the {{Apache 2 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_442.RULE b/src/licensedcode/data/rules/apache-2.0_442.RULE index 07fd11df5d..0d24ab96c8 100644 --- a/src/licensedcode/data/rules/apache-2.0_442.RULE +++ b/src/licensedcode/data/rules/apache-2.0_442.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Use of this source code is governed by the Apache 2.0 license \ No newline at end of file +Use of this source code is governed by the {{Apache 2.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_443.RULE b/src/licensedcode/data/rules/apache-2.0_443.RULE index cc00eb0dde..2e57cd8284 100644 --- a/src/licensedcode/data/rules/apache-2.0_443.RULE +++ b/src/licensedcode/data/rules/apache-2.0_443.RULE @@ -1,7 +1,6 @@ --- license_expression: apache-2.0 is_license_text: yes -relevance: 100 ignorable_urls: - http://www.apache.org/licenses/ - http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_444.RULE b/src/licensedcode/data/rules/apache-2.0_444.RULE index d033836866..559c707d15 100644 --- a/src/licensedcode/data/rules/apache-2.0_444.RULE +++ b/src/licensedcode/data/rules/apache-2.0_444.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -is released under the [Apache License, Version 2.0]. +is released under the [{{Apache License, Version 2.0}}]. -[Apache License, Version 2.0]:LICENSE-APACHE \ No newline at end of file +[{{Apache License, Version 2.0}}]:LICENSE-APACHE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_445.RULE b/src/licensedcode/data/rules/apache-2.0_445.RULE index 9856b8ae76..9595c5f831 100644 --- a/src/licensedcode/data/rules/apache-2.0_445.RULE +++ b/src/licensedcode/data/rules/apache-2.0_445.RULE @@ -8,4 +8,4 @@ referenced_filenames: ## License -AMP HTML is licensed under the [Apache License, Version 2.0](LICENSE) \ No newline at end of file +AMP HTML is {{licensed under the [Apache License, Version 2.0}}](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_448.RULE b/src/licensedcode/data/rules/apache-2.0_448.RULE index f9d6407629..cd05ac6975 100644 --- a/src/licensedcode/data/rules/apache-2.0_448.RULE +++ b/src/licensedcode/data/rules/apache-2.0_448.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/ --- -Apache 2.0 2004 +{{Apache 2.0}} 2004 http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_449.RULE b/src/licensedcode/data/rules/apache-2.0_449.RULE index 1bd83b3a47..43f609151c 100644 --- a/src/licensedcode/data/rules/apache-2.0_449.RULE +++ b/src/licensedcode/data/rules/apache-2.0_449.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/ --- -Apache 2.0 2004 +{{Apache 2.0}} 2004 https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_45.RULE b/src/licensedcode/data/rules/apache-2.0_45.RULE index 71469bb277..80ee98fc08 100644 --- a/src/licensedcode/data/rules/apache-2.0_45.RULE +++ b/src/licensedcode/data/rules/apache-2.0_45.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -and licensed under the Apache license \ No newline at end of file +and licensed under the {{Apache license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_452.RULE b/src/licensedcode/data/rules/apache-2.0_452.RULE index c033e9b4c3..3dc2449fba 100644 --- a/src/licensedcode/data/rules/apache-2.0_452.RULE +++ b/src/licensedcode/data/rules/apache-2.0_452.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses --- -`Apache-2.0` - [Apache, Version 2.0](http://www.apache.org/licenses/) \ No newline at end of file +`{{Apache-2.0}}` - [Apache, Version 2.0](http://www.apache.org/licenses/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_458.RULE b/src/licensedcode/data/rules/apache-2.0_458.RULE index 73f87275f7..e86eec71a9 100644 --- a/src/licensedcode/data/rules/apache-2.0_458.RULE +++ b/src/licensedcode/data/rules/apache-2.0_458.RULE @@ -6,7 +6,7 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. . Unless required by applicable law or agreed to in writing, software @@ -15,6 +15,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. . -On Debian systems, the full text of the Apache License version 2.0 +On Debian systems, the full text of the {{Apache License version 2.0}} can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_459.RULE b/src/licensedcode/data/rules/apache-2.0_459.RULE index e997bad5c8..287fd9f937 100644 --- a/src/licensedcode/data/rules/apache-2.0_459.RULE +++ b/src/licensedcode/data/rules/apache-2.0_459.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_46.RULE b/src/licensedcode/data/rules/apache-2.0_46.RULE index 8b7a9a6db4..08974c1116 100644 --- a/src/licensedcode/data/rules/apache-2.0_46.RULE +++ b/src/licensedcode/data/rules/apache-2.0_46.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.opensource.org/licenses/apache2.0.php --- -// The Apache License v2.0 is available at +// The {{Apache License v2.0}} is available at // http://www.opensource.org/licenses/apache2.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_460.RULE b/src/licensedcode/data/rules/apache-2.0_460.RULE index 9f163af86b..7ba6cc5460 100644 --- a/src/licensedcode/data/rules/apache-2.0_460.RULE +++ b/src/licensedcode/data/rules/apache-2.0_460.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -licensed under the Apache License Version 2.0. See the file "LICENSE" for more information. \ No newline at end of file +{{licensed under the Apache License Version 2.0}}. See the file "LICENSE" for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_461.RULE b/src/licensedcode/data/rules/apache-2.0_461.RULE index 697f3ac909..1040b28d04 100644 --- a/src/licensedcode/data/rules/apache-2.0_461.RULE +++ b/src/licensedcode/data/rules/apache-2.0_461.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Apache 2.0-licensed, open-source \ No newline at end of file +{{Apache 2.0-licensed}}, open-source \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_462.RULE b/src/licensedcode/data/rules/apache-2.0_462.RULE index 6121fc55b9..856f0972c8 100644 --- a/src/licensedcode/data/rules/apache-2.0_462.RULE +++ b/src/licensedcode/data/rules/apache-2.0_462.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE --- -licensed under the Apache License, Version 2.0. See +{{licensed under the Apache License, Version 2.0}}. See [LICENSE](LICENSE) for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_463.RULE b/src/licensedcode/data/rules/apache-2.0_463.RULE index c851450203..47ff4b74f9 100644 --- a/src/licensedcode/data/rules/apache-2.0_463.RULE +++ b/src/licensedcode/data/rules/apache-2.0_463.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -licensed under the Apache License, Version 2.0. See +{{licensed under the Apache License, Version 2.0}}. See [LICENSE] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_464.RULE b/src/licensedcode/data/rules/apache-2.0_464.RULE index 26b95d84fd..b73077a2dc 100644 --- a/src/licensedcode/data/rules/apache-2.0_464.RULE +++ b/src/licensedcode/data/rules/apache-2.0_464.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -licensed under the Apache License, Version 2.0. See +{{licensed under the Apache License, Version 2.0}}. See [LICENSE] for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_465.RULE b/src/licensedcode/data/rules/apache-2.0_465.RULE index 118eeaab4d..c63976a046 100644 --- a/src/licensedcode/data/rules/apache-2.0_465.RULE +++ b/src/licensedcode/data/rules/apache-2.0_465.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -licensed under the Apache License, Version 2.0. See +{{licensed under the Apache License, Version 2.0}}. See [LICENSE] for the license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_467.RULE b/src/licensedcode/data/rules/apache-2.0_467.RULE index a2b3b93b9c..54400f6adc 100644 --- a/src/licensedcode/data/rules/apache-2.0_467.RULE +++ b/src/licensedcode/data/rules/apache-2.0_467.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- # License -[Apache License v2](http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file +[{{Apache License v2}}](http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_468.RULE b/src/licensedcode/data/rules/apache-2.0_468.RULE index daa4de24db..8618cef00a 100644 --- a/src/licensedcode/data/rules/apache-2.0_468.RULE +++ b/src/licensedcode/data/rules/apache-2.0_468.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -[Apache License v2](http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file +[{{Apache License v2}}](http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_469.RULE b/src/licensedcode/data/rules/apache-2.0_469.RULE index 06cc4202eb..44194de44e 100644 --- a/src/licensedcode/data/rules/apache-2.0_469.RULE +++ b/src/licensedcode/data/rules/apache-2.0_469.RULE @@ -8,4 +8,4 @@ referenced_filenames: ### *License* - released under the [Apache 2.0 license](license.txt). \ No newline at end of file + released under the [{{Apache 2.0 license}}](license.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_47.RULE b/src/licensedcode/data/rules/apache-2.0_47.RULE index 6837f439b9..bf5587afe1 100644 --- a/src/licensedcode/data/rules/apache-2.0_47.RULE +++ b/src/licensedcode/data/rules/apache-2.0_47.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.apache.org/licenses/ --- -Currently it has been re-released under the Apache License, Version 2.0. +Currently it has been re-released under the {{Apache License, Version 2.0}}. -Details of the Apache License, Version 2.0 can be found at: +Details of the {{Apache License, Version 2.0}} can be found at: http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_470.RULE b/src/licensedcode/data/rules/apache-2.0_470.RULE index 5951fdf116..727305dfcc 100644 --- a/src/licensedcode/data/rules/apache-2.0_470.RULE +++ b/src/licensedcode/data/rules/apache-2.0_470.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -Licensed under an [Apache-2](/LICENSE) license. \ No newline at end of file +Licensed under an [{{Apache-2](/LICENSE}}) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_471.RULE b/src/licensedcode/data/rules/apache-2.0_471.RULE index e549a9bc3f..c08af76e65 100644 --- a/src/licensedcode/data/rules/apache-2.0_471.RULE +++ b/src/licensedcode/data/rules/apache-2.0_471.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under an [Apache-2](/LICENSE) \ No newline at end of file +Licensed under an [{{Apache-2](/LICENSE}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_472.RULE b/src/licensedcode/data/rules/apache-2.0_472.RULE index fa5169516d..798bbacc72 100644 --- a/src/licensedcode/data/rules/apache-2.0_472.RULE +++ b/src/licensedcode/data/rules/apache-2.0_472.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -Licensed under an [Apache-2] \ No newline at end of file +Licensed under an [{{Apache-2}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_473.RULE b/src/licensedcode/data/rules/apache-2.0_473.RULE index 14fa2081cf..d97507432c 100644 --- a/src/licensedcode/data/rules/apache-2.0_473.RULE +++ b/src/licensedcode/data/rules/apache-2.0_473.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under an [Apache-2] \ No newline at end of file +Licensed under an [{{Apache-2}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_474.RULE b/src/licensedcode/data/rules/apache-2.0_474.RULE index 2b1b415762..4554bf50ed 100644 --- a/src/licensedcode/data/rules/apache-2.0_474.RULE +++ b/src/licensedcode/data/rules/apache-2.0_474.RULE @@ -7,8 +7,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache-2.0 - Licensed under the Apache License, Version 2.0 (the "License"); +{{License: Apache-2.0 + Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . diff --git a/src/licensedcode/data/rules/apache-2.0_475.RULE b/src/licensedcode/data/rules/apache-2.0_475.RULE index 82075ed556..e24b38895d 100644 --- a/src/licensedcode/data/rules/apache-2.0_475.RULE +++ b/src/licensedcode/data/rules/apache-2.0_475.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -the Apache License, Version 2.0http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +the {{Apache License, Version 2}}.0http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_476.RULE b/src/licensedcode/data/rules/apache-2.0_476.RULE index 499a02ad36..1d5f49b0e4 100644 --- a/src/licensedcode/data/rules/apache-2.0_476.RULE +++ b/src/licensedcode/data/rules/apache-2.0_476.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +the {{Apache License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_477.RULE b/src/licensedcode/data/rules/apache-2.0_477.RULE index 4bfa7f474d..d23b7f6a95 100644 --- a/src/licensedcode/data/rules/apache-2.0_477.RULE +++ b/src/licensedcode/data/rules/apache-2.0_477.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -the Apache License, Version 2.0https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +the {{Apache License, Version 2}}.0https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_478.RULE b/src/licensedcode/data/rules/apache-2.0_478.RULE index b2e4b2ef43..9eeb9750ad 100644 --- a/src/licensedcode/data/rules/apache-2.0_478.RULE +++ b/src/licensedcode/data/rules/apache-2.0_478.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -under the Apache License, Version 2.0http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +under the {{Apache License, Version 2}}.0http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_479.RULE b/src/licensedcode/data/rules/apache-2.0_479.RULE index 868c247d4e..6c0b43b00a 100644 --- a/src/licensedcode/data/rules/apache-2.0_479.RULE +++ b/src/licensedcode/data/rules/apache-2.0_479.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +under the {{Apache License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_48.RULE b/src/licensedcode/data/rules/apache-2.0_48.RULE index 916f1853b0..90ffd4ce66 100644 --- a/src/licensedcode/data/rules/apache-2.0_48.RULE +++ b/src/licensedcode/data/rules/apache-2.0_48.RULE @@ -1,6 +1,7 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/apache-2.0_480.RULE b/src/licensedcode/data/rules/apache-2.0_480.RULE index b142a596a5..7556197519 100644 --- a/src/licensedcode/data/rules/apache-2.0_480.RULE +++ b/src/licensedcode/data/rules/apache-2.0_480.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -under the Apache License, Version 2.0https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +under the {{Apache License, Version 2}}.0https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_481.RULE b/src/licensedcode/data/rules/apache-2.0_481.RULE index d7b87c1faf..1083e833a2 100644 --- a/src/licensedcode/data/rules/apache-2.0_481.RULE +++ b/src/licensedcode/data/rules/apache-2.0_481.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -licensed under the Apache License, Version 2.0http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +licensed under the {{Apache License, Version 2}}.0http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_482.RULE b/src/licensedcode/data/rules/apache-2.0_482.RULE index 19ebe870a3..b1988acb43 100644 --- a/src/licensedcode/data/rules/apache-2.0_482.RULE +++ b/src/licensedcode/data/rules/apache-2.0_482.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -licensed under the Apache License, Version 2.0https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +licensed under the {{Apache License, Version 2}}.0https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_484.RULE b/src/licensedcode/data/rules/apache-2.0_484.RULE index 7dd387e4dd..0eb0391c92 100644 --- a/src/licensedcode/data/rules/apache-2.0_484.RULE +++ b/src/licensedcode/data/rules/apache-2.0_484.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -source code is licensed under the Apache Licence 2.0 \ No newline at end of file +source code is licensed under the {{Apache Licence 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_49.RULE b/src/licensedcode/data/rules/apache-2.0_49.RULE index 81ab6e85a3..68434ef707 100644 --- a/src/licensedcode/data/rules/apache-2.0_49.RULE +++ b/src/licensedcode/data/rules/apache-2.0_49.RULE @@ -4,7 +4,7 @@ is_license_reference: yes relevance: 100 --- -Apache License 2.0 +{{Apache License 2.0}} ------------------ licenses/apache2.0.LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_491.RULE b/src/licensedcode/data/rules/apache-2.0_491.RULE index 3b76fb4f9a..1a8dffb290 100644 --- a/src/licensedcode/data/rules/apache-2.0_491.RULE +++ b/src/licensedcode/data/rules/apache-2.0_491.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -licensed under the Apache Licence 2.0 (http://www.apache.org/licenses/LICENSE-2.0). \ No newline at end of file +licensed under the {{Apache Licence 2.0}} (http://www.apache.org/licenses/LICENSE-2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_492.RULE b/src/licensedcode/data/rules/apache-2.0_492.RULE index 4ccb43ebc7..de05eb67a4 100644 --- a/src/licensedcode/data/rules/apache-2.0_492.RULE +++ b/src/licensedcode/data/rules/apache-2.0_492.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This source code is licensed under the Apache Licence 2.0. \ No newline at end of file +This source code is licensed under the {{Apache Licence 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_493.RULE b/src/licensedcode/data/rules/apache-2.0_493.RULE index 77359e4370..b8e413511a 100644 --- a/src/licensedcode/data/rules/apache-2.0_493.RULE +++ b/src/licensedcode/data/rules/apache-2.0_493.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The tool is licensed under the Apache Licence 2.0 and the code can be provided upon request. \ No newline at end of file +The tool is licensed under the {{Apache Licence 2.0}} and the code can be provided upon request. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_5.RULE b/src/licensedcode/data/rules/apache-2.0_5.RULE index 9e56bd8f1e..7243164a6b 100644 --- a/src/licensedcode/data/rules/apache-2.0_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_5.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -The Apache Software License, Version 2.0 \ No newline at end of file +the Apache Software License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_50.RULE b/src/licensedcode/data/rules/apache-2.0_50.RULE index a056f63626..434f8bd119 100644 --- a/src/licensedcode/data/rules/apache-2.0_50.RULE +++ b/src/licensedcode/data/rules/apache-2.0_50.RULE @@ -5,5 +5,5 @@ relevance: 100 --- license: -Apache License 2.0 +{{Apache License 2.0}} licenses/apache2.0.LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_51.RULE b/src/licensedcode/data/rules/apache-2.0_51.RULE index fe78927f3d..c4e94a8e08 100644 --- a/src/licensedcode/data/rules/apache-2.0_51.RULE +++ b/src/licensedcode/data/rules/apache-2.0_51.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -http://www.apache.org/licenses/LICENSE-2.0.html Apache License 2.0 \ No newline at end of file +http://www.apache.org/licenses/LICENSE-2.0.html {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_510.RULE b/src/licensedcode/data/rules/apache-2.0_510.RULE index fc460722fd..b2ed5fcd35 100644 --- a/src/licensedcode/data/rules/apache-2.0_510.RULE +++ b/src/licensedcode/data/rules/apache-2.0_510.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This source code is licensed under the Apache Licence 2.0. For the full copyright and license information,please view the LICENSE file in the root directory of this source tree. \ No newline at end of file +This source code is licensed under the {{Apache Licence 2.0}}. For the full copyright and license information,please view the LICENSE file in the root directory of this source tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_511.RULE b/src/licensedcode/data/rules/apache-2.0_511.RULE index 462e6a2fb6..78bf799bde 100644 --- a/src/licensedcode/data/rules/apache-2.0_511.RULE +++ b/src/licensedcode/data/rules/apache-2.0_511.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0http:/www.apache.org/licenses/LICENSE-2.0 --- -This Font Software is licensed under the Apache License, Version 2.0. +This Font Software is {{licensed under the Apache License, Version 2.0}}. This license is available with a FAQ at: http://www.apache.org/licenses/LICENSE-2.0http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_512.RULE b/src/licensedcode/data/rules/apache-2.0_512.RULE index fe6e2c20ef..ed644fb778 100644 --- a/src/licensedcode/data/rules/apache-2.0_512.RULE +++ b/src/licensedcode/data/rules/apache-2.0_512.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This Font Software is licensed under the Apache License, Version 2.0. \ No newline at end of file +This Font Software is {{licensed under the Apache License, Version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_516.RULE b/src/licensedcode/data/rules/apache-2.0_516.RULE index 16b4d7f3e1..3a940790e8 100644 --- a/src/licensedcode/data/rules/apache-2.0_516.RULE +++ b/src/licensedcode/data/rules/apache-2.0_516.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -This Font Software is licensed under the Apache License, Version 2.0. +This Font Software is {{licensed under the Apache License, Version 2.0}}. This license is available with a FAQ at: http://www.apache.org/licenses/LICENSE-2.0 http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_517.RULE b/src/licensedcode/data/rules/apache-2.0_517.RULE index 6440d2f6d5..e0133c2037 100644 --- a/src/licensedcode/data/rules/apache-2.0_517.RULE +++ b/src/licensedcode/data/rules/apache-2.0_517.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Font Software is licensed under the Apache License, Version 2.0. +Font Software is {{licensed under the Apache License, Version 2.0}}. This license is available with a FAQ at: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_518.RULE b/src/licensedcode/data/rules/apache-2.0_518.RULE index ffd74f67cc..dde0c43bc6 100644 --- a/src/licensedcode/data/rules/apache-2.0_518.RULE +++ b/src/licensedcode/data/rules/apache-2.0_518.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Font Software is licensed under the Apache License, Version 2.0. \ No newline at end of file +Font Software is {{licensed under the Apache License, Version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_519.RULE b/src/licensedcode/data/rules/apache-2.0_519.RULE index 0cb784b98e..c93906b13d 100644 --- a/src/licensedcode/data/rules/apache-2.0_519.RULE +++ b/src/licensedcode/data/rules/apache-2.0_519.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0http:/www.apache.org/licenses/LICENSE-2 --- -This Font Software is licensed under the Apache License, Version 2.0. This license is available with a FAQ at: http://www.apache.org/licenses/LICENSE-2.0http://www.apache.org/licenses/LICENSE-2 \ No newline at end of file +This Font Software is {{licensed under the Apache License, Version 2.0}}. This license is available with a FAQ at: http://www.apache.org/licenses/LICENSE-2.0http://www.apache.org/licenses/LICENSE-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_52.RULE b/src/licensedcode/data/rules/apache-2.0_52.RULE index 57471c7a25..d2582a541b 100644 --- a/src/licensedcode/data/rules/apache-2.0_52.RULE +++ b/src/licensedcode/data/rules/apache-2.0_52.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -http://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0 \ No newline at end of file +http://www.apache.org/licenses/LICENSE-2.0.txt">{{The Apache Software License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_520.RULE b/src/licensedcode/data/rules/apache-2.0_520.RULE index 29e11241d0..6896a25911 100644 --- a/src/licensedcode/data/rules/apache-2.0_520.RULE +++ b/src/licensedcode/data/rules/apache-2.0_520.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- Licensing - is licensed under the Apache License, Version 2.0. See [LICENSE][] for the full license text. \ No newline at end of file + is {{licensed under the Apache License, Version 2.0}}. See [LICENSE][] for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_521.RULE b/src/licensedcode/data/rules/apache-2.0_521.RULE index e760243dab..5a35777dd5 100644 --- a/src/licensedcode/data/rules/apache-2.0_521.RULE +++ b/src/licensedcode/data/rules/apache-2.0_521.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- all the code -in this distribution is now licensed under the Apache License: +in this distribution is now licensed under the {{Apache License}}: -** Licensed under the Apache License, Version 2.0 (the "License"); +** {{Licensed under the Apache License, Version 2.0 (the "License}}"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_522.RULE b/src/licensedcode/data/rules/apache-2.0_522.RULE index 99472b7e2c..52a12b79b5 100644 --- a/src/licensedcode/data/rules/apache-2.0_522.RULE +++ b/src/licensedcode/data/rules/apache-2.0_522.RULE @@ -9,8 +9,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -This distribution includes software libraries developed by The Apache Software -Foundation (http://www.apache.org/). +This distribution {{includes software libraries developed by The Apache Software +Foundation}} (http://www.apache.org/). -- Under the Apache Software License, Version 2.0 - (https://www.apache.org/licenses/LICENSE-2.0): \ No newline at end of file +- Under {{the Apache Software License, Version 2.0}} + (https://www.apache.org/licenses/LICENSE-2.0): diff --git a/src/licensedcode/data/rules/apache-2.0_523.RULE b/src/licensedcode/data/rules/apache-2.0_523.RULE index c74342a54f..493303ffc8 100644 --- a/src/licensedcode/data/rules/apache-2.0_523.RULE +++ b/src/licensedcode/data/rules/apache-2.0_523.RULE @@ -8,5 +8,5 @@ ignorable_urls: - http://www.apache.org/ --- -This distribution includes software libraries developed by The Apache Software -Foundation (http://www.apache.org/). \ No newline at end of file +This distribution {{includes software libraries developed by The Apache Software +Foundation}} (http://www.apache.org/). diff --git a/src/licensedcode/data/rules/apache-2.0_524.RULE b/src/licensedcode/data/rules/apache-2.0_524.RULE index 61a46e583d..b5ec3196fd 100644 --- a/src/licensedcode/data/rules/apache-2.0_524.RULE +++ b/src/licensedcode/data/rules/apache-2.0_524.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Under the Apache Software License, Version 2.0 +Under {{the Apache Software License, Version 2.0}} (https://www.apache.org/licenses/LICENSE-2.0): \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_525.RULE b/src/licensedcode/data/rules/apache-2.0_525.RULE index 697a239edc..8e2e895dc7 100644 --- a/src/licensedcode/data/rules/apache-2.0_525.RULE +++ b/src/licensedcode/data/rules/apache-2.0_525.RULE @@ -9,8 +9,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -This distribution includes software libraries developed by The Apache Software -Foundation (http://www.apache.org/). +This distribution {{includes software libraries developed by The Apache Software +Foundation}} (http://www.apache.org/). -- Under the Apache Software License, Version 2.0 - (http://www.apache.org/licenses/LICENSE-2.0): \ No newline at end of file +- Under {{the Apache Software License, Version 2.0}} + (http://www.apache.org/licenses/LICENSE-2.0): diff --git a/src/licensedcode/data/rules/apache-2.0_526.RULE b/src/licensedcode/data/rules/apache-2.0_526.RULE index 246ca7c37a..989190d6f9 100644 --- a/src/licensedcode/data/rules/apache-2.0_526.RULE +++ b/src/licensedcode/data/rules/apache-2.0_526.RULE @@ -9,8 +9,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -This distribution includes software libraries developed by The Apache Software -Foundation (https://www.apache.org/). +This distribution {{includes software libraries developed by The Apache Software +Foundation}} (https://www.apache.org/). -- Under the Apache Software License, Version 2.0 - (https://www.apache.org/licenses/LICENSE-2.0): \ No newline at end of file +- Under {{the Apache Software License, Version 2.0}} + (https://www.apache.org/licenses/LICENSE-2.0): diff --git a/src/licensedcode/data/rules/apache-2.0_527.RULE b/src/licensedcode/data/rules/apache-2.0_527.RULE index 6025130ff2..565a0860a3 100644 --- a/src/licensedcode/data/rules/apache-2.0_527.RULE +++ b/src/licensedcode/data/rules/apache-2.0_527.RULE @@ -9,8 +9,8 @@ ignorable_urls: - https://www.apache.org/ --- -This distribution includes software libraries developed by The Apache Software -Foundation (https://www.apache.org/). +This distribution {{includes software libraries developed by The Apache Software +Foundation}} (https://www.apache.org/). -- Under the Apache Software License, Version 2.0 - (http://www.apache.org/licenses/LICENSE-2.0): \ No newline at end of file +- Under {{the Apache Software License, Version 2.0}} + (http://www.apache.org/licenses/LICENSE-2.0): diff --git a/src/licensedcode/data/rules/apache-2.0_528.RULE b/src/licensedcode/data/rules/apache-2.0_528.RULE index 1de3899229..2d79c6c17d 100644 --- a/src/licensedcode/data/rules/apache-2.0_528.RULE +++ b/src/licensedcode/data/rules/apache-2.0_528.RULE @@ -8,5 +8,5 @@ ignorable_urls: - https://www.apache.org/ --- -This distribution includes software libraries developed by The Apache Software -Foundation (https://www.apache.org/). \ No newline at end of file +This distribution {{includes software libraries developed by The Apache Software +Foundation}} (https://www.apache.org/). diff --git a/src/licensedcode/data/rules/apache-2.0_529.RULE b/src/licensedcode/data/rules/apache-2.0_529.RULE index e53895b0b9..160252ac5f 100644 --- a/src/licensedcode/data/rules/apache-2.0_529.RULE +++ b/src/licensedcode/data/rules/apache-2.0_529.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Under the Apache Software License, Version 2.0 +Under {{the Apache Software License, Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0): \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_53.RULE b/src/licensedcode/data/rules/apache-2.0_53.RULE index 113fe92d72..d06db0109b 100644 --- a/src/licensedcode/data/rules/apache-2.0_53.RULE +++ b/src/licensedcode/data/rules/apache-2.0_53.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -* This file is licensed under the Apache 2.0 License \ No newline at end of file +* This file is {{licensed under the Apache 2.0 License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_530.RULE b/src/licensedcode/data/rules/apache-2.0_530.RULE index d561564e15..97afc86c6a 100644 --- a/src/licensedcode/data/rules/apache-2.0_530.RULE +++ b/src/licensedcode/data/rules/apache-2.0_530.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Under the Apache Software License, Version 2.0 \ No newline at end of file +Under {{the Apache Software License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_532.RULE b/src/licensedcode/data/rules/apache-2.0_532.RULE index 0c00a22f8e..6675f964fc 100644 --- a/src/licensedcode/data/rules/apache-2.0_532.RULE +++ b/src/licensedcode/data/rules/apache-2.0_532.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/ --- -This product includes software developed at The Apache Software Foundation +This product includes {{software developed at The Apache Software Foundation}} (http://www.apache.org/). -This product includes software from the Spring Framework, under the Apache -License 2.0 \ No newline at end of file +This product includes software from the Spring Framework, under the {{Apache +License 2.0}} diff --git a/src/licensedcode/data/rules/apache-2.0_533.RULE b/src/licensedcode/data/rules/apache-2.0_533.RULE index 4291f5c546..a9295ad2dd 100644 --- a/src/licensedcode/data/rules/apache-2.0_533.RULE +++ b/src/licensedcode/data/rules/apache-2.0_533.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.apache.org/ --- -This product includes software developed at The Apache Software Foundation +This product includes {{software developed at The Apache Software Foundation}} (https://www.apache.org/). -This product includes software from the Spring Framework, under the Apache -License 2.0 \ No newline at end of file +This product includes software from the Spring Framework, under the {{Apache +License 2.0}} diff --git a/src/licensedcode/data/rules/apache-2.0_534.RULE b/src/licensedcode/data/rules/apache-2.0_534.RULE index 6d65deda12..37c9752459 100644 --- a/src/licensedcode/data/rules/apache-2.0_534.RULE +++ b/src/licensedcode/data/rules/apache-2.0_534.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Apache License, version 2.0 (Apache2) \ No newline at end of file +{{Apache License, version 2.0}} (Apache2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_535.RULE b/src/licensedcode/data/rules/apache-2.0_535.RULE index 8528de1f40..fd394502bd 100644 --- a/src/licensedcode/data/rules/apache-2.0_535.RULE +++ b/src/licensedcode/data/rules/apache-2.0_535.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The Apache License, version 2.0 (Apache2) \ No newline at end of file +The {{Apache License, version 2.0}} (Apache2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_536.RULE b/src/licensedcode/data/rules/apache-2.0_536.RULE index 72ea0a3817..27a25130c0 100644 --- a/src/licensedcode/data/rules/apache-2.0_536.RULE +++ b/src/licensedcode/data/rules/apache-2.0_536.RULE @@ -9,4 +9,4 @@ referenced_filenames: ## License Unless otherwise noted, the source files are distributed -under the Apache Version 2.0 license found in the LICENSE file. \ No newline at end of file +under the {{Apache Version 2.0 license}} found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_537.RULE b/src/licensedcode/data/rules/apache-2.0_537.RULE index f1b36e7b99..f137a7efde 100644 --- a/src/licensedcode/data/rules/apache-2.0_537.RULE +++ b/src/licensedcode/data/rules/apache-2.0_537.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- Unless otherwise noted, the source files are distributed -under the Apache Version 2.0 license found in the LICENSE file. \ No newline at end of file +under the {{Apache Version 2.0 license}} found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_538.RULE b/src/licensedcode/data/rules/apache-2.0_538.RULE index eadebf1e8f..c960706ffb 100644 --- a/src/licensedcode/data/rules/apache-2.0_538.RULE +++ b/src/licensedcode/data/rules/apache-2.0_538.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the Apache Version 2.0 license \ No newline at end of file +distributed under the {{Apache Version 2.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_539.RULE b/src/licensedcode/data/rules/apache-2.0_539.RULE index 6a2b1e4f85..aaf78e35bc 100644 --- a/src/licensedcode/data/rules/apache-2.0_539.RULE +++ b/src/licensedcode/data/rules/apache-2.0_539.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the Apache Version 2.0 license \ No newline at end of file +under the {{Apache Version 2.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_54.RULE b/src/licensedcode/data/rules/apache-2.0_54.RULE index 1d0eedaa0f..15bc12c9f0 100644 --- a/src/licensedcode/data/rules/apache-2.0_54.RULE +++ b/src/licensedcode/data/rules/apache-2.0_54.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -* This file is licensed under the Apache 2.0 License (except where otherwise indicated). \ No newline at end of file +* This file is {{licensed under the Apache 2.0 License}} (except where otherwise indicated). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_540.RULE b/src/licensedcode/data/rules/apache-2.0_540.RULE index f5a7e669ea..e9f364e0cd 100644 --- a/src/licensedcode/data/rules/apache-2.0_540.RULE +++ b/src/licensedcode/data/rules/apache-2.0_540.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Apache Version 2.0 license \ No newline at end of file +Apache Version 2.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_541.RULE b/src/licensedcode/data/rules/apache-2.0_541.RULE index ff77f2df5b..a7166bd4fe 100644 --- a/src/licensedcode/data/rules/apache-2.0_541.RULE +++ b/src/licensedcode/data/rules/apache-2.0_541.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: reported by Dennis Clarck --- -// Licensed under Apache License v2.0 \ No newline at end of file +// Licensed under {{Apache License v2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_542.RULE b/src/licensedcode/data/rules/apache-2.0_542.RULE index 5f069ed5f3..bbcf420aa3 100644 --- a/src/licensedcode/data/rules/apache-2.0_542.RULE +++ b/src/licensedcode/data/rules/apache-2.0_542.RULE @@ -6,4 +6,4 @@ relevance: 100 License -The scripts and documentation in this project are released under the Apache 2.0 license. \ No newline at end of file +The scripts and documentation in this project are released under the {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_543.RULE b/src/licensedcode/data/rules/apache-2.0_543.RULE index 50af27954c..b035973557 100644 --- a/src/licensedcode/data/rules/apache-2.0_543.RULE +++ b/src/licensedcode/data/rules/apache-2.0_543.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The scripts and documentation in this project are released under the Apache 2.0 license. \ No newline at end of file +The scripts and documentation in this project are released under the {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_544.RULE b/src/licensedcode/data/rules/apache-2.0_544.RULE index 4f7b0ef66c..a9dc65714e 100644 --- a/src/licensedcode/data/rules/apache-2.0_544.RULE +++ b/src/licensedcode/data/rules/apache-2.0_544.RULE @@ -5,4 +5,4 @@ relevance: 99 notes: the "or later" is rather ncommon for APache and ignored here --- -Script License: Apache License, Version 2 or later \ No newline at end of file +Script License: {{Apache License, Version 2}} or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_545.RULE b/src/licensedcode/data/rules/apache-2.0_545.RULE index 4eb1a35d7d..439d2f8670 100644 --- a/src/licensedcode/data/rules/apache-2.0_545.RULE +++ b/src/licensedcode/data/rules/apache-2.0_545.RULE @@ -8,4 +8,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file +{{Apache License, Version 2.0}}, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_546.RULE b/src/licensedcode/data/rules/apache-2.0_546.RULE index b4452b6950..9bf7118b31 100644 --- a/src/licensedcode/data/rules/apache-2.0_546.RULE +++ b/src/licensedcode/data/rules/apache-2.0_546.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Permission to modify and redistribute is granted under the terms of the Apache 2.0 license. See the LICENSE file for the full license. \ No newline at end of file +Permission to modify and redistribute is granted under the terms of the {{Apache 2.0 license}}. See the LICENSE file for the full license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_549.RULE b/src/licensedcode/data/rules/apache-2.0_549.RULE index 06f5896ad0..b7ef7b1e06 100644 --- a/src/licensedcode/data/rules/apache-2.0_549.RULE +++ b/src/licensedcode/data/rules/apache-2.0_549.RULE @@ -6,7 +6,7 @@ referenced_filenames: - license.txt --- -This product is licensed to you under the Apache License, Version 2.0 +This product is licensed to you under the {{Apache License, Version 2.0}} (the "License"). You may not use this product except in compliance with the License. diff --git a/src/licensedcode/data/rules/apache-2.0_55.RULE b/src/licensedcode/data/rules/apache-2.0_55.RULE index 16b83c4b52..e7ec5a4af0 100644 --- a/src/licensedcode/data/rules/apache-2.0_55.RULE +++ b/src/licensedcode/data/rules/apache-2.0_55.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0; +{{Licensed under the Apache License, Version 2.0}}; you may not use this file except in compliance with the License. http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_550.RULE b/src/licensedcode/data/rules/apache-2.0_550.RULE index 598eea2b57..19d08b537a 100644 --- a/src/licensedcode/data/rules/apache-2.0_550.RULE +++ b/src/licensedcode/data/rules/apache-2.0_550.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under [Apache License 2.0] \ No newline at end of file +released under [{{Apache License 2.0}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_551.RULE b/src/licensedcode/data/rules/apache-2.0_551.RULE index 3a649daa36..e0e54d33b6 100644 --- a/src/licensedcode/data/rules/apache-2.0_551.RULE +++ b/src/licensedcode/data/rules/apache-2.0_551.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the Apache 2.0 Licence \ No newline at end of file +released under the {{Apache 2.0 Licence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_552.RULE b/src/licensedcode/data/rules/apache-2.0_552.RULE index 9c746270cd..a31f325a91 100644 --- a/src/licensedcode/data/rules/apache-2.0_552.RULE +++ b/src/licensedcode/data/rules/apache-2.0_552.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -released under the [Apache 2.0 Licence](https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file +released under the [{{Apache 2.0 Licence}}](https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_553.RULE b/src/licensedcode/data/rules/apache-2.0_553.RULE index 0724464252..4bb1ebccb3 100644 --- a/src/licensedcode/data/rules/apache-2.0_553.RULE +++ b/src/licensedcode/data/rules/apache-2.0_553.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -offered to the community under the terms of the Apache License 2.0. \ No newline at end of file +offered to the community under the terms of the {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_554.RULE b/src/licensedcode/data/rules/apache-2.0_554.RULE index a1ff153d23..87ee03381a 100644 --- a/src/licensedcode/data/rules/apache-2.0_554.RULE +++ b/src/licensedcode/data/rules/apache-2.0_554.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- // This software may be modified and distributed under the terms -// of the Apache-2.0 license. See the LICENSE file for details. \ No newline at end of file +// of the {{Apache-2.0 license}}. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_555.RULE b/src/licensedcode/data/rules/apache-2.0_555.RULE index 35618b1063..5e1c45e6d2 100644 --- a/src/licensedcode/data/rules/apache-2.0_555.RULE +++ b/src/licensedcode/data/rules/apache-2.0_555.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- /* This software may be modified and distributed under the terms -/* of the Apache-2.0 license. See the LICENSE.txt file for details. \ No newline at end of file +/* of the {{Apache-2.0 license}}. See the LICENSE.txt file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_557.RULE b/src/licensedcode/data/rules/apache-2.0_557.RULE index 48e7fe3719..cf9b5fa6e2 100644 --- a/src/licensedcode/data/rules/apache-2.0_557.RULE +++ b/src/licensedcode/data/rules/apache-2.0_557.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Apache-2.0 \ No newline at end of file +licensed under the {{Apache-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_558.RULE b/src/licensedcode/data/rules/apache-2.0_558.RULE index 435d0c9abb..361eb3964d 100644 --- a/src/licensedcode/data/rules/apache-2.0_558.RULE +++ b/src/licensedcode/data/rules/apache-2.0_558.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -licensed under the Apache License, Version 2.0 (the "License"); you may not use the software except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 +{{licensed under the Apache License, Version 2.0 (the "License}}"); you may not use the software except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_559.RULE b/src/licensedcode/data/rules/apache-2.0_559.RULE index b89cbe7024..b618dbbcf9 100644 --- a/src/licensedcode/data/rules/apache-2.0_559.RULE +++ b/src/licensedcode/data/rules/apache-2.0_559.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed under the Apache License, Version 2.0 (the "License"); +{{licensed under the Apache License, Version 2.0 (the "License}}"); you may not use the software except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_56.RULE b/src/licensedcode/data/rules/apache-2.0_56.RULE index 8884d6a39c..fb10354916 100644 --- a/src/licensedcode/data/rules/apache-2.0_56.RULE +++ b/src/licensedcode/data/rules/apache-2.0_56.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the diff --git a/src/licensedcode/data/rules/apache-2.0_560.RULE b/src/licensedcode/data/rules/apache-2.0_560.RULE index 810cc7cdf8..75288e20a2 100644 --- a/src/licensedcode/data/rules/apache-2.0_560.RULE +++ b/src/licensedcode/data/rules/apache-2.0_560.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -is licensed under the Apache License, Version 2.0 (the -"License"); you may not use the software except in +is {{licensed under the Apache License, Version 2.0 (the +"License}}"); you may not use the software except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_561.RULE b/src/licensedcode/data/rules/apache-2.0_561.RULE index c108e96819..ba8be598c1 100644 --- a/src/licensedcode/data/rules/apache-2.0_561.RULE +++ b/src/licensedcode/data/rules/apache-2.0_561.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Unless explicitly stated otherwise all files in this repository are licensed -under the Apache License Version 2.0. \ No newline at end of file +Unless explicitly stated otherwise all files in this repository are {{licensed +under the Apache License Version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_562.RULE b/src/licensedcode/data/rules/apache-2.0_562.RULE index bd6fa9a843..049c94056a 100644 --- a/src/licensedcode/data/rules/apache-2.0_562.RULE +++ b/src/licensedcode/data/rules/apache-2.0_562.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://www.datadoghq.com/ --- -// Unless explicitly stated otherwise all files in this repository are licensed -// under the Apache License Version 2.0. +// Unless explicitly stated otherwise all files in this repository are {{licensed +// under the Apache License Version 2.0}}. // This product includes software developed at Datadog (https://www.datadoghq.com/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_564.RULE b/src/licensedcode/data/rules/apache-2.0_564.RULE index dacc58dcbe..c4d261e6d3 100644 --- a/src/licensedcode/data/rules/apache-2.0_564.RULE +++ b/src/licensedcode/data/rules/apache-2.0_564.RULE @@ -5,4 +5,4 @@ relevance: 90 notes: https://raw.githubusercontent.com/oliver-moran/jimp/master/README.md --- -licensed under the Apache License \ No newline at end of file +licensed under the {{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_565.RULE b/src/licensedcode/data/rules/apache-2.0_565.RULE index 76acec416b..2b0d42457b 100644 --- a/src/licensedcode/data/rules/apache-2.0_565.RULE +++ b/src/licensedcode/data/rules/apache-2.0_565.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -is licensed under the Apache license \ No newline at end of file +is licensed under the {{Apache license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_566.RULE b/src/licensedcode/data/rules/apache-2.0_566.RULE index 511f4c99a1..7fb3cff4c6 100644 --- a/src/licensedcode/data/rules/apache-2.0_566.RULE +++ b/src/licensedcode/data/rules/apache-2.0_566.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -provided under the Apache License, 2.0. \ No newline at end of file +provided under the {{Apache License, 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_567.RULE b/src/licensedcode/data/rules/apache-2.0_567.RULE index f5c6d0c99d..eb0b38dc36 100644 --- a/src/licensedcode/data/rules/apache-2.0_567.RULE +++ b/src/licensedcode/data/rules/apache-2.0_567.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Apache Software License, version 2.0. \ No newline at end of file +licensed under {{the Apache Software License, version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_568.RULE b/src/licensedcode/data/rules/apache-2.0_568.RULE index 27f971b3da..5c31a6bf2b 100644 --- a/src/licensedcode/data/rules/apache-2.0_568.RULE +++ b/src/licensedcode/data/rules/apache-2.0_568.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the Apache 2 license, quoted below. \ No newline at end of file +This software is licensed under the {{Apache 2 license}}, quoted below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_569.RULE b/src/licensedcode/data/rules/apache-2.0_569.RULE index f764fd3436..5c472a5fa5 100644 --- a/src/licensedcode/data/rules/apache-2.0_569.RULE +++ b/src/licensedcode/data/rules/apache-2.0_569.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the Apache 2 license. \ No newline at end of file +This software is licensed under the {{Apache 2 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_57.RULE b/src/licensedcode/data/rules/apache-2.0_57.RULE index 949a950f5e..84b8f06371 100644 --- a/src/licensedcode/data/rules/apache-2.0_57.RULE +++ b/src/licensedcode/data/rules/apache-2.0_57.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 +{{Licensed under the Apache License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_570.RULE b/src/licensedcode/data/rules/apache-2.0_570.RULE index 442ba05d5b..154d62c7e6 100644 --- a/src/licensedcode/data/rules/apache-2.0_570.RULE +++ b/src/licensedcode/data/rules/apache-2.0_570.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/ --- -Apache License Version 2.0, January 2004 +{{Apache License Version 2.0}}, January 2004 http://www.apache.org/licenses/ http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_574.RULE b/src/licensedcode/data/rules/apache-2.0_574.RULE index 86b1f03b5c..3df465cc10 100644 --- a/src/licensedcode/data/rules/apache-2.0_574.RULE +++ b/src/licensedcode/data/rules/apache-2.0_574.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Apache License, V2.0 or later \ No newline at end of file +{{Apache License, V2.0}} or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_575.RULE b/src/licensedcode/data/rules/apache-2.0_575.RULE index 1847968af3..62e09328be 100644 --- a/src/licensedcode/data/rules/apache-2.0_575.RULE +++ b/src/licensedcode/data/rules/apache-2.0_575.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Apache Software License (Apache-2.0) \ No newline at end of file +{{Apache Software License}} ({{Apache-2.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_576.RULE b/src/licensedcode/data/rules/apache-2.0_576.RULE index 1d28ab7bbf..20b979c7b5 100644 --- a/src/licensedcode/data/rules/apache-2.0_576.RULE +++ b/src/licensedcode/data/rules/apache-2.0_576.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Apache Software License, Version 2 \ No newline at end of file +Apache Software License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_58.RULE b/src/licensedcode/data/rules/apache-2.0_58.RULE index 76b973b58e..cde719a2be 100644 --- a/src/licensedcode/data/rules/apache-2.0_58.RULE +++ b/src/licensedcode/data/rules/apache-2.0_58.RULE @@ -6,9 +6,9 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Apache License, Version 2.0: +{{Apache License, Version 2.0}}: -Licensed under the Apache License, Version 2.0 (the "License"); you may not +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_583.RULE b/src/licensedcode/data/rules/apache-2.0_583.RULE index 683219d13e..18a82765b3 100644 --- a/src/licensedcode/data/rules/apache-2.0_583.RULE +++ b/src/licensedcode/data/rules/apache-2.0_583.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, version 2.0 (the "License"): +{{Licensed under the Apache License, version 2.0 (the "License}}"): http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_584.RULE b/src/licensedcode/data/rules/apache-2.0_584.RULE index de6839ff4f..823afe926e 100644 --- a/src/licensedcode/data/rules/apache-2.0_584.RULE +++ b/src/licensedcode/data/rules/apache-2.0_584.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_585.RULE b/src/licensedcode/data/rules/apache-2.0_585.RULE index 28acee96b4..6632d1f059 100644 --- a/src/licensedcode/data/rules/apache-2.0_585.RULE +++ b/src/licensedcode/data/rules/apache-2.0_585.RULE @@ -7,4 +7,4 @@ ignorable_urls: - https://github.com/quantumblacklabs/kedro/blob/master/LICENSE.md --- -licensed under the [Apache 2.0](https://github.com/quantumblacklabs/kedro/blob/master/LICENSE.md) License. \ No newline at end of file +licensed under the [{{Apache 2.0}}](https://github.com/quantumblacklabs/kedro/blob/master/LICENSE.md) License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_586.RULE b/src/licensedcode/data/rules/apache-2.0_586.RULE index da108b4589..7ae6256a14 100644 --- a/src/licensedcode/data/rules/apache-2.0_586.RULE +++ b/src/licensedcode/data/rules/apache-2.0_586.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Apache 2.0 License -Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 +{{Apache 2.0 License}} +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. -See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. \ No newline at end of file +See the {{Apache Version 2.0 License}} for specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_587.RULE b/src/licensedcode/data/rules/apache-2.0_587.RULE index 6e35c655e3..659120b74f 100644 --- a/src/licensedcode/data/rules/apache-2.0_587.RULE +++ b/src/licensedcode/data/rules/apache-2.0_587.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -# Licensed under the Apache License, Version 2.0 (the "License"); +# {{Licensed under the Apache License, Version 2.0 (the "License}}"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # diff --git a/src/licensedcode/data/rules/apache-2.0_589.RULE b/src/licensedcode/data/rules/apache-2.0_589.RULE index 2cf1f92f8e..afd427102c 100644 --- a/src/licensedcode/data/rules/apache-2.0_589.RULE +++ b/src/licensedcode/data/rules/apache-2.0_589.RULE @@ -8,4 +8,4 @@ notes: seen in https://github.com/varlink/go/blob/0ad3cc7fadf04a0a303a285643e6ed --- Except as otherwise noted (below and/or in individual files), is -licensed under the Apache License, Version 2.0 . \ No newline at end of file +{{licensed under the Apache License, Version 2.0}} . \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_59.RULE b/src/licensedcode/data/rules/apache-2.0_59.RULE index a2c87cef4c..396abbd33d 100644 --- a/src/licensedcode/data/rules/apache-2.0_59.RULE +++ b/src/licensedcode/data/rules/apache-2.0_59.RULE @@ -7,6 +7,6 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 +{{Licensed under the Apache License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0 http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_590.RULE b/src/licensedcode/data/rules/apache-2.0_590.RULE index b3c5b299cc..ebd612c92c 100644 --- a/src/licensedcode/data/rules/apache-2.0_590.RULE +++ b/src/licensedcode/data/rules/apache-2.0_590.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use the file in this project except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_592.RULE b/src/licensedcode/data/rules/apache-2.0_592.RULE index d20eedb021..d0e9e057c9 100644 --- a/src/licensedcode/data/rules/apache-2.0_592.RULE +++ b/src/licensedcode/data/rules/apache-2.0_592.RULE @@ -5,6 +5,6 @@ relevance: 100 notes: See in https://github.com/vmware/go-vcloud-director/blob/bd4843992153364e688c5f1533f803a31eea0e47/LICENSE#L5 --- -The Apache 2.0 license (the "License") set forth below applies to +The {{Apache 2.0 license}} (the "License") set forth below applies to all parts of the project except as noted below. You may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_593.RULE b/src/licensedcode/data/rules/apache-2.0_593.RULE index 728a39d030..309116befe 100644 --- a/src/licensedcode/data/rules/apache-2.0_593.RULE +++ b/src/licensedcode/data/rules/apache-2.0_593.RULE @@ -1,7 +1,6 @@ --- license_expression: apache-2.0 is_license_text: yes -relevance: 100 --- Apache License, Version 2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_594.RULE b/src/licensedcode/data/rules/apache-2.0_594.RULE index d057e3f059..f64b19968c 100644 --- a/src/licensedcode/data/rules/apache-2.0_594.RULE +++ b/src/licensedcode/data/rules/apache-2.0_594.RULE @@ -6,6 +6,6 @@ relevance: 100 License -The repository utilizes code licensed under the terms of the Apache Software License and therefore is licensed under ASL v2 or later. +The repository utilizes code licensed under the terms of the {{Apache Software License}} and therefore is licensed under ASL v2 or later. -The container image in this repository is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Apache Software License for more details. \ No newline at end of file +The container image in this repository is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{Apache Software License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_595.RULE b/src/licensedcode/data/rules/apache-2.0_595.RULE index 0ed27449fb..4b4beb0a6c 100644 --- a/src/licensedcode/data/rules/apache-2.0_595.RULE +++ b/src/licensedcode/data/rules/apache-2.0_595.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -The repository utilizes code licensed under the terms of the Apache Software License and therefore is licensed under ASL v2 or later. +The repository utilizes code licensed under the terms of the {{Apache Software License}} and therefore is licensed under ASL v2 or later. -The container image in this repository is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Apache Software License for more details. \ No newline at end of file +The container image in this repository is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{Apache Software License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_596.RULE b/src/licensedcode/data/rules/apache-2.0_596.RULE index 76d06f3f1c..9781bd345d 100644 --- a/src/licensedcode/data/rules/apache-2.0_596.RULE +++ b/src/licensedcode/data/rules/apache-2.0_596.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The repository utilizes code licensed under the terms of the Apache Software License and therefore is licensed under ASL v2 or later. \ No newline at end of file +The repository utilizes code licensed under the terms of the {{Apache Software License}} and therefore is licensed under ASL v2 or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_598.RULE b/src/licensedcode/data/rules/apache-2.0_598.RULE index 786a1d3ca3..3cb97e66fe 100644 --- a/src/licensedcode/data/rules/apache-2.0_598.RULE +++ b/src/licensedcode/data/rules/apache-2.0_598.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -licensed under the Apache 2.0 License: -You may not use the identified files except in compliance with the Apache License, Version 2.0 (the "License.") +{{licensed under the Apache 2.0 License}}: +You may not use the identified files except in compliance with the {{Apache License, Version 2.0}} (the "License.") You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. A copy of the license is also reproduced below. diff --git a/src/licensedcode/data/rules/apache-2.0_599.RULE b/src/licensedcode/data/rules/apache-2.0_599.RULE index 4e5437750c..b5ec612528 100644 --- a/src/licensedcode/data/rules/apache-2.0_599.RULE +++ b/src/licensedcode/data/rules/apache-2.0_599.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licenced under the Apache 2.0 Licence: \ No newline at end of file +licenced under the {{Apache 2.0 Licence}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_6.RULE b/src/licensedcode/data/rules/apache-2.0_6.RULE index a756b9c94f..39de86f02d 100644 --- a/src/licensedcode/data/rules/apache-2.0_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_6.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is covered by the Apache License 2.0. \ No newline at end of file +is covered by the {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_60.RULE b/src/licensedcode/data/rules/apache-2.0_60.RULE index 61fc73dc85..4236dcef64 100644 --- a/src/licensedcode/data/rules/apache-2.0_60.RULE +++ b/src/licensedcode/data/rules/apache-2.0_60.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 -Licensed under the Apache License, Version 2.0 +{{Licensed under the Apache License, Version 2.0}} +{{Licensed under the Apache License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0 http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_601.RULE b/src/licensedcode/data/rules/apache-2.0_601.RULE index 057d76d596..13165e216b 100644 --- a/src/licensedcode/data/rules/apache-2.0_601.RULE +++ b/src/licensedcode/data/rules/apache-2.0_601.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -This app uses third-party librarys that are licenced under the Apache 2.0 licence. +This app uses third-party librarys that are licenced under the {{Apache 2.0 licence}}. Get the full text of the licence at http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_602.RULE b/src/licensedcode/data/rules/apache-2.0_602.RULE index 861f4004d0..4ffef3d5d2 100644 --- a/src/licensedcode/data/rules/apache-2.0_602.RULE +++ b/src/licensedcode/data/rules/apache-2.0_602.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This library is licenced under the Apache 2.0 licence \ No newline at end of file +This library is licenced under the {{Apache 2.0 licence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_603.RULE b/src/licensedcode/data/rules/apache-2.0_603.RULE index b3c05a7842..069fc0b1a9 100644 --- a/src/licensedcode/data/rules/apache-2.0_603.RULE +++ b/src/licensedcode/data/rules/apache-2.0_603.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -open source and licenced under the Apache 2.0 Licence \ No newline at end of file +open source and licenced under the {{Apache 2.0 Licence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_604.RULE b/src/licensedcode/data/rules/apache-2.0_604.RULE index 232cf1deab..dfcfe54885 100644 --- a/src/licensedcode/data/rules/apache-2.0_604.RULE +++ b/src/licensedcode/data/rules/apache-2.0_604.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -translation are licenced under the Apache-2.0 licence \ No newline at end of file +translation are licenced under the {{Apache-2.0 licence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_605.RULE b/src/licensedcode/data/rules/apache-2.0_605.RULE index 138b0ba638..0d3223d931 100644 --- a/src/licensedcode/data/rules/apache-2.0_605.RULE +++ b/src/licensedcode/data/rules/apache-2.0_605.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is open source and licenced under the Apache 2.0 licence. \ No newline at end of file +This project is open source and licenced under the {{Apache 2.0 licence}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_606.RULE b/src/licensedcode/data/rules/apache-2.0_606.RULE index f58f5adf15..1b0a529612 100644 --- a/src/licensedcode/data/rules/apache-2.0_606.RULE +++ b/src/licensedcode/data/rules/apache-2.0_606.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensing. This project is open source and licenced under the Apache 2.0 licence. \ No newline at end of file +Licensing. This project is open source and licenced under the {{Apache 2.0 licence}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_607.RULE b/src/licensedcode/data/rules/apache-2.0_607.RULE index e580b12367..8e88e01e61 100644 --- a/src/licensedcode/data/rules/apache-2.0_607.RULE +++ b/src/licensedcode/data/rules/apache-2.0_607.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -freeware and licenced under the Apache 2.0 licence. (http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file +freeware and licenced under the {{Apache 2.0 licence}}. (http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_608.RULE b/src/licensedcode/data/rules/apache-2.0_608.RULE index 721cef50db..e7afc3f12a 100644 --- a/src/licensedcode/data/rules/apache-2.0_608.RULE +++ b/src/licensedcode/data/rules/apache-2.0_608.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licence. Licenced under the Apache 2.0 licence \ No newline at end of file +Licence. Licenced under the {{Apache 2.0 licence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_609.RULE b/src/licensedcode/data/rules/apache-2.0_609.RULE index b458f55a6d..3ee6338f48 100644 --- a/src/licensedcode/data/rules/apache-2.0_609.RULE +++ b/src/licensedcode/data/rules/apache-2.0_609.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All products are licenced under the Apache 2.0 licence. \ No newline at end of file +All products are licenced under the {{Apache 2.0 licence}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_61.RULE b/src/licensedcode/data/rules/apache-2.0_61.RULE index 7db29ea5e8..2e87096e2c 100644 --- a/src/licensedcode/data/rules/apache-2.0_61.RULE +++ b/src/licensedcode/data/rules/apache-2.0_61.RULE @@ -4,5 +4,5 @@ is_license_notice: yes minimum_coverage: 90 --- -Licensed to the Apache Software Foundation (ASF) under one or more contributor -license agreements; and to You under the Apache License, Version 2.0. \ No newline at end of file +{{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor +license agreements; and to You under the {{Apache License, Version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_610.RULE b/src/licensedcode/data/rules/apache-2.0_610.RULE index 3e733a70ab..90c9a348ac 100644 --- a/src/licensedcode/data/rules/apache-2.0_610.RULE +++ b/src/licensedcode/data/rules/apache-2.0_610.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENCE-2.0.txt. --- -licenced under the Apache 2.0 licence. A copy of the licence is included with the software. For details see the file LICENCE-2.0.txt. \ No newline at end of file +licenced under the {{Apache 2.0 licence}}. A copy of the licence is included with the software. For details see the file LICENCE-2.0.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_611.RULE b/src/licensedcode/data/rules/apache-2.0_611.RULE index 7305df5f0d..757161c332 100644 --- a/src/licensedcode/data/rules/apache-2.0_611.RULE +++ b/src/licensedcode/data/rules/apache-2.0_611.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This library is licensed under the Apache 2.0 license \ No newline at end of file +This library is {{licensed under the Apache 2.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_612.RULE b/src/licensedcode/data/rules/apache-2.0_612.RULE index a0ad89ce67..610d35c0d6 100644 --- a/src/licensedcode/data/rules/apache-2.0_612.RULE +++ b/src/licensedcode/data/rules/apache-2.0_612.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -open source and licensed under the Apache 2.0 license \ No newline at end of file +open source and {{licensed under the Apache 2.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_613.RULE b/src/licensedcode/data/rules/apache-2.0_613.RULE index 042b09db11..f20b7c9a78 100644 --- a/src/licensedcode/data/rules/apache-2.0_613.RULE +++ b/src/licensedcode/data/rules/apache-2.0_613.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -translation are licensed under the Apache-2.0 license \ No newline at end of file +translation are {{licensed under the Apache-2.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_614.RULE b/src/licensedcode/data/rules/apache-2.0_614.RULE index 6260a44b29..aca2399fe9 100644 --- a/src/licensedcode/data/rules/apache-2.0_614.RULE +++ b/src/licensedcode/data/rules/apache-2.0_614.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is open source and licensed under the Apache 2.0 license. \ No newline at end of file +This project is open source and {{licensed under the Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_615.RULE b/src/licensedcode/data/rules/apache-2.0_615.RULE index b7065c41e8..df38853d94 100644 --- a/src/licensedcode/data/rules/apache-2.0_615.RULE +++ b/src/licensedcode/data/rules/apache-2.0_615.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensing. This project is open source and licensed under the Apache 2.0 license. \ No newline at end of file +Licensing. This project is open source and {{licensed under the Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_616.RULE b/src/licensedcode/data/rules/apache-2.0_616.RULE index 1c966dd41a..128e24fff3 100644 --- a/src/licensedcode/data/rules/apache-2.0_616.RULE +++ b/src/licensedcode/data/rules/apache-2.0_616.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html --- -freeware and licensed under the Apache 2.0 license. (http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file +freeware and {{licensed under the Apache 2.0 license}}. (http://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_618.RULE b/src/licensedcode/data/rules/apache-2.0_618.RULE index cdc7bf4bf6..5a669cd970 100644 --- a/src/licensedcode/data/rules/apache-2.0_618.RULE +++ b/src/licensedcode/data/rules/apache-2.0_618.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All products are licensed under the Apache 2.0 license. \ No newline at end of file +All products are {{licensed under the Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_619.RULE b/src/licensedcode/data/rules/apache-2.0_619.RULE index fa354097e7..177217534f 100644 --- a/src/licensedcode/data/rules/apache-2.0_619.RULE +++ b/src/licensedcode/data/rules/apache-2.0_619.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licences --- -License: Apache 2.0 (http://www.apache.org/licences) \ No newline at end of file +{{License: Apache 2.0}} (http://www.apache.org/licences) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_63.RULE b/src/licensedcode/data/rules/apache-2.0_63.RULE index d6f6d583ec..aee50d0605 100644 --- a/src/licensedcode/data/rules/apache-2.0_63.RULE +++ b/src/licensedcode/data/rules/apache-2.0_63.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This is free software, licensed under the Apache License, Version 2.0. \ No newline at end of file +This is free software, {{licensed under the Apache License, Version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_64.RULE b/src/licensedcode/data/rules/apache-2.0_64.RULE index 8917b70ce3..f9ee82197f 100644 --- a/src/licensedcode/data/rules/apache-2.0_64.RULE +++ b/src/licensedcode/data/rules/apache-2.0_64.RULE @@ -9,8 +9,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache-2.0 - Licensed under the Apache License, Version 2.0 (the "License"); +{{License: Apache-2.0 + Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -22,5 +22,5 @@ License: Apache-2.0 See the License for the specific language governing permissions and limitations under the License. . - On Debian-based systems the full text of the Apache version 2.0 license + On Debian-based systems the full text of the {{Apache version 2.0 license}} can be found in `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_641.RULE b/src/licensedcode/data/rules/apache-2.0_641.RULE index 6ca8e3278e..7f3f9293c7 100644 --- a/src/licensedcode/data/rules/apache-2.0_641.RULE +++ b/src/licensedcode/data/rules/apache-2.0_641.RULE @@ -5,5 +5,5 @@ relevance: 100 notes: See https://github.com/jorenberg/KnotDB/blob/679d637c41241844022a4b1b86444a36cd374873/do.py#L6 --- -# Licensed under the Apache License (the "License, version 2.0"); +# Licensed under the {{Apache License}} (the "License, version 2.0"); # you may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_642.RULE b/src/licensedcode/data/rules/apache-2.0_642.RULE index 00002fa862..1dba139a5d 100644 --- a/src/licensedcode/data/rules/apache-2.0_642.RULE +++ b/src/licensedcode/data/rules/apache-2.0_642.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -software licensed under the Apache License Version 2.0 (APLv2), \ No newline at end of file +software {{licensed under the Apache License Version 2.0}} (APLv2), \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_643.RULE b/src/licensedcode/data/rules/apache-2.0_643.RULE index 208792bc23..cf7885a460 100644 --- a/src/licensedcode/data/rules/apache-2.0_643.RULE +++ b/src/licensedcode/data/rules/apache-2.0_643.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software licensed under the Apache License Version 2.0 (APLv2), \ No newline at end of file +This software {{licensed under the Apache License Version 2.0}} (APLv2), \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_644.RULE b/src/licensedcode/data/rules/apache-2.0_644.RULE index bd1f581b94..b3cd8fa84c 100644 --- a/src/licensedcode/data/rules/apache-2.0_644.RULE +++ b/src/licensedcode/data/rules/apache-2.0_644.RULE @@ -5,4 +5,4 @@ relevance: 99 --- License -This project is licensed under the Apache license. \ No newline at end of file +This project is licensed under the {{Apache license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_645.RULE b/src/licensedcode/data/rules/apache-2.0_645.RULE index 5c5f2bb97f..e5ad8deb13 100644 --- a/src/licensedcode/data/rules/apache-2.0_645.RULE +++ b/src/licensedcode/data/rules/apache-2.0_645.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -This project is licensed under the Apache license. \ No newline at end of file +This project is licensed under the {{Apache license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_647.RULE b/src/licensedcode/data/rules/apache-2.0_647.RULE index 7816b8974d..bbf1ec8e1f 100644 --- a/src/licensedcode/data/rules/apache-2.0_647.RULE +++ b/src/licensedcode/data/rules/apache-2.0_647.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Apache License, the short form os which is below. \ No newline at end of file +licensed under the {{Apache License}}, the short form os which is below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_648.RULE b/src/licensedcode/data/rules/apache-2.0_648.RULE index 72bc0d1316..d2fbcfde58 100644 --- a/src/licensedcode/data/rules/apache-2.0_648.RULE +++ b/src/licensedcode/data/rules/apache-2.0_648.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Apache License, the short form of which is below. \ No newline at end of file +licensed under the {{Apache License}}, the short form of which is below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_649.RULE b/src/licensedcode/data/rules/apache-2.0_649.RULE index 7ab4e1409e..7119376ca6 100644 --- a/src/licensedcode/data/rules/apache-2.0_649.RULE +++ b/src/licensedcode/data/rules/apache-2.0_649.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Webfonts: Open Sans and Droid Serif is licensed under Apache License, version 2.0. \ No newline at end of file +Webfonts: Open Sans and Droid Serif is {{licensed under Apache License, version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_65.RULE b/src/licensedcode/data/rules/apache-2.0_65.RULE index ff39dc98ed..f6f2a6f3c6 100644 --- a/src/licensedcode/data/rules/apache-2.0_65.RULE +++ b/src/licensedcode/data/rules/apache-2.0_65.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -license: Apache-2.0 \ No newline at end of file +license="Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_650.RULE b/src/licensedcode/data/rules/apache-2.0_650.RULE index 8628d2bee4..f5a898c333 100644 --- a/src/licensedcode/data/rules/apache-2.0_650.RULE +++ b/src/licensedcode/data/rules/apache-2.0_650.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -licensed under the GPL-compatible [http://www.apache.org/licenses/LICENSE-2.0 Apache License v2.0] \ No newline at end of file +licensed under the GPL-compatible [http://www.apache.org/licenses/LICENSE-2.0 {{Apache License v2.0}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_651.RULE b/src/licensedcode/data/rules/apache-2.0_651.RULE index 5d09bc978b..56dfa00551 100644 --- a/src/licensedcode/data/rules/apache-2.0_651.RULE +++ b/src/licensedcode/data/rules/apache-2.0_651.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -* The script is licensed under the Apache License \ No newline at end of file +* The script is licensed under the {{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_652.RULE b/src/licensedcode/data/rules/apache-2.0_652.RULE index b86c235197..1bbb986833 100644 --- a/src/licensedcode/data/rules/apache-2.0_652.RULE +++ b/src/licensedcode/data/rules/apache-2.0_652.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The user agents data from the ua-parser project is licensed under the Apache license \ No newline at end of file +The user agents data from the ua-parser project is licensed under the {{Apache license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_653.RULE b/src/licensedcode/data/rules/apache-2.0_653.RULE index df2b170981..e35f71d0aa 100644 --- a/src/licensedcode/data/rules/apache-2.0_653.RULE +++ b/src/licensedcode/data/rules/apache-2.0_653.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -software licenced under the Apache License Version 2.0 (APLv2), \ No newline at end of file +software licenced under the {{Apache License Version 2.0}} (APLv2), \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_654.RULE b/src/licensedcode/data/rules/apache-2.0_654.RULE index 3dc130e774..774b8d758e 100644 --- a/src/licensedcode/data/rules/apache-2.0_654.RULE +++ b/src/licensedcode/data/rules/apache-2.0_654.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software licenced under the Apache License Version 2.0 (APLv2), \ No newline at end of file +This software licenced under the {{Apache License Version 2.0}} (APLv2), \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_655.RULE b/src/licensedcode/data/rules/apache-2.0_655.RULE index ab2205cab1..478fc80870 100644 --- a/src/licensedcode/data/rules/apache-2.0_655.RULE +++ b/src/licensedcode/data/rules/apache-2.0_655.RULE @@ -5,4 +5,4 @@ relevance: 99 --- License -This project is licenced under the Apache license. \ No newline at end of file +This project is licenced under the {{Apache license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_656.RULE b/src/licensedcode/data/rules/apache-2.0_656.RULE index 6c35b62049..2f340a3255 100644 --- a/src/licensedcode/data/rules/apache-2.0_656.RULE +++ b/src/licensedcode/data/rules/apache-2.0_656.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -This project is licenced under the Apache license. \ No newline at end of file +This project is licenced under the {{Apache license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_658.RULE b/src/licensedcode/data/rules/apache-2.0_658.RULE index 3a0fb000c6..c145a63a42 100644 --- a/src/licensedcode/data/rules/apache-2.0_658.RULE +++ b/src/licensedcode/data/rules/apache-2.0_658.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licenced under the Apache License, the short form os which is below. \ No newline at end of file +licenced under the {{Apache License}}, the short form os which is below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_659.RULE b/src/licensedcode/data/rules/apache-2.0_659.RULE index bd9bbb4651..0b467d0b97 100644 --- a/src/licensedcode/data/rules/apache-2.0_659.RULE +++ b/src/licensedcode/data/rules/apache-2.0_659.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licenced under the Apache License, the short form of which is below. \ No newline at end of file +licenced under the {{Apache License}}, the short form of which is below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_66.RULE b/src/licensedcode/data/rules/apache-2.0_66.RULE index 6754d0dfa6..ad3c10739b 100644 --- a/src/licensedcode/data/rules/apache-2.0_66.RULE +++ b/src/licensedcode/data/rules/apache-2.0_66.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -provided under an Apache 2 license. \ No newline at end of file +provided under an {{Apache 2 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_660.RULE b/src/licensedcode/data/rules/apache-2.0_660.RULE index 3d076d3162..1bec5a05ff 100644 --- a/src/licensedcode/data/rules/apache-2.0_660.RULE +++ b/src/licensedcode/data/rules/apache-2.0_660.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -licenced under the GPL-compatible [http://www.apache.org/licenses/LICENSE-2.0 Apache License v2.0] \ No newline at end of file +licenced under the GPL-compatible [http://www.apache.org/licenses/LICENSE-2.0 {{Apache License v2.0}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_661.RULE b/src/licensedcode/data/rules/apache-2.0_661.RULE index f8c8b3a8b9..c508cfe076 100644 --- a/src/licensedcode/data/rules/apache-2.0_661.RULE +++ b/src/licensedcode/data/rules/apache-2.0_661.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -* The script is licenced under the Apache License \ No newline at end of file +* The script is licenced under the {{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_662.RULE b/src/licensedcode/data/rules/apache-2.0_662.RULE index bcd1947ee9..db3bf4c289 100644 --- a/src/licensedcode/data/rules/apache-2.0_662.RULE +++ b/src/licensedcode/data/rules/apache-2.0_662.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The user agents data from the ua-parser project is licenced under the Apache license \ No newline at end of file +The user agents data from the ua-parser project is licenced under the {{Apache license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_663.RULE b/src/licensedcode/data/rules/apache-2.0_663.RULE index e319be1214..4ea4491614 100644 --- a/src/licensedcode/data/rules/apache-2.0_663.RULE +++ b/src/licensedcode/data/rules/apache-2.0_663.RULE @@ -9,10 +9,10 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed to the Apache Software Foundation (ASF) under one or more +{{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 + The ASF licenses this file to You under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . diff --git a/src/licensedcode/data/rules/apache-2.0_664.RULE b/src/licensedcode/data/rules/apache-2.0_664.RULE index 1e92c94a47..2d616f3472 100644 --- a/src/licensedcode/data/rules/apache-2.0_664.RULE +++ b/src/licensedcode/data/rules/apache-2.0_664.RULE @@ -7,5 +7,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems, the full text of the Apache Software License version 2 can +On Debian systems, the full text of the {{Apache Software License version 2}} can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_665.RULE b/src/licensedcode/data/rules/apache-2.0_665.RULE index 418184dfb8..6c111c77c5 100644 --- a/src/licensedcode/data/rules/apache-2.0_665.RULE +++ b/src/licensedcode/data/rules/apache-2.0_665.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -// Licensed under the Apache License, Version 2.0 (the "License"); +// {{Licensed under the Apache License, Version 2.0 (the "License}}"); // You may not use this file except in compliance with the License. // You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 @@ -16,5 +16,5 @@ ignorable_urls: // CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, // MERCHANTABLITY OR NON-INFRINGEMENT. -// See the Apache 2 License for the specific language governing +// See the {{Apache 2 License}} for the specific language governing // permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_666.RULE b/src/licensedcode/data/rules/apache-2.0_666.RULE index 62b744dabf..b36cb8e8c6 100644 --- a/src/licensedcode/data/rules/apache-2.0_666.RULE +++ b/src/licensedcode/data/rules/apache-2.0_666.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under Apache License 2.0. \ No newline at end of file +distributed under {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_667.RULE b/src/licensedcode/data/rules/apache-2.0_667.RULE index 6d0828f305..c7b61f6661 100644 --- a/src/licensedcode/data/rules/apache-2.0_667.RULE +++ b/src/licensedcode/data/rules/apache-2.0_667.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed under the Apache 2.0 license. \ No newline at end of file +Distributed under the {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_668.RULE b/src/licensedcode/data/rules/apache-2.0_668.RULE index 8e33c2aecd..6c8e29af69 100644 --- a/src/licensedcode/data/rules/apache-2.0_668.RULE +++ b/src/licensedcode/data/rules/apache-2.0_668.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -copyrighted software made available under Version 2.0 of the Apache License \ No newline at end of file +copyrighted software made available under Version 2.0 of the {{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_669.RULE b/src/licensedcode/data/rules/apache-2.0_669.RULE index 8f376af6cc..ac22304bea 100644 --- a/src/licensedcode/data/rules/apache-2.0_669.RULE +++ b/src/licensedcode/data/rules/apache-2.0_669.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under Version 2.0 of the Apache License \ No newline at end of file +under Version 2.0 of the {{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_67.RULE b/src/licensedcode/data/rules/apache-2.0_67.RULE index 4070c34933..d4e3328e93 100644 --- a/src/licensedcode/data/rules/apache-2.0_67.RULE +++ b/src/licensedcode/data/rules/apache-2.0_67.RULE @@ -9,8 +9,8 @@ ignorable_urls: - http://www.apache.org/licenses/ --- -Apache License -Version 2.0, January 2004 +{{Apache License +Version 2.0}}, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION diff --git a/src/licensedcode/data/rules/apache-2.0_670.RULE b/src/licensedcode/data/rules/apache-2.0_670.RULE index b351fce8b7..63f87b37dd 100644 --- a/src/licensedcode/data/rules/apache-2.0_670.RULE +++ b/src/licensedcode/data/rules/apache-2.0_670.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under Version 2.0 of the Apache License \ No newline at end of file +available under Version 2.0 of the {{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_671.RULE b/src/licensedcode/data/rules/apache-2.0_671.RULE index 948ff2c8b6..041da4dc22 100644 --- a/src/licensedcode/data/rules/apache-2.0_671.RULE +++ b/src/licensedcode/data/rules/apache-2.0_671.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Version 2.0 of the Apache License \ No newline at end of file +Version 2.0 of the {{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_672.RULE b/src/licensedcode/data/rules/apache-2.0_672.RULE index b7cb5f19a6..96acadd969 100644 --- a/src/licensedcode/data/rules/apache-2.0_672.RULE +++ b/src/licensedcode/data/rules/apache-2.0_672.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -software made available under Version 2.0 of the Apache License \ No newline at end of file +software made available under Version 2.0 of the {{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_673.RULE b/src/licensedcode/data/rules/apache-2.0_673.RULE index 9384bc9d88..5bc8db0a1c 100644 --- a/src/licensedcode/data/rules/apache-2.0_673.RULE +++ b/src/licensedcode/data/rules/apache-2.0_673.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -made available under Version 2.0 of the Apache License \ No newline at end of file +made available under Version 2.0 of the {{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_674.RULE b/src/licensedcode/data/rules/apache-2.0_674.RULE index d76050b161..40ec29873e 100644 --- a/src/licensedcode/data/rules/apache-2.0_674.RULE +++ b/src/licensedcode/data/rules/apache-2.0_674.RULE @@ -6,7 +6,7 @@ minimum_coverage: 80 notes: a fragment of Apache used as-is --- -copyrighted software made available under Version 2.0 of the Apache License +copyrighted software made available under Version 2.0 of the {{Apache License}} You must give any other recipients of the Work or Derivative Works a copy of this License. You must retain, in the Source form of any Derivative Works that diff --git a/src/licensedcode/data/rules/apache-2.0_676.RULE b/src/licensedcode/data/rules/apache-2.0_676.RULE index 8e6873c595..d0c07a493b 100644 --- a/src/licensedcode/data/rules/apache-2.0_676.RULE +++ b/src/licensedcode/data/rules/apache-2.0_676.RULE @@ -8,8 +8,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -The default license for search engine is the Apache -License, Version 2.0 (ALv2). The license text can be found at +The default license for search engine is the {{Apache +License, Version 2.0}} (ALv2). The license text can be found at http://www.apache.org/licenses/LICENSE-2.0.txt and it is reproduced below. "Default" means, unless stated otherwise, ALv2 is the license under which search engine is made available to you and it is the diff --git a/src/licensedcode/data/rules/apache-2.0_677.RULE b/src/licensedcode/data/rules/apache-2.0_677.RULE index 36c6616725..d1e5613092 100644 --- a/src/licensedcode/data/rules/apache-2.0_677.RULE +++ b/src/licensedcode/data/rules/apache-2.0_677.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Apache License, Version 2.0 (ALv2) \ No newline at end of file +{{Apache License, Version 2.0}} (ALv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_68.RULE b/src/licensedcode/data/rules/apache-2.0_68.RULE index abc5bfdad3..45978880d4 100644 --- a/src/licensedcode/data/rules/apache-2.0_68.RULE +++ b/src/licensedcode/data/rules/apache-2.0_68.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -__license__ = "Apache License, Version 2.0" \ No newline at end of file +__license__ = "{{Apache License, Version 2.0}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_680.RULE b/src/licensedcode/data/rules/apache-2.0_680.RULE index adbd3e94b8..c809d48849 100644 --- a/src/licensedcode/data/rules/apache-2.0_680.RULE +++ b/src/licensedcode/data/rules/apache-2.0_680.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Apache licence 2.0 \ No newline at end of file +Apache Licence 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_681.RULE b/src/licensedcode/data/rules/apache-2.0_681.RULE index 5895bebd6c..38a6235ac7 100644 --- a/src/licensedcode/data/rules/apache-2.0_681.RULE +++ b/src/licensedcode/data/rules/apache-2.0_681.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License -This project is under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details. \ No newline at end of file +This project is under the {{Apache License 2.0}} - see the [LICENSE](LICENSE) file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_682.RULE b/src/licensedcode/data/rules/apache-2.0_682.RULE index 75745782d6..3a1f6395c4 100644 --- a/src/licensedcode/data/rules/apache-2.0_682.RULE +++ b/src/licensedcode/data/rules/apache-2.0_682.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This project is under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details. \ No newline at end of file +This project is under the {{Apache License 2.0}} - see the [LICENSE](LICENSE) file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_683.RULE b/src/licensedcode/data/rules/apache-2.0_683.RULE index 830289b2a9..231aa3b773 100644 --- a/src/licensedcode/data/rules/apache-2.0_683.RULE +++ b/src/licensedcode/data/rules/apache-2.0_683.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This project is under the Apache License 2.0 - see the (LICENSE) file for details. \ No newline at end of file +This project is under the {{Apache License 2.0}} - see the (LICENSE) file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_684.RULE b/src/licensedcode/data/rules/apache-2.0_684.RULE index 2063618259..f89d3e7074 100644 --- a/src/licensedcode/data/rules/apache-2.0_684.RULE +++ b/src/licensedcode/data/rules/apache-2.0_684.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under Apache License 2.0 \ No newline at end of file +under {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_685.RULE b/src/licensedcode/data/rules/apache-2.0_685.RULE index 6133b86b00..ee204b78ff 100644 --- a/src/licensedcode/data/rules/apache-2.0_685.RULE +++ b/src/licensedcode/data/rules/apache-2.0_685.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -under Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file +under {{Apache License 2.0}} (http://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_686.RULE b/src/licensedcode/data/rules/apache-2.0_686.RULE index 4fb3465569..5d4a74b358 100644 --- a/src/licensedcode/data/rules/apache-2.0_686.RULE +++ b/src/licensedcode/data/rules/apache-2.0_686.RULE @@ -9,6 +9,6 @@ ignorable_urls: --- provided to you under the terms and conditions of the -Apache License, Version 2.0. A copy of the license is contained in the file +{{Apache License, Version 2.0}}. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at http://www.apache.org/licenses/ LICENSE-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_687.RULE b/src/licensedcode/data/rules/apache-2.0_687.RULE index 82d1eb09ee..0fb45329a7 100644 --- a/src/licensedcode/data/rules/apache-2.0_687.RULE +++ b/src/licensedcode/data/rules/apache-2.0_687.RULE @@ -9,6 +9,6 @@ ignorable_urls: --- The OSGi Materials are provided to you under the terms and conditions of the -Apache License, Version 2.0. A copy of the license is contained in the file +{{Apache License, Version 2.0}}. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at http://www.apache.org/licenses/ LICENSE-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_688.RULE b/src/licensedcode/data/rules/apache-2.0_688.RULE index be898f2e0f..16340dfa75 100644 --- a/src/licensedcode/data/rules/apache-2.0_688.RULE +++ b/src/licensedcode/data/rules/apache-2.0_688.RULE @@ -9,7 +9,7 @@ ignorable_urls: --- The OSGi Materials are provided to you under the terms and conditions of the -Apache License, Version 2.0. A copy of the license is contained in the file +{{Apache License, Version 2.0}}. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at http://www.apache.org/licenses/ LICENSE-2.0.html. diff --git a/src/licensedcode/data/rules/apache-2.0_689.RULE b/src/licensedcode/data/rules/apache-2.0_689.RULE index fa1eb323de..2dcb6b6b9b 100644 --- a/src/licensedcode/data/rules/apache-2.0_689.RULE +++ b/src/licensedcode/data/rules/apache-2.0_689.RULE @@ -10,9 +10,9 @@ ignorable_urls: --- code is subject to the terms and -conditions of the Apache License, Version 2.0. A copy of the license is +conditions of the {{Apache License, Version 2.0}}. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at http:// www.apache.org/licenses/LICENSE-2.0.html. The Apache attribution notice file NOTICE.TXT is included with the Content in -accordance with 4d of the Apache License, Version 2.0 \ No newline at end of file +accordance with 4d of the {{Apache License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_690.RULE b/src/licensedcode/data/rules/apache-2.0_690.RULE index 7f852473e0..8174ff0dd0 100644 --- a/src/licensedcode/data/rules/apache-2.0_690.RULE +++ b/src/licensedcode/data/rules/apache-2.0_690.RULE @@ -9,6 +9,6 @@ ignorable_urls: --- code is subject to the terms and -conditions of the Apache License, Version 2.0. A copy of the license is +conditions of the {{Apache License, Version 2.0}}. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at http:// www.apache.org/licenses/LICENSE-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_691.RULE b/src/licensedcode/data/rules/apache-2.0_691.RULE index 115cf52155..e1861bef46 100644 --- a/src/licensedcode/data/rules/apache-2.0_691.RULE +++ b/src/licensedcode/data/rules/apache-2.0_691.RULE @@ -5,4 +5,4 @@ relevance: 100 --- code is subject to the terms and -conditions of the Apache License, Version 2.0. \ No newline at end of file +conditions of the {{Apache License, Version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_692.RULE b/src/licensedcode/data/rules/apache-2.0_692.RULE index 4338facbe9..2d4de5df62 100644 --- a/src/licensedcode/data/rules/apache-2.0_692.RULE +++ b/src/licensedcode/data/rules/apache-2.0_692.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -subject to the terms and conditions of the Apache License, Version 2.0. \ No newline at end of file +subject to the terms and conditions of the {{Apache License, Version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_694.RULE b/src/licensedcode/data/rules/apache-2.0_694.RULE index d778ba5312..0c2d541253 100644 --- a/src/licensedcode/data/rules/apache-2.0_694.RULE +++ b/src/licensedcode/data/rules/apache-2.0_694.RULE @@ -6,13 +6,13 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -========================= Apache-2.0 ========================= +========================= {{Apache-2.0}} ========================= -The following applies to all products licensed under the Apache 2.0 License: +The following applies to all products {{licensed under the Apache 2.0 License}}: -You may not use the identified files except in compliance with the Apache -License, Version 2.0 (the "License.") +You may not use the identified files except in compliance with the {{Apache +License, Version 2.0}} (the "License.") You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. A copy of the license is also reproduced below. diff --git a/src/licensedcode/data/rules/apache-2.0_695.RULE b/src/licensedcode/data/rules/apache-2.0_695.RULE index 73e51736bc..1304ec1b1d 100644 --- a/src/licensedcode/data/rules/apache-2.0_695.RULE +++ b/src/licensedcode/data/rules/apache-2.0_695.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Permission to modify and redistribute is granted under the terms of the Apache 2.0 license. \ No newline at end of file +Permission to modify and redistribute is granted under the terms of the {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_696.RULE b/src/licensedcode/data/rules/apache-2.0_696.RULE index 850eefb4c8..c80fc565a9 100644 --- a/src/licensedcode/data/rules/apache-2.0_696.RULE +++ b/src/licensedcode/data/rules/apache-2.0_696.RULE @@ -8,4 +8,4 @@ referenced_filenames: # LICENSE -This project falls under the Apache License 2.0, see the included LICENSE.txt file for more details \ No newline at end of file +This project falls under the {{Apache License 2.0}}, see the included LICENSE.txt file for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_697.RULE b/src/licensedcode/data/rules/apache-2.0_697.RULE index 72aaa1d71a..f3faa71706 100644 --- a/src/licensedcode/data/rules/apache-2.0_697.RULE +++ b/src/licensedcode/data/rules/apache-2.0_697.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -This project falls under the Apache License 2.0, see the included LICENSE.txt file for more details \ No newline at end of file +This project falls under the {{Apache License 2.0}}, see the included LICENSE.txt file for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_698.RULE b/src/licensedcode/data/rules/apache-2.0_698.RULE index d725ea6617..5ac2222401 100644 --- a/src/licensedcode/data/rules/apache-2.0_698.RULE +++ b/src/licensedcode/data/rules/apache-2.0_698.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -falls under the Apache License v2.0. \ No newline at end of file +falls under the {{Apache License v2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_699.RULE b/src/licensedcode/data/rules/apache-2.0_699.RULE index dd15237252..83c9f44fb4 100644 --- a/src/licensedcode/data/rules/apache-2.0_699.RULE +++ b/src/licensedcode/data/rules/apache-2.0_699.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Apache License, V2.0 -Apache License, V2.0 is applicable to the following component(s). \ No newline at end of file +{{Apache License, V2.0}} +{{Apache License, V2.0}} is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_7.RULE b/src/licensedcode/data/rules/apache-2.0_7.RULE index 5b1e7f0fec..0e6684ec90 100644 --- a/src/licensedcode/data/rules/apache-2.0_7.RULE +++ b/src/licensedcode/data/rules/apache-2.0_7.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -# Licensed under the Apache License, Version 2.0 (the "License"); +# {{Licensed under the Apache License, Version 2.0 (the "License}}"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # diff --git a/src/licensedcode/data/rules/apache-2.0_70.RULE b/src/licensedcode/data/rules/apache-2.0_70.RULE index 00c4e6b24b..6e42197fa7 100644 --- a/src/licensedcode/data/rules/apache-2.0_70.RULE +++ b/src/licensedcode/data/rules/apache-2.0_70.RULE @@ -5,8 +5,8 @@ ignorable_urls: - http://www.apache.org/licenses/ --- -Apache License - Version 2.0, January 2004 +{{Apache License + Version 2.0}}, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION diff --git a/src/licensedcode/data/rules/apache-2.0_700.RULE b/src/licensedcode/data/rules/apache-2.0_700.RULE index dba5689e68..ea3911c02a 100644 --- a/src/licensedcode/data/rules/apache-2.0_700.RULE +++ b/src/licensedcode/data/rules/apache-2.0_700.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Apache License, V2.0 is applicable to the following component(s). \ No newline at end of file +{{Apache License, V2.0}} is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_701.RULE b/src/licensedcode/data/rules/apache-2.0_701.RULE index b5b0d5a557..624ee71de3 100644 --- a/src/licensedcode/data/rules/apache-2.0_701.RULE +++ b/src/licensedcode/data/rules/apache-2.0_701.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This product is licensed to you under the Apache License version 2.0 (the License). You may not use this product except in compliance with the License. \ No newline at end of file +This product is licensed to you under the {{Apache License version 2.0}} (the License). You may not use this product except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_702.RULE b/src/licensedcode/data/rules/apache-2.0_702.RULE index 76e4ee2fa1..9ef00596ec 100644 --- a/src/licensedcode/data/rules/apache-2.0_702.RULE +++ b/src/licensedcode/data/rules/apache-2.0_702.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This product is licensed to you under the Apache License version 2.0 \ No newline at end of file +This product is licensed to you under the {{Apache License version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_704.RULE b/src/licensedcode/data/rules/apache-2.0_704.RULE index 637dacb74a..29c5d94426 100644 --- a/src/licensedcode/data/rules/apache-2.0_704.RULE +++ b/src/licensedcode/data/rules/apache-2.0_704.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Seen in python-registry --- -released under the Apache 2.0 license. Before that, was released under the GPLv3. \ No newline at end of file +released under the {{Apache 2.0 license}}. Before that, was released under the GPLv3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_705.RULE b/src/licensedcode/data/rules/apache-2.0_705.RULE index c2a0145570..4fcf96158c 100644 --- a/src/licensedcode/data/rules/apache-2.0_705.RULE +++ b/src/licensedcode/data/rules/apache-2.0_705.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: seen in pyzmq --- -and inherits the Apache license \ No newline at end of file +and inherits the {{Apache license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_706.RULE b/src/licensedcode/data/rules/apache-2.0_706.RULE index 32f394691c..f020fd3377 100644 --- a/src/licensedcode/data/rules/apache-2.0_706.RULE +++ b/src/licensedcode/data/rules/apache-2.0_706.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All code in this package, old and new, is licensed under the Apache-2.0 license. \ No newline at end of file +All code in this package, old and new, is {{licensed under the Apache-2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_707.RULE b/src/licensedcode/data/rules/apache-2.0_707.RULE index 7b660b69ed..20cb6ef938 100644 --- a/src/licensedcode/data/rules/apache-2.0_707.RULE +++ b/src/licensedcode/data/rules/apache-2.0_707.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -published under the Apache License 2.0, see http://www.apache.org/licenses/LICENSE-2.0 for details. \ No newline at end of file +published under the {{Apache License 2.0}}, see http://www.apache.org/licenses/LICENSE-2.0 for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_709.RULE b/src/licensedcode/data/rules/apache-2.0_709.RULE index 6e539453ec..7087962355 100644 --- a/src/licensedcode/data/rules/apache-2.0_709.RULE +++ b/src/licensedcode/data/rules/apache-2.0_709.RULE @@ -5,6 +5,6 @@ relevance: 100 notes: Debian copyright file paragraph footer --- -License: Apache-2 - On Debian systems the full text of the Apache License version 2 - can be found in the `/usr/share/common-licenses/Apache-2.0' file. \ No newline at end of file +{{License: Apache-2}} + On Debian systems the full text of the {{Apache License version 2}} + can be found in the `{{/usr/share/common-licenses/Apache-2.0}}' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_71.RULE b/src/licensedcode/data/rules/apache-2.0_71.RULE index 6c238cd9c4..c552aa53f7 100644 --- a/src/licensedcode/data/rules/apache-2.0_71.RULE +++ b/src/licensedcode/data/rules/apache-2.0_71.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Apache Software License 2.0 (available at http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +{{Apache Software License 2.0}} (available at http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_710.RULE b/src/licensedcode/data/rules/apache-2.0_710.RULE index c5353d48f7..63560e07f6 100644 --- a/src/licensedcode/data/rules/apache-2.0_710.RULE +++ b/src/licensedcode/data/rules/apache-2.0_710.RULE @@ -6,4 +6,4 @@ notes: Seen in dulwich. This is an uncommon license reference to a future Apache For now we report only apache-2.0 --- -Apache License (version 2.0 or later) \ No newline at end of file +{{Apache License (version 2.0}} or later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_711.RULE b/src/licensedcode/data/rules/apache-2.0_711.RULE index 51797952f8..3fc272bb83 100644 --- a/src/licensedcode/data/rules/apache-2.0_711.RULE +++ b/src/licensedcode/data/rules/apache-2.0_711.RULE @@ -9,4 +9,4 @@ referenced_filenames: License Unless otherwise noted, all original files are licensed under an -[Apache License, Version 2.0](LICENSE). \ No newline at end of file +[{{Apache License, Version 2.0}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_712.RULE b/src/licensedcode/data/rules/apache-2.0_712.RULE index eae08c1987..c530a1a058 100644 --- a/src/licensedcode/data/rules/apache-2.0_712.RULE +++ b/src/licensedcode/data/rules/apache-2.0_712.RULE @@ -5,5 +5,5 @@ relevance: 100 minimum_coverage: 90 --- -# Licensed under the Apache License, Version 2.0 (the "License"); +# {{Licensed under the Apache License, Version 2.0 (the "License}}"); # you may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_713.RULE b/src/licensedcode/data/rules/apache-2.0_713.RULE index 52e32341aa..47b662cecc 100644 --- a/src/licensedcode/data/rules/apache-2.0_713.RULE +++ b/src/licensedcode/data/rules/apache-2.0_713.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Apache 2.0 licensed project \ No newline at end of file +{{Apache 2.0 licensed}} project \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_714.RULE b/src/licensedcode/data/rules/apache-2.0_714.RULE index 2e6189195c..fc41a51dea 100644 --- a/src/licensedcode/data/rules/apache-2.0_714.RULE +++ b/src/licensedcode/data/rules/apache-2.0_714.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -LICENSE INFORMATION: Apache 2.0 \ No newline at end of file +LICENSE INFORMATION: {{Apache 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_715.RULE b/src/licensedcode/data/rules/apache-2.0_715.RULE index 3268d703b5..6989b25f99 100644 --- a/src/licensedcode/data/rules/apache-2.0_715.RULE +++ b/src/licensedcode/data/rules/apache-2.0_715.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE --- -licensed under the Apache License, Version 2.0, January 2004, +{{licensed under the Apache License, Version 2.0}}, January 2004, a copy of which can be found in the LICENSE file at the root of this repository. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_716.RULE b/src/licensedcode/data/rules/apache-2.0_716.RULE index c05fad74df..5dfc48c73f 100644 --- a/src/licensedcode/data/rules/apache-2.0_716.RULE +++ b/src/licensedcode/data/rules/apache-2.0_716.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_717.RULE b/src/licensedcode/data/rules/apache-2.0_717.RULE index 8cb45c10ec..b4016c8486 100644 --- a/src/licensedcode/data/rules/apache-2.0_717.RULE +++ b/src/licensedcode/data/rules/apache-2.0_717.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licenced under the Apache License, 2.0: http:opensource.org/licenses/apache2.0.php \ No newline at end of file +licenced under the {{Apache License, 2.0}}: http:opensource.org/licenses/apache2.0.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_718.RULE b/src/licensedcode/data/rules/apache-2.0_718.RULE index 22b7730e25..f1db19aa99 100644 --- a/src/licensedcode/data/rules/apache-2.0_718.RULE +++ b/src/licensedcode/data/rules/apache-2.0_718.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licenced under the Apache License, 2.0 \ No newline at end of file +licenced under the {{Apache License, 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_719.RULE b/src/licensedcode/data/rules/apache-2.0_719.RULE index 1b92c044e0..69cbec3292 100644 --- a/src/licensedcode/data/rules/apache-2.0_719.RULE +++ b/src/licensedcode/data/rules/apache-2.0_719.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 99 --- -License: Apache License \ No newline at end of file +License: {{Apache License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_72.RULE b/src/licensedcode/data/rules/apache-2.0_72.RULE index 4b419417db..cce66f68b2 100644 --- a/src/licensedcode/data/rules/apache-2.0_72.RULE +++ b/src/licensedcode/data/rules/apache-2.0_72.RULE @@ -3,10 +3,10 @@ license_expression: apache-2.0 is_license_notice: yes --- -The project is licensed under the Apache License, Version 2.0. All new code -created for contribution to the project is licensed under the Apache license. The +The project is {{licensed under the Apache License, Version 2.0}}. All new code +created for contribution to the project is licensed under the {{Apache license}}. The project may contain files under different licenses in the event code was borrowed from another open source project under a different license. Each source file should include a license notice (when feasible) that designates the licensing -terms for the respective file. A copy of the Apache 2.0 license is include below -as required by section 4(a) of the Apache 2.0 license. \ No newline at end of file +terms for the respective file. A copy of the {{Apache 2.0 license}} is include below +as required by section 4(a) of the {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_720.RULE b/src/licensedcode/data/rules/apache-2.0_720.RULE index ffa1a2ccae..28e0acf928 100644 --- a/src/licensedcode/data/rules/apache-2.0_720.RULE +++ b/src/licensedcode/data/rules/apache-2.0_720.RULE @@ -6,13 +6,13 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -========================= Apache-2.0 ========================= +========================= {{Apache-2.0}} ========================= -The following applies to all products licensed under the Apache 2.0 License: +The following applies to all products {{licensed under the Apache 2.0 License}}: -You may not use the identified files except in compliance with the Apache -License, Version 2.0 (the "License.") +You may not use the identified files except in compliance with the {{Apache +License, Version 2.0}} (the "License.") You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0. A copy of the license is also reproduced below. diff --git a/src/licensedcode/data/rules/apache-2.0_721.RULE b/src/licensedcode/data/rules/apache-2.0_721.RULE index b236752cfb..c74ef28da1 100644 --- a/src/licensedcode/data/rules/apache-2.0_721.RULE +++ b/src/licensedcode/data/rules/apache-2.0_721.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use the file in this project except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_722.RULE b/src/licensedcode/data/rules/apache-2.0_722.RULE index cc721c6909..9400bba8c4 100644 --- a/src/licensedcode/data/rules/apache-2.0_722.RULE +++ b/src/licensedcode/data/rules/apache-2.0_722.RULE @@ -7,11 +7,11 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -* Licensed to the Apache Software Foundation (ASF) under one +* {{Licensed to the Apache Software Foundation}} (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the + * to you under the {{Apache License, Version 2.0}} (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * diff --git a/src/licensedcode/data/rules/apache-2.0_723.RULE b/src/licensedcode/data/rules/apache-2.0_723.RULE index 942e7a6895..40d9896136 100644 --- a/src/licensedcode/data/rules/apache-2.0_723.RULE +++ b/src/licensedcode/data/rules/apache-2.0_723.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- # License -[Apache License v2](https://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file +[{{Apache License v2}}](https://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_725.RULE b/src/licensedcode/data/rules/apache-2.0_725.RULE index 45d02cb564..94207313bb 100644 --- a/src/licensedcode/data/rules/apache-2.0_725.RULE +++ b/src/licensedcode/data/rules/apache-2.0_725.RULE @@ -9,9 +9,9 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed to the Apache Software Foundation (ASF) under one or more contributor -license agreements. The ASF licenses this work to You under the Apache License, -Version 2.0 (the "License"); you may not use this work except in compliance +{{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor +license agreements. The ASF licenses this work to You under the {{Apache License, +Version 2.0}} (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_726.RULE b/src/licensedcode/data/rules/apache-2.0_726.RULE index b997303ad3..ff8c5cc8ca 100644 --- a/src/licensedcode/data/rules/apache-2.0_726.RULE +++ b/src/licensedcode/data/rules/apache-2.0_726.RULE @@ -7,8 +7,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache-2.0 - Licensed under the Apache License, Version 2.0 (the "License"); +{{License: Apache-2.0 + Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . diff --git a/src/licensedcode/data/rules/apache-2.0_727.RULE b/src/licensedcode/data/rules/apache-2.0_727.RULE index db3ceac54c..09225476a2 100644 --- a/src/licensedcode/data/rules/apache-2.0_727.RULE +++ b/src/licensedcode/data/rules/apache-2.0_727.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -under the Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +under the {{Apache License, Version 2.0}} https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_729.RULE b/src/licensedcode/data/rules/apache-2.0_729.RULE index 49708807af..8430eac8d7 100644 --- a/src/licensedcode/data/rules/apache-2.0_729.RULE +++ b/src/licensedcode/data/rules/apache-2.0_729.RULE @@ -7,8 +7,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache-2.0 - Licensed under the Apache License, Version 2.0 (the "License"); +{{License: Apache-2.0 + Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -20,6 +20,6 @@ License: Apache-2.0 See the License for the specific language governing permissions and limitations under the License. . - On Debian systems, the full text of the Apache License, Version 2.0 can be + On Debian systems, the full text of the {{Apache License, Version 2.0}} can be found in the file - `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file + `{{/usr/share/common-licenses/Apache-2.0}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_730.RULE b/src/licensedcode/data/rules/apache-2.0_730.RULE index 4cdd37e69d..dc63819516 100644 --- a/src/licensedcode/data/rules/apache-2.0_730.RULE +++ b/src/licensedcode/data/rules/apache-2.0_730.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -18,4 +18,4 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. -See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. \ No newline at end of file +See the {{Apache Version 2.0 License}} for specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_731.RULE b/src/licensedcode/data/rules/apache-2.0_731.RULE index 49abb2272b..44f2334357 100644 --- a/src/licensedcode/data/rules/apache-2.0_731.RULE +++ b/src/licensedcode/data/rules/apache-2.0_731.RULE @@ -11,7 +11,7 @@ ignorable_urls: Licensed by SAS under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. -SAS licenses this file to You under the Apache License, Version 2.0 +SAS licenses this file to You under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_732.RULE b/src/licensedcode/data/rules/apache-2.0_732.RULE index 35a9533d5c..52e1ebc792 100644 --- a/src/licensedcode/data/rules/apache-2.0_732.RULE +++ b/src/licensedcode/data/rules/apache-2.0_732.RULE @@ -7,9 +7,9 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License:: Apache License, Version 2.0 +License:: {{Apache License, Version 2.0}} -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_733.RULE b/src/licensedcode/data/rules/apache-2.0_733.RULE index 5e1d55ab74..02d8e51f94 100644 --- a/src/licensedcode/data/rules/apache-2.0_733.RULE +++ b/src/licensedcode/data/rules/apache-2.0_733.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at [apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) diff --git a/src/licensedcode/data/rules/apache-2.0_734.RULE b/src/licensedcode/data/rules/apache-2.0_734.RULE index 711324e8f0..d93b9c2807 100644 --- a/src/licensedcode/data/rules/apache-2.0_734.RULE +++ b/src/licensedcode/data/rules/apache-2.0_734.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the Apache License v2.0. \ No newline at end of file +under the {{Apache License v2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_735.RULE b/src/licensedcode/data/rules/apache-2.0_735.RULE index e058f75ea1..cc37f54dd8 100644 --- a/src/licensedcode/data/rules/apache-2.0_735.RULE +++ b/src/licensedcode/data/rules/apache-2.0_735.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this project except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_736.RULE b/src/licensedcode/data/rules/apache-2.0_736.RULE index a023ff1780..7102550ee0 100644 --- a/src/licensedcode/data/rules/apache-2.0_736.RULE +++ b/src/licensedcode/data/rules/apache-2.0_736.RULE @@ -11,7 +11,7 @@ ignorable_urls: License: - Licensed under the Apache License, Version 2.0 (the "License"); + {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -25,6 +25,6 @@ License: The Debian packaging is: -and is licensed under the Apache 2.0 license. +and is {{licensed under the Apache 2.0 license}}. See "/usr/share/common-licenses/Apache-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_737.RULE b/src/licensedcode/data/rules/apache-2.0_737.RULE index 88e22d5a56..6345e62d27 100644 --- a/src/licensedcode/data/rules/apache-2.0_737.RULE +++ b/src/licensedcode/data/rules/apache-2.0_737.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -is licensed under the Apache License, Version 2.0 (the -"License"); you may not use the software except in +is {{licensed under the Apache License, Version 2.0 (the +"License}}"); you may not use the software except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_739.RULE b/src/licensedcode/data/rules/apache-2.0_739.RULE index b1d0fb3d31..e126b41359 100644 --- a/src/licensedcode/data/rules/apache-2.0_739.RULE +++ b/src/licensedcode/data/rules/apache-2.0_739.RULE @@ -9,7 +9,7 @@ ignorable_urls: ============LICENSE_START======================================================= ================================================================================ This software file is distributed by -under the Apache License, Version 2.0 (the "License"); +under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_74.RULE b/src/licensedcode/data/rules/apache-2.0_74.RULE index dc787da73e..f31f734f14 100644 --- a/src/licensedcode/data/rules/apache-2.0_74.RULE +++ b/src/licensedcode/data/rules/apache-2.0_74.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Code released under the Apache 2.0 license. \ No newline at end of file +Code released under the {{Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_740.RULE b/src/licensedcode/data/rules/apache-2.0_740.RULE index 51c54f54e1..215e133956 100644 --- a/src/licensedcode/data/rules/apache-2.0_740.RULE +++ b/src/licensedcode/data/rules/apache-2.0_740.RULE @@ -6,10 +6,10 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -"license": "Apache-2.0", - "licenses": [ +"{{license": "Apache-2.0}}", + "{{licenses": [ { - "type": "Apache-2.0", + "type": "Apache-2.0}}", "url": "https://www.apache.org/licenses/LICENSE-2.0" } ], \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_741.RULE b/src/licensedcode/data/rules/apache-2.0_741.RULE index 0d06bb09f0..3beddace11 100644 --- a/src/licensedcode/data/rules/apache-2.0_741.RULE +++ b/src/licensedcode/data/rules/apache-2.0_741.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.apache.org/ --- -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). -// NOTICE file corresponding to the section 4d of The Apache License, -// Version 2.0, \ No newline at end of file +This product includes {{software developed by +The Apache Software Foundation}} (http://www.apache.org/). +// NOTICE file corresponding to the section 4d of The {{Apache License, +// Version 2.0}}, diff --git a/src/licensedcode/data/rules/apache-2.0_742.RULE b/src/licensedcode/data/rules/apache-2.0_742.RULE index 2f92312c8e..d119e992bb 100644 --- a/src/licensedcode/data/rules/apache-2.0_742.RULE +++ b/src/licensedcode/data/rules/apache-2.0_742.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -licensed under the GPL-compatible [https://www.apache.org/licenses/LICENSE-2.0 Apache License v2.0] \ No newline at end of file +licensed under the GPL-compatible [https://www.apache.org/licenses/LICENSE-2.0 {{Apache License v2.0}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_743.RULE b/src/licensedcode/data/rules/apache-2.0_743.RULE index 69d5696534..2d4c9f0fb4 100644 --- a/src/licensedcode/data/rules/apache-2.0_743.RULE +++ b/src/licensedcode/data/rules/apache-2.0_743.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -License: Apache 2.0 License (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file +License: {{Apache 2.0 License}} (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_744.RULE b/src/licensedcode/data/rules/apache-2.0_744.RULE index 65e9a91980..e01bcf4e51 100644 --- a/src/licensedcode/data/rules/apache-2.0_744.RULE +++ b/src/licensedcode/data/rules/apache-2.0_744.RULE @@ -12,7 +12,7 @@ ignorable_urls: The APL v2.0: - Licensed under the Apache License, Version 2.0 (the "License"); + {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -25,5 +25,5 @@ The APL v2.0: See the License for the specific language governing permissions and limitations under the License. -On Debian systems, the complete text of the Apache License Version 2.0, +On Debian systems, the complete text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_745.RULE b/src/licensedcode/data/rules/apache-2.0_745.RULE index f6380eef3e..f969c96766 100644 --- a/src/licensedcode/data/rules/apache-2.0_745.RULE +++ b/src/licensedcode/data/rules/apache-2.0_745.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/ --- -Apache License Version 2.0, January 2004 +{{Apache License Version 2.0}}, January 2004 https://www.apache.org/licenses/ https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_746.RULE b/src/licensedcode/data/rules/apache-2.0_746.RULE index aa01797b93..987abce254 100644 --- a/src/licensedcode/data/rules/apache-2.0_746.RULE +++ b/src/licensedcode/data/rules/apache-2.0_746.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_748.RULE b/src/licensedcode/data/rules/apache-2.0_748.RULE index 3f17d16b20..86a66de874 100644 --- a/src/licensedcode/data/rules/apache-2.0_748.RULE +++ b/src/licensedcode/data/rules/apache-2.0_748.RULE @@ -11,11 +11,11 @@ ignorable_urls: License The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the -Content is provided to you under the terms and conditions of the Apache License, Version 2.0. A copy of the Apache -License, Version 2.0 is available at https://www.apache.org/licenses/LICENSE-2.0.txt +Content is provided to you under the terms and conditions of the {{Apache License, Version 2.0}}. A copy of the {{Apache +License, Version 2.0}} is available at https://www.apache.org/licenses/LICENSE-2.0.txt If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor’s license that was provided with the Content. If no such license exists, contact the -Redistributor. Unless otherwise indicated below, the terms and conditions of the Apache License, Version 2.0 still apply +Redistributor. Unless otherwise indicated below, the terms and conditions of the {{Apache License, Version 2.0}} still apply to any source code in the Content and such source code may be obtained at http://www.eclipse.org](http://www.eclipse.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_749.RULE b/src/licensedcode/data/rules/apache-2.0_749.RULE index af1cbab443..13d2bd7507 100644 --- a/src/licensedcode/data/rules/apache-2.0_749.RULE +++ b/src/licensedcode/data/rules/apache-2.0_749.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- The majority of the source code in the project is licensed -under the terms of the Apache License, Version 2.0, available from: +under the terms of the {{Apache License, Version 2.0}}, available from: {{ https://www.apache.org/licenses/LICENSE-2.0 }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_75.RULE b/src/licensedcode/data/rules/apache-2.0_75.RULE index 29c43daa37..735ebe5233 100644 --- a/src/licensedcode/data/rules/apache-2.0_75.RULE +++ b/src/licensedcode/data/rules/apache-2.0_75.RULE @@ -8,4 +8,4 @@ notes: converted to markdown License ------------ -Apache License, Version 2.0. See [LICENSE](LICENSE) \ No newline at end of file +{{Apache License, Version 2.0}}. See [LICENSE](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_750.RULE b/src/licensedcode/data/rules/apache-2.0_750.RULE index f2b60f4aba..9224813df3 100644 --- a/src/licensedcode/data/rules/apache-2.0_750.RULE +++ b/src/licensedcode/data/rules/apache-2.0_750.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: the Apache License, ASL Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +License: the {{Apache License}}, {{ASL Version 2.0}} (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_751.RULE b/src/licensedcode/data/rules/apache-2.0_751.RULE index f98b78ab38..0ce167027d 100644 --- a/src/licensedcode/data/rules/apache-2.0_751.RULE +++ b/src/licensedcode/data/rules/apache-2.0_751.RULE @@ -5,7 +5,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0(the "License"); +{{Licensed under the Apache License, Version 2.0(the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_752.RULE b/src/licensedcode/data/rules/apache-2.0_752.RULE index 9af7c2ba73..e77042fc14 100644 --- a/src/licensedcode/data/rules/apache-2.0_752.RULE +++ b/src/licensedcode/data/rules/apache-2.0_752.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -freeware and licensed under the Apache 2.0 license. (https://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file +freeware and {{licensed under the Apache 2.0 license}}. (https://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_753.RULE b/src/licensedcode/data/rules/apache-2.0_753.RULE index 1fde498b18..4abf2d0385 100644 --- a/src/licensedcode/data/rules/apache-2.0_753.RULE +++ b/src/licensedcode/data/rules/apache-2.0_753.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 -Licensed under the Apache License, Version 2.0 +{{Licensed under the Apache License, Version 2.0}} +{{Licensed under the Apache License, Version 2.0}} https://www.apache.org/licenses/LICENSE-2.0 https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_754.RULE b/src/licensedcode/data/rules/apache-2.0_754.RULE index 89b9a40e18..75d9da3fcb 100644 --- a/src/licensedcode/data/rules/apache-2.0_754.RULE +++ b/src/licensedcode/data/rules/apache-2.0_754.RULE @@ -7,6 +7,6 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 +{{Licensed under the Apache License, Version 2.0}} https://www.apache.org/licenses/LICENSE-2.0 https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_755.RULE b/src/licensedcode/data/rules/apache-2.0_755.RULE index e6d90a11a1..698c09bd40 100644 --- a/src/licensedcode/data/rules/apache-2.0_755.RULE +++ b/src/licensedcode/data/rules/apache-2.0_755.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Apache Software License 2.0 (available at https://www.apache.org/licenses/LICENSE-2.0">https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +{{Apache Software License 2.0}} (available at https://www.apache.org/licenses/LICENSE-2.0">https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_756.RULE b/src/licensedcode/data/rules/apache-2.0_756.RULE index bbb76552eb..2bd0d862aa 100644 --- a/src/licensedcode/data/rules/apache-2.0_756.RULE +++ b/src/licensedcode/data/rules/apache-2.0_756.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -licensed under the Apache License, Version 2.0 (the "License"); you may not use the software except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 +{{licensed under the Apache License, Version 2.0 (the "License}}"); you may not use the software except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_757.RULE b/src/licensedcode/data/rules/apache-2.0_757.RULE index 812d5d0277..5d864cdb51 100644 --- a/src/licensedcode/data/rules/apache-2.0_757.RULE +++ b/src/licensedcode/data/rules/apache-2.0_757.RULE @@ -7,5 +7,5 @@ ignorable_urls: - The Apache Software License, Version 2.0 + {{The Apache Software License, Version 2.0}} https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_758.RULE b/src/licensedcode/data/rules/apache-2.0_758.RULE index 00d5734f62..96c00dcd7f 100644 --- a/src/licensedcode/data/rules/apache-2.0_758.RULE +++ b/src/licensedcode/data/rules/apache-2.0_758.RULE @@ -5,7 +5,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); you may not use +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use these files except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_759.RULE b/src/licensedcode/data/rules/apache-2.0_759.RULE index 161a981a4e..e9fcd5e243 100644 --- a/src/licensedcode/data/rules/apache-2.0_759.RULE +++ b/src/licensedcode/data/rules/apache-2.0_759.RULE @@ -7,9 +7,9 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Javascript library is licensed under the Apache License, Version 2.0: +Javascript library is {{licensed under the Apache License, Version 2.0}}: -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_760.RULE b/src/licensedcode/data/rules/apache-2.0_760.RULE index cd19866ebe..4d913c7f47 100644 --- a/src/licensedcode/data/rules/apache-2.0_760.RULE +++ b/src/licensedcode/data/rules/apache-2.0_760.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache License (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +License: {{Apache License}} (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_761.RULE b/src/licensedcode/data/rules/apache-2.0_761.RULE index 4b64786407..3b530706b1 100644 --- a/src/licensedcode/data/rules/apache-2.0_761.RULE +++ b/src/licensedcode/data/rules/apache-2.0_761.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_764.RULE b/src/licensedcode/data/rules/apache-2.0_764.RULE index f5970dd39a..3a813865cf 100644 --- a/src/licensedcode/data/rules/apache-2.0_764.RULE +++ b/src/licensedcode/data/rules/apache-2.0_764.RULE @@ -6,9 +6,9 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Apache 2.0 License +{{Apache 2.0 License}} - Licensed under the Apache License, Version 2.0 (the "License"); + {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -20,4 +20,4 @@ Apache 2.0 License See the License for the specific language governing permissions and limitations under the License. -See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. \ No newline at end of file +See the {{Apache Version 2.0 License}} for specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_765.RULE b/src/licensedcode/data/rules/apache-2.0_765.RULE index d17d6dd2d4..67134d1ce4 100644 --- a/src/licensedcode/data/rules/apache-2.0_765.RULE +++ b/src/licensedcode/data/rules/apache-2.0_765.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- # ===============LICENSE_START======================================================= -# Apache-2.0 +# {{Apache-2.0}} # =================================================================================== # =================================================================================== # This software file is distributed by -# under the Apache License, Version 2.0 (the "License"); +# under the {{Apache License, Version 2.0}} (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # diff --git a/src/licensedcode/data/rules/apache-2.0_766.RULE b/src/licensedcode/data/rules/apache-2.0_766.RULE index 9ff55be4d8..4bf889e17d 100644 --- a/src/licensedcode/data/rules/apache-2.0_766.RULE +++ b/src/licensedcode/data/rules/apache-2.0_766.RULE @@ -7,10 +7,10 @@ ignorable_urls: --- LICENSE -* Licensed to the Apache Software Foundation (ASF) under one or more +* {{Licensed to the Apache Software Foundation}} (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. -* The ASF licenses this file to you under the Apache License, Version 2.0 +* The ASF licenses this file to you under the {{Apache License, Version 2.0}} * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at: * https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_767.RULE b/src/licensedcode/data/rules/apache-2.0_767.RULE index d26eea8f2d..2f576a7f65 100644 --- a/src/licensedcode/data/rules/apache-2.0_767.RULE +++ b/src/licensedcode/data/rules/apache-2.0_767.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/ --- -[Apache License version 2](https://www.apache.org/licenses/ \ No newline at end of file +[{{Apache License version 2}}](https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_769.RULE b/src/licensedcode/data/rules/apache-2.0_769.RULE index 8d2305cb32..bbbf3e6403 100644 --- a/src/licensedcode/data/rules/apache-2.0_769.RULE +++ b/src/licensedcode/data/rules/apache-2.0_769.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -Includes software from other Apache Software Foundation projects, \ No newline at end of file +{{Includes software from other Apache Software Foundation}} projects, diff --git a/src/licensedcode/data/rules/apache-2.0_77.RULE b/src/licensedcode/data/rules/apache-2.0_77.RULE index dad9fc2b79..8ac2c3d970 100644 --- a/src/licensedcode/data/rules/apache-2.0_77.RULE +++ b/src/licensedcode/data/rules/apache-2.0_77.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -https://www.apache.org/licenses/LICENSE-2.0 Apache-2.0 \ No newline at end of file +https://www.apache.org/licenses/LICENSE-2.0 {{Apache-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_772.RULE b/src/licensedcode/data/rules/apache-2.0_772.RULE index cef4b6f127..c6f349941b 100644 --- a/src/licensedcode/data/rules/apache-2.0_772.RULE +++ b/src/licensedcode/data/rules/apache-2.0_772.RULE @@ -5,4 +5,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -This project bundles the following dependencies under the Apache Software License 2.0. (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file +This project bundles the following dependencies under the {{Apache Software License 2.0}}. (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_774.RULE b/src/licensedcode/data/rules/apache-2.0_774.RULE index 86da7c55c7..33c6367474 100644 --- a/src/licensedcode/data/rules/apache-2.0_774.RULE +++ b/src/licensedcode/data/rules/apache-2.0_774.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: The Apache Software License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +License: {{The Apache Software License, Version 2.0}} (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_775.RULE b/src/licensedcode/data/rules/apache-2.0_775.RULE index 3164b068db..835555da48 100644 --- a/src/licensedcode/data/rules/apache-2.0_775.RULE +++ b/src/licensedcode/data/rules/apache-2.0_775.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -https://www.apache.org/licenses/LICENSE-2.0.txt">The Apache Software License, Version 2.0 \ No newline at end of file +https://www.apache.org/licenses/LICENSE-2.0.txt">{{The Apache Software License, Version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_776.RULE b/src/licensedcode/data/rules/apache-2.0_776.RULE index ab7dee2cc9..9f113a56b3 100644 --- a/src/licensedcode/data/rules/apache-2.0_776.RULE +++ b/src/licensedcode/data/rules/apache-2.0_776.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -under Apache License 2.0 (https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file +under {{Apache License 2.0}} (https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_78.RULE b/src/licensedcode/data/rules/apache-2.0_78.RULE index c92612e0ea..58f3881666 100644 --- a/src/licensedcode/data/rules/apache-2.0_78.RULE +++ b/src/licensedcode/data/rules/apache-2.0_78.RULE @@ -5,4 +5,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -project is licensed under the terms of the Apache License, Version 2.0, available from: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +project is licensed under the terms of the {{Apache License, Version 2.0}}, available from: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_780.RULE b/src/licensedcode/data/rules/apache-2.0_780.RULE index 3b6bc3c4fd..110e12c2c5 100644 --- a/src/licensedcode/data/rules/apache-2.0_780.RULE +++ b/src/licensedcode/data/rules/apache-2.0_780.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -license" : "Apache License, Version 2.0" +license" : "{{Apache License, Version 2.0}}" url" : "https://www.apache.org/licenses/LICENSE-2.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_781.RULE b/src/licensedcode/data/rules/apache-2.0_781.RULE index 849e7bb98e..e601f777cf 100644 --- a/src/licensedcode/data/rules/apache-2.0_781.RULE +++ b/src/licensedcode/data/rules/apache-2.0_781.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -License: Apache 2 (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file +{{License: Apache 2}} (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_782.RULE b/src/licensedcode/data/rules/apache-2.0_782.RULE index bbba1d6189..246abb1147 100644 --- a/src/licensedcode/data/rules/apache-2.0_782.RULE +++ b/src/licensedcode/data/rules/apache-2.0_782.RULE @@ -1,7 +1,6 @@ --- license_expression: apache-2.0 is_license_text: yes -relevance: 100 minimum_coverage: 90 ignorable_copyrights: - Copyright 1999-2005 The Apache Software Foundation diff --git a/src/licensedcode/data/rules/apache-2.0_783.RULE b/src/licensedcode/data/rules/apache-2.0_783.RULE index b9f385fb03..5252e720ab 100644 --- a/src/licensedcode/data/rules/apache-2.0_783.RULE +++ b/src/licensedcode/data/rules/apache-2.0_783.RULE @@ -9,8 +9,8 @@ ignorable_urls: - https://www.apache.org/licenses/ --- -Apache License -Version 2.0, January 2004 +{{Apache License +Version 2.0}}, January 2004 https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION diff --git a/src/licensedcode/data/rules/apache-2.0_784.RULE b/src/licensedcode/data/rules/apache-2.0_784.RULE index ef2581e18d..0639a8d05a 100644 --- a/src/licensedcode/data/rules/apache-2.0_784.RULE +++ b/src/licensedcode/data/rules/apache-2.0_784.RULE @@ -9,7 +9,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -22,5 +22,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. -On Debian systems, the complete text of the Apache License Version 2.0, +On Debian systems, the complete text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_785.RULE b/src/licensedcode/data/rules/apache-2.0_785.RULE index b7c629e545..e5a3351128 100644 --- a/src/licensedcode/data/rules/apache-2.0_785.RULE +++ b/src/licensedcode/data/rules/apache-2.0_785.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- License -Apache License -Version 2.0, January 2004 +{{Apache License +Version 2.0}}, January 2004 http://www.apache.org/licenses/ Same license text as listed above \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_786.RULE b/src/licensedcode/data/rules/apache-2.0_786.RULE index 7465f71dc8..eb4e92a2ce 100644 --- a/src/licensedcode/data/rules/apache-2.0_786.RULE +++ b/src/licensedcode/data/rules/apache-2.0_786.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/ --- -Apache License -Version 2.0, January 2004 +{{Apache License +Version 2.0}}, January 2004 http://www.apache.org/licenses/ Same license text as listed above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_787.RULE b/src/licensedcode/data/rules/apache-2.0_787.RULE index 17bef27b96..d508791d5f 100644 --- a/src/licensedcode/data/rules/apache-2.0_787.RULE +++ b/src/licensedcode/data/rules/apache-2.0_787.RULE @@ -12,7 +12,7 @@ ignorable_urls: Licensed to Accellera Systems Initiative Inc. (Accellera) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. - Accellera licenses this file to you under the Apache License, Version 2.0 + Accellera licenses this file to you under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_788.RULE b/src/licensedcode/data/rules/apache-2.0_788.RULE index 199e130c8c..02abb596aa 100644 --- a/src/licensedcode/data/rules/apache-2.0_788.RULE +++ b/src/licensedcode/data/rules/apache-2.0_788.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -freeware and licenced under the Apache 2.0 licence. (https://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file +freeware and licenced under the {{Apache 2.0 licence}}. (https://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_789.RULE b/src/licensedcode/data/rules/apache-2.0_789.RULE index f87b95d289..fa25a64547 100644 --- a/src/licensedcode/data/rules/apache-2.0_789.RULE +++ b/src/licensedcode/data/rules/apache-2.0_789.RULE @@ -1,7 +1,6 @@ --- license_expression: apache-2.0 is_license_text: yes -relevance: 100 ignorable_urls: - https://www.apache.org/licenses/ - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_79.RULE b/src/licensedcode/data/rules/apache-2.0_79.RULE index 04aeee2aab..9778b140d7 100644 --- a/src/licensedcode/data/rules/apache-2.0_79.RULE +++ b/src/licensedcode/data/rules/apache-2.0_79.RULE @@ -7,4 +7,4 @@ ignorable_urls: Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -Apache License, Version 2.0, January 2004 http://www.apache.org/licenses/ \ No newline at end of file +{{Apache License, Version 2.0}}, January 2004 http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_790.RULE b/src/licensedcode/data/rules/apache-2.0_790.RULE index 6ce8da5f01..5fa25f6331 100644 --- a/src/licensedcode/data/rules/apache-2.0_790.RULE +++ b/src/licensedcode/data/rules/apache-2.0_790.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -License: Apache License 2.0 (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file +License: {{Apache License 2.0}} (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_791.RULE b/src/licensedcode/data/rules/apache-2.0_791.RULE index 0db86a735a..1876741311 100644 --- a/src/licensedcode/data/rules/apache-2.0_791.RULE +++ b/src/licensedcode/data/rules/apache-2.0_791.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://www.apache.org/licenses/ --- -Apache License -Version 2.0, January 2004 +{{Apache License +Version 2.0}}, January 2004 http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_793.RULE b/src/licensedcode/data/rules/apache-2.0_793.RULE index fa67989bd0..fea2610c8a 100644 --- a/src/licensedcode/data/rules/apache-2.0_793.RULE +++ b/src/licensedcode/data/rules/apache-2.0_793.RULE @@ -8,7 +8,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_794.RULE b/src/licensedcode/data/rules/apache-2.0_794.RULE index 52bbe9baab..5216e89f4b 100644 --- a/src/licensedcode/data/rules/apache-2.0_794.RULE +++ b/src/licensedcode/data/rules/apache-2.0_794.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -licensed under the Apache 2.0 License: -You may not use the identified files except in compliance with the Apache License, Version 2.0 (the "License.") +{{licensed under the Apache 2.0 License}}: +You may not use the identified files except in compliance with the {{Apache License, Version 2.0}} (the "License.") You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0. A copy of the license is also reproduced below. diff --git a/src/licensedcode/data/rules/apache-2.0_795.RULE b/src/licensedcode/data/rules/apache-2.0_795.RULE index 0e5c8021b7..d3290a3ebc 100644 --- a/src/licensedcode/data/rules/apache-2.0_795.RULE +++ b/src/licensedcode/data/rules/apache-2.0_795.RULE @@ -5,9 +5,9 @@ ignorable_urls: - https://www.apache.org/licenses/ --- -Apache License +{{Apache License -Version 2.0, January 2004 +Version 2.0}}, January 2004 https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_796.RULE b/src/licensedcode/data/rules/apache-2.0_796.RULE index 253482bd22..6f88b2f7b1 100644 --- a/src/licensedcode/data/rules/apache-2.0_796.RULE +++ b/src/licensedcode/data/rules/apache-2.0_796.RULE @@ -6,9 +6,9 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -"licenses": [ +"{{licenses": [ { - "type": "Apache-2.0", + "type": "Apache-2.0}}", "url": "https://www.apache.org/licenses/LICENSE-2.0" } ], \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_797.RULE b/src/licensedcode/data/rules/apache-2.0_797.RULE index f0f313469e..47d82174fc 100644 --- a/src/licensedcode/data/rules/apache-2.0_797.RULE +++ b/src/licensedcode/data/rules/apache-2.0_797.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -is licensed under the Apache License, -Version 2.0. You may obtain a copy of this license at +is {{licensed under the Apache License, +Version 2.0}}. You may obtain a copy of this license at https://www.apache.org/licenses/LICENSE-2.0 . You may also have additional legal rights not granted by this license. diff --git a/src/licensedcode/data/rules/apache-2.0_798.RULE b/src/licensedcode/data/rules/apache-2.0_798.RULE index 30796581ca..c6de753bc8 100644 --- a/src/licensedcode/data/rules/apache-2.0_798.RULE +++ b/src/licensedcode/data/rules/apache-2.0_798.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0https:/www.apache.org/licenses/LICENSE-2 --- -This Font Software is licensed under the Apache License, Version 2.0. This license is available with a FAQ at: https://www.apache.org/licenses/LICENSE-2.0https://www.apache.org/licenses/LICENSE-2 \ No newline at end of file +This Font Software is {{licensed under the Apache License, Version 2.0}}. This license is available with a FAQ at: https://www.apache.org/licenses/LICENSE-2.0https://www.apache.org/licenses/LICENSE-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_799.RULE b/src/licensedcode/data/rules/apache-2.0_799.RULE index 007943d3e6..4dabd9e146 100644 --- a/src/licensedcode/data/rules/apache-2.0_799.RULE +++ b/src/licensedcode/data/rules/apache-2.0_799.RULE @@ -9,7 +9,7 @@ ignorable_urls: License: - Licensed under the Apache License, Version 2.0 (the "License"); + {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -23,4 +23,4 @@ License: The Debian packaging is: -and is licensed under the Apache 2.0 license. \ No newline at end of file +and is {{licensed under the Apache 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_8.RULE b/src/licensedcode/data/rules/apache-2.0_8.RULE index f5ec92c523..9e99f4f62e 100644 --- a/src/licensedcode/data/rules/apache-2.0_8.RULE +++ b/src/licensedcode/data/rules/apache-2.0_8.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -The Apache Software License, Version 2.0 +{{The Apache Software License, Version 2.0}} http://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_80.RULE b/src/licensedcode/data/rules/apache-2.0_80.RULE index e784276293..32356d3a3f 100644 --- a/src/licensedcode/data/rules/apache-2.0_80.RULE +++ b/src/licensedcode/data/rules/apache-2.0_80.RULE @@ -4,6 +4,6 @@ is_license_reference: yes relevance: 100 --- -is released under the [Apache License, Version 2.0]. +is released under the [{{Apache License, Version 2.0}}]. -[Apache License, Version 2.0]: \ No newline at end of file +[{{Apache License, Version 2.0}}]: \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_801.RULE b/src/licensedcode/data/rules/apache-2.0_801.RULE index aa0079fded..7920f35826 100644 --- a/src/licensedcode/data/rules/apache-2.0_801.RULE +++ b/src/licensedcode/data/rules/apache-2.0_801.RULE @@ -6,8 +6,8 @@ ignorable_urls: --- This program and the accompanying materials -are made available under the terms of the under the Apache License, -Version 2.0 (the "License”); you may not use this file except in compliance +are made available under the terms of the under the {{Apache License, +Version 2.0}} (the "License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_802.RULE b/src/licensedcode/data/rules/apache-2.0_802.RULE index c1ce78ead5..eec2fdafb4 100644 --- a/src/licensedcode/data/rules/apache-2.0_802.RULE +++ b/src/licensedcode/data/rules/apache-2.0_802.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Font Software is licensed under the Apache License, Version 2.0. +Font Software is {{licensed under the Apache License, Version 2.0}}. This license is available with a FAQ at: https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_804.RULE b/src/licensedcode/data/rules/apache-2.0_804.RULE index e8571fa8a0..a7fb6a6ff9 100644 --- a/src/licensedcode/data/rules/apache-2.0_804.RULE +++ b/src/licensedcode/data/rules/apache-2.0_804.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -apache2 Apache License Version 2.0 +apache2 {{Apache License Version 2.0}} https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_807.RULE b/src/licensedcode/data/rules/apache-2.0_807.RULE index a610d58bfd..fcbcbc358b 100644 --- a/src/licensedcode/data/rules/apache-2.0_807.RULE +++ b/src/licensedcode/data/rules/apache-2.0_807.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://www.apache.org/licenses/ --- -License Apache License -Version 2.0, January 2004 +License {{Apache License +Version 2.0}}, January 2004 http://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_808.RULE b/src/licensedcode/data/rules/apache-2.0_808.RULE index 2111fc5de6..f4a2701a25 100644 --- a/src/licensedcode/data/rules/apache-2.0_808.RULE +++ b/src/licensedcode/data/rules/apache-2.0_808.RULE @@ -6,11 +6,11 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed to the Apache Software Foundation (ASF) under one +{{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the + to you under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_809.RULE b/src/licensedcode/data/rules/apache-2.0_809.RULE index 8dfee0197d..2395f08e2d 100644 --- a/src/licensedcode/data/rules/apache-2.0_809.RULE +++ b/src/licensedcode/data/rules/apache-2.0_809.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache License (v2.0 (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +License: {{Apache License (v2.0}} (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_81.RULE b/src/licensedcode/data/rules/apache-2.0_81.RULE index 9dcb46a96d..aaefff9ed9 100644 --- a/src/licensedcode/data/rules/apache-2.0_81.RULE +++ b/src/licensedcode/data/rules/apache-2.0_81.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is licensed under the [Apache License, Version 2.0](LICENSE). \ No newline at end of file +is {{licensed under the [Apache License, Version 2.0}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_810.RULE b/src/licensedcode/data/rules/apache-2.0_810.RULE index cadf70ab1d..ade4adf8f4 100644 --- a/src/licensedcode/data/rules/apache-2.0_810.RULE +++ b/src/licensedcode/data/rules/apache-2.0_810.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -License: The Apache Software License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt" \ No newline at end of file +License: {{The Apache Software License, Version 2.0}} (https://www.apache.org/licenses/LICENSE-2.0.txt" \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_812.RULE b/src/licensedcode/data/rules/apache-2.0_812.RULE index 68d3ab717c..7b360c63f1 100644 --- a/src/licensedcode/data/rules/apache-2.0_812.RULE +++ b/src/licensedcode/data/rules/apache-2.0_812.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -License: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file +{{License: Apache 2.0}} (https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_813.RULE b/src/licensedcode/data/rules/apache-2.0_813.RULE index cfb66a7867..3da10e0bac 100644 --- a/src/licensedcode/data/rules/apache-2.0_813.RULE +++ b/src/licensedcode/data/rules/apache-2.0_813.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 +{{Licensed under the Apache License, Version 2.0}} https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_814.RULE b/src/licensedcode/data/rules/apache-2.0_814.RULE index 73f65b59ee..2d93e44b17 100644 --- a/src/licensedcode/data/rules/apache-2.0_814.RULE +++ b/src/licensedcode/data/rules/apache-2.0_814.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -[Apache License v2](https://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file +[{{Apache License v2}}](https://www.apache.org/licenses/LICENSE-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_815.RULE b/src/licensedcode/data/rules/apache-2.0_815.RULE index bd2cbbbb1f..3dae829dde 100644 --- a/src/licensedcode/data/rules/apache-2.0_815.RULE +++ b/src/licensedcode/data/rules/apache-2.0_815.RULE @@ -9,7 +9,7 @@ ignorable_urls: If licensing your own work: Copyright [yyyy] [name of copyright owner] -Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_818.RULE b/src/licensedcode/data/rules/apache-2.0_818.RULE index 420205301a..275e3510a3 100644 --- a/src/licensedcode/data/rules/apache-2.0_818.RULE +++ b/src/licensedcode/data/rules/apache-2.0_818.RULE @@ -7,4 +7,4 @@ ignorable_urls: Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -Apache License, Version 2.0, January 2004 https://www.apache.org/licenses/ \ No newline at end of file +{{Apache License, Version 2.0}}, January 2004 https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_819.RULE b/src/licensedcode/data/rules/apache-2.0_819.RULE index bcd0533238..642b491a57 100644 --- a/src/licensedcode/data/rules/apache-2.0_819.RULE +++ b/src/licensedcode/data/rules/apache-2.0_819.RULE @@ -9,6 +9,6 @@ ignorable_urls: --- The OSGi Materials are provided to you under the terms and conditions of the -Apache License, Version 2.0. A copy of the license is contained in the file +{{Apache License, Version 2.0}}. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at https://www.apache.org/licenses/ LICENSE-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_820.RULE b/src/licensedcode/data/rules/apache-2.0_820.RULE index 356ad8025a..6cea610033 100644 --- a/src/licensedcode/data/rules/apache-2.0_820.RULE +++ b/src/licensedcode/data/rules/apache-2.0_820.RULE @@ -10,5 +10,5 @@ ignorable_urls: --- distributed under the -[Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0), +[{{Apache License, Version 2.0}}](https://www.apache.org/licenses/LICENSE-2.0), see LICENSE.txt and NOTICE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_821.RULE b/src/licensedcode/data/rules/apache-2.0_821.RULE index 9610130b61..f254430100 100644 --- a/src/licensedcode/data/rules/apache-2.0_821.RULE +++ b/src/licensedcode/data/rules/apache-2.0_821.RULE @@ -14,7 +14,7 @@ license. Because this is my personal repository, the license you receive to my code and resources is from me and not my employer -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_823.RULE b/src/licensedcode/data/rules/apache-2.0_823.RULE index 751518c9d1..cc4ec4aa10 100644 --- a/src/licensedcode/data/rules/apache-2.0_823.RULE +++ b/src/licensedcode/data/rules/apache-2.0_823.RULE @@ -7,4 +7,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -https://www.apache.org/licenses/LICENSE-2.0.html Apache License 2.0 \ No newline at end of file +https://www.apache.org/licenses/LICENSE-2.0.html {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_824.RULE b/src/licensedcode/data/rules/apache-2.0_824.RULE index 03f45daace..bb7b3b75bf 100644 --- a/src/licensedcode/data/rules/apache-2.0_824.RULE +++ b/src/licensedcode/data/rules/apache-2.0_824.RULE @@ -7,5 +7,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -fonts are licensed under the Apache 2.0 License. You may obtain a copy of the license at: +fonts are {{licensed under the Apache 2.0 License}}. You may obtain a copy of the license at: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_825.RULE b/src/licensedcode/data/rules/apache-2.0_825.RULE index cf8cdd0441..70bead49ed 100644 --- a/src/licensedcode/data/rules/apache-2.0_825.RULE +++ b/src/licensedcode/data/rules/apache-2.0_825.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -// Licensed under the Apache License, Version 2.0 (the "License"); +// {{Licensed under the Apache License, Version 2.0 (the "License}}"); // You may not use this file except in compliance with the License. // You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 @@ -16,5 +16,5 @@ ignorable_urls: // CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, // MERCHANTABLITY OR NON-INFRINGEMENT. -// See the Apache 2 License for the specific language governing +// See the {{Apache 2 License}} for the specific language governing // permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_826.RULE b/src/licensedcode/data/rules/apache-2.0_826.RULE index 70c84467ae..89193a967a 100644 --- a/src/licensedcode/data/rules/apache-2.0_826.RULE +++ b/src/licensedcode/data/rules/apache-2.0_826.RULE @@ -8,8 +8,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -The default license for search engine is the Apache -License, Version 2.0 (ALv2). The license text can be found at +The default license for search engine is the {{Apache +License, Version 2.0}} (ALv2). The license text can be found at https://www.apache.org/licenses/LICENSE-2.0.txt and it is reproduced below. "Default" means, unless stated otherwise, ALv2 is the license under which search engine is made available to you and it is the diff --git a/src/licensedcode/data/rules/apache-2.0_827.RULE b/src/licensedcode/data/rules/apache-2.0_827.RULE index bdf59d7d25..83a6aac693 100644 --- a/src/licensedcode/data/rules/apache-2.0_827.RULE +++ b/src/licensedcode/data/rules/apache-2.0_827.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- all the code -in this distribution is now licensed under the Apache License: +in this distribution is now licensed under the {{Apache License}}: -** Licensed under the Apache License, Version 2.0 (the "License"); +** {{Licensed under the Apache License, Version 2.0 (the "License}}"); ** you may not use this file except in compliance with the License. ** You may obtain a copy of the License at ** https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_828.RULE b/src/licensedcode/data/rules/apache-2.0_828.RULE index 0078097868..cd6b108bb2 100644 --- a/src/licensedcode/data/rules/apache-2.0_828.RULE +++ b/src/licensedcode/data/rules/apache-2.0_828.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -License: Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file +License: {{Apache License, Version 2.0}} (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_829.RULE b/src/licensedcode/data/rules/apache-2.0_829.RULE index 61323a8f4b..94421fbe03 100644 --- a/src/licensedcode/data/rules/apache-2.0_829.RULE +++ b/src/licensedcode/data/rules/apache-2.0_829.RULE @@ -5,4 +5,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -project is licensed under the terms of the Apache License, Version 2.0, available from: https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +project is licensed under the terms of the {{Apache License, Version 2.0}}, available from: https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_83.RULE b/src/licensedcode/data/rules/apache-2.0_83.RULE index da2b166501..1c38f12f5f 100644 --- a/src/licensedcode/data/rules/apache-2.0_83.RULE +++ b/src/licensedcode/data/rules/apache-2.0_83.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -is provided under the [Apache-2.0 license](LICENSE). \ No newline at end of file +is provided under the [{{Apache-2.0 license}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_833.RULE b/src/licensedcode/data/rules/apache-2.0_833.RULE index ca06c4a1af..733e69963b 100644 --- a/src/licensedcode/data/rules/apache-2.0_833.RULE +++ b/src/licensedcode/data/rules/apache-2.0_833.RULE @@ -8,4 +8,4 @@ ignorable_urls: License licensed under the -[Apache 2 license](https://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file +[{{Apache 2 license}}](https://www.apache.org/licenses/LICENSE-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_834.RULE b/src/licensedcode/data/rules/apache-2.0_834.RULE index 6e32371530..79105cc9b1 100644 --- a/src/licensedcode/data/rules/apache-2.0_834.RULE +++ b/src/licensedcode/data/rules/apache-2.0_834.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -is licensed under the -Apache (Software) License, version 2.0 ("the License"). +is licensed under {{the +Apache (Software) License, version 2.0}} ("the License"). See the License for details about distribution rights, and the specific rights regarding derivate works. diff --git a/src/licensedcode/data/rules/apache-2.0_835.RULE b/src/licensedcode/data/rules/apache-2.0_835.RULE index f3760d53a9..f276cb08d9 100644 --- a/src/licensedcode/data/rules/apache-2.0_835.RULE +++ b/src/licensedcode/data/rules/apache-2.0_835.RULE @@ -9,7 +9,7 @@ ignorable_urls: - Apache License Version 2 + {{Apache License Version 2}} https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_836.RULE b/src/licensedcode/data/rules/apache-2.0_836.RULE index 40c0bca62c..29d0ff1919 100644 --- a/src/licensedcode/data/rules/apache-2.0_836.RULE +++ b/src/licensedcode/data/rules/apache-2.0_836.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Apache License Version 2 +{{Apache License Version 2}} https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_837.RULE b/src/licensedcode/data/rules/apache-2.0_837.RULE index a7638b266c..aa6ecc4a40 100644 --- a/src/licensedcode/data/rules/apache-2.0_837.RULE +++ b/src/licensedcode/data/rules/apache-2.0_837.RULE @@ -5,7 +5,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -licenses this file to you under the Apache License, version 2.0 +licenses this file to you under the {{Apache License, version 2.0}} * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * diff --git a/src/licensedcode/data/rules/apache-2.0_838.RULE b/src/licensedcode/data/rules/apache-2.0_838.RULE index 757e6a3e24..372a68b8b9 100644 --- a/src/licensedcode/data/rules/apache-2.0_838.RULE +++ b/src/licensedcode/data/rules/apache-2.0_838.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -License: Apache License 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file +License: {{Apache License 2.0}} (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_84.RULE b/src/licensedcode/data/rules/apache-2.0_84.RULE index 99402f5b66..6b92d398d4 100644 --- a/src/licensedcode/data/rules/apache-2.0_84.RULE +++ b/src/licensedcode/data/rules/apache-2.0_84.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -[Apache License v2] \ No newline at end of file +Apache License v2 diff --git a/src/licensedcode/data/rules/apache-2.0_840.RULE b/src/licensedcode/data/rules/apache-2.0_840.RULE index 742e58b0d2..fa32e5afe1 100644 --- a/src/licensedcode/data/rules/apache-2.0_840.RULE +++ b/src/licensedcode/data/rules/apache-2.0_840.RULE @@ -8,8 +8,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache-2.0 - Licensed under the Apache License, Version 2.0 (the "License"); +{{License: Apache-2.0 + Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -21,5 +21,5 @@ License: Apache-2.0 See the License for the specific language governing permissions and limitations under the License. . - On Debian systems, the complete text of the Apache version 2.0 license + On Debian systems, the complete text of the {{Apache version 2.0 license}} can be found in "/usr/share/common-licenses/Apache-2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_841.RULE b/src/licensedcode/data/rules/apache-2.0_841.RULE index 90544f04ec..bd2381336e 100644 --- a/src/licensedcode/data/rules/apache-2.0_841.RULE +++ b/src/licensedcode/data/rules/apache-2.0_841.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -published under the Apache License 2.0, see https://www.apache.org/licenses/LICENSE-2.0 for details. \ No newline at end of file +published under the {{Apache License 2.0}}, see https://www.apache.org/licenses/LICENSE-2.0 for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_842.RULE b/src/licensedcode/data/rules/apache-2.0_842.RULE index 1f18093c1a..b714f8aca8 100644 --- a/src/licensedcode/data/rules/apache-2.0_842.RULE +++ b/src/licensedcode/data/rules/apache-2.0_842.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -This Font Software is licensed under the Apache License, Version 2.0. +This Font Software is {{licensed under the Apache License, Version 2.0}}. This license is available with a FAQ at: https://www.apache.org/licenses/LICENSE-2.0 https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_843.RULE b/src/licensedcode/data/rules/apache-2.0_843.RULE index 16709978db..6b477d8a4d 100644 --- a/src/licensedcode/data/rules/apache-2.0_843.RULE +++ b/src/licensedcode/data/rules/apache-2.0_843.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -* The Project licenses this file to you under the Apache License, - * version 2.0 (the "License"); you may not use this file except in compliance +* The Project licenses this file to you under the {{Apache License, + * version 2.0}} (the "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at: * * https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_845.RULE b/src/licensedcode/data/rules/apache-2.0_845.RULE index e91a088890..2349f77fc3 100644 --- a/src/licensedcode/data/rules/apache-2.0_845.RULE +++ b/src/licensedcode/data/rules/apache-2.0_845.RULE @@ -9,7 +9,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -21,5 +21,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. . - {{On Debian systems}}, the complete text of the Apache version 2.0 license + On Debian systems, the complete text of the {{Apache version 2.0 license}} can be found in {{"/usr/share/common-licenses/Apache-2.0"}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_846.RULE b/src/licensedcode/data/rules/apache-2.0_846.RULE index ee572e92d1..8bccc3a906 100644 --- a/src/licensedcode/data/rules/apache-2.0_846.RULE +++ b/src/licensedcode/data/rules/apache-2.0_846.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -under the Apache License, Version 2.0 (the "License"); +under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_847.RULE b/src/licensedcode/data/rules/apache-2.0_847.RULE index 155cc746a8..23d8e9e5b9 100644 --- a/src/licensedcode/data/rules/apache-2.0_847.RULE +++ b/src/licensedcode/data/rules/apache-2.0_847.RULE @@ -9,7 +9,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -21,5 +21,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. -On Debian systems, the complete text of Apache License, Version 2.0 +On Debian systems, the complete text of {{Apache License, Version 2.0}} can be found in /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_848.RULE b/src/licensedcode/data/rules/apache-2.0_848.RULE index b906a71bee..d747df44e1 100644 --- a/src/licensedcode/data/rules/apache-2.0_848.RULE +++ b/src/licensedcode/data/rules/apache-2.0_848.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache 2.0 License (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +License: {{Apache 2.0 License}} (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_849.RULE b/src/licensedcode/data/rules/apache-2.0_849.RULE index b4684719e8..b77e611613 100644 --- a/src/licensedcode/data/rules/apache-2.0_849.RULE +++ b/src/licensedcode/data/rules/apache-2.0_849.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Apache 2.0 License -Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 +{{Apache 2.0 License}} +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. -See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. \ No newline at end of file +See the {{Apache Version 2.0 License}} for specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_85.RULE b/src/licensedcode/data/rules/apache-2.0_85.RULE index 73edd38c71..052cf328b9 100644 --- a/src/licensedcode/data/rules/apache-2.0_85.RULE +++ b/src/licensedcode/data/rules/apache-2.0_85.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -[Apache License V2](https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file +[{{Apache License V2}}](https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_852.RULE b/src/licensedcode/data/rules/apache-2.0_852.RULE index b7b0d15207..3cb3d37197 100644 --- a/src/licensedcode/data/rules/apache-2.0_852.RULE +++ b/src/licensedcode/data/rules/apache-2.0_852.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -LICENCE_NAME=The Apache Software License, Version 2.0 +LICENCE_NAME={{The Apache Software License, Version 2.0}} LICENCE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_853.RULE b/src/licensedcode/data/rules/apache-2.0_853.RULE index 913bbe9560..0bfd5b125e 100644 --- a/src/licensedcode/data/rules/apache-2.0_853.RULE +++ b/src/licensedcode/data/rules/apache-2.0_853.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -- Apache 2.0 : https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +- {{Apache 2.0}} : https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_854.RULE b/src/licensedcode/data/rules/apache-2.0_854.RULE index b25afdb4bb..16c9c78083 100644 --- a/src/licensedcode/data/rules/apache-2.0_854.RULE +++ b/src/licensedcode/data/rules/apache-2.0_854.RULE @@ -7,4 +7,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Apache License (https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file +{{Apache License}} (https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_856.RULE b/src/licensedcode/data/rules/apache-2.0_856.RULE index d0a7c34193..5344fcc77f 100644 --- a/src/licensedcode/data/rules/apache-2.0_856.RULE +++ b/src/licensedcode/data/rules/apache-2.0_856.RULE @@ -9,7 +9,7 @@ ignorable_urls: ## License and Copyright -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_857.RULE b/src/licensedcode/data/rules/apache-2.0_857.RULE index f4a45cdbc9..dddafe7205 100644 --- a/src/licensedcode/data/rules/apache-2.0_857.RULE +++ b/src/licensedcode/data/rules/apache-2.0_857.RULE @@ -7,7 +7,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -# Licensed under the Apache License, Version 2.0 (the "License"); +# {{Licensed under the Apache License, Version 2.0 (the "License}}"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # diff --git a/src/licensedcode/data/rules/apache-2.0_858.RULE b/src/licensedcode/data/rules/apache-2.0_858.RULE index 33b70277b2..b795055ab8 100644 --- a/src/licensedcode/data/rules/apache-2.0_858.RULE +++ b/src/licensedcode/data/rules/apache-2.0_858.RULE @@ -12,5 +12,5 @@ ignorable_urls: ## License This SDK is distributed under the -[Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0), +[{{Apache License, Version 2.0}}](https://www.apache.org/licenses/LICENSE-2.0), see LICENSE.txt and NOTICE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_859.RULE b/src/licensedcode/data/rules/apache-2.0_859.RULE index 3619f3bdf9..192b5bdc46 100644 --- a/src/licensedcode/data/rules/apache-2.0_859.RULE +++ b/src/licensedcode/data/rules/apache-2.0_859.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- * This code is released under the - * Apache License Version 2.0 https://www.apache.org/licenses/. \ No newline at end of file + * {{Apache License Version 2.0}} https://www.apache.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_86.RULE b/src/licensedcode/data/rules/apache-2.0_86.RULE index a230b06a06..524b5d2072 100644 --- a/src/licensedcode/data/rules/apache-2.0_86.RULE +++ b/src/licensedcode/data/rules/apache-2.0_86.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is published under the Apache License, Version 2.0, January 2004 if not stated otherwise. \ No newline at end of file +is published under the {{Apache License, Version 2.0}}, January 2004 if not stated otherwise. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_860.RULE b/src/licensedcode/data/rules/apache-2.0_860.RULE index f333cd2c54..266ce1bd4e 100644 --- a/src/licensedcode/data/rules/apache-2.0_860.RULE +++ b/src/licensedcode/data/rules/apache-2.0_860.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -This app uses third-party librarys that are licenced under the Apache 2.0 licence. +This app uses third-party librarys that are licenced under the {{Apache 2.0 licence}}. Get the full text of the licence at https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_861.RULE b/src/licensedcode/data/rules/apache-2.0_861.RULE index 7df9a09877..ef00736211 100644 --- a/src/licensedcode/data/rules/apache-2.0_861.RULE +++ b/src/licensedcode/data/rules/apache-2.0_861.RULE @@ -5,8 +5,8 @@ ignorable_urls: - https://www.apache.org/licenses/ --- -Apache License - Version 2.0, January 2004 +{{Apache License + Version 2.0}}, January 2004 https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION diff --git a/src/licensedcode/data/rules/apache-2.0_863.RULE b/src/licensedcode/data/rules/apache-2.0_863.RULE index cbe6f412a2..19249191b9 100644 --- a/src/licensedcode/data/rules/apache-2.0_863.RULE +++ b/src/licensedcode/data/rules/apache-2.0_863.RULE @@ -9,7 +9,7 @@ ignorable_urls: - Apache License Version 2 + {{Apache License Version 2}} https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_864.RULE b/src/licensedcode/data/rules/apache-2.0_864.RULE index 71ed9ead3d..2c5bbad909 100644 --- a/src/licensedcode/data/rules/apache-2.0_864.RULE +++ b/src/licensedcode/data/rules/apache-2.0_864.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE --- -This script falls under the Apache License. +This script falls under the {{Apache License}}. See https://www.apache.org/licenses/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_865.RULE b/src/licensedcode/data/rules/apache-2.0_865.RULE index 05deea65ba..006505f95d 100644 --- a/src/licensedcode/data/rules/apache-2.0_865.RULE +++ b/src/licensedcode/data/rules/apache-2.0_865.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems, the complete text of the Apache version 2.0 license +On Debian systems, the complete text of the {{Apache version 2.0 license}} can be found in "/usr/share/common-licenses/Apache-2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_866.RULE b/src/licensedcode/data/rules/apache-2.0_866.RULE index 3e5574c0c7..31439aec98 100644 --- a/src/licensedcode/data/rules/apache-2.0_866.RULE +++ b/src/licensedcode/data/rules/apache-2.0_866.RULE @@ -9,7 +9,7 @@ ignorable_urls: - The Apache Software License, Version 2.0 + {{The Apache Software License, Version 2.0}} https://www.apache.org/licenses/LICENSE-2.0.txt repo diff --git a/src/licensedcode/data/rules/apache-2.0_867.RULE b/src/licensedcode/data/rules/apache-2.0_867.RULE index 50f4886144..9d8dee01a1 100644 --- a/src/licensedcode/data/rules/apache-2.0_867.RULE +++ b/src/licensedcode/data/rules/apache-2.0_867.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, version 2.0 (the "License"): +{{Licensed under the Apache License, version 2.0 (the "License}}"): https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_868.RULE b/src/licensedcode/data/rules/apache-2.0_868.RULE index 562a7361c1..896d86a15a 100644 --- a/src/licensedcode/data/rules/apache-2.0_868.RULE +++ b/src/licensedcode/data/rules/apache-2.0_868.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -.. _`Apache Software License 2.0`: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +.. _`{{Apache Software License 2.0}}`: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_869.RULE b/src/licensedcode/data/rules/apache-2.0_869.RULE index 34c33e0ed8..912f110c86 100644 --- a/src/licensedcode/data/rules/apache-2.0_869.RULE +++ b/src/licensedcode/data/rules/apache-2.0_869.RULE @@ -9,6 +9,6 @@ ignorable_urls: --- provided to you under the terms and conditions of the -Apache License, Version 2.0. A copy of the license is contained in the file +{{Apache License, Version 2.0}}. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at https://www.apache.org/licenses/ LICENSE-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_870.RULE b/src/licensedcode/data/rules/apache-2.0_870.RULE index 763c56fb00..822b149b62 100644 --- a/src/licensedcode/data/rules/apache-2.0_870.RULE +++ b/src/licensedcode/data/rules/apache-2.0_870.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -License: The Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file +License: The {{Apache License, Version 2.0}} (https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_871.RULE b/src/licensedcode/data/rules/apache-2.0_871.RULE index 64159cabe3..8240f3c8a9 100644 --- a/src/licensedcode/data/rules/apache-2.0_871.RULE +++ b/src/licensedcode/data/rules/apache-2.0_871.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0https:/www.apache.org/licenses/LICENSE-2.0 --- -This Font Software is licensed under the Apache License, Version 2.0. +This Font Software is {{licensed under the Apache License, Version 2.0}}. This license is available with a FAQ at: https://www.apache.org/licenses/LICENSE-2.0https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_872.RULE b/src/licensedcode/data/rules/apache-2.0_872.RULE index f540959340..ec4ebc295f 100644 --- a/src/licensedcode/data/rules/apache-2.0_872.RULE +++ b/src/licensedcode/data/rules/apache-2.0_872.RULE @@ -11,7 +11,7 @@ ignorable_urls: * See the notice.md file distributed with this work for additional * information regarding copyright ownership. * - * Licensed under the Apache License, Version 2.0 (the "License"); + * {{Licensed under the Apache License, Version 2.0 (the "License}}"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * diff --git a/src/licensedcode/data/rules/apache-2.0_873.RULE b/src/licensedcode/data/rules/apache-2.0_873.RULE index 228a912566..708ef47b30 100644 --- a/src/licensedcode/data/rules/apache-2.0_873.RULE +++ b/src/licensedcode/data/rules/apache-2.0_873.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -licensed under the -Apache (Software) License, version 2.0 ("the License"). +licensed under {{the +Apache (Software) License, version 2.0}} ("the License"). See the License for details about distribution rights, and the specific rights regarding derivate works. diff --git a/src/licensedcode/data/rules/apache-2.0_876.RULE b/src/licensedcode/data/rules/apache-2.0_876.RULE index eb74e90a61..f7e620a2ca 100644 --- a/src/licensedcode/data/rules/apache-2.0_876.RULE +++ b/src/licensedcode/data/rules/apache-2.0_876.RULE @@ -6,9 +6,9 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Apache License, Version 2.0: +{{Apache License, Version 2.0}}: -Licensed under the Apache License, Version 2.0 (the "License"); you may not +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_877.RULE b/src/licensedcode/data/rules/apache-2.0_877.RULE index 48197b49bd..24d9eb9a83 100644 --- a/src/licensedcode/data/rules/apache-2.0_877.RULE +++ b/src/licensedcode/data/rules/apache-2.0_877.RULE @@ -9,7 +9,7 @@ ignorable_urls: License: - Licensed under the Apache License, Version 2.0 (the "License"); + {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_878.RULE b/src/licensedcode/data/rules/apache-2.0_878.RULE index 87c808c06a..12b0859f9c 100644 --- a/src/licensedcode/data/rules/apache-2.0_878.RULE +++ b/src/licensedcode/data/rules/apache-2.0_878.RULE @@ -12,7 +12,7 @@ ignorable_urls: Licensed by under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. - licenses this file to You under the Apache License, Version 2.0 + licenses this file to You under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_880.RULE b/src/licensedcode/data/rules/apache-2.0_880.RULE index 1b76705f50..668fc56b09 100644 --- a/src/licensedcode/data/rules/apache-2.0_880.RULE +++ b/src/licensedcode/data/rules/apache-2.0_880.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- released under the -[Apache License version 2](https://www.apache.org/licenses/ \ No newline at end of file +[{{Apache License version 2}}](https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_882.RULE b/src/licensedcode/data/rules/apache-2.0_882.RULE index 604858d9b1..3f8c48b14d 100644 --- a/src/licensedcode/data/rules/apache-2.0_882.RULE +++ b/src/licensedcode/data/rules/apache-2.0_882.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -released to the public under the terms of the Apache 2.0 license. A copy can be found under the LICENSE file in the project root. \ No newline at end of file +released to the public under the terms of the {{Apache 2.0 license}}. A copy can be found under the LICENSE file in the project root. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_883.RULE b/src/licensedcode/data/rules/apache-2.0_883.RULE index ef4aa1a0ce..b475afe528 100644 --- a/src/licensedcode/data/rules/apache-2.0_883.RULE +++ b/src/licensedcode/data/rules/apache-2.0_883.RULE @@ -9,8 +9,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache-2.0 - Licensed under the Apache License, Version 2.0 (the "License"); +{{License: Apache-2.0 + Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -22,5 +22,5 @@ License: Apache-2.0 See the License for the specific language governing permissions and limitations under the License. . - On Debian-based systems the full text of the Apache version 2.0 license + On Debian-based systems the full text of the {{Apache version 2.0 license}} can be found in `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_884.RULE b/src/licensedcode/data/rules/apache-2.0_884.RULE index 58be2fd99f..06ee6fed67 100644 --- a/src/licensedcode/data/rules/apache-2.0_884.RULE +++ b/src/licensedcode/data/rules/apache-2.0_884.RULE @@ -5,5 +5,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -name: The Apache Software License, Version 2.0 +name: {{The Apache Software License, Version 2.0}} url: https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_885.RULE b/src/licensedcode/data/rules/apache-2.0_885.RULE index 485ae67dac..ce3ba8d6ec 100644 --- a/src/licensedcode/data/rules/apache-2.0_885.RULE +++ b/src/licensedcode/data/rules/apache-2.0_885.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses --- -`Apache-2.0` - [Apache, Version 2.0](https://www.apache.org/licenses/) \ No newline at end of file +`{{Apache-2.0}}` - [Apache, Version 2.0](https://www.apache.org/licenses/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_886.RULE b/src/licensedcode/data/rules/apache-2.0_886.RULE index f204ef4985..0d5edd8842 100644 --- a/src/licensedcode/data/rules/apache-2.0_886.RULE +++ b/src/licensedcode/data/rules/apache-2.0_886.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -License: Apache 2 (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file +{{License: Apache 2}} (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_887.RULE b/src/licensedcode/data/rules/apache-2.0_887.RULE index 0321e77cb6..789934df6a 100644 --- a/src/licensedcode/data/rules/apache-2.0_887.RULE +++ b/src/licensedcode/data/rules/apache-2.0_887.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -It is made available under the Apache 2 license. See the LICENSE file for more details. \ No newline at end of file +It is made available under the {{Apache 2 license}}. See the LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_889.RULE b/src/licensedcode/data/rules/apache-2.0_889.RULE index 0f005e2fe1..33e7f85669 100644 --- a/src/licensedcode/data/rules/apache-2.0_889.RULE +++ b/src/licensedcode/data/rules/apache-2.0_889.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -POM_LICENCE_NAME=The Apache Software License, Version 2.0 +POM_LICENCE_NAME={{The Apache Software License, Version 2.0}} POM_LICENCE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_890.RULE b/src/licensedcode/data/rules/apache-2.0_890.RULE index 8eeb832e9c..013eee8f43 100644 --- a/src/licensedcode/data/rules/apache-2.0_890.RULE +++ b/src/licensedcode/data/rules/apache-2.0_890.RULE @@ -5,7 +5,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the diff --git a/src/licensedcode/data/rules/apache-2.0_892.RULE b/src/licensedcode/data/rules/apache-2.0_892.RULE index 476e2c51f0..2e260475d5 100644 --- a/src/licensedcode/data/rules/apache-2.0_892.RULE +++ b/src/licensedcode/data/rules/apache-2.0_892.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -licensed under the Apache Licence 2.0 (https://www.apache.org/licenses/LICENSE-2.0). \ No newline at end of file +licensed under the {{Apache Licence 2.0}} (https://www.apache.org/licenses/LICENSE-2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_893.RULE b/src/licensedcode/data/rules/apache-2.0_893.RULE index b1f55f42a4..9d9758baab 100644 --- a/src/licensedcode/data/rules/apache-2.0_893.RULE +++ b/src/licensedcode/data/rules/apache-2.0_893.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -The Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file +The {{Apache License, Version 2.0}} https://www.apache.org/licenses/LICENSE-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_895.RULE b/src/licensedcode/data/rules/apache-2.0_895.RULE index 9eb98e6529..55a8f26d0d 100644 --- a/src/licensedcode/data/rules/apache-2.0_895.RULE +++ b/src/licensedcode/data/rules/apache-2.0_895.RULE @@ -8,4 +8,4 @@ ignorable_urls: License -Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +{{Apache License, Version 2.0}} https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_896.RULE b/src/licensedcode/data/rules/apache-2.0_896.RULE index fbc8953045..91c34da461 100644 --- a/src/licensedcode/data/rules/apache-2.0_896.RULE +++ b/src/licensedcode/data/rules/apache-2.0_896.RULE @@ -13,7 +13,7 @@ ignorable_urls: * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you under - * the Apache License, Version 2.0 (the "License"); you may + * the {{Apache License, Version 2.0}} (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * diff --git a/src/licensedcode/data/rules/apache-2.0_897.RULE b/src/licensedcode/data/rules/apache-2.0_897.RULE index 6063443fce..6d70c6cdb8 100644 --- a/src/licensedcode/data/rules/apache-2.0_897.RULE +++ b/src/licensedcode/data/rules/apache-2.0_897.RULE @@ -1,7 +1,6 @@ --- license_expression: apache-2.0 is_license_text: yes -relevance: 100 minimum_coverage: 99 ignorable_urls: - https://www.apache.org/licenses/ diff --git a/src/licensedcode/data/rules/apache-2.0_899.RULE b/src/licensedcode/data/rules/apache-2.0_899.RULE index 9ef1b18cef..7200a7c09e 100644 --- a/src/licensedcode/data/rules/apache-2.0_899.RULE +++ b/src/licensedcode/data/rules/apache-2.0_899.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -the Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +the {{Apache License, Version 2.0}} https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_90.RULE b/src/licensedcode/data/rules/apache-2.0_90.RULE index 14903be1b0..84b0814ab0 100644 --- a/src/licensedcode/data/rules/apache-2.0_90.RULE +++ b/src/licensedcode/data/rules/apache-2.0_90.RULE @@ -6,4 +6,4 @@ relevance: 100 ## License -This project is made available under the [Apache-2.0 License] \ No newline at end of file +This project is made available under the [{{Apache-2.0 License}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_900.RULE b/src/licensedcode/data/rules/apache-2.0_900.RULE index 35a5cb606f..3981f4f77b 100644 --- a/src/licensedcode/data/rules/apache-2.0_900.RULE +++ b/src/licensedcode/data/rules/apache-2.0_900.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +{{License: Apache 2.0}} (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_901.RULE b/src/licensedcode/data/rules/apache-2.0_901.RULE index b90e5fa5ef..e7c3782a82 100644 --- a/src/licensedcode/data/rules/apache-2.0_901.RULE +++ b/src/licensedcode/data/rules/apache-2.0_901.RULE @@ -1,7 +1,6 @@ --- license_expression: apache-2.0 is_license_text: yes -relevance: 100 ignorable_urls: - https://www.apache.org/licenses/ --- diff --git a/src/licensedcode/data/rules/apache-2.0_902.RULE b/src/licensedcode/data/rules/apache-2.0_902.RULE index 61213e0ca5..33cf7488d5 100644 --- a/src/licensedcode/data/rules/apache-2.0_902.RULE +++ b/src/licensedcode/data/rules/apache-2.0_902.RULE @@ -9,7 +9,7 @@ ignorable_urls: --- The OSGi Materials are provided to you under the terms and conditions of the -Apache License, Version 2.0. A copy of the license is contained in the file +{{Apache License, Version 2.0}}. A copy of the license is contained in the file LICENSE-2.0.txt and is also available at https://www.apache.org/licenses/ LICENSE-2.0.html. diff --git a/src/licensedcode/data/rules/apache-2.0_904.RULE b/src/licensedcode/data/rules/apache-2.0_904.RULE index ee47a13044..ded28ecd8d 100644 --- a/src/licensedcode/data/rules/apache-2.0_904.RULE +++ b/src/licensedcode/data/rules/apache-2.0_904.RULE @@ -5,7 +5,7 @@ ignorable_urls: - https://www.apache.org/licenses/ --- -Currently it has been re-released under the Apache License, Version 2.0. +Currently it has been re-released under the {{Apache License, Version 2.0}}. -Details of the Apache License, Version 2.0 can be found at: +Details of the {{Apache License, Version 2.0}} can be found at: https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_905.RULE b/src/licensedcode/data/rules/apache-2.0_905.RULE index 7c9ddcba50..b1e93eb0bb 100644 --- a/src/licensedcode/data/rules/apache-2.0_905.RULE +++ b/src/licensedcode/data/rules/apache-2.0_905.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the {{Apache License, Version 2.0}} (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. \ No newline at end of file +Licensed under the {{Apache License, Version 2.0}} (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR NON-INFRINGEMENT. See the {{Apache Version 2.0 License}} for specific language governing permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_907.RULE b/src/licensedcode/data/rules/apache-2.0_907.RULE index aefe4d539b..410876b7e5 100644 --- a/src/licensedcode/data/rules/apache-2.0_907.RULE +++ b/src/licensedcode/data/rules/apache-2.0_907.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache Software License - Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file +License: {{Apache Software License - Version 2.0}} (https://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_908.RULE b/src/licensedcode/data/rules/apache-2.0_908.RULE index afb613e2b5..32a2140d6d 100644 --- a/src/licensedcode/data/rules/apache-2.0_908.RULE +++ b/src/licensedcode/data/rules/apache-2.0_908.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.html --- -License: Apache License (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file +License: {{Apache License}} (https://www.apache.org/licenses/LICENSE-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_909.RULE b/src/licensedcode/data/rules/apache-2.0_909.RULE index 280413c48d..9246f5bffe 100644 --- a/src/licensedcode/data/rules/apache-2.0_909.RULE +++ b/src/licensedcode/data/rules/apache-2.0_909.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -This is licensed under the -Apache (Software) License, version 2.0 ("the License"). +This is licensed under {{the +Apache (Software) License, version 2.0}} ("the License"). See the License for details about distribution rights, and the specific rights regarding derivate works. diff --git a/src/licensedcode/data/rules/apache-2.0_910.RULE b/src/licensedcode/data/rules/apache-2.0_910.RULE index bcbb8dc8ff..7b89113ee0 100644 --- a/src/licensedcode/data/rules/apache-2.0_910.RULE +++ b/src/licensedcode/data/rules/apache-2.0_910.RULE @@ -8,4 +8,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Apache License, Version 2.0, (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file +{{Apache License, Version 2.0}}, (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_913.RULE b/src/licensedcode/data/rules/apache-2.0_913.RULE index cfcc545d50..de11dfdfcc 100644 --- a/src/licensedcode/data/rules/apache-2.0_913.RULE +++ b/src/licensedcode/data/rules/apache-2.0_913.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/ --- -License: Apache License 2.0 (https://www.apache.org/licenses/ \ No newline at end of file +License: {{Apache License 2.0}} (https://www.apache.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_914.RULE b/src/licensedcode/data/rules/apache-2.0_914.RULE index 718cb12ff3..0ae2e872f4 100644 --- a/src/licensedcode/data/rules/apache-2.0_914.RULE +++ b/src/licensedcode/data/rules/apache-2.0_914.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -licenced under the GPL-compatible [https://www.apache.org/licenses/LICENSE-2.0 Apache License v2.0] \ No newline at end of file +licenced under the GPL-compatible [https://www.apache.org/licenses/LICENSE-2.0 {{Apache License v2.0}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_915.RULE b/src/licensedcode/data/rules/apache-2.0_915.RULE index 05aaa6a4ee..1fc508efbc 100644 --- a/src/licensedcode/data/rules/apache-2.0_915.RULE +++ b/src/licensedcode/data/rules/apache-2.0_915.RULE @@ -9,7 +9,7 @@ ignorable_urls: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * - * Oracle licenses this file to You under the Apache License, Version 2.0 + * Oracle licenses this file to You under the {{Apache License, Version 2.0}} * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * diff --git a/src/licensedcode/data/rules/apache-2.0_916.RULE b/src/licensedcode/data/rules/apache-2.0_916.RULE index 7563e13ce9..f4e9876130 100644 --- a/src/licensedcode/data/rules/apache-2.0_916.RULE +++ b/src/licensedcode/data/rules/apache-2.0_916.RULE @@ -8,7 +8,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_917.RULE b/src/licensedcode/data/rules/apache-2.0_917.RULE index 3719275df0..e99d98f8e6 100644 --- a/src/licensedcode/data/rules/apache-2.0_917.RULE +++ b/src/licensedcode/data/rules/apache-2.0_917.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License -Contributors Licensed under an [Apache-2.0](LICENSE) license. \ No newline at end of file +Contributors Licensed under an [{{Apache-2.0}}](LICENSE) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_92.RULE b/src/licensedcode/data/rules/apache-2.0_92.RULE index 40fdcaaf45..3e87927bc4 100644 --- a/src/licensedcode/data/rules/apache-2.0_92.RULE +++ b/src/licensedcode/data/rules/apache-2.0_92.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://choosealicense.com/licenses/apache-2.0 --- -License: [`apache-2.0`](http://choosealicense.com/licenses/apache-2.0/) \ No newline at end of file +{{License: [`apache-2.0}}`](http://choosealicense.com/licenses/apache-2.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_921.RULE b/src/licensedcode/data/rules/apache-2.0_921.RULE index 7717586846..30ef35e97b 100644 --- a/src/licensedcode/data/rules/apache-2.0_921.RULE +++ b/src/licensedcode/data/rules/apache-2.0_921.RULE @@ -1,6 +1,8 @@ --- license_expression: apache-2.0 is_license_notice: yes +is_required_phrase: yes +relevance: 100 referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- diff --git a/src/licensedcode/data/rules/apache-2.0_922.RULE b/src/licensedcode/data/rules/apache-2.0_922.RULE index 3672c5cdcf..1c240fcb99 100644 --- a/src/licensedcode/data/rules/apache-2.0_922.RULE +++ b/src/licensedcode/data/rules/apache-2.0_922.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -* Licensed under the Apache License, Version 2.0 (the "License"); +* {{Licensed under the Apache License, Version 2.0 (the "License}}"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * diff --git a/src/licensedcode/data/rules/apache-2.0_923.RULE b/src/licensedcode/data/rules/apache-2.0_923.RULE index 2349457d5b..09ad42c5f0 100644 --- a/src/licensedcode/data/rules/apache-2.0_923.RULE +++ b/src/licensedcode/data/rules/apache-2.0_923.RULE @@ -10,7 +10,7 @@ ignorable_urls: Comment: On Debian systems the complete license text is available in /usr/share/common-licenses/Apache-2.0 License - # Licensed under the Apache License, Version 2.0 (the "License"); + # {{Licensed under the Apache License, Version 2.0 (the "License}}"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # diff --git a/src/licensedcode/data/rules/apache-2.0_924.RULE b/src/licensedcode/data/rules/apache-2.0_924.RULE index 6d8db95d9d..63c2e6b1bb 100644 --- a/src/licensedcode/data/rules/apache-2.0_924.RULE +++ b/src/licensedcode/data/rules/apache-2.0_924.RULE @@ -7,12 +7,12 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed to the Apache Software Foundation (ASF) +{{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You - under the Apache License, Version 2.0 (the "License"); + under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License diff --git a/src/licensedcode/data/rules/apache-2.0_925.RULE b/src/licensedcode/data/rules/apache-2.0_925.RULE index 4b2354790c..3429d69896 100644 --- a/src/licensedcode/data/rules/apache-2.0_925.RULE +++ b/src/licensedcode/data/rules/apache-2.0_925.RULE @@ -8,5 +8,5 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -license-info">Apache 2.0 -
http://www.apache.org/licenses/LICENSE-2.0. \ No newline at end of file +license-info">{{Apache 2.0
+
http://www.apache.org/licenses/LICENSE-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_926.RULE b/src/licensedcode/data/rules/apache-2.0_926.RULE index ba27178d9a..9e7a08994a 100644 --- a/src/licensedcode/data/rules/apache-2.0_926.RULE +++ b/src/licensedcode/data/rules/apache-2.0_926.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -governed by the Apache License version 2.0 \ No newline at end of file +governed by the {{Apache License version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_927.RULE b/src/licensedcode/data/rules/apache-2.0_927.RULE index c17e6cd145..0898b6fe86 100644 --- a/src/licensedcode/data/rules/apache-2.0_927.RULE +++ b/src/licensedcode/data/rules/apache-2.0_927.RULE @@ -7,6 +7,6 @@ referenced_filenames: notes: Seen in https://github.com/swagger-api/swagger-codegen/blob/ca9a00261f08f024dd19fa45c9ff2098fed67451/modules/swagger-codegen/src/main/java/io/swagger/codegen/DefaultGenerator.java#L6980 --- -* The following code adds default LICENSE (Apache-2.0) for all generators +* The following code adds default LICENSE ({{Apache-2.0}}) for all generators * To use license other than Apache2.0, update the following file: * modules/swagger-codegen/src/main/resources/_common/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_930.RULE b/src/licensedcode/data/rules/apache-2.0_930.RULE index 9f2147d9e2..22dfcd22d0 100644 --- a/src/licensedcode/data/rules/apache-2.0_930.RULE +++ b/src/licensedcode/data/rules/apache-2.0_930.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -available under the Apache-2 license. See the top-level LICENSE file for more details \ No newline at end of file +available under the {{Apache-2 license}}. See the top-level LICENSE file for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_931.RULE b/src/licensedcode/data/rules/apache-2.0_931.RULE index 42fef953d5..85ba5483a4 100644 --- a/src/licensedcode/data/rules/apache-2.0_931.RULE +++ b/src/licensedcode/data/rules/apache-2.0_931.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/apache-2.0_933.RULE b/src/licensedcode/data/rules/apache-2.0_933.RULE index 93b3c592a5..c3fcaa505f 100644 --- a/src/licensedcode/data/rules/apache-2.0_933.RULE +++ b/src/licensedcode/data/rules/apache-2.0_933.RULE @@ -5,4 +5,4 @@ relevance: 100 --- LICENSE -This program is licensed under the Apache License 2.0. \ No newline at end of file +This program is licensed under the {{Apache License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_934.RULE b/src/licensedcode/data/rules/apache-2.0_934.RULE index 453be12dac..a0fb53a944 100644 --- a/src/licensedcode/data/rules/apache-2.0_934.RULE +++ b/src/licensedcode/data/rules/apache-2.0_934.RULE @@ -11,4 +11,4 @@ LICENSE This program is licensed under the {{Apache License 2.0}}. This means you may use this program in any project. You are allowed to modify the program as you like. -For further details take a look at {{LICENSE.txt}}. \ No newline at end of file +For further details take a look at {{LICENSE.txt}}. diff --git a/src/licensedcode/data/rules/apache-2.0_935.RULE b/src/licensedcode/data/rules/apache-2.0_935.RULE index 7181eea507..c115abd34e 100644 --- a/src/licensedcode/data/rules/apache-2.0_935.RULE +++ b/src/licensedcode/data/rules/apache-2.0_935.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache Software License (http://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file +License: {{Apache Software License}} (http://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_938.RULE b/src/licensedcode/data/rules/apache-2.0_938.RULE index 40f7429e33..bce4d31b86 100644 --- a/src/licensedcode/data/rules/apache-2.0_938.RULE +++ b/src/licensedcode/data/rules/apache-2.0_938.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -under the Apache license, v2 (see LICENSE.txt) \ No newline at end of file +under the {{Apache license, v2}} (see LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_939.RULE b/src/licensedcode/data/rules/apache-2.0_939.RULE index b93043ca47..4d1d2fed92 100644 --- a/src/licensedcode/data/rules/apache-2.0_939.RULE +++ b/src/licensedcode/data/rules/apache-2.0_939.RULE @@ -3,14 +3,14 @@ license_expression: apache-2.0 is_license_notice: yes relevance: 99 minimum_coverage: 85 +referenced_filenames: + - license notes: Seen in https://github.com/SparkPost/gosparkpost/blob/5b781faf9f19ed7dbcb7f604c83dec1d0bb9087b/LICENSE ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.html -referenced_filenames: - - license --- -Licensed under the Apache License, Version 2.0 (the "License"). +{{Licensed under the Apache License, Version 2.0 (the "License}}"). You may not use this software except in compliance with the License. A copy of the License is located at @@ -20,4 +20,4 @@ http://www.apache.org/licenses/LICENSE-2.0.html or in the "license" file accompanying this software. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific -language governing permissions and limitations under the License. +language governing permissions and limitations under the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_940.RULE b/src/licensedcode/data/rules/apache-2.0_940.RULE index 4faed30453..8a1b9ddbb2 100644 --- a/src/licensedcode/data/rules/apache-2.0_940.RULE +++ b/src/licensedcode/data/rules/apache-2.0_940.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The code is published under an Apache license. \ No newline at end of file +The code is published under an {{Apache license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_941.RULE b/src/licensedcode/data/rules/apache-2.0_941.RULE index f4c48da611..e324975e2a 100644 --- a/src/licensedcode/data/rules/apache-2.0_941.RULE +++ b/src/licensedcode/data/rules/apache-2.0_941.RULE @@ -1,6 +1,7 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/apache-2.0_942.RULE b/src/licensedcode/data/rules/apache-2.0_942.RULE index a2a0af8971..f1e80139f4 100644 --- a/src/licensedcode/data/rules/apache-2.0_942.RULE +++ b/src/licensedcode/data/rules/apache-2.0_942.RULE @@ -1,6 +1,7 @@ --- license_expression: apache-2.0 -is_license_reference: yes +is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/apache-2.0_944.RULE b/src/licensedcode/data/rules/apache-2.0_944.RULE index 8b8e834547..57f59ddfaa 100644 --- a/src/licensedcode/data/rules/apache-2.0_944.RULE +++ b/src/licensedcode/data/rules/apache-2.0_944.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Licensed under Apache License v2.0. See the file "LICENSE" for more information. \ No newline at end of file +Licensed under {{Apache License v2.0}}. See the file "LICENSE" for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_945.RULE b/src/licensedcode/data/rules/apache-2.0_945.RULE index f3916c6092..f74c8be83a 100644 --- a/src/licensedcode/data/rules/apache-2.0_945.RULE +++ b/src/licensedcode/data/rules/apache-2.0_945.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems a full copy of the Apache 2.0 can be found at +On Debian systems a full copy of the {{Apache 2.0}} can be found at /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_946.RULE b/src/licensedcode/data/rules/apache-2.0_946.RULE index e0fc4c648e..9daf8dff73 100644 --- a/src/licensedcode/data/rules/apache-2.0_946.RULE +++ b/src/licensedcode/data/rules/apache-2.0_946.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -used under the Apache License, Version 2.0. \ No newline at end of file +used under the {{Apache License, Version 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_947.RULE b/src/licensedcode/data/rules/apache-2.0_947.RULE index cf6cfe45d2..38b31d6cdb 100644 --- a/src/licensedcode/data/rules/apache-2.0_947.RULE +++ b/src/licensedcode/data/rules/apache-2.0_947.RULE @@ -6,6 +6,6 @@ referenced_filenames: notes: the inbound == outbound CLA is already built-in in the Apache license. --- -License -[Apache-2.0](LICENSE). By providing a contribution, you agree the contribution is licensed under Apache-2.0. +{{License +[Apache-2.0}}](LICENSE). By providing a contribution, you agree the contribution is licensed under {{Apache-2.0}}. This code is provided as-is with no warranty. Use at your own risk. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_948.RULE b/src/licensedcode/data/rules/apache-2.0_948.RULE index a2718a4186..54442df9fc 100644 --- a/src/licensedcode/data/rules/apache-2.0_948.RULE +++ b/src/licensedcode/data/rules/apache-2.0_948.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems a copy of the Apache License, Version 2.0 can be +On Debian systems a copy of the {{Apache License, Version 2.0}} can be found in /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_949.RULE b/src/licensedcode/data/rules/apache-2.0_949.RULE index aec8fdc5d5..060486b276 100644 --- a/src/licensedcode/data/rules/apache-2.0_949.RULE +++ b/src/licensedcode/data/rules/apache-2.0_949.RULE @@ -7,7 +7,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -19,5 +19,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. . - On Debian systems a copy of the Apache License, Version 2.0 can be + On Debian systems a copy of the {{Apache License, Version 2.0}} can be found in /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_950.RULE b/src/licensedcode/data/rules/apache-2.0_950.RULE index 594d6baaa2..32b31614ee 100644 --- a/src/licensedcode/data/rules/apache-2.0_950.RULE +++ b/src/licensedcode/data/rules/apache-2.0_950.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems, the full text of the Apache License, Version 2.0 can be +On Debian systems, the full text of the {{Apache License, Version 2.0}} can be found at /usr/share/common-licenses/Apache-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_951.RULE b/src/licensedcode/data/rules/apache-2.0_951.RULE index 4edf690bf4..235a6200e2 100644 --- a/src/licensedcode/data/rules/apache-2.0_951.RULE +++ b/src/licensedcode/data/rules/apache-2.0_951.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -19,5 +19,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. . - On Debian systems, the full text of the Apache License, Version 2.0 can be + On Debian systems, the full text of the {{Apache License, Version 2.0}} can be found at /usr/share/common-licenses/Apache-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_952.RULE b/src/licensedcode/data/rules/apache-2.0_952.RULE index 42558e8b02..9660841fc1 100644 --- a/src/licensedcode/data/rules/apache-2.0_952.RULE +++ b/src/licensedcode/data/rules/apache-2.0_952.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian systems, the full text of the Apache License, Version 2.0 can be +On Debian systems, the full text of the {{Apache License, Version 2.0}} can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_953.RULE b/src/licensedcode/data/rules/apache-2.0_953.RULE index 1e07e6355c..d4302fb843 100644 --- a/src/licensedcode/data/rules/apache-2.0_953.RULE +++ b/src/licensedcode/data/rules/apache-2.0_953.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Free software: Apache Software License 2.0 \ No newline at end of file +Free software: {{Apache Software License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_954.RULE b/src/licensedcode/data/rules/apache-2.0_954.RULE index 69a1833f5d..74ec221f9d 100644 --- a/src/licensedcode/data/rules/apache-2.0_954.RULE +++ b/src/licensedcode/data/rules/apache-2.0_954.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -License Free software: Apache Software License 2.0 \ No newline at end of file +License Free software: {{Apache Software License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_955.RULE b/src/licensedcode/data/rules/apache-2.0_955.RULE index 0d76af8c0c..1e196b6680 100644 --- a/src/licensedcode/data/rules/apache-2.0_955.RULE +++ b/src/licensedcode/data/rules/apache-2.0_955.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -licensed under the Apache software license. \ No newline at end of file +licensed under the {{Apache software license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_956.RULE b/src/licensedcode/data/rules/apache-2.0_956.RULE index 5d7ea007c2..23cae2f0ff 100644 --- a/src/licensedcode/data/rules/apache-2.0_956.RULE +++ b/src/licensedcode/data/rules/apache-2.0_956.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Apache software license. See Apache Software License version 2.0 \ No newline at end of file +licensed under the {{Apache software license}}. See {{Apache Software License version 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_957.RULE b/src/licensedcode/data/rules/apache-2.0_957.RULE index 3c8f3195df..730c122d71 100644 --- a/src/licensedcode/data/rules/apache-2.0_957.RULE +++ b/src/licensedcode/data/rules/apache-2.0_957.RULE @@ -7,10 +7,10 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed to the Apache Software Foundation (ASF) under one or more contributor +{{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under - the Apache License, Version 2.0 (the "License"); you may not use this file + the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed diff --git a/src/licensedcode/data/rules/apache-2.0_958.RULE b/src/licensedcode/data/rules/apache-2.0_958.RULE index 13a260f0d5..f3d2588437 100644 --- a/src/licensedcode/data/rules/apache-2.0_958.RULE +++ b/src/licensedcode/data/rules/apache-2.0_958.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed to Apereo under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Apereo licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at the following location: +Licensed to Apereo under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Apereo licenses this file to you under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at the following location: http://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_959.RULE b/src/licensedcode/data/rules/apache-2.0_959.RULE index 43ad27edf8..68f8de8971 100644 --- a/src/licensedcode/data/rules/apache-2.0_959.RULE +++ b/src/licensedcode/data/rules/apache-2.0_959.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Apache License, Version 2.0 +{{Apache License, Version 2.0}} You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_960.RULE b/src/licensedcode/data/rules/apache-2.0_960.RULE index a966e11dd0..6675692ba6 100644 --- a/src/licensedcode/data/rules/apache-2.0_960.RULE +++ b/src/licensedcode/data/rules/apache-2.0_960.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software may be distributed under the terms of the Apache 2.0 license \ No newline at end of file +This software may be distributed under the terms of the {{Apache 2.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_961.RULE b/src/licensedcode/data/rules/apache-2.0_961.RULE index af8d65a56f..86a1f106a3 100644 --- a/src/licensedcode/data/rules/apache-2.0_961.RULE +++ b/src/licensedcode/data/rules/apache-2.0_961.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"). You +{{Licensed under the Apache License, Version 2.0 (the "License}}"). You may not use this file except in compliance with the License. A copy of the License is Xlocated at diff --git a/src/licensedcode/data/rules/apache-2.0_962.RULE b/src/licensedcode/data/rules/apache-2.0_962.RULE index 78326b72ed..da11442074 100644 --- a/src/licensedcode/data/rules/apache-2.0_962.RULE +++ b/src/licensedcode/data/rules/apache-2.0_962.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- License -This project is licensed under the Apache-2.0 -license (http://www.apache.org/licenses/LICENSE-2.0). \ No newline at end of file +This project is {{licensed under the Apache-2.0 +license}} (http://www.apache.org/licenses/LICENSE-2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_966.RULE b/src/licensedcode/data/rules/apache-2.0_966.RULE index cff0b002bb..a8c5c2d177 100644 --- a/src/licensedcode/data/rules/apache-2.0_966.RULE +++ b/src/licensedcode/data/rules/apache-2.0_966.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: the licenses of OpenCV changed from bsd to apache with 4.5.0 See https://opencv.org/opencv-is-to-change-the-license-to-apache-2/ --- -License Agreement For Open Source Computer Vision Library (Apache 2.0 License) \ No newline at end of file +License Agreement For Open Source Computer Vision Library ({{Apache 2.0 License}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_967.RULE b/src/licensedcode/data/rules/apache-2.0_967.RULE index b36250fd28..263c3305fe 100644 --- a/src/licensedcode/data/rules/apache-2.0_967.RULE +++ b/src/licensedcode/data/rules/apache-2.0_967.RULE @@ -8,7 +8,7 @@ ignorable_urls: -License Agreement For Open Source Computer Vision Library (Apache 2.0 License) +License Agreement For Open Source Computer Vision Library ({{Apache 2.0 License}}) http://opencv.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_97.RULE b/src/licensedcode/data/rules/apache-2.0_97.RULE index e54362ee4e..e0e2ccba3f 100644 --- a/src/licensedcode/data/rules/apache-2.0_97.RULE +++ b/src/licensedcode/data/rules/apache-2.0_97.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -DIST_LICENSE = 'Apache-2.0 \ No newline at end of file +DIST_{{LICENSE = 'Apache-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_971.RULE b/src/licensedcode/data/rules/apache-2.0_971.RULE index 9b5866fe5d..237455b8c2 100644 --- a/src/licensedcode/data/rules/apache-2.0_971.RULE +++ b/src/licensedcode/data/rules/apache-2.0_971.RULE @@ -7,10 +7,10 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed to the Apache Software Foundation (ASF) under one or more +{{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 + The ASF licenses this file to You under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -22,5 +22,5 @@ Licensed to the Apache Software Foundation (ASF) under one or more See the License for the specific language governing permissions and limitations under the License. . - On Debian systems, the full text of the Apache Software License version 2 can + On Debian systems, the full text of the {{Apache Software License version 2}} can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_972.RULE b/src/licensedcode/data/rules/apache-2.0_972.RULE index e4ca9289d3..46b579660a 100644 --- a/src/licensedcode/data/rules/apache-2.0_972.RULE +++ b/src/licensedcode/data/rules/apache-2.0_972.RULE @@ -8,7 +8,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -20,5 +20,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. . - On Debian GNU/Linux systems a copy of the Apache License, Version 2.0 can be + On Debian GNU/Linux systems a copy of the {{Apache License, Version 2.0}} can be found in /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_973.RULE b/src/licensedcode/data/rules/apache-2.0_973.RULE index 1fc984038b..a75e9a2472 100644 --- a/src/licensedcode/data/rules/apache-2.0_973.RULE +++ b/src/licensedcode/data/rules/apache-2.0_973.RULE @@ -7,8 +7,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache-2.0 - Licensed under the Apache License, Version 2.0 (the "License"); +{{License: Apache-2.0 + Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -20,6 +20,6 @@ License: Apache-2.0 See the License for the specific language governing permissions and limitations under the License. . - On Debian GNU/Linux systems, the full text of the Apache License, Version 2.0 can be + On Debian GNU/Linux systems, the full text of the {{Apache License, Version 2.0}} can be found in the file - `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file + `{{/usr/share/common-licenses/Apache-2.0}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_975.RULE b/src/licensedcode/data/rules/apache-2.0_975.RULE index 9b1acc2e29..8e3513e17d 100644 --- a/src/licensedcode/data/rules/apache-2.0_975.RULE +++ b/src/licensedcode/data/rules/apache-2.0_975.RULE @@ -12,7 +12,7 @@ ignorable_urls: The APL v2.0: - Licensed under the Apache License, Version 2.0 (the "License"); + {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -25,5 +25,5 @@ The APL v2.0: See the License for the specific language governing permissions and limitations under the License. -On Debian GNU/Linux systems, the complete text of the Apache License Version 2.0, +On Debian GNU/Linux systems, the complete text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_976.RULE b/src/licensedcode/data/rules/apache-2.0_976.RULE index 544d519006..8aaff8b2f9 100644 --- a/src/licensedcode/data/rules/apache-2.0_976.RULE +++ b/src/licensedcode/data/rules/apache-2.0_976.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -20,5 +20,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. . - On Debian GNU/Linux systems, the full text of the Apache License, Version 2.0 can be + On Debian GNU/Linux systems, the full text of the {{Apache License, Version 2.0}} can be found at /usr/share/common-licenses/Apache-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_977.RULE b/src/licensedcode/data/rules/apache-2.0_977.RULE index ced5395ab5..86e4b005c6 100644 --- a/src/licensedcode/data/rules/apache-2.0_977.RULE +++ b/src/licensedcode/data/rules/apache-2.0_977.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -* Licensed under the Apache License, Version 2.0 (the "License"); +* {{Licensed under the Apache License, Version 2.0 (the "License}}"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * diff --git a/src/licensedcode/data/rules/apache-2.0_978.RULE b/src/licensedcode/data/rules/apache-2.0_978.RULE index 9f2d5c0722..2987128f83 100644 --- a/src/licensedcode/data/rules/apache-2.0_978.RULE +++ b/src/licensedcode/data/rules/apache-2.0_978.RULE @@ -7,5 +7,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian GNU/Linux systems, the complete text of the Apache License Version 2.0, +On Debian GNU/Linux systems, the complete text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_979.RULE b/src/licensedcode/data/rules/apache-2.0_979.RULE index edaee9d60c..9c78f95058 100644 --- a/src/licensedcode/data/rules/apache-2.0_979.RULE +++ b/src/licensedcode/data/rules/apache-2.0_979.RULE @@ -5,6 +5,6 @@ relevance: 100 notes: Debian copyright file paragraph footer --- -License: Apache-2 - On Debian GNU/Linux systems the full text of the Apache License version 2 - can be found in the `/usr/share/common-licenses/Apache-2.0' file. \ No newline at end of file +{{License: Apache-2}} + On Debian GNU/Linux systems the full text of the {{Apache License version 2}} + can be found in the `{{/usr/share/common-licenses/Apache-2.0}}' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_980.RULE b/src/licensedcode/data/rules/apache-2.0_980.RULE index 1be46aa941..a5514c5b42 100644 --- a/src/licensedcode/data/rules/apache-2.0_980.RULE +++ b/src/licensedcode/data/rules/apache-2.0_980.RULE @@ -9,7 +9,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -22,5 +22,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. -On Debian GNU/Linux systems, the complete text of the Apache License Version 2.0, +On Debian GNU/Linux systems, the complete text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_981.RULE b/src/licensedcode/data/rules/apache-2.0_981.RULE index c5f3056aad..e40cf407eb 100644 --- a/src/licensedcode/data/rules/apache-2.0_981.RULE +++ b/src/licensedcode/data/rules/apache-2.0_981.RULE @@ -6,7 +6,7 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. . Unless required by applicable law or agreed to in writing, software @@ -15,6 +15,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. . -On Debian GNU/Linux systems, the full text of the Apache License version 2.0 +On Debian GNU/Linux systems, the full text of the {{Apache License version 2.0}} can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_983.RULE b/src/licensedcode/data/rules/apache-2.0_983.RULE index 2f51461d3d..92680861c0 100644 --- a/src/licensedcode/data/rules/apache-2.0_983.RULE +++ b/src/licensedcode/data/rules/apache-2.0_983.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian GNU/Linux systems a copy of the Apache License, Version 2.0 can be +On Debian GNU/Linux systems a copy of the {{Apache License, Version 2.0}} can be found in /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_984.RULE b/src/licensedcode/data/rules/apache-2.0_984.RULE index 7c1909299d..8db24ba718 100644 --- a/src/licensedcode/data/rules/apache-2.0_984.RULE +++ b/src/licensedcode/data/rules/apache-2.0_984.RULE @@ -9,7 +9,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -21,5 +21,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. -On Debian GNU/Linux systems, the complete text of Apache License, Version 2.0 +On Debian GNU/Linux systems, the complete text of {{Apache License, Version 2.0}} can be found in /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_985.RULE b/src/licensedcode/data/rules/apache-2.0_985.RULE index 0568311d0b..65c95a65f8 100644 --- a/src/licensedcode/data/rules/apache-2.0_985.RULE +++ b/src/licensedcode/data/rules/apache-2.0_985.RULE @@ -7,8 +7,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache-2.0 - Licensed under the Apache License, Version 2.0 (the "License"); +{{License: Apache-2.0 + Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -20,6 +20,6 @@ License: Apache-2.0 See the License for the specific language governing permissions and limitations under the License. . - On Debian GNU/Linux systems, the full text of the Apache License, Version 2.0 can be + On Debian GNU/Linux systems, the full text of the {{Apache License, Version 2.0}} can be found in the file - `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file + `{{/usr/share/common-licenses/Apache-2.0}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_986.RULE b/src/licensedcode/data/rules/apache-2.0_986.RULE index fa2212fc0d..ae09d27380 100644 --- a/src/licensedcode/data/rules/apache-2.0_986.RULE +++ b/src/licensedcode/data/rules/apache-2.0_986.RULE @@ -9,7 +9,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -22,5 +22,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. -On Debian GNU/Linux systems, the complete text of the Apache License Version 2.0, +On Debian GNU/Linux systems, the complete text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_987.RULE b/src/licensedcode/data/rules/apache-2.0_987.RULE index a2f15281d2..411d9bf63c 100644 --- a/src/licensedcode/data/rules/apache-2.0_987.RULE +++ b/src/licensedcode/data/rules/apache-2.0_987.RULE @@ -8,7 +8,7 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -20,5 +20,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. . - On Debian GNU/Linux systems, the complete text of the Apache version 2.0 license + On Debian GNU/Linux systems, the complete text of the {{Apache version 2.0 license}} can be found in "/usr/share/common-licenses/Apache-2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_988.RULE b/src/licensedcode/data/rules/apache-2.0_988.RULE index 5c2469e59c..5300a8f795 100644 --- a/src/licensedcode/data/rules/apache-2.0_988.RULE +++ b/src/licensedcode/data/rules/apache-2.0_988.RULE @@ -9,7 +9,7 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License"); +{{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -21,5 +21,5 @@ Licensed under the Apache License, Version 2.0 (the "License"); See the License for the specific language governing permissions and limitations under the License. -On Debian GNU/Linux systems, the complete text of Apache License, Version 2.0 +On Debian GNU/Linux systems, the complete text of {{Apache License, Version 2.0}} can be found in /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_989.RULE b/src/licensedcode/data/rules/apache-2.0_989.RULE index 2385477074..0531f79cd9 100644 --- a/src/licensedcode/data/rules/apache-2.0_989.RULE +++ b/src/licensedcode/data/rules/apache-2.0_989.RULE @@ -7,5 +7,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian GNU/Linux systems, the full text of the Apache Software License version 2 can +On Debian GNU/Linux systems, the full text of the {{Apache Software License version 2}} can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_99.RULE b/src/licensedcode/data/rules/apache-2.0_99.RULE index 3b3c606075..cbc6f49a2a 100644 --- a/src/licensedcode/data/rules/apache-2.0_99.RULE +++ b/src/licensedcode/data/rules/apache-2.0_99.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This project is licensed under the Apache 2.0 license \ No newline at end of file +This project is {{licensed under the Apache 2.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_990.RULE b/src/licensedcode/data/rules/apache-2.0_990.RULE index 688a51f6b5..10717b7e17 100644 --- a/src/licensedcode/data/rules/apache-2.0_990.RULE +++ b/src/licensedcode/data/rules/apache-2.0_990.RULE @@ -11,7 +11,7 @@ ignorable_urls: Comment: On Debian GNU/Linux systems the complete license text is available in /usr/share/common-licenses/Apache-2.0 License - # Licensed under the Apache License, Version 2.0 (the "License"); + # {{Licensed under the Apache License, Version 2.0 (the "License}}"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # diff --git a/src/licensedcode/data/rules/apache-2.0_991.RULE b/src/licensedcode/data/rules/apache-2.0_991.RULE index a1e72c472d..f9aec022ae 100644 --- a/src/licensedcode/data/rules/apache-2.0_991.RULE +++ b/src/licensedcode/data/rules/apache-2.0_991.RULE @@ -12,7 +12,7 @@ ignorable_urls: The APL v2.0: - Licensed under the Apache License, Version 2.0 (the "License"); + {{Licensed under the Apache License, Version 2.0 (the "License}}"); you may not use this file except in compliance with the License. You may obtain a copy of the License at @@ -25,5 +25,5 @@ The APL v2.0: See the License for the specific language governing permissions and limitations under the License. -On Debian GNU/Linux systems, the complete text of the Apache License Version 2.0, +On Debian GNU/Linux systems, the complete text of the {{Apache License Version 2.0}}, can be found in the /usr/share/common-licenses/Apache-2.0 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_992.RULE b/src/licensedcode/data/rules/apache-2.0_992.RULE index 3fc103e547..e58e6f82a0 100644 --- a/src/licensedcode/data/rules/apache-2.0_992.RULE +++ b/src/licensedcode/data/rules/apache-2.0_992.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian GNU/Linux systems, the complete text of the Apache version 2.0 license +On Debian GNU/Linux systems, the complete text of the {{Apache version 2.0 license}} can be found in "/usr/share/common-licenses/Apache-2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_993.RULE b/src/licensedcode/data/rules/apache-2.0_993.RULE index b98f52c9ab..eb87e64a3e 100644 --- a/src/licensedcode/data/rules/apache-2.0_993.RULE +++ b/src/licensedcode/data/rules/apache-2.0_993.RULE @@ -6,6 +6,6 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -License: Apache-2.0 +{{License: Apache-2.0}} On Debian GNU/Linux systems the complete text of the license can be found in /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_994.RULE b/src/licensedcode/data/rules/apache-2.0_994.RULE index 20d655bf66..f79d490c37 100644 --- a/src/licensedcode/data/rules/apache-2.0_994.RULE +++ b/src/licensedcode/data/rules/apache-2.0_994.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian GNU/Linux systems a full copy of the Apache 2.0 can be found at +On Debian GNU/Linux systems a full copy of the {{Apache 2.0}} can be found at /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_995.RULE b/src/licensedcode/data/rules/apache-2.0_995.RULE index a75a76d48d..7123272b06 100644 --- a/src/licensedcode/data/rules/apache-2.0_995.RULE +++ b/src/licensedcode/data/rules/apache-2.0_995.RULE @@ -8,8 +8,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -License: Apache-2.0 - Licensed under the Apache License, Version 2.0 (the "License"); +{{License: Apache-2.0 + Licensed under the Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -21,5 +21,5 @@ License: Apache-2.0 See the License for the specific language governing permissions and limitations under the License. . - On Debian GNU/Linux systems, the complete text of the Apache version 2.0 license + On Debian GNU/Linux systems, the complete text of the {{Apache version 2.0 license}} can be found in "/usr/share/common-licenses/Apache-2.0". \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_996.RULE b/src/licensedcode/data/rules/apache-2.0_996.RULE index 4cf9b1b9a6..1d5c26377b 100644 --- a/src/licensedcode/data/rules/apache-2.0_996.RULE +++ b/src/licensedcode/data/rules/apache-2.0_996.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian GNU/Linux systems, the full text of the Apache License, Version 2.0 can be +On Debian GNU/Linux systems, the full text of the {{Apache License, Version 2.0}} can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_997.RULE b/src/licensedcode/data/rules/apache-2.0_997.RULE index b852371ddd..de42a5da87 100644 --- a/src/licensedcode/data/rules/apache-2.0_997.RULE +++ b/src/licensedcode/data/rules/apache-2.0_997.RULE @@ -8,10 +8,10 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed to the Apache Software Foundation (ASF) under one or more +{{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 + The ASF licenses this file to You under the {{Apache License, Version 2.0}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . @@ -23,5 +23,5 @@ Licensed to the Apache Software Foundation (ASF) under one or more See the License for the specific language governing permissions and limitations under the License. . - On Debian GNU/Linux systems, the full text of the Apache Software License version 2 can + On Debian GNU/Linux systems, the full text of the {{Apache Software License version 2}} can be found in the file `/usr/share/common-licenses/Apache-2.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_998.RULE b/src/licensedcode/data/rules/apache-2.0_998.RULE index cdeda84510..235cb55513 100644 --- a/src/licensedcode/data/rules/apache-2.0_998.RULE +++ b/src/licensedcode/data/rules/apache-2.0_998.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/Apache-2.0 --- -On Debian GNU/Linux systems, the full text of the Apache License, Version 2.0 can be +On Debian GNU/Linux systems, the full text of the {{Apache License, Version 2.0}} can be found at /usr/share/common-licenses/Apache-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_999.RULE b/src/licensedcode/data/rules/apache-2.0_999.RULE index f1ff391fc5..e2ea3753a0 100644 --- a/src/licensedcode/data/rules/apache-2.0_999.RULE +++ b/src/licensedcode/data/rules/apache-2.0_999.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://spdx.org/licenses/Apache-2.0.html --- -license: https://spdx.org/licenses/Apache-2.0.html Apache-2.0 \ No newline at end of file +license: https://spdx.org/licenses/Apache-2.0.html {{Apache-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_distributed.RULE b/src/licensedcode/data/rules/apache-2.0_distributed.RULE index 797f179f0f..595f2beba4 100644 --- a/src/licensedcode/data/rules/apache-2.0_distributed.RULE +++ b/src/licensedcode/data/rules/apache-2.0_distributed.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This library is distributed under terms of Apache License 2.0 \ No newline at end of file +This library is distributed under terms of {{Apache License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_elastic.RULE b/src/licensedcode/data/rules/apache-2.0_elastic.RULE index 9964a322d1..cdaf5de045 100644 --- a/src/licensedcode/data/rules/apache-2.0_elastic.RULE +++ b/src/licensedcode/data/rules/apache-2.0_elastic.RULE @@ -13,7 +13,7 @@ ignorable_urls: * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you under - * the Apache License, Version 2.0 (the "License"); you may + * the {{Apache License, Version 2.0}} (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * diff --git a/src/licensedcode/data/rules/apache-2.0_governed.RULE b/src/licensedcode/data/rules/apache-2.0_governed.RULE index 8420f8f2c5..6e3a1c4d3c 100644 --- a/src/licensedcode/data/rules/apache-2.0_governed.RULE +++ b/src/licensedcode/data/rules/apache-2.0_governed.RULE @@ -5,4 +5,4 @@ referenced_filenames: - LICENSE --- -Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. \ No newline at end of file +Use of this source code is governed by the {{Apache 2.0 license}} that can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_jna1.RULE b/src/licensedcode/data/rules/apache-2.0_jna1.RULE index 3a3f26fc6a..3aff2ebbcd 100644 --- a/src/licensedcode/data/rules/apache-2.0_jna1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_jna1.RULE @@ -7,8 +7,8 @@ ignorable_urls: - http://www.apache.org/licenses/ --- -This copy of is licensed under the -Apache (Software) License, version 2.0 ("the License"). +This copy of is licensed under {{the +Apache (Software) License, version 2.0}} ("the License"). See the License for details about distribution rights, and the specific rights regarding derivate works. diff --git a/src/licensedcode/data/rules/apache-2.0_not_gpl.RULE b/src/licensedcode/data/rules/apache-2.0_not_gpl.RULE index 24de08da37..0666640644 100644 --- a/src/licensedcode/data/rules/apache-2.0_not_gpl.RULE +++ b/src/licensedcode/data/rules/apache-2.0_not_gpl.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -the Apache Software License \ No newline at end of file +the {{Apache Software License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_not_gpl_1.RULE b/src/licensedcode/data/rules/apache-2.0_not_gpl_1.RULE index 77136a7973..7cdecc6563 100644 --- a/src/licensedcode/data/rules/apache-2.0_not_gpl_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_not_gpl_1.RULE @@ -11,7 +11,7 @@ ignorable_urls: * See the notice.md file distributed with this work for additional * information regarding copyright ownership. * - * Licensed under the Apache License, Version 2.0 (the "License"); + * {{Licensed under the Apache License, Version 2.0 (the "License}}"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * diff --git a/src/licensedcode/data/rules/apache-2.0_notice_1.RULE b/src/licensedcode/data/rules/apache-2.0_notice_1.RULE index b31c975371..2f75060684 100644 --- a/src/licensedcode/data/rules/apache-2.0_notice_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_notice_1.RULE @@ -7,5 +7,5 @@ minimum_coverage: 80 ========================================================================= == NOTICE file corresponding to the section 4 d of == - == the Apache License, Version 2.0, == + == the {{Apache License, Version 2.0}}, == == in this case for the \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_1.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_1.RULE new file mode 100644 index 0000000000..1bc3c0a1fd --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_1.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/apache-2.0 +--- + +/usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_10.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_10.RULE new file mode 100644 index 0000000000..1be324b81c --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_10.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 90 +--- + +Licensed to the Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_11.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_11.RULE new file mode 100644 index 0000000000..bd4b01ff30 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_11.RULE @@ -0,0 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +is_required_phrase: yes +relevance: 100 +--- + +license> + Apache-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_12.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_12.RULE new file mode 100644 index 0000000000..28c83d613d --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_12.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 90 +--- + +ASL Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_13.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_13.RULE new file mode 100644 index 0000000000..fa3a5c6969 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_13.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +licensing and usage conditions are those of the Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_14.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_14.RULE new file mode 100644 index 0000000000..83862efd27 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_14.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Apache 2.0 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_15.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_15.RULE new file mode 100644 index 0000000000..7d061d116c --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_15.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +a copy of the Apache license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_16.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_16.RULE new file mode 100644 index 0000000000..addfb85f0f --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_16.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +License: Apache-2.0 Licensed under Apache License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_17.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_17.RULE new file mode 100644 index 0000000000..ffc1115141 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_17.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +On Debian systems, a copy of Apache license is available \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_18.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_18.RULE new file mode 100644 index 0000000000..ca24e21385 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_18.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +Licensed under Apache License, Version 2.0 (the "License \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_19.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_19.RULE new file mode 100644 index 0000000000..e35e9dc515 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_19.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +on debian systems text of the apache version 2 0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_2.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_2.RULE new file mode 100644 index 0000000000..debe3a6c17 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_2.RULE @@ -0,0 +1,9 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +License: Apache-2.0 + Licensed under the Apache License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_20.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_20.RULE new file mode 100644 index 0000000000..383c2539da --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_20.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +Use is subject to license terms. * * Licensed under Apache License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_21.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_21.RULE new file mode 100644 index 0000000000..565de5e056 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_21.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +Licensed to Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_22.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_22.RULE new file mode 100644 index 0000000000..f959fc2fe4 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_22.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under Apache 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_23.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_23.RULE new file mode 100644 index 0000000000..0d51cfde0b --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_23.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 99 +--- + +a copy of Apache license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_24.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_24.RULE new file mode 100644 index 0000000000..888d15a68b --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_24.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +is_required_phrase: yes +relevance: 100 +--- + +license apache 2 0 on debian systems complete text of the license can be found in usr share common licenses apache 2 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_25.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_25.RULE new file mode 100644 index 0000000000..4235f66155 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_25.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under apache license version 2 0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_26.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_26.RULE new file mode 100644 index 0000000000..f4d5ea5cd3 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_26.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +On Debian systems, text of Apache version 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_27.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_27.RULE new file mode 100644 index 0000000000..604043ffc4 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_27.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +License: Apache-2.0 On Debian systems complete text of license can be found in /usr/share/common-licenses/Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_28.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_28.RULE new file mode 100644 index 0000000000..6718d44c7f --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_28.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +licensing and usage conditions are those of Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_29.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_29.RULE new file mode 100644 index 0000000000..886b082fe7 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_29.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 90 +ignorable_authors: + - the Apache Software Foundation +--- + +developed by the Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_3.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_3.RULE new file mode 100644 index 0000000000..8d070f1f08 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_3.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +On Debian systems, a copy of the Apache license is available \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_30.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_30.RULE new file mode 100644 index 0000000000..9224ee5ede --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_30.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_authors: + - Apache Software Foundation +--- + +developed by Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_31.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_31.RULE new file mode 100644 index 0000000000..e31886ba8f --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_31.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_authors: + - the Apache Software Foundation +--- + +includes free software developed by the Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_32.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_32.RULE new file mode 100644 index 0000000000..f119f34121 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_32.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_authors: + - Apache Software Foundation +--- + +includes free software developed by Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_33.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_33.RULE new file mode 100644 index 0000000000..875cdaba71 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_33.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0 +--- + +licensed under the Apache License, Version 2.0 (http://apache.org/licenses/LICENSE-2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_34.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_34.RULE new file mode 100644 index 0000000000..7c08c9d092 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_34.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - http://apache.org/licenses/LICENSE-2.0 +--- + +licensed under Apache License, Version 2.0 (http://apache.org/licenses/LICENSE-2.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_35.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_35.RULE new file mode 100644 index 0000000000..9a67a42f57 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_35.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_clue: yes +relevance: 60 +--- + +trademarks of The Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_36.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_36.RULE new file mode 100644 index 0000000000..fefde0fe36 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_36.RULE @@ -0,0 +1,7 @@ +--- +license_expression: apache-2.0 +is_license_clue: yes +relevance: 60 +--- + +trademarks of Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_4.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_4.RULE new file mode 100644 index 0000000000..6d8f102689 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_4.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Apache Software License v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_40.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_40.RULE new file mode 100644 index 0000000000..a226ddaca0 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_40.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +software developed at The Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_41.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_41.RULE new file mode 100644 index 0000000000..f2923fa888 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_41.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +software developed at Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_42.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_42.RULE new file mode 100644 index 0000000000..0bef024e80 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_42.RULE @@ -0,0 +1,11 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_authors: + - The Apache Software Foundation +--- + +software developed by +The Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_43.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_43.RULE new file mode 100644 index 0000000000..cff277ee9a --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_43.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_authors: + - Apache Software Foundation +--- + +software developed by Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_44.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_44.RULE new file mode 100644 index 0000000000..03833b7c1f --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_44.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Includes software from other Apache Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_5.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_5.RULE new file mode 100644 index 0000000000..be02f4bddd --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_5.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Apache 2.0 open source license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_6.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_6.RULE new file mode 100644 index 0000000000..cebddb2f4c --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_6.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +is_required_phrase: yes +relevance: 90 +--- + +ASL 2.0 license diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_7.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_7.RULE new file mode 100644 index 0000000000..48c6573355 --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_7.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_tag: yes +is_required_phrase: yes +relevance: 100 +--- + +"licenses": [ + { + "type": "Apache-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_8.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_8.RULE new file mode 100644 index 0000000000..9aebd926bc --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: apache-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +On Debian systems, the text of the Apache version 2.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_required_phrase_9.RULE b/src/licensedcode/data/rules/apache-2.0_required_phrase_9.RULE new file mode 100644 index 0000000000..9ff83578fe --- /dev/null +++ b/src/licensedcode/data/rules/apache-2.0_required_phrase_9.RULE @@ -0,0 +1,10 @@ +--- +license_expression: apache-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +Use is subject to license terms. + * + * Licensed under the Apache License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_see_1.RULE b/src/licensedcode/data/rules/apache-2.0_see_1.RULE index 56e082cce6..fc655ec948 100644 --- a/src/licensedcode/data/rules/apache-2.0_see_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_see_1.RULE @@ -5,4 +5,4 @@ referenced_filenames: - LICENSE --- -Licensed under the terms of the Apache License 2.0. See LICENSE file at the project root for terms. \ No newline at end of file +Licensed under the terms of the {{Apache License 2.0}}. See LICENSE file at the project root for terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_short_mention.RULE b/src/licensedcode/data/rules/apache-2.0_short_mention.RULE index 746cf1f599..b7b94cb68b 100644 --- a/src/licensedcode/data/rules/apache-2.0_short_mention.RULE +++ b/src/licensedcode/data/rules/apache-2.0_short_mention.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://apache.org/licenses/LICENSE-2.0 --- -License: Apache License, Version 2.0 (http://apache.org/licenses/LICENSE-2.0) \ No newline at end of file +License: {{Apache License, Version 2.0}} (http://apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache-2.0_url_1.RULE b/src/licensedcode/data/rules/apache-2.0_url_1.RULE index 8059cec097..3441261dc6 100644 --- a/src/licensedcode/data/rules/apache-2.0_url_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_url_1.RULE @@ -1,6 +1,7 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_1.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_1.RULE index caedc486bb..573f8b8bb2 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_1.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_1.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License") and the Commons -Clause Restriction; you may not use this file except in compliance with the +Licensed under the {{Apache License, Version 2.0 (the "License") and the Commons +Clause Restriction;}} you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 @@ -33,4 +33,4 @@ Condition notice. For purposes of the clause above, the “Licensor” is , Inc., the “License” is the Apache License, Version 2.0, and the Software is the -software provided with this notice. \ No newline at end of file +software provided with this notice. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_10.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_10.RULE index 708b8feabd..3c4ac8f815 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_10.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_10.RULE @@ -6,4 +6,4 @@ relevance: 100 License -n8n is fair-code licensed under Apache 2.0 with Commons Clause \ No newline at end of file +n8n is fair-code licensed under {{Apache 2.0 with Commons Clause}} diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_11.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_11.RULE index eb46cfc17d..d715e13cb1 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_11.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_11.RULE @@ -6,4 +6,4 @@ relevance: 100 License - is fair-code licensed under Apache 2.0 with Commons Clause \ No newline at end of file + is fair-code licensed under {{Apache 2.0 with Commons Clause}} diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_12.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_12.RULE index 241744eba4..8cd759485c 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_12.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_12.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -fair-code licensed under Apache 2.0 with Commons Clause \ No newline at end of file +fair-code licensed under {{Apache 2.0 with Commons Clause}} diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_13.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_13.RULE index ea3e22e1f9..7ab8aa5e29 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_13.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_13.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under Apache 2.0 with Commons Clause \ No newline at end of file +licensed under {{Apache 2.0 with Commons Clause}} diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_14.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_14.RULE index 6cacd8652a..2d978ebccb 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_14.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_14.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License") and the Commons -Clause Restriction; you may not use this file except in compliance with the +Licensed under {{the Apache License, Version 2.0 (the "License") and the Commons +Clause Restriction;}} you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 @@ -17,4 +17,4 @@ A copy of the license is also reproduced below. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the -specific language governing permissions and limitations under the License. \ No newline at end of file +specific language governing permissions and limitations under the License. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_15.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_15.RULE index 91ac97e1a0..9022f25b91 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_15.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_15.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License") and the Commons -Clause Restriction; you may not use this file except in compliance with the +Licensed under the {{Apache License, Version 2.0 (the "License") and the Commons +Clause Restriction}}; you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 @@ -15,4 +15,4 @@ License. You may obtain a copy of the License at Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the -specific language governing permissions and limitations under the License. \ No newline at end of file +specific language governing permissions and limitations under the License. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_16.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_16.RULE index 5d1a6fb87a..251874bfee 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_16.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_16.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License") and the Commons -Clause Restriction; you may not use this file except in compliance with the +Licensed under the {{Apache License, Version 2.0 (the "License") and the Commons +Clause Restriction}}; you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 @@ -33,4 +33,4 @@ by the License must also include this Commons Cause License Condition notice. For purposes of the clause above, the “Licensor” is , the “License” is the Apache License, Version 2.0, and the Software is the -software provided with this notice. \ No newline at end of file +software provided with this notice. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_17.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_17.RULE index d85a68fd95..25d255d247 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_17.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_17.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License") and the Commons -Clause Restriction; you may not use this file except in compliance with the +Licensed under the {{Apache License, Version 2.0 (the "License") and the Commons +Clause Restriction;}} you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 @@ -31,4 +31,4 @@ by the License must also include this Commons Cause License Condition notice. For purposes of the clause above, the “Licensor” is , the “License” is the Apache License, Version 2.0, and the Software is the -software provided with this notice. \ No newline at end of file +software provided with this notice. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_18.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_18.RULE index 37d6443819..0d1cb241de 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_18.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_18.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License") and the Commons -Clause Restriction; you may not use this file except in compliance with the +Licensed under the {{Apache License, Version 2.0 (the "License") and the Commons +Clause Restriction;}} you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 @@ -17,4 +17,4 @@ A copy of the license is also reproduced below. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the -specific language governing permissions and limitations under the License. \ No newline at end of file +specific language governing permissions and limitations under the License. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_19.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_19.RULE index bd871ac8e4..9b1c78b3a6 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_19.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_19.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License") and the Commons -Clause Restriction; you may not use this file except in compliance with the +Licensed under the {{Apache License, Version 2.0 (the "License") and the Commons +Clause Restriction;}} you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 @@ -31,4 +31,4 @@ by the License must also include this Commons Cause License Condition notice. For purposes of the clause above, the “Licensor” is , the “License” is the Apache License, Version 2.0, and the Software is the -software provided with this notice. \ No newline at end of file +software provided with this notice. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_2.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_2.RULE index dd5253eb99..7ede35eb26 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_2.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_2.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -* This file is available under the Apache License, Version 2.0, - * with the Commons Clause restriction. \ No newline at end of file +* This file is available under the {{Apache License, Version 2.0, + * with the Commons Clause restriction.}} diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_20.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_20.RULE index e5427201bc..686572d6b8 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_20.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_20.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License") and the Commons -Clause Restriction; you may not use this file except in compliance with the +Licensed under the {{Apache License, Version 2.0 (the "License") and the Commons +Clause Restriction;}} you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 @@ -19,7 +19,7 @@ under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -### Commons Clause Restriction +### {{Commons Clause Restriction}} The Software is provided to you by the Licensor under the License, as defined below, subject to the following condition. Without limiting other conditions in @@ -33,4 +33,4 @@ by the License must also include this Commons Cause License Condition notice. For purposes of the clause above, the “Licensor” is , the “License” is the Apache License, Version 2.0, and the Software is the -software provided with this notice. \ No newline at end of file +software provided with this notice. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_21.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_21.RULE index 70d6d0915c..3986eccbd8 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_21.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_21.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License") modified with Commons Clause -Restriction; you may not use this file except in compliance with the License. You may obtain a +Licensed under the {{Apache License, Version 2.0 (the "License") modified with Commons Clause +Restriction;}} you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 @@ -32,4 +32,4 @@ License Condition notice. For purposes of the clause above, the “Licensor” is ., the “License” is the Apache License, Version 2.0, and the Software is the software provided with this -notice. \ No newline at end of file +notice. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_22.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_22.RULE index 893fa1dccf..800a083d04 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_22.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_22.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License") and the Commons -Clause Restriction; you may not use this file except in compliance with the +Licensed under the {{Apache License, Version 2.0 (the "License") and the Commons +Clause Restriction; }} you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 @@ -33,4 +33,4 @@ Condition notice. For purposes of the clause above, the “Licensor” is , Inc., the “License” is the Apache License, Version 2.0, and the Software is the -software provided with this notice. \ No newline at end of file +software provided with this notice. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_23.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_23.RULE index 6740e5fd60..3f210d297a 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_23.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_23.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License") modified with Commons Clause -Restriction; you may not use this file except in compliance with the License. You may obtain a +Licensed under the {{Apache License, Version 2.0 (the "License") modified with Commons Clause +Restriction; }} you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 @@ -32,4 +32,4 @@ License Condition notice. For purposes of the clause above, the “Licensor” is , the “License” is the Apache License, Version 2.0, and the Software is the software provided with this -notice. \ No newline at end of file +notice. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_24.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_24.RULE index f88ae56555..8b3e69649a 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_24.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_24.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License") and the Commons -Clause Restriction; you may not use this file except in compliance with the +Licensed under the {{Apache License, Version 2.0 (the "License") and the Commons +Clause Restriction}}; you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 @@ -15,4 +15,4 @@ License. You may obtain a copy of the License at Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the -specific language governing permissions and limitations under the License. \ No newline at end of file +specific language governing permissions and limitations under the License. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_3.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_3.RULE index a95a5741f9..044a5f8def 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_3.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_3.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licensed Apache 2.0 modified with Commons Clause \ No newline at end of file +licensed {{Apache 2.0 modified with Commons Clause}} diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_4.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_4.RULE index d7fef1fff2..2d70e5d234 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_4.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_4.RULE @@ -2,6 +2,8 @@ license_expression: apache-2.0 WITH commons-clause is_license_reference: yes relevance: 100 +referenced_filenames: + - LICENSE --- -Apache 2.0 with Commons Clause - see LICENSE \ No newline at end of file +{{Apache 2.0 with Commons Clause}} - see LICENSE diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_5.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_5.RULE index fcbd5e2470..24b0e5ff90 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_5.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_5.RULE @@ -1,7 +1,8 @@ --- license_expression: apache-2.0 WITH commons-clause is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Apache 2.0 with Commons Clause \ No newline at end of file +Apache 2.0 with Commons Clause diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_6.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_6.RULE index 5d0c2e0ad9..7f96b498f4 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_6.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_6.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License") modified with Commons Clause -Restriction; you may not use this file except in compliance with the License. You may obtain a +Licensed under the {{Apache License, Version 2.0 (the "License") modified with Commons Clause +Restriction; }} you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 @@ -17,7 +17,7 @@ License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -Commons Clause Restriction +{{Commons Clause Restriction}} The Software is provided to you by the Licensor under the License, as defined below, subject to the following condition. @@ -32,4 +32,4 @@ License Condition notice. For purposes of the clause above, the “Licensor” is , the “License” is the Apache License, Version 2.0, and the Software is the software provided with this -notice. \ No newline at end of file +notice. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_7.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_7.RULE index 9023e5b42e..43bd494e95 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_7.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_7.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0 --- -Licensed under the Apache License, Version 2.0 (the "License") modified with Commons Clause -Restriction; you may not use this file except in compliance with the License. You may obtain a +Licensed under the {{Apache License, Version 2.0 (the "License") modified with Commons Clause +Restriction;}} you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 @@ -32,4 +32,4 @@ License Condition notice. For purposes of the clause above, the “Licensor” is ., the “License” is the Apache License, Version 2.0, and the Software is the software provided with this -notice. \ No newline at end of file +notice. diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_8.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_8.RULE index 3a487fcc66..bce4cca968 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_8.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_8.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license: Apache 2.0 with Commons Clause \ No newline at end of file +license: {{Apache 2.0 with Commons Clause}} diff --git a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_9.RULE b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_9.RULE index f5164956a2..30e4d3d9cf 100644 --- a/src/licensedcode/data/rules/apache-2.0_with_commons-clause_9.RULE +++ b/src/licensedcode/data/rules/apache-2.0_with_commons-clause_9.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -“Commons Clause” License Condition v1.0 +{{“Commons Clause”}} License Condition v1.0 The Software is provided to you by the Licensor under the License, as defined below, subject to the following condition. @@ -14,4 +14,4 @@ For purposes of the foregoing, “Sell” means practicing any or all of the rig Software: n8n -License: Apache 2.0 \ No newline at end of file +{{License: Apache 2.0}} diff --git a/src/licensedcode/data/rules/apache_no-version_14.RULE b/src/licensedcode/data/rules/apache_no-version_14.RULE index 5b6106f429..33ab44cad9 100644 --- a/src/licensedcode/data/rules/apache_no-version_14.RULE +++ b/src/licensedcode/data/rules/apache_no-version_14.RULE @@ -6,4 +6,4 @@ notes: the actual version of the license is not provided but the most common one 2.0 --- -This script falls under the Apache License. \ No newline at end of file +This script falls under the {{Apache License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_15.RULE b/src/licensedcode/data/rules/apache_no-version_15.RULE index 7a265a49f4..b4190cd663 100644 --- a/src/licensedcode/data/rules/apache_no-version_15.RULE +++ b/src/licensedcode/data/rules/apache_no-version_15.RULE @@ -6,4 +6,4 @@ notes: the actual version of the license is not provided but the most common one 2.0 --- -falls under the Apache License. \ No newline at end of file +falls under the {{Apache License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_20.RULE b/src/licensedcode/data/rules/apache_no-version_20.RULE index eca95d58a3..2280f8271c 100644 --- a/src/licensedcode/data/rules/apache_no-version_20.RULE +++ b/src/licensedcode/data/rules/apache_no-version_20.RULE @@ -7,4 +7,4 @@ referenced_filenames: notes: No version specified. But v2.0 is the most common one. --- -falls under the Apache License as laid out in LICENSE.txt in this directory. \ No newline at end of file +falls under the {{Apache License}} as laid out in LICENSE.txt in this directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/apache_no-version_4.RULE b/src/licensedcode/data/rules/apache_no-version_4.RULE index 36451125f8..1f53ba7bbe 100644 --- a/src/licensedcode/data/rules/apache_no-version_4.RULE +++ b/src/licensedcode/data/rules/apache_no-version_4.RULE @@ -8,4 +8,4 @@ ignorable_urls: - http://www.apache.org/docs/LICENSE --- -This script falls under the Apache License. See http://www.apache.org/docs/LICENSE \ No newline at end of file +This script falls under the {{Apache License}}. See http://www.apache.org/docs/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/beautifulsoup4_mit2.RULE b/src/licensedcode/data/rules/beautifulsoup4_mit2.RULE index 7d27ad41cf..f5e252946e 100644 --- a/src/licensedcode/data/rules/beautifulsoup4_mit2.RULE +++ b/src/licensedcode/data/rules/beautifulsoup4_mit2.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -made available under the MIT license: \ No newline at end of file +made available {{under the MIT license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_1.RULE b/src/licensedcode/data/rules/boost-1.0_1.RULE index 209cd37d5f..e287f08cc2 100644 --- a/src/licensedcode/data/rules/boost-1.0_1.RULE +++ b/src/licensedcode/data/rules/boost-1.0_1.RULE @@ -8,5 +8,5 @@ ignorable_urls: - http://www.boost.org/LICENSE_1_0.txt --- -Distributed under the Boost Software License, Version 1.0. +Distributed under the {{Boost Software License, Version 1.0}}. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_10.RULE b/src/licensedcode/data/rules/boost-1.0_10.RULE index 719b7e888a..d85b181c80 100644 --- a/src/licensedcode/data/rules/boost-1.0_10.RULE +++ b/src/licensedcode/data/rules/boost-1.0_10.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE_1_0.txt --- -// Distributed under the Boost Software License, Version 1.0. \ No newline at end of file +// Distributed under the {{Boost Software License, Version 1.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_16.RULE b/src/licensedcode/data/rules/boost-1.0_16.RULE index 35f8de37eb..639cf8ded2 100644 --- a/src/licensedcode/data/rules/boost-1.0_16.RULE +++ b/src/licensedcode/data/rules/boost-1.0_16.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Boost Software License - Version 1.0 - August 17, 2003 \ No newline at end of file +{{Boost Software License - Version 1.0}} - August 17, 2003 \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_17.RULE b/src/licensedcode/data/rules/boost-1.0_17.RULE index c9289e3c5f..f60b3617c0 100644 --- a/src/licensedcode/data/rules/boost-1.0_17.RULE +++ b/src/licensedcode/data/rules/boost-1.0_17.RULE @@ -4,7 +4,7 @@ is_license_text: yes relevance: 100 --- -Boost Software License - Version 1.0 - August 17, 2003 +{{Boost Software License - Version 1.0}} - August 17, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by diff --git a/src/licensedcode/data/rules/boost-1.0_1_markup.RULE b/src/licensedcode/data/rules/boost-1.0_1_markup.RULE index eea70e5a1c..1554dffbc7 100644 --- a/src/licensedcode/data/rules/boost-1.0_1_markup.RULE +++ b/src/licensedcode/data/rules/boost-1.0_1_markup.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.boost.org/LICENSE_1_0.txt --- -Distributed under the Boost Software License, Version 1.0. (See accompanying +Distributed under the {{Boost Software License, Version 1.0}}. (See accompanying file LICENSE_1_0.txt or copy at "http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt ) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_21.RULE b/src/licensedcode/data/rules/boost-1.0_21.RULE index 5a58e2cb6f..df70802981 100644 --- a/src/licensedcode/data/rules/boost-1.0_21.RULE +++ b/src/licensedcode/data/rules/boost-1.0_21.RULE @@ -8,5 +8,5 @@ ignorable_urls: - http://www.boost.org/LICENSE_1_0.txt --- -Use, modification and distribution are subject to the Boost Software License, Version 1.0. +Use, modification and distribution are subject to the {{Boost Software License, Version 1.0}}. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_22.RULE b/src/licensedcode/data/rules/boost-1.0_22.RULE index 5e53bfe913..95c0502f64 100644 --- a/src/licensedcode/data/rules/boost-1.0_22.RULE +++ b/src/licensedcode/data/rules/boost-1.0_22.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Use, modification and distribution are subject to the Boost Software License, Version 1.0. \ No newline at end of file +Use, modification and distribution are subject to the {{Boost Software License, Version 1.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_24.RULE b/src/licensedcode/data/rules/boost-1.0_24.RULE index fd402133a2..1b5b29c8e8 100644 --- a/src/licensedcode/data/rules/boost-1.0_24.RULE +++ b/src/licensedcode/data/rules/boost-1.0_24.RULE @@ -4,7 +4,7 @@ is_license_text: yes relevance: 100 --- -Boost Software License - Version 1.0 +{{Boost Software License - Version 1.0}} Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by diff --git a/src/licensedcode/data/rules/boost-1.0_27.RULE b/src/licensedcode/data/rules/boost-1.0_27.RULE index 044790210d..014af50369 100644 --- a/src/licensedcode/data/rules/boost-1.0_27.RULE +++ b/src/licensedcode/data/rules/boost-1.0_27.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Open Source Software Licensed under the Boost Software License-Version 1.0 \ No newline at end of file +Open Source Software Licensed under the {{Boost Software License-Version 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_28.RULE b/src/licensedcode/data/rules/boost-1.0_28.RULE index 5d590a5254..95e5d6dd52 100644 --- a/src/licensedcode/data/rules/boost-1.0_28.RULE +++ b/src/licensedcode/data/rules/boost-1.0_28.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the Boost Software License-Version 1.0 \ No newline at end of file +Licensed under the {{Boost Software License-Version 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_29.RULE b/src/licensedcode/data/rules/boost-1.0_29.RULE index 15469e3d04..b32079a11d 100644 --- a/src/licensedcode/data/rules/boost-1.0_29.RULE +++ b/src/licensedcode/data/rules/boost-1.0_29.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the Boost Software License-Version 1.0 \ No newline at end of file +the {{Boost Software License-Version 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_3.RULE b/src/licensedcode/data/rules/boost-1.0_3.RULE index 4b627da930..4b9146784a 100644 --- a/src/licensedcode/data/rules/boost-1.0_3.RULE +++ b/src/licensedcode/data/rules/boost-1.0_3.RULE @@ -10,7 +10,7 @@ ignorable_urls: - http://www.boost.org/LICENSE_1_0.txt --- -// Distributed under the Boost Software License, Version 1.0. +// Distributed under the {{Boost Software License, Version 1.0}}. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) diff --git a/src/licensedcode/data/rules/boost-1.0_30.RULE b/src/licensedcode/data/rules/boost-1.0_30.RULE index 9fd045d05b..b58c055e05 100644 --- a/src/licensedcode/data/rules/boost-1.0_30.RULE +++ b/src/licensedcode/data/rules/boost-1.0_30.RULE @@ -4,9 +4,9 @@ is_license_text: yes relevance: 100 --- -Terms of the Boost Software License-Version 1.0: +Terms of the {{Boost Software License-Version 1.0}}: -Boost Software License - Version 1.0 - August 17th, 2003 +{{Boost Software License - Version 1.0}} - August 17th, 2003 Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following: diff --git a/src/licensedcode/data/rules/boost-1.0_32.RULE b/src/licensedcode/data/rules/boost-1.0_32.RULE index 84b62e7c0c..a4eb73228f 100644 --- a/src/licensedcode/data/rules/boost-1.0_32.RULE +++ b/src/licensedcode/data/rules/boost-1.0_32.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/boost_LICENSE.txt --- -License: Boost Software License 1.0 ([license/third_party/boost_LICENSE.txt][boost]) \ No newline at end of file +License: {{Boost Software License 1.0}} ([license/third_party/boost_LICENSE.txt][boost]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_33.RULE b/src/licensedcode/data/rules/boost-1.0_33.RULE index b1f9b6a1b0..8bff683a59 100644 --- a/src/licensedcode/data/rules/boost-1.0_33.RULE +++ b/src/licensedcode/data/rules/boost-1.0_33.RULE @@ -1,6 +1,7 @@ --- license_expression: boost-1.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/boost-1.0_35.RULE b/src/licensedcode/data/rules/boost-1.0_35.RULE index b0ae682e02..c242be80e9 100644 --- a/src/licensedcode/data/rules/boost-1.0_35.RULE +++ b/src/licensedcode/data/rules/boost-1.0_35.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the Boost Software License, Version 1.0. \ No newline at end of file +under the {{Boost Software License, Version 1.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_36.RULE b/src/licensedcode/data/rules/boost-1.0_36.RULE index 37db193dc7..eb26f4215e 100644 --- a/src/licensedcode/data/rules/boost-1.0_36.RULE +++ b/src/licensedcode/data/rules/boost-1.0_36.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.boost.org/LICENSE_1_0.txt --- -// Distributed under the Boost Software License, Version 1.0. +// Distributed under the {{Boost Software License, Version 1.0}}. // (See https://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_37.RULE b/src/licensedcode/data/rules/boost-1.0_37.RULE index 2d7885d62d..e737cc7d7f 100644 --- a/src/licensedcode/data/rules/boost-1.0_37.RULE +++ b/src/licensedcode/data/rules/boost-1.0_37.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.boost.org/LICENSE_1_0.txt --- -// Distributed under the Boost Software License, Version 1.0. +// Distributed under the {{Boost Software License, Version 1.0}}. // (See http://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_4.RULE b/src/licensedcode/data/rules/boost-1.0_4.RULE index 889311d3d5..bc6aaf5b88 100644 --- a/src/licensedcode/data/rules/boost-1.0_4.RULE +++ b/src/licensedcode/data/rules/boost-1.0_4.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Boost Software License 1.0 \ No newline at end of file +{{Boost Software License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_40.RULE b/src/licensedcode/data/rules/boost-1.0_40.RULE index 576aaca332..4e4863837b 100644 --- a/src/licensedcode/data/rules/boost-1.0_40.RULE +++ b/src/licensedcode/data/rules/boost-1.0_40.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -> Boost Software License 1.0 (MIT- Style) \ No newline at end of file +> {{Boost Software License 1.0}} (MIT- Style) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_41.RULE b/src/licensedcode/data/rules/boost-1.0_41.RULE index 3854fcfeb6..1433d5a5f5 100644 --- a/src/licensedcode/data/rules/boost-1.0_41.RULE +++ b/src/licensedcode/data/rules/boost-1.0_41.RULE @@ -8,4 +8,4 @@ ignorable_urls: - http://www.boost.org/LICENSE_1_0.txt --- -Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file +Distributed under the {{Boost Software License, Version 1.0}}. (See accompanying // file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_42.RULE b/src/licensedcode/data/rules/boost-1.0_42.RULE index 846b20ff47..33055306d5 100644 --- a/src/licensedcode/data/rules/boost-1.0_42.RULE +++ b/src/licensedcode/data/rules/boost-1.0_42.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE.txt \ No newline at end of file +Distributed under the {{Boost Software License, Version 1.0}}. (See accompanying // file LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_43.RULE b/src/licensedcode/data/rules/boost-1.0_43.RULE index 0802645421..d10feae267 100644 --- a/src/licensedcode/data/rules/boost-1.0_43.RULE +++ b/src/licensedcode/data/rules/boost-1.0_43.RULE @@ -9,6 +9,6 @@ ignorable_urls: - https://www.boost.org/LICENSE_1_0.txt --- -Distributed under the Boost Software License, Version 1.0. +Distributed under the {{Boost Software License, Version 1.0}}. (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_44.RULE b/src/licensedcode/data/rules/boost-1.0_44.RULE index a302aaaceb..2e63ef2be0 100644 --- a/src/licensedcode/data/rules/boost-1.0_44.RULE +++ b/src/licensedcode/data/rules/boost-1.0_44.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Boost Software License, Version 1.0. See Boost Software License . \ No newline at end of file +licensed under the {{Boost Software License, Version 1.0}}. See Boost Software License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_45.RULE b/src/licensedcode/data/rules/boost-1.0_45.RULE index 27b6274dec..43c64940cd 100644 --- a/src/licensedcode/data/rules/boost-1.0_45.RULE +++ b/src/licensedcode/data/rules/boost-1.0_45.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.boost.org/LICENSE_1_0.txt --- -Use modification and distribution are subject to the boost Software License, -Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt). \ No newline at end of file +Use modification and distribution are subject to the {{boost Software License, +Version 1.0}}. (See http://www.boost.org/LICENSE_1_0.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_46.RULE b/src/licensedcode/data/rules/boost-1.0_46.RULE index 3b8b53bd42..ff5bea120f 100644 --- a/src/licensedcode/data/rules/boost-1.0_46.RULE +++ b/src/licensedcode/data/rules/boost-1.0_46.RULE @@ -5,5 +5,5 @@ ignorable_urls: - https://www.boost.org/LICENSE_1_0.txt --- -Use modification and distribution are subject to the boost Software License, -Version 1.0. (See https://www.boost.org/LICENSE_1_0.txt). \ No newline at end of file +Use modification and distribution are subject to the {{boost Software License, +Version 1.0}}. (See https://www.boost.org/LICENSE_1_0.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_47.RULE b/src/licensedcode/data/rules/boost-1.0_47.RULE index cd95b8f230..7933c6e5c3 100644 --- a/src/licensedcode/data/rules/boost-1.0_47.RULE +++ b/src/licensedcode/data/rules/boost-1.0_47.RULE @@ -1,6 +1,7 @@ --- license_expression: boost-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/boost-1.0_48.RULE b/src/licensedcode/data/rules/boost-1.0_48.RULE index bee7b71f41..52cadc695a 100644 --- a/src/licensedcode/data/rules/boost-1.0_48.RULE +++ b/src/licensedcode/data/rules/boost-1.0_48.RULE @@ -1,6 +1,7 @@ --- license_expression: boost-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 50 --- diff --git a/src/licensedcode/data/rules/boost-1.0_49.RULE b/src/licensedcode/data/rules/boost-1.0_49.RULE index 0bcedd5daf..4947f2fcd8 100644 --- a/src/licensedcode/data/rules/boost-1.0_49.RULE +++ b/src/licensedcode/data/rules/boost-1.0_49.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: Boost Software License 1.0 \ No newline at end of file +name: {{Boost Software License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_50.RULE b/src/licensedcode/data/rules/boost-1.0_50.RULE index 460e6cfc95..0008c5ceea 100644 --- a/src/licensedcode/data/rules/boost-1.0_50.RULE +++ b/src/licensedcode/data/rules/boost-1.0_50.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -BSL-1.0 Boost Software License 1.0 \ No newline at end of file +{{BSL-1.0}} {{Boost Software License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_51.RULE b/src/licensedcode/data/rules/boost-1.0_51.RULE index f87de7a104..ef2abb7f65 100644 --- a/src/licensedcode/data/rules/boost-1.0_51.RULE +++ b/src/licensedcode/data/rules/boost-1.0_51.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Boost Software License 1.0 BSL-1.0 \ No newline at end of file +{{Boost Software License 1.0}} {{BSL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_52.RULE b/src/licensedcode/data/rules/boost-1.0_52.RULE index 2fe4686cbd..9c69c6f8bd 100644 --- a/src/licensedcode/data/rules/boost-1.0_52.RULE +++ b/src/licensedcode/data/rules/boost-1.0_52.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: Boost Software License 1.0 \ No newline at end of file +license: {{Boost Software License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_53.RULE b/src/licensedcode/data/rules/boost-1.0_53.RULE index 3f499bc69c..9d4617b072 100644 --- a/src/licensedcode/data/rules/boost-1.0_53.RULE +++ b/src/licensedcode/data/rules/boost-1.0_53.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: BSL-1.0 \ No newline at end of file +licenseId: {{BSL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_54.RULE b/src/licensedcode/data/rules/boost-1.0_54.RULE index 23f29d7f65..1fb8900b8a 100644 --- a/src/licensedcode/data/rules/boost-1.0_54.RULE +++ b/src/licensedcode/data/rules/boost-1.0_54.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -['BOOST', 'BSL-1.0'], \ No newline at end of file +['BOOST', '{{BSL-1.0}}'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_56.RULE b/src/licensedcode/data/rules/boost-1.0_56.RULE index 7185da51d1..6f06ac204a 100644 --- a/src/licensedcode/data/rules/boost-1.0_56.RULE +++ b/src/licensedcode/data/rules/boost-1.0_56.RULE @@ -9,4 +9,4 @@ ignorable_urls: --- Use, modification and distribution is subject to the " -Boost Software License, Version 1.0. (See accompanying file "LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_61.RULE b/src/licensedcode/data/rules/boost-1.0_61.RULE index ac53e70b2e..723a2ebf54 100644 --- a/src/licensedcode/data/rules/boost-1.0_61.RULE +++ b/src/licensedcode/data/rules/boost-1.0_61.RULE @@ -6,4 +6,4 @@ notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28c --- Use, modification and distribution is subject to -the Boost Software License, Version 1.0 \ No newline at end of file +the {{Boost Software License, Version 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_62.RULE b/src/licensedcode/data/rules/boost-1.0_62.RULE index bdade6bdc1..1e58b1c8c9 100644 --- a/src/licensedcode/data/rules/boost-1.0_62.RULE +++ b/src/licensedcode/data/rules/boost-1.0_62.RULE @@ -6,4 +6,4 @@ notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28c --- Use, modification and distribution is subject to - Boost Software License, Version 1.0 \ No newline at end of file + {{Boost Software License, Version 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_63.RULE b/src/licensedcode/data/rules/boost-1.0_63.RULE index 77c4568403..a1fd046ccd 100644 --- a/src/licensedcode/data/rules/boost-1.0_63.RULE +++ b/src/licensedcode/data/rules/boost-1.0_63.RULE @@ -6,4 +6,4 @@ notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28c --- Use, modification and distribution are subject to - Boost Software License, Version 1.0 \ No newline at end of file + {{Boost Software License, Version 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_64.RULE b/src/licensedcode/data/rules/boost-1.0_64.RULE index a2fc62aad8..54de82164d 100644 --- a/src/licensedcode/data/rules/boost-1.0_64.RULE +++ b/src/licensedcode/data/rules/boost-1.0_64.RULE @@ -9,6 +9,6 @@ ignorable_urls: --- Use, modification and distribution is subject to the -Boost Software License, Version 1.0. (See accompanying file +{{Boost Software License, Version 1.0}}. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_65.RULE b/src/licensedcode/data/rules/boost-1.0_65.RULE index 142a19042b..3f0f36ef47 100644 --- a/src/licensedcode/data/rules/boost-1.0_65.RULE +++ b/src/licensedcode/data/rules/boost-1.0_65.RULE @@ -9,6 +9,6 @@ ignorable_urls: --- Use, modification and distribution are subject to the -Boost Software License, Version 1.0. (See accompanying file +{{Boost Software License, Version 1.0}}. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_66.RULE b/src/licensedcode/data/rules/boost-1.0_66.RULE index 698a0fd78f..ac60f50b0c 100644 --- a/src/licensedcode/data/rules/boost-1.0_66.RULE +++ b/src/licensedcode/data/rules/boost-1.0_66.RULE @@ -8,6 +8,6 @@ ignorable_urls: - http://www.boost.org/LICENSE_1_0.txt --- -Subject to the Boost Software License, Version 1.0. (See accompanying file +Subject to the {{Boost Software License, Version 1.0}}. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_67.RULE b/src/licensedcode/data/rules/boost-1.0_67.RULE index 0ccbfd5173..baba91552c 100644 --- a/src/licensedcode/data/rules/boost-1.0_67.RULE +++ b/src/licensedcode/data/rules/boost-1.0_67.RULE @@ -8,9 +8,9 @@ ignorable_urls: - http://www.boost.org/LICENSE_1_0.txt --- -is subject to the Boost Software License, Version 1.0. (See accompanying file +is subject to the {{Boost Software License, Version 1.0}}. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -distributed under the Boost Software License Version 1.0 \ No newline at end of file +distributed under the {{Boost Software License Version 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_68.RULE b/src/licensedcode/data/rules/boost-1.0_68.RULE index eb3dd4e188..9660d082e8 100644 --- a/src/licensedcode/data/rules/boost-1.0_68.RULE +++ b/src/licensedcode/data/rules/boost-1.0_68.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp --- -distributed under Boost Software License Version 1.0 \ No newline at end of file +distributed under {{Boost Software License Version 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_69.RULE b/src/licensedcode/data/rules/boost-1.0_69.RULE index 7e1ee514a5..92d24bc09f 100644 --- a/src/licensedcode/data/rules/boost-1.0_69.RULE +++ b/src/licensedcode/data/rules/boost-1.0_69.RULE @@ -9,5 +9,5 @@ ignorable_urls: --- Subject to the " - "Boost Software License, Version 1.0. (See accompanying file " + "{{Boost Software License, Version 1.0}}. (See accompanying file " "LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt\ \ No newline at end of file diff --git a/src/licensedcode/data/rules/boost-1.0_8.RULE b/src/licensedcode/data/rules/boost-1.0_8.RULE index e0eb223c13..62ec02f8a9 100644 --- a/src/licensedcode/data/rules/boost-1.0_8.RULE +++ b/src/licensedcode/data/rules/boost-1.0_8.RULE @@ -3,7 +3,7 @@ license_expression: boost-1.0 is_license_text: yes --- -Distributed under the Boost Software License, Version 1.0. +Distributed under the {{Boost Software License, Version 1.0}}. Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_1.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_1.RULE index d140afc895..d0f0ceef58 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_1.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_1.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-2-clause-views is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-2-clause-freebsd_3.RULE b/src/licensedcode/data/rules/bsd-2-clause-freebsd_3.RULE index bbef8d2e80..1f0bccb5ab 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-freebsd_3.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-freebsd_3.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-2-clause-views is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_59.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_59.RULE index 9903f37517..d51033ebad 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_59.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_59.RULE @@ -1,8 +1,9 @@ --- license_expression: bsd-2-clause-views is_license_reference: yes +is_required_phrase: yes relevance: 100 notes: SPDX id --- -BSD-2-Clause-Views \ No newline at end of file +{{BSD-2-Clause-Views}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_60.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_60.RULE index 9e980a2c3b..4d1df472ac 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_60.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_60.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -BSD-2-Clause-FreeBSD BSD 2-Clause FreeBSD License \ No newline at end of file +{{BSD-2-Clause-FreeBSD}} {{BSD 2-Clause FreeBSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_61.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_61.RULE index 48afc03fa2..dff0d13c76 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_61.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_61.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -BSD 2-Clause FreeBSD License BSD-2-Clause-FreeBSD \ No newline at end of file +{{BSD 2-Clause FreeBSD License}} {{BSD-2-Clause-FreeBSD}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_62.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_62.RULE index ef686a5a0e..67326a3b5f 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_62.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_62.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-2-clause-views is_license_tag: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_63.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_63.RULE index 833aa648b3..be31bca61c 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_63.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_63.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : BSD-2-Clause-FreeBSD \ No newline at end of file +licenseid : {{BSD-2-Clause-FreeBSD}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_64.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_64.RULE index 095c8c066f..549ca13255 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_64.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_64.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : BSD 2-Clause FreeBSD License \ No newline at end of file +name : {{BSD 2-Clause FreeBSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_65.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_65.RULE index 2d25139ba9..0e757cc1ad 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_65.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_65.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: BSD 2-Clause FreeBSD License \ No newline at end of file +license: {{BSD 2-Clause FreeBSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_66.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_66.RULE index 4841dbd403..4b2441b5c2 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_66.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_66.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -BSD 2-Clause with views sentence \ No newline at end of file +{{BSD 2-Clause with views sentence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_67.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_67.RULE index 949a7f0e70..a274adc18f 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_67.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_67.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: BSD 2-Clause with views sentence \ No newline at end of file +name: {{BSD 2-Clause with views sentence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_68.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_68.RULE index 8efe2cf913..763d55dd19 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_68.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_68.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -BSD-2-Clause-Views BSD 2-Clause with views sentence \ No newline at end of file +{{BSD-2-Clause-Views}} {{BSD 2-Clause with views sentence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_69.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_69.RULE index cf6ec1c985..5457aa424b 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_69.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_69.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -BSD 2-Clause with views sentence BSD-2-Clause-Views \ No newline at end of file +{{BSD 2-Clause with views sentence}} {{BSD-2-Clause-Views}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_70.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_70.RULE index a39364cee6..99f3f364a2 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_70.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_70.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: BSD-2-Clause-Views \ No newline at end of file +license: {{BSD-2-Clause-Views}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_71.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_71.RULE index 1319f47536..7811097c48 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_71.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_71.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: BSD 2-Clause with views sentence \ No newline at end of file +license: {{BSD 2-Clause with views sentence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_72.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_72.RULE index 066bed786d..b037080f49 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_72.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_72.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: BSD-2-Clause-Views \ No newline at end of file +licenseId: {{BSD-2-Clause-Views}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-2-clause-views_74.RULE b/src/licensedcode/data/rules/bsd-2-clause-views_74.RULE index a11abe25b8..4dcd426a6a 100644 --- a/src/licensedcode/data/rules/bsd-2-clause-views_74.RULE +++ b/src/licensedcode/data/rules/bsd-2-clause-views_74.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/BSD-2-Clause-Views \ No newline at end of file +licenses.nuget.org/{{BSD-2-Clause-Views}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-intel_5.RULE b/src/licensedcode/data/rules/bsd-intel_5.RULE index 24de39bf6c..658c4529d4 100644 --- a/src/licensedcode/data/rules/bsd-intel_5.RULE +++ b/src/licensedcode/data/rules/bsd-intel_5.RULE @@ -3,7 +3,7 @@ license_expression: bsd-new is_license_text: yes --- -BSD LICENSE +{{BSD LICENSE}} Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new-link.RULE b/src/licensedcode/data/rules/bsd-new-link.RULE index 0ca3dfa164..81c5fb427d 100644 --- a/src/licensedcode/data/rules/bsd-new-link.RULE +++ b/src/licensedcode/data/rules/bsd-new-link.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. +the terms and conditions of {{the BSD License}} that accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php. -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +THE PROGRAM IS DISTRIBUTED UNDER {{THE BSD LICENSE}} ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new-link2.RULE b/src/licensedcode/data/rules/bsd-new-link2.RULE index ac63777ab7..e7f2b29c8a 100644 --- a/src/licensedcode/data/rules/bsd-new-link2.RULE +++ b/src/licensedcode/data/rules/bsd-new-link2.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- This program and the accompanying materials are licensed and made available under -the terms and conditions of the BSD License that accompanies this distribution. +the terms and conditions of {{the BSD License}} that accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license. -THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +THE PROGRAM IS DISTRIBUTED UNDER {{THE BSD LICENSE}} ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_0.RULE b/src/licensedcode/data/rules/bsd-new_0.RULE index ceadf3015f..547baf8701 100644 --- a/src/licensedcode/data/rules/bsd-new_0.RULE +++ b/src/licensedcode/data/rules/bsd-new_0.RULE @@ -6,4 +6,4 @@ relevance: 100 Licensing terms -This project is licensed under the terms of the Modified BSD License (also known as New or Revised or 3-Clause BSD), \ No newline at end of file +This project is licensed under the terms of the {{Modified BSD License}} (also known as {{New or Revised or 3-Clause BSD}}), \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_10.RULE b/src/licensedcode/data/rules/bsd-new_10.RULE index 7039f8f536..ba68884c18 100644 --- a/src/licensedcode/data/rules/bsd-new_10.RULE +++ b/src/licensedcode/data/rules/bsd-new_10.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-new_1000.RULE b/src/licensedcode/data/rules/bsd-new_1000.RULE index 85aa012df2..8959299148 100644 --- a/src/licensedcode/data/rules/bsd-new_1000.RULE +++ b/src/licensedcode/data/rules/bsd-new_1000.RULE @@ -6,6 +6,6 @@ referenced_filenames: - COPYING --- -* [This program is licensed under the "3-clause ('new') BSD License"] +* [This program is licensed under the "3-clause ('{{new') BSD License}}"] * Please see the file COPYING in the source * distribution of this software for license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1001.RULE b/src/licensedcode/data/rules/bsd-new_1001.RULE index c773589124..79a5e22f58 100644 --- a/src/licensedcode/data/rules/bsd-new_1001.RULE +++ b/src/licensedcode/data/rules/bsd-new_1001.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This program is licensed under the "3-clause ('new') BSD License"] \ No newline at end of file +This program is licensed under the "3-clause ('{{new') BSD License}}"] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1005.RULE b/src/licensedcode/data/rules/bsd-new_1005.RULE index 164b9fc35b..f9cb9b8661 100644 --- a/src/licensedcode/data/rules/bsd-new_1005.RULE +++ b/src/licensedcode/data/rules/bsd-new_1005.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.html --- -* This software program is licensed subject to the BSD License, +* This software program is licensed subject to {{the BSD License}}, * available at http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1017.RULE b/src/licensedcode/data/rules/bsd-new_1017.RULE index 318b7af446..7b0d761edb 100644 --- a/src/licensedcode/data/rules/bsd-new_1017.RULE +++ b/src/licensedcode/data/rules/bsd-new_1017.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license = '3-Clause BSD License' \ No newline at end of file +license = '{{3-Clause BSD License}}' \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1020.RULE b/src/licensedcode/data/rules/bsd-new_1020.RULE index 4fdcb1d870..a395515d78 100644 --- a/src/licensedcode/data/rules/bsd-new_1020.RULE +++ b/src/licensedcode/data/rules/bsd-new_1020.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -This software is provided under under the BSD 3-Clause License. +This software is provided under under the {{BSD 3-Clause License}}. See the accompanying LICENSE file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1021.RULE b/src/licensedcode/data/rules/bsd-new_1021.RULE index 74457fa2f8..acd105d66b 100644 --- a/src/licensedcode/data/rules/bsd-new_1021.RULE +++ b/src/licensedcode/data/rules/bsd-new_1021.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -provided under a BSD-style license \ No newline at end of file +provided under a {{BSD-style license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1025.RULE b/src/licensedcode/data/rules/bsd-new_1025.RULE index 68f73d510f..7238cd30f6 100644 --- a/src/licensedcode/data/rules/bsd-new_1025.RULE +++ b/src/licensedcode/data/rules/bsd-new_1025.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the 3-clause New BSD license. \ No newline at end of file +released under the 3-clause {{New BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1026.RULE b/src/licensedcode/data/rules/bsd-new_1026.RULE index f596576da9..218274c0c0 100644 --- a/src/licensedcode/data/rules/bsd-new_1026.RULE +++ b/src/licensedcode/data/rules/bsd-new_1026.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -released under the New BSD License: http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file +released under the {{New BSD License}}: http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1027.RULE b/src/licensedcode/data/rules/bsd-new_1027.RULE index 3bf2208605..7de0936dbc 100644 --- a/src/licensedcode/data/rules/bsd-new_1027.RULE +++ b/src/licensedcode/data/rules/bsd-new_1027.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -under the BSD license, as shown in that file. \ No newline at end of file +under {{the BSD license}}, as shown in that file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1028.RULE b/src/licensedcode/data/rules/bsd-new_1028.RULE index 6a58691107..35f8fda0bc 100644 --- a/src/licensedcode/data/rules/bsd-new_1028.RULE +++ b/src/licensedcode/data/rules/bsd-new_1028.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -This software is distributed under the terms of the BSD license. BSD LICENSE \ No newline at end of file +This software is distributed under the terms of {{the BSD license}}. {{BSD LICENSE}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_103.RULE b/src/licensedcode/data/rules/bsd-new_103.RULE index c73548e2a3..3bd8b3b9f2 100644 --- a/src/licensedcode/data/rules/bsd-new_103.RULE +++ b/src/licensedcode/data/rules/bsd-new_103.RULE @@ -1,7 +1,9 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -New BSD License (BSD) \ No newline at end of file +New BSD License +BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1032.RULE b/src/licensedcode/data/rules/bsd-new_1032.RULE index 725cfc0ad9..992431132a 100644 --- a/src/licensedcode/data/rules/bsd-new_1032.RULE +++ b/src/licensedcode/data/rules/bsd-new_1032.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- License -All contributions released under the `BSD 3-Clause License `_. \ No newline at end of file +All contributions released under the `{{BSD 3-Clause License}} `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1033.RULE b/src/licensedcode/data/rules/bsd-new_1033.RULE index e08ec350af..a059a39163 100644 --- a/src/licensedcode/data/rules/bsd-new_1033.RULE +++ b/src/licensedcode/data/rules/bsd-new_1033.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All contributions released under the `BSD 3-Clause License \ No newline at end of file +All contributions released under the `{{BSD 3-Clause License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1034.RULE b/src/licensedcode/data/rules/bsd-new_1034.RULE index 532810b810..71e7b55a20 100644 --- a/src/licensedcode/data/rules/bsd-new_1034.RULE +++ b/src/licensedcode/data/rules/bsd-new_1034.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/BSD-3-Clause --- -All contributions released under the `BSD 3-Clause License `_. \ No newline at end of file +All contributions released under the `{{BSD 3-Clause License}} `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1037.RULE b/src/licensedcode/data/rules/bsd-new_1037.RULE index 6264a89cb6..ce08229baa 100644 --- a/src/licensedcode/data/rules/bsd-new_1037.RULE +++ b/src/licensedcode/data/rules/bsd-new_1037.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the BSD-3-Clause GENERIC license \ No newline at end of file +licensed under the terms of the {{BSD-3-Clause}} GENERIC license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1039.RULE b/src/licensedcode/data/rules/bsd-new_1039.RULE index 39aecb6b03..915ed93ba7 100644 --- a/src/licensedcode/data/rules/bsd-new_1039.RULE +++ b/src/licensedcode/data/rules/bsd-new_1039.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -used under the BSD license \ No newline at end of file +used under {{the BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1043.RULE b/src/licensedcode/data/rules/bsd-new_1043.RULE index 5395e058af..c4cb3b22d6 100644 --- a/src/licensedcode/data/rules/bsd-new_1043.RULE +++ b/src/licensedcode/data/rules/bsd-new_1043.RULE @@ -7,5 +7,5 @@ referenced_filenames: - INHERIT_LICENSE_FROM_PACKAGE --- -This file is distributed under the same license as the - {{debian}} files of the {{p11-kit}} package. \ No newline at end of file +This file is distributed under the {{same license as the +debian files of the p11-kit}} package. diff --git a/src/licensedcode/data/rules/bsd-new_1044.RULE b/src/licensedcode/data/rules/bsd-new_1044.RULE index 77ac37c0d7..9a93d7c53c 100644 --- a/src/licensedcode/data/rules/bsd-new_1044.RULE +++ b/src/licensedcode/data/rules/bsd-new_1044.RULE @@ -6,5 +6,5 @@ referenced_filenames: - INHERIT_LICENSE_FROM_PACKAGE --- -License: {{same-as-rest-of-p11kit}} - This file is distributed under the same license as the {{p11-kit}} package. \ No newline at end of file +{{License: same-as-rest-of-p11kit}} + This file is {{distributed under the same license as the p11-kit}} package. diff --git a/src/licensedcode/data/rules/bsd-new_1051.RULE b/src/licensedcode/data/rules/bsd-new_1051.RULE index 5297d23479..312608c740 100644 --- a/src/licensedcode/data/rules/bsd-new_1051.RULE +++ b/src/licensedcode/data/rules/bsd-new_1051.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -distributed under the BSD licence. \ No newline at end of file +distributed under {{the BSD licence}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1053.RULE b/src/licensedcode/data/rules/bsd-new_1053.RULE index 4a3c30379a..972f8f075d 100644 --- a/src/licensedcode/data/rules/bsd-new_1053.RULE +++ b/src/licensedcode/data/rules/bsd-new_1053.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -code is licensed under the BSD 3-Clause License \ No newline at end of file +code is licensed under the {{BSD 3-Clause License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1054.RULE b/src/licensedcode/data/rules/bsd-new_1054.RULE index b6175d5b52..1e1369376e 100644 --- a/src/licensedcode/data/rules/bsd-new_1054.RULE +++ b/src/licensedcode/data/rules/bsd-new_1054.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -A copy of the BSD 3-Clause License is included in this file. \ No newline at end of file +A copy of the {{BSD 3-Clause License}} is included in this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1055.RULE b/src/licensedcode/data/rules/bsd-new_1055.RULE index 2b849ef60f..1efa1c98e5 100644 --- a/src/licensedcode/data/rules/bsd-new_1055.RULE +++ b/src/licensedcode/data/rules/bsd-new_1055.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -source code is licensed under the BSD 3-Clause License \ No newline at end of file +source code is licensed under the {{BSD 3-Clause License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1056.RULE b/src/licensedcode/data/rules/bsd-new_1056.RULE index 42084c5573..a3a6b2e658 100644 --- a/src/licensedcode/data/rules/bsd-new_1056.RULE +++ b/src/licensedcode/data/rules/bsd-new_1056.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -binary is licensed under the BSD 3-Clause License. \ No newline at end of file +binary is licensed under the {{BSD 3-Clause License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1057.RULE b/src/licensedcode/data/rules/bsd-new_1057.RULE index c51bb58e13..62d26b2b8c 100644 --- a/src/licensedcode/data/rules/bsd-new_1057.RULE +++ b/src/licensedcode/data/rules/bsd-new_1057.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the BSD license. See BSD License for CAS Java Client . \ No newline at end of file +licensed under {{the BSD license}}. See {{BSD License}} for CAS Java Client . \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1058.RULE b/src/licensedcode/data/rules/bsd-new_1058.RULE index d93e8865f4..a09a9c4630 100644 --- a/src/licensedcode/data/rules/bsd-new_1058.RULE +++ b/src/licensedcode/data/rules/bsd-new_1058.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -"Based on FreeBSD, which is BSD licensed \ No newline at end of file +"Based on FreeBSD, which is {{BSD licensed}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1059.RULE b/src/licensedcode/data/rules/bsd-new_1059.RULE index 77954db579..1e97776133 100644 --- a/src/licensedcode/data/rules/bsd-new_1059.RULE +++ b/src/licensedcode/data/rules/bsd-new_1059.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -licensed under the BSD license. See BSD License . \ No newline at end of file +licensed under {{the BSD license}}. See {{BSD License}} . \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_106.RULE b/src/licensedcode/data/rules/bsd-new_106.RULE index 005c3ce10c..992832def7 100644 --- a/src/licensedcode/data/rules/bsd-new_106.RULE +++ b/src/licensedcode/data/rules/bsd-new_106.RULE @@ -5,4 +5,4 @@ relevance: 99 minimum_coverage: 100 --- -uses a BSD license (DFSG-compatible) \ No newline at end of file +uses a {{BSD license}} (DFSG-compatible) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1061.RULE b/src/licensedcode/data/rules/bsd-new_1061.RULE index 0d75d72485..751f2debf3 100644 --- a/src/licensedcode/data/rules/bsd-new_1061.RULE +++ b/src/licensedcode/data/rules/bsd-new_1061.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -licensed under the BSD style license. See BSD License \ No newline at end of file +licensed under the {{BSD style license}}. See {{BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1062.RULE b/src/licensedcode/data/rules/bsd-new_1062.RULE index a89d6bb920..ed46267a59 100644 --- a/src/licensedcode/data/rules/bsd-new_1062.RULE +++ b/src/licensedcode/data/rules/bsd-new_1062.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -licensed under the new BSD license. See BSD License . \ No newline at end of file +licensed under the {{new BSD license}}. See {{BSD License}} . \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1065.RULE b/src/licensedcode/data/rules/bsd-new_1065.RULE index 8e59c1b2e3..29548825dc 100644 --- a/src/licensedcode/data/rules/bsd-new_1065.RULE +++ b/src/licensedcode/data/rules/bsd-new_1065.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -is licensed under the BSD-like license \ No newline at end of file +is licensed under the {{BSD-like license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1074.RULE b/src/licensedcode/data/rules/bsd-new_1074.RULE index 68adc962f5..6330f19c9d 100644 --- a/src/licensedcode/data/rules/bsd-new_1074.RULE +++ b/src/licensedcode/data/rules/bsd-new_1074.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -BSD 3 Clause License (BSD) \ No newline at end of file +{{BSD 3 Clause License}} (BSD) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1075.RULE b/src/licensedcode/data/rules/bsd-new_1075.RULE index 196c41d983..0ee318b212 100644 --- a/src/licensedcode/data/rules/bsd-new_1075.RULE +++ b/src/licensedcode/data/rules/bsd-new_1075.RULE @@ -6,5 +6,5 @@ referenced_filenames: --- you can redistribute it and/or modify -# it under the terms of the Revised BSD License; see LICENSE file for +# it under the terms of the {{Revised BSD License}}; see LICENSE file for # more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1076.RULE b/src/licensedcode/data/rules/bsd-new_1076.RULE index 8d04970d10..93cb1da851 100644 --- a/src/licensedcode/data/rules/bsd-new_1076.RULE +++ b/src/licensedcode/data/rules/bsd-new_1076.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -freely distributable under the terms of a new BSD licence. \ No newline at end of file +freely distributable under the terms of a new {{BSD licence}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1077.RULE b/src/licensedcode/data/rules/bsd-new_1077.RULE index 53f4050b61..f161597003 100644 --- a/src/licensedcode/data/rules/bsd-new_1077.RULE +++ b/src/licensedcode/data/rules/bsd-new_1077.RULE @@ -5,4 +5,4 @@ referenced_filenames: - LICENSE --- -available under the terms of the BSD 3-Clause License. Please check the LICENSE file for further details. \ No newline at end of file +available under the terms of the {{BSD 3-Clause License}}. Please check the LICENSE file for further details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1079.RULE b/src/licensedcode/data/rules/bsd-new_1079.RULE index b30e1b9649..cb2269b465 100644 --- a/src/licensedcode/data/rules/bsd-new_1079.RULE +++ b/src/licensedcode/data/rules/bsd-new_1079.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -distributed under a BSD license; see LICENSE.txt for more information. \ No newline at end of file +distributed under a {{BSD license}}; see LICENSE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_108.RULE b/src/licensedcode/data/rules/bsd-new_108.RULE index ed201ffd70..8f27a43229 100644 --- a/src/licensedcode/data/rules/bsd-new_108.RULE +++ b/src/licensedcode/data/rules/bsd-new_108.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/BSD --- -Full text of 3-clause BSD license can be found on Debian systems in +Full text of {{3-clause BSD license}} can be found on Debian systems in /usr/share/common-licenses/BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1080.RULE b/src/licensedcode/data/rules/bsd-new_1080.RULE index 1aaa7efc4f..380b4db354 100644 --- a/src/licensedcode/data/rules/bsd-new_1080.RULE +++ b/src/licensedcode/data/rules/bsd-new_1080.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://developer.yahoo.com/yui/license.html --- -Code licensed under the BSD License: +Code licensed under {{the BSD License}}: http://developer.yahoo.com/yui/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1081.RULE b/src/licensedcode/data/rules/bsd-new_1081.RULE index 21d1d3ddae..4e92f80342 100644 --- a/src/licensedcode/data/rules/bsd-new_1081.RULE +++ b/src/licensedcode/data/rules/bsd-new_1081.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -new, original code should be BSD licensed \ No newline at end of file +new, original code should be {{BSD licensed}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1084.RULE b/src/licensedcode/data/rules/bsd-new_1084.RULE index 7c947b50ab..589ffbcba8 100644 --- a/src/licensedcode/data/rules/bsd-new_1084.RULE +++ b/src/licensedcode/data/rules/bsd-new_1084.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: BSD 3-Clause "New" or "Revised" License \ No newline at end of file +name: {{BSD 3-Clause}} "New" or "Revised" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1085.RULE b/src/licensedcode/data/rules/bsd-new_1085.RULE index d57c77daa4..9670f5d308 100644 --- a/src/licensedcode/data/rules/bsd-new_1085.RULE +++ b/src/licensedcode/data/rules/bsd-new_1085.RULE @@ -1,10 +1,9 @@ --- license_expression: bsd-new is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 -minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -BSD 3-Clause "New" or "Revised" License BSD-3-Clause \ No newline at end of file +BSD 3-Clause "New" or "Revised" License (BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1086.RULE b/src/licensedcode/data/rules/bsd-new_1086.RULE index fdf6f0fd06..a5ba03d4c6 100644 --- a/src/licensedcode/data/rules/bsd-new_1086.RULE +++ b/src/licensedcode/data/rules/bsd-new_1086.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -['3 CLAUSE', 'BSD-3-Clause'], \ No newline at end of file +['3 CLAUSE', '{{BSD-3-Clause}}'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1087.RULE b/src/licensedcode/data/rules/bsd-new_1087.RULE index d675a99556..d808805f34 100644 --- a/src/licensedcode/data/rules/bsd-new_1087.RULE +++ b/src/licensedcode/data/rules/bsd-new_1087.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'BSD3': 'BSD-3-Clause', \ No newline at end of file +'BSD3': '{{BSD-3-Clause}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1088.RULE b/src/licensedcode/data/rules/bsd-new_1088.RULE index e9f0a98783..c88545e762 100644 --- a/src/licensedcode/data/rules/bsd-new_1088.RULE +++ b/src/licensedcode/data/rules/bsd-new_1088.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'BSD3-Clause': 'BSD-3-Clause', \ No newline at end of file +'BSD3-Clause': '{{BSD-3-Clause}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1089.RULE b/src/licensedcode/data/rules/bsd-new_1089.RULE index 60fae3a72f..0058566fab 100644 --- a/src/licensedcode/data/rules/bsd-new_1089.RULE +++ b/src/licensedcode/data/rules/bsd-new_1089.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'Standard 3-clause BSD': 'BSD-3-Clause', \ No newline at end of file +'Standard 3-clause BSD': '{{BSD-3-Clause}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_109.RULE b/src/licensedcode/data/rules/bsd-new_109.RULE index f582fe5c55..c956038f8d 100644 --- a/src/licensedcode/data/rules/bsd-new_109.RULE +++ b/src/licensedcode/data/rules/bsd-new_109.RULE @@ -5,4 +5,4 @@ relevance: 99 minimum_coverage: 100 --- -You can use, modify, distribute and sell this package under the terms of BSD license. \ No newline at end of file +You can use, modify, distribute and sell this package under the terms of {{BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1095.RULE b/src/licensedcode/data/rules/bsd-new_1095.RULE index 15609cd627..c84374b3d0 100644 --- a/src/licensedcode/data/rules/bsd-new_1095.RULE +++ b/src/licensedcode/data/rules/bsd-new_1095.RULE @@ -5,4 +5,4 @@ relevance: 99 --- License -This project is under BSD license. \ No newline at end of file +This project is under {{BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1098.RULE b/src/licensedcode/data/rules/bsd-new_1098.RULE index e450dbf16a..737069a732 100644 --- a/src/licensedcode/data/rules/bsd-new_1098.RULE +++ b/src/licensedcode/data/rules/bsd-new_1098.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under a "3-clause BSD" license \ No newline at end of file +available under a "{{3-clause BSD" license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_11.RULE b/src/licensedcode/data/rules/bsd-new_11.RULE index fa73ddaa97..754c777bbe 100644 --- a/src/licensedcode/data/rules/bsd-new_11.RULE +++ b/src/licensedcode/data/rules/bsd-new_11.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is distributed under the "modified BSD licence". \ No newline at end of file +This software is distributed under the "{{modified BSD licence}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1100.RULE b/src/licensedcode/data/rules/bsd-new_1100.RULE index cd87eff42e..19b1ba7b77 100644 --- a/src/licensedcode/data/rules/bsd-new_1100.RULE +++ b/src/licensedcode/data/rules/bsd-new_1100.RULE @@ -6,5 +6,5 @@ referenced_filenames: --- This is free software; you can redistribute it and/or -# modify it under the terms of the Revised BSD License; see LICENSE +# modify it under the terms of the {{Revised BSD License}}; see LICENSE # file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1101.RULE b/src/licensedcode/data/rules/bsd-new_1101.RULE index 0da856fa13..f5551d1dd9 100644 --- a/src/licensedcode/data/rules/bsd-new_1101.RULE +++ b/src/licensedcode/data/rules/bsd-new_1101.RULE @@ -6,5 +6,5 @@ referenced_filenames: --- free software; you can redistribute it and/or -# modify it under the terms of the Revised BSD License; see LICENSE +# modify it under the terms of the {{Revised BSD License}}; see LICENSE # file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1102.RULE b/src/licensedcode/data/rules/bsd-new_1102.RULE index a9439c374e..ef66874066 100644 --- a/src/licensedcode/data/rules/bsd-new_1102.RULE +++ b/src/licensedcode/data/rules/bsd-new_1102.RULE @@ -5,4 +5,4 @@ relevance: 99 notes: https://android.googlesource.com/platform/external/dng_sdk/+/refs/heads/master/README.version --- -License: BSD like License \ No newline at end of file +License: {{BSD like License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1105.RULE b/src/licensedcode/data/rules/bsd-new_1105.RULE index 53376f0841..326a648e2b 100644 --- a/src/licensedcode/data/rules/bsd-new_1105.RULE +++ b/src/licensedcode/data/rules/bsd-new_1105.RULE @@ -3,7 +3,7 @@ license_expression: bsd-new is_license_text: yes --- -{{THE "BSD" LICENCE}} +THE "BSD" LICENCE Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/bsd-new_1109.RULE b/src/licensedcode/data/rules/bsd-new_1109.RULE index f81493813d..ff25766bae 100644 --- a/src/licensedcode/data/rules/bsd-new_1109.RULE +++ b/src/licensedcode/data/rules/bsd-new_1109.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed openly under the BSD 3 Clause license. \ No newline at end of file +Licensed openly under the {{BSD 3 Clause license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1110.RULE b/src/licensedcode/data/rules/bsd-new_1110.RULE index 1f9626c6d7..9edb6136bc 100644 --- a/src/licensedcode/data/rules/bsd-new_1110.RULE +++ b/src/licensedcode/data/rules/bsd-new_1110.RULE @@ -1,11 +1,12 @@ --- license_expression: bsd-new is_license_text: yes +skip_for_required_phrase_generation: yes --- -{{Source Code License +Source Code License -Redistribution and use in source and binary forms}}, with or without modification, are permitted provided that the following conditions are met: +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, diff --git a/src/licensedcode/data/rules/bsd-new_1112.RULE b/src/licensedcode/data/rules/bsd-new_1112.RULE index cab764c76c..4cdbbd25d3 100644 --- a/src/licensedcode/data/rules/bsd-new_1112.RULE +++ b/src/licensedcode/data/rules/bsd-new_1112.RULE @@ -1,10 +1,11 @@ --- license_expression: bsd-new is_license_text: yes +skip_for_required_phrase_generation: yes --- -Software {{License -Redistribution and use in source and binary forms}}, with or without modification, are permitted provided that the following conditions are met: +Software License +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. diff --git a/src/licensedcode/data/rules/bsd-new_1115.RULE b/src/licensedcode/data/rules/bsd-new_1115.RULE index c0d2e513f8..6111f2ac0b 100644 --- a/src/licensedcode/data/rules/bsd-new_1115.RULE +++ b/src/licensedcode/data/rules/bsd-new_1115.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -licensed under a BSD-style license. \ No newline at end of file +licensed under a {{BSD-style license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1116.RULE b/src/licensedcode/data/rules/bsd-new_1116.RULE index 081e4ef607..363d6d2f0c 100644 --- a/src/licensedcode/data/rules/bsd-new_1116.RULE +++ b/src/licensedcode/data/rules/bsd-new_1116.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -For license terms, see BSD License \ No newline at end of file +For license terms, see {{BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1117.RULE b/src/licensedcode/data/rules/bsd-new_1117.RULE index 00637440a7..b90b3322e8 100644 --- a/src/licensedcode/data/rules/bsd-new_1117.RULE +++ b/src/licensedcode/data/rules/bsd-new_1117.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the BSD License for PostgreSQL JDBC Driver . \ No newline at end of file +licensed under {{the BSD License}} for PostgreSQL JDBC Driver . \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1118.RULE b/src/licensedcode/data/rules/bsd-new_1118.RULE index 02ce25c19f..906541f16a 100644 --- a/src/licensedcode/data/rules/bsd-new_1118.RULE +++ b/src/licensedcode/data/rules/bsd-new_1118.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-new is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -License terms appear in {{TCMalloc License}} . \ No newline at end of file +{{License terms appear in TCMalloc License}} diff --git a/src/licensedcode/data/rules/bsd-new_1119.RULE b/src/licensedcode/data/rules/bsd-new_1119.RULE index 6fed1fbca3..872d4ed193 100644 --- a/src/licensedcode/data/rules/bsd-new_1119.RULE +++ b/src/licensedcode/data/rules/bsd-new_1119.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-new is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -License terms appear in {{Yahoo! UI Library License}} . \ No newline at end of file +{{License terms appear in Yahoo! UI Library License}} diff --git a/src/licensedcode/data/rules/bsd-new_1120.RULE b/src/licensedcode/data/rules/bsd-new_1120.RULE index 109d416078..18b303f48d 100644 --- a/src/licensedcode/data/rules/bsd-new_1120.RULE +++ b/src/licensedcode/data/rules/bsd-new_1120.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -licensed under the BSD software license. See BSD License \ No newline at end of file +licensed under the BSD software license. See {{BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1124.RULE b/src/licensedcode/data/rules/bsd-new_1124.RULE index b579f641ee..be2b8ae4ab 100644 --- a/src/licensedcode/data/rules/bsd-new_1124.RULE +++ b/src/licensedcode/data/rules/bsd-new_1124.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -BSD License for PostgreSQL JDBC Driver \ No newline at end of file +{{BSD License}} for PostgreSQL JDBC Driver \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1126.RULE b/src/licensedcode/data/rules/bsd-new_1126.RULE index 8806b9cb22..36decc2748 100644 --- a/src/licensedcode/data/rules/bsd-new_1126.RULE +++ b/src/licensedcode/data/rules/bsd-new_1126.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -open source software, made available under a BSD license. \ No newline at end of file +open source software, made available under a {{BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1127.RULE b/src/licensedcode/data/rules/bsd-new_1127.RULE index 791fad4fbe..51fe71feed 100644 --- a/src/licensedcode/data/rules/bsd-new_1127.RULE +++ b/src/licensedcode/data/rules/bsd-new_1127.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -made available under a BSD license. \ No newline at end of file +made available under a {{BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1131.RULE b/src/licensedcode/data/rules/bsd-new_1131.RULE index d8bc2cd8f7..8deaebe2b0 100644 --- a/src/licensedcode/data/rules/bsd-new_1131.RULE +++ b/src/licensedcode/data/rules/bsd-new_1131.RULE @@ -3,4 +3,4 @@ license_expression: bsd-new is_license_reference: yes --- -BSD_licenses#3-clause_license_(%22BSD_License_2.0%22,_%22Revised_BSD_License%22,_%22New_BSD_License%22,_or_%22Modified_BSD_License%22) \ No newline at end of file +BSD_licenses#3-clause_license_(%22BSD_License_2.0%22,_%22Revised_{{BSD_License}}%22,_%22New_{{BSD_License}}%22,_or_%22Modified_{{BSD_License}}%22) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1133.RULE b/src/licensedcode/data/rules/bsd-new_1133.RULE index 96a1209c8e..7c02edaaed 100644 --- a/src/licensedcode/data/rules/bsd-new_1133.RULE +++ b/src/licensedcode/data/rules/bsd-new_1133.RULE @@ -3,4 +3,4 @@ license_expression: bsd-new is_license_reference: yes --- -(%22BSD_License_2.0%22,_%22Revised_BSD_License%22,_%22New_BSD_License%22,_or_%22Modified_BSD_License%22) \ No newline at end of file +(%22BSD_License_2.0%22,_%22Revised_{{BSD_License}}%22,_%22New_{{BSD_License}}%22,_or_%22Modified_{{BSD_License}}%22) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1137.RULE b/src/licensedcode/data/rules/bsd-new_1137.RULE index 60988e3c28..cf2566330a 100644 --- a/src/licensedcode/data/rules/bsd-new_1137.RULE +++ b/src/licensedcode/data/rules/bsd-new_1137.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-new is_license_tag: yes +is_required_phrase: yes relevance: 99 --- -{{licenses: bsd}} \ No newline at end of file +licenses/BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1138.RULE b/src/licensedcode/data/rules/bsd-new_1138.RULE index 7d28e27fca..5a88cd4837 100644 --- a/src/licensedcode/data/rules/bsd-new_1138.RULE +++ b/src/licensedcode/data/rules/bsd-new_1138.RULE @@ -5,4 +5,4 @@ ignorable_urls: - https://opensource.org/licenses/BSD-3-Clause --- -licensed under the BSD 3-Clause license, (BSD-3-Clause or https://opensource.org/licenses/BSD-3-Clause). \ No newline at end of file +licensed under the {{BSD 3-Clause}} {{license, (BSD-3-Clause}} or https://opensource.org/licenses/BSD-3-Clause). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1139.RULE b/src/licensedcode/data/rules/bsd-new_1139.RULE index 5333643337..5dd2c12c67 100644 --- a/src/licensedcode/data/rules/bsd-new_1139.RULE +++ b/src/licensedcode/data/rules/bsd-new_1139.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-new_1143.RULE b/src/licensedcode/data/rules/bsd-new_1143.RULE index cc359b8787..5a79e5c403 100644 --- a/src/licensedcode/data/rules/bsd-new_1143.RULE +++ b/src/licensedcode/data/rules/bsd-new_1143.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 99 --- -may be freely distributed under the terms of the BSD -license. For all licensing information, details, and documention: \ No newline at end of file +may be freely distributed under the terms of {{the BSD +license}}. For all licensing information, details, and documention: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1148.RULE b/src/licensedcode/data/rules/bsd-new_1148.RULE index 39f5e0336e..b2015228af 100644 --- a/src/licensedcode/data/rules/bsd-new_1148.RULE +++ b/src/licensedcode/data/rules/bsd-new_1148.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the following BSD 3-clause license: \ No newline at end of file +distributed under the following {{BSD 3-clause license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1149.RULE b/src/licensedcode/data/rules/bsd-new_1149.RULE index d731e10dc4..45daaa765f 100644 --- a/src/licensedcode/data/rules/bsd-new_1149.RULE +++ b/src/licensedcode/data/rules/bsd-new_1149.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -released under the terms of the BSD license. \ No newline at end of file +released under the terms of {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_114_6.RULE b/src/licensedcode/data/rules/bsd-new_114_6.RULE index 59017b4a84..5dbc1c007c 100644 --- a/src/licensedcode/data/rules/bsd-new_114_6.RULE +++ b/src/licensedcode/data/rules/bsd-new_114_6.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -Open source under the BSD License. \ No newline at end of file +Open source under {{the BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1150.RULE b/src/licensedcode/data/rules/bsd-new_1150.RULE index 89ef0ae90e..4d6f1c0ab4 100644 --- a/src/licensedcode/data/rules/bsd-new_1150.RULE +++ b/src/licensedcode/data/rules/bsd-new_1150.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://opensource.org/licenses/bsd-license.php --- -BSD License \ No newline at end of file +{{BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1151.RULE b/src/licensedcode/data/rules/bsd-new_1151.RULE index ea0cedfadc..4712129199 100644 --- a/src/licensedcode/data/rules/bsd-new_1151.RULE +++ b/src/licensedcode/data/rules/bsd-new_1151.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -BSD Style \ No newline at end of file +{{BSD Style \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1152.RULE b/src/licensedcode/data/rules/bsd-new_1152.RULE index ff57f264fb..565b6b7f50 100644 --- a/src/licensedcode/data/rules/bsd-new_1152.RULE +++ b/src/licensedcode/data/rules/bsd-new_1152.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://opensource.org/licenses/bsd-license.php --- -New BSD License \ No newline at end of file +{{New BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1153.RULE b/src/licensedcode/data/rules/bsd-new_1153.RULE index f87e4075fb..5dfe0ce6f6 100644 --- a/src/licensedcode/data/rules/bsd-new_1153.RULE +++ b/src/licensedcode/data/rules/bsd-new_1153.RULE @@ -7,4 +7,4 @@ ignorable_urls: - https://spdx.org/licenses/BSD-3-Clause --- -BSD-3-Clause \ No newline at end of file +{{BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1154.RULE b/src/licensedcode/data/rules/bsd-new_1154.RULE index 55f2dd65dc..522b404bb6 100644 --- a/src/licensedcode/data/rules/bsd-new_1154.RULE +++ b/src/licensedcode/data/rules/bsd-new_1154.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -New BSD License \ No newline at end of file +{{New BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1157.RULE b/src/licensedcode/data/rules/bsd-new_1157.RULE index 1cfc9f3602..797cdb662f 100644 --- a/src/licensedcode/data/rules/bsd-new_1157.RULE +++ b/src/licensedcode/data/rules/bsd-new_1157.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License information can be found in the LICENSE file. -Based on work by released under BSD License. \ No newline at end of file +Based on work by released under {{BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1158.RULE b/src/licensedcode/data/rules/bsd-new_1158.RULE index 0f40ae37e0..4725f9fda7 100644 --- a/src/licensedcode/data/rules/bsd-new_1158.RULE +++ b/src/licensedcode/data/rules/bsd-new_1158.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -released under BSD License. \ No newline at end of file +released under {{BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1159.RULE b/src/licensedcode/data/rules/bsd-new_1159.RULE index f66870f9da..32ed2234fb 100644 --- a/src/licensedcode/data/rules/bsd-new_1159.RULE +++ b/src/licensedcode/data/rules/bsd-new_1159.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -## License +## {{License -[BSD 3-Clause](http://opensource.org/licenses/BSD-3-Clause) license, as +[BSD 3-Clause}}](http://opensource.org/licenses/BSD-3-Clause) license, as [Go language](http://golang.org/LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_116.RULE b/src/licensedcode/data/rules/bsd-new_116.RULE index b5310a7936..de460196e7 100644 --- a/src/licensedcode/data/rules/bsd-new_116.RULE +++ b/src/licensedcode/data/rules/bsd-new_116.RULE @@ -6,4 +6,4 @@ minimum_coverage: 100 --- BSD: -The BSD license applies to all files in the directory \ No newline at end of file +{{The BSD license}} applies to all files in the directory \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1160.RULE b/src/licensedcode/data/rules/bsd-new_1160.RULE index 7461ce0b5e..c9e4e48977 100644 --- a/src/licensedcode/data/rules/bsd-new_1160.RULE +++ b/src/licensedcode/data/rules/bsd-new_1160.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -[BSD 3-Clause](http://opensource.org/licenses/BSD-3-Clause) license, as +[{{BSD 3-Clause}}](http://opensource.org/licenses/BSD-3-Clause) license, as [Go language](http://golang.org/LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1161.RULE b/src/licensedcode/data/rules/bsd-new_1161.RULE index b4ec8ac8d0..dfb67fab61 100644 --- a/src/licensedcode/data/rules/bsd-new_1161.RULE +++ b/src/licensedcode/data/rules/bsd-new_1161.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -## License -[BSD 3-Clause](http://opensource.org/licenses/BSD-3-Clause) license \ No newline at end of file +## {{License +[BSD 3-Clause}}](http://opensource.org/licenses/BSD-3-Clause) license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1162.RULE b/src/licensedcode/data/rules/bsd-new_1162.RULE index a2d6706a17..1bca9fa3b7 100644 --- a/src/licensedcode/data/rules/bsd-new_1162.RULE +++ b/src/licensedcode/data/rules/bsd-new_1162.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -[BSD 3-Clause](http://opensource.org/licenses/BSD-3-Clause) license \ No newline at end of file +[{{BSD 3-Clause}}](http://opensource.org/licenses/BSD-3-Clause) license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1163.RULE b/src/licensedcode/data/rules/bsd-new_1163.RULE index cec415809c..cb8c7e312a 100644 --- a/src/licensedcode/data/rules/bsd-new_1163.RULE +++ b/src/licensedcode/data/rules/bsd-new_1163.RULE @@ -2,8 +2,9 @@ license_expression: bsd-new is_license_reference: yes relevance: 99 +minimum_coverage: 90 ignorable_urls: - - http://{{golang.org/LICENSE + - http://golang.org/LICENSE --- -[Go language](http://{{golang.org/LICENSE}}). \ No newline at end of file +[Go language](http://golang.org/LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1164.RULE b/src/licensedcode/data/rules/bsd-new_1164.RULE index 66ca28ee85..bba929407f 100644 --- a/src/licensedcode/data/rules/bsd-new_1164.RULE +++ b/src/licensedcode/data/rules/bsd-new_1164.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -All portions of JGit are covered by the {{EDL}}. Absolutely no GPL, - LGPL or EPL contributions are accepted within this package. \ No newline at end of file +All portions of JGit are {{covered by the EDL}}. Absolutely no GPL, + LGPL or EPL contributions are accepted within this package. diff --git a/src/licensedcode/data/rules/bsd-new_1165.RULE b/src/licensedcode/data/rules/bsd-new_1165.RULE index cd447814cf..9ee781c7e0 100644 --- a/src/licensedcode/data/rules/bsd-new_1165.RULE +++ b/src/licensedcode/data/rules/bsd-new_1165.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Unless otherwise specified, a BSD 3-clause license applies (see LICENSE). \ No newline at end of file +Unless otherwise specified, a {{BSD 3-clause license}} applies (see LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1166.RULE b/src/licensedcode/data/rules/bsd-new_1166.RULE index 75413fcfe4..08360abd29 100644 --- a/src/licensedcode/data/rules/bsd-new_1166.RULE +++ b/src/licensedcode/data/rules/bsd-new_1166.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -BSD 3-clause license applies (see LICENSE). \ No newline at end of file +{{BSD 3-clause license}} applies (see LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1169.RULE b/src/licensedcode/data/rules/bsd-new_1169.RULE index 2f3e6a0b44..c071b0d647 100644 --- a/src/licensedcode/data/rules/bsd-new_1169.RULE +++ b/src/licensedcode/data/rules/bsd-new_1169.RULE @@ -7,5 +7,5 @@ referenced_filenames: notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer --- -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. \ No newline at end of file +Use of this source code is {{governed by a BSD-style +license}} that can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1170.RULE b/src/licensedcode/data/rules/bsd-new_1170.RULE index 5864ee0dbf..5543b5ea62 100644 --- a/src/licensedcode/data/rules/bsd-new_1170.RULE +++ b/src/licensedcode/data/rules/bsd-new_1170.RULE @@ -7,5 +7,5 @@ referenced_filenames: notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer --- -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE.BSD file. \ No newline at end of file +Use of this source code is {{governed by a BSD-style +license}} that can be found in the LICENSE.BSD file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1171.RULE b/src/licensedcode/data/rules/bsd-new_1171.RULE index e7ce7ea283..6a59eb4dfb 100644 --- a/src/licensedcode/data/rules/bsd-new_1171.RULE +++ b/src/licensedcode/data/rules/bsd-new_1171.RULE @@ -10,6 +10,6 @@ ignorable_holders: - Yann Collet --- -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. -Based on work Copyright (c) Yann Collet, released under BSD License. \ No newline at end of file +Use of this source code is {{governed by a BSD-style +license}} that can be found in the LICENSE file. +Based on work Copyright (c) Yann Collet, released under {{BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1172.RULE b/src/licensedcode/data/rules/bsd-new_1172.RULE index 7e3e786d90..1405102a01 100644 --- a/src/licensedcode/data/rules/bsd-new_1172.RULE +++ b/src/licensedcode/data/rules/bsd-new_1172.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE --- -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. -Based on work Copyright (c) released under BSD License. \ No newline at end of file +Use of this source code is {{governed by a BSD-style +license}} that can be found in the LICENSE file. +Based on work Copyright (c) released under {{BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1173.RULE b/src/licensedcode/data/rules/bsd-new_1173.RULE index c6b4b0f853..e94c22eb0f 100644 --- a/src/licensedcode/data/rules/bsd-new_1173.RULE +++ b/src/licensedcode/data/rules/bsd-new_1173.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -Based on work released under BSD License. \ No newline at end of file +Based on work released under {{BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1174.RULE b/src/licensedcode/data/rules/bsd-new_1174.RULE index db6a77eea3..182224733b 100644 --- a/src/licensedcode/data/rules/bsd-new_1174.RULE +++ b/src/licensedcode/data/rules/bsd-new_1174.RULE @@ -8,4 +8,4 @@ notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer --- Unless otherwise noted, the source files are distributed -under the BSD-style license found in the LICENSE file. \ No newline at end of file +under the {{BSD-style license}} found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1175.RULE b/src/licensedcode/data/rules/bsd-new_1175.RULE index d29035cf9a..8248413871 100644 --- a/src/licensedcode/data/rules/bsd-new_1175.RULE +++ b/src/licensedcode/data/rules/bsd-new_1175.RULE @@ -7,4 +7,4 @@ referenced_filenames: notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer --- -source files are distributed under the BSD-style license found in the LICENSE file. \ No newline at end of file +source files are distributed under the {{BSD-style license}} found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1176.RULE b/src/licensedcode/data/rules/bsd-new_1176.RULE index e8078ccc76..d615f0e908 100644 --- a/src/licensedcode/data/rules/bsd-new_1176.RULE +++ b/src/licensedcode/data/rules/bsd-new_1176.RULE @@ -8,4 +8,4 @@ notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer --- Unless otherwise noted, the Go source files are distributed under -the BSD-style license found in the LICENSE file. \ No newline at end of file +the {{BSD-style license}} found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1177.RULE b/src/licensedcode/data/rules/bsd-new_1177.RULE index b2094a50a4..aaf7634c20 100644 --- a/src/licensedcode/data/rules/bsd-new_1177.RULE +++ b/src/licensedcode/data/rules/bsd-new_1177.RULE @@ -5,5 +5,5 @@ relevance: 95 notes: sometimes a bsd-new, sometimes a bsd-simplified. bsd-new is safer --- -Use of this source code is governed by a BSD-style -license that can be found in the Go distribution. \ No newline at end of file +Use of this source code is {{governed by a BSD-style +license}} that can be found in the Go distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1178.RULE b/src/licensedcode/data/rules/bsd-new_1178.RULE index 4713a8c3ce..92fee4b27b 100644 --- a/src/licensedcode/data/rules/bsd-new_1178.RULE +++ b/src/licensedcode/data/rules/bsd-new_1178.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -This library is bsd licensed \ No newline at end of file +This library is {{bsd licensed}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1179.RULE b/src/licensedcode/data/rules/bsd-new_1179.RULE index c350d90258..2600c72eff 100644 --- a/src/licensedcode/data/rules/bsd-new_1179.RULE +++ b/src/licensedcode/data/rules/bsd-new_1179.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -This library is BSD licensed so feel free to use it in any project. \ No newline at end of file +This library is {{BSD licensed}} so feel free to use it in any project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_118.RULE b/src/licensedcode/data/rules/bsd-new_118.RULE index 377512337c..7a26d283e8 100644 --- a/src/licensedcode/data/rules/bsd-new_118.RULE +++ b/src/licensedcode/data/rules/bsd-new_118.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -made available under a BSD-style license \ No newline at end of file +made available under a {{BSD-style license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1180.RULE b/src/licensedcode/data/rules/bsd-new_1180.RULE index 14fdf03f91..3dd8211d60 100644 --- a/src/licensedcode/data/rules/bsd-new_1180.RULE +++ b/src/licensedcode/data/rules/bsd-new_1180.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -library is bsd licensed \ No newline at end of file +library is {{bsd licensed}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1181.RULE b/src/licensedcode/data/rules/bsd-new_1181.RULE index 2cb74be32d..43e14e85ac 100644 --- a/src/licensedcode/data/rules/bsd-new_1181.RULE +++ b/src/licensedcode/data/rules/bsd-new_1181.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This project is BSD licensed. See LICENSE for more information. \ No newline at end of file +This project is {{BSD licensed}}. See LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1182.RULE b/src/licensedcode/data/rules/bsd-new_1182.RULE index 82dc938bc4..d9dec5c63d 100644 --- a/src/licensedcode/data/rules/bsd-new_1182.RULE +++ b/src/licensedcode/data/rules/bsd-new_1182.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -This project is BSD-licensed open source. \ No newline at end of file +This project is {{BSD-licensed}} open source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1183.RULE b/src/licensedcode/data/rules/bsd-new_1183.RULE index b8b5f71b09..0ae9881e63 100644 --- a/src/licensedcode/data/rules/bsd-new_1183.RULE +++ b/src/licensedcode/data/rules/bsd-new_1183.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -License This project is BSD-licensed. \ No newline at end of file +License This project is {{BSD-licensed}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1184.RULE b/src/licensedcode/data/rules/bsd-new_1184.RULE index d9428d93d2..196ee74f2e 100644 --- a/src/licensedcode/data/rules/bsd-new_1184.RULE +++ b/src/licensedcode/data/rules/bsd-new_1184.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -This project is BSD-licensed. \ No newline at end of file +This project is {{BSD-licensed}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1185.RULE b/src/licensedcode/data/rules/bsd-new_1185.RULE index b20c6491fc..8767f5c4a8 100644 --- a/src/licensedcode/data/rules/bsd-new_1185.RULE +++ b/src/licensedcode/data/rules/bsd-new_1185.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -project is BSD-licensed. \ No newline at end of file +project is {{BSD-licensed}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1186.RULE b/src/licensedcode/data/rules/bsd-new_1186.RULE index bd06a34cf1..7bcef84c85 100644 --- a/src/licensedcode/data/rules/bsd-new_1186.RULE +++ b/src/licensedcode/data/rules/bsd-new_1186.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This program is BSD-licensed (3 clause) \ No newline at end of file +This program is {{BSD-licensed}} (3 clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1187.RULE b/src/licensedcode/data/rules/bsd-new_1187.RULE index 86f5e9c976..fb50c82586 100644 --- a/src/licensedcode/data/rules/bsd-new_1187.RULE +++ b/src/licensedcode/data/rules/bsd-new_1187.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This program is BSD-licensed (3 clause). See LICENSE for details. \ No newline at end of file +This program is {{BSD-licensed}} (3 clause). See LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1188.RULE b/src/licensedcode/data/rules/bsd-new_1188.RULE index 049cc91852..b8f766f965 100644 --- a/src/licensedcode/data/rules/bsd-new_1188.RULE +++ b/src/licensedcode/data/rules/bsd-new_1188.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -This program is BSD licensed software, \ No newline at end of file +This program is {{BSD licensed}} software, \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_119.RULE b/src/licensedcode/data/rules/bsd-new_119.RULE index e58d76886e..2542fc55da 100644 --- a/src/licensedcode/data/rules/bsd-new_119.RULE +++ b/src/licensedcode/data/rules/bsd-new_119.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 90 --- -The "New" BSD License: \ No newline at end of file +The "{{New" BSD License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1190.RULE b/src/licensedcode/data/rules/bsd-new_1190.RULE index d13151b4d7..6a88ec2a15 100644 --- a/src/licensedcode/data/rules/bsd-new_1190.RULE +++ b/src/licensedcode/data/rules/bsd-new_1190.RULE @@ -8,4 +8,4 @@ referenced_filenames: License -Unless otherwise specified, a BSD 3-clause license applies (see LICENSE). \ No newline at end of file +Unless otherwise specified, a {{BSD 3-clause license}} applies (see LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1192.RULE b/src/licensedcode/data/rules/bsd-new_1192.RULE index 78380fdd62..231c455476 100644 --- a/src/licensedcode/data/rules/bsd-new_1192.RULE +++ b/src/licensedcode/data/rules/bsd-new_1192.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- ## License -The [BSD 3-Clause license][bsd]. +The [{{BSD 3-Clause license}}][bsd]. [bsd]: http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1193.RULE b/src/licensedcode/data/rules/bsd-new_1193.RULE index 4c9f557d1a..a563c7d3c7 100644 --- a/src/licensedcode/data/rules/bsd-new_1193.RULE +++ b/src/licensedcode/data/rules/bsd-new_1193.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -The [BSD 3-Clause license][bsd]. +The [{{BSD 3-Clause license}}][bsd]. [bsd]: http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1195.RULE b/src/licensedcode/data/rules/bsd-new_1195.RULE index 77b3d52436..6fbf1c3a38 100644 --- a/src/licensedcode/data/rules/bsd-new_1195.RULE +++ b/src/licensedcode/data/rules/bsd-new_1195.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -and on BSD-licensed SHA-2 code \ No newline at end of file +and on {{BSD-licensed}} SHA-2 code \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1196.RULE b/src/licensedcode/data/rules/bsd-new_1196.RULE index ff9331253e..f7e1a0c405 100644 --- a/src/licensedcode/data/rules/bsd-new_1196.RULE +++ b/src/licensedcode/data/rules/bsd-new_1196.RULE @@ -7,6 +7,6 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -# Use of this source code is governed by a BSD-style -# license that can be found in the LICENSE file or at +# Use of this source code is {{governed by a BSD-style +# license}} that can be found in the LICENSE file or at # http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1197.RULE b/src/licensedcode/data/rules/bsd-new_1197.RULE index d54a48778b..ce55f0a9c6 100644 --- a/src/licensedcode/data/rules/bsd-new_1197.RULE +++ b/src/licensedcode/data/rules/bsd-new_1197.RULE @@ -7,6 +7,6 @@ ignorable_urls: - https://opensource.org/licenses/BSD-3-Clause --- -# Use of this source code is governed by a BSD-style -# license that can be found in the LICENSE file or at +# Use of this source code is {{governed by a BSD-style +# license}} that can be found in the LICENSE file or at # https://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1198.RULE b/src/licensedcode/data/rules/bsd-new_1198.RULE index 9a10eabf4c..f700b3c834 100644 --- a/src/licensedcode/data/rules/bsd-new_1198.RULE +++ b/src/licensedcode/data/rules/bsd-new_1198.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Unlimited Open Source - BSD 3-clause Distribution \ No newline at end of file +Unlimited Open Source - {{BSD 3-clause}} Distribution \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1203.RULE b/src/licensedcode/data/rules/bsd-new_1203.RULE index 314460a6a5..7d03a40192 100644 --- a/src/licensedcode/data/rules/bsd-new_1203.RULE +++ b/src/licensedcode/data/rules/bsd-new_1203.RULE @@ -5,7 +5,7 @@ ignorable_urls: - https://opensource.org/licenses/BSD-3-Clause --- -Licensed under the BSD-3-Clause license; you may not use this file except in +Licensed under the {{BSD-3-Clause license}}; you may not use this file except in compliance with the License. You may obtain a copy of the License at https://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_1204.RULE b/src/licensedcode/data/rules/bsd-new_1204.RULE index be08fc3774..386671ee7a 100644 --- a/src/licensedcode/data/rules/bsd-new_1204.RULE +++ b/src/licensedcode/data/rules/bsd-new_1204.RULE @@ -3,10 +3,12 @@ license_expression: bsd-new is_license_notice: yes referenced_filenames: - LICENSE +ignorable_urls: + - http://opensource.org/licenses/BSD-3-Clause --- This project as a whole and each piece of it individually are licensed for use and redistribution under the conditions stated in the included LICENSE file, also known as -"The BSD 3-Clause" License as described at -http ://opensource.org/licenses/BSD-3-Clause. \ No newline at end of file +"The {{BSD 3-Clause" License}} as described at +{{ http://opensource.org/licenses/BSD-3-Clause }}. diff --git a/src/licensedcode/data/rules/bsd-new_1205.RULE b/src/licensedcode/data/rules/bsd-new_1205.RULE index a6233aab6b..2051c4c58c 100644 --- a/src/licensedcode/data/rules/bsd-new_1205.RULE +++ b/src/licensedcode/data/rules/bsd-new_1205.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is now licensed under the BSD 3-Clause license. \ No newline at end of file +This project is now licensed under the {{BSD 3-Clause license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1206.RULE b/src/licensedcode/data/rules/bsd-new_1206.RULE index 5c70ce15eb..9d0877b2fb 100644 --- a/src/licensedcode/data/rules/bsd-new_1206.RULE +++ b/src/licensedcode/data/rules/bsd-new_1206.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the BSD 3-clause license \ No newline at end of file +This software is licensed under the {{BSD 3-clause license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1207.RULE b/src/licensedcode/data/rules/bsd-new_1207.RULE index 4d512a6de3..4f807cbf4a 100644 --- a/src/licensedcode/data/rules/bsd-new_1207.RULE +++ b/src/licensedcode/data/rules/bsd-new_1207.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -This software is licensed under a BSD 3-Clause License (http://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file +This software is licensed under a {{BSD 3-Clause License}} (http://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1208.RULE b/src/licensedcode/data/rules/bsd-new_1208.RULE index c29102c9d4..6895e70ba9 100644 --- a/src/licensedcode/data/rules/bsd-new_1208.RULE +++ b/src/licensedcode/data/rules/bsd-new_1208.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -issued under the BSD license, \ No newline at end of file +issued under {{the BSD license}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_121.RULE b/src/licensedcode/data/rules/bsd-new_121.RULE index 33c73cd4ee..eb97ae4aa6 100644 --- a/src/licensedcode/data/rules/bsd-new_121.RULE +++ b/src/licensedcode/data/rules/bsd-new_121.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://framework.zend.com/license/new-bsd --- -Code subject to the new BSD license (http://framework.zend.com/license/new-bsd). \ No newline at end of file +Code subject to the {{new BSD license}} (http://framework.zend.com/license/new-bsd). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1210.RULE b/src/licensedcode/data/rules/bsd-new_1210.RULE index bc2a2a64e2..22b2311240 100644 --- a/src/licensedcode/data/rules/bsd-new_1210.RULE +++ b/src/licensedcode/data/rules/bsd-new_1210.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -free software and licensed under 3-Clause BSD License - "New BSD License" or "Modified BSD License". \ No newline at end of file +free software and licensed under {{3-Clause BSD License}} - "{{New BSD License}}" or "{{Modified BSD License}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1211.RULE b/src/licensedcode/data/rules/bsd-new_1211.RULE index 001e728e32..b7e844fc06 100644 --- a/src/licensedcode/data/rules/bsd-new_1211.RULE +++ b/src/licensedcode/data/rules/bsd-new_1211.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under 3-Clause BSD License - "New BSD License" or "Modified BSD License". \ No newline at end of file +licensed under {{3-Clause BSD License}} - "{{New BSD License}}" or "{{Modified BSD License}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1212.RULE b/src/licensedcode/data/rules/bsd-new_1212.RULE index da742d532d..13d16f5e1d 100644 --- a/src/licensedcode/data/rules/bsd-new_1212.RULE +++ b/src/licensedcode/data/rules/bsd-new_1212.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -free software and licensed under 3-Clause BSD License \ No newline at end of file +free software and licensed under {{3-Clause BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1213.RULE b/src/licensedcode/data/rules/bsd-new_1213.RULE index ac6530e6d5..afe819cf55 100644 --- a/src/licensedcode/data/rules/bsd-new_1213.RULE +++ b/src/licensedcode/data/rules/bsd-new_1213.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -"New BSD License" or "Modified BSD License". \ No newline at end of file +"{{New BSD License}}" or "{{Modified BSD License}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1214.RULE b/src/licensedcode/data/rules/bsd-new_1214.RULE index 125121abfb..482767f09c 100644 --- a/src/licensedcode/data/rules/bsd-new_1214.RULE +++ b/src/licensedcode/data/rules/bsd-new_1214.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -3-Clause BSD License - "New BSD License" or "Modified BSD License". \ No newline at end of file +{{3-Clause BSD License}} - "{{New BSD License}}" or "{{Modified BSD License}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1215.RULE b/src/licensedcode/data/rules/bsd-new_1215.RULE index 40be9a25fa..79dad17102 100644 --- a/src/licensedcode/data/rules/bsd-new_1215.RULE +++ b/src/licensedcode/data/rules/bsd-new_1215.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -3-Clause BSD License - "New BSD License" \ No newline at end of file +{{3-Clause BSD License}} - "{{New BSD License}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1216.RULE b/src/licensedcode/data/rules/bsd-new_1216.RULE index dbe8206b97..a293d36c49 100644 --- a/src/licensedcode/data/rules/bsd-new_1216.RULE +++ b/src/licensedcode/data/rules/bsd-new_1216.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -"Modified BSD License". \ No newline at end of file +Modified BSD License diff --git a/src/licensedcode/data/rules/bsd-new_1217.RULE b/src/licensedcode/data/rules/bsd-new_1217.RULE index 7106c8d814..8b23a718b6 100644 --- a/src/licensedcode/data/rules/bsd-new_1217.RULE +++ b/src/licensedcode/data/rules/bsd-new_1217.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is under the new-style BSD license. \ No newline at end of file +This file is under the new-style {{BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1218.RULE b/src/licensedcode/data/rules/bsd-new_1218.RULE index 82ff0cb1c5..60e1ed8e93 100644 --- a/src/licensedcode/data/rules/bsd-new_1218.RULE +++ b/src/licensedcode/data/rules/bsd-new_1218.RULE @@ -5,4 +5,4 @@ relevance: 95 notes: this notice is common with vsprintf and refers to a bsd-new --- -This file is under the {old-style BSD license}[rdoc-label:label-Old-style+BSD+license]. \ No newline at end of file +This file is under the {old-style {{BSD license}}}[rdoc-label:label-Old-style+BSD+license]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1219.RULE b/src/licensedcode/data/rules/bsd-new_1219.RULE index ffd591e8e6..535c18dc97 100644 --- a/src/licensedcode/data/rules/bsd-new_1219.RULE +++ b/src/licensedcode/data/rules/bsd-new_1219.RULE @@ -5,4 +5,4 @@ relevance: 95 notes: this notice is common with vsprintf and refers to a bsd-new --- -This file is under the old-style BSD license \ No newline at end of file +This file is under the old-style {{BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_122.RULE b/src/licensedcode/data/rules/bsd-new_122.RULE index 5a5fb1f2f5..d1277bee09 100644 --- a/src/licensedcode/data/rules/bsd-new_122.RULE +++ b/src/licensedcode/data/rules/bsd-new_122.RULE @@ -5,4 +5,4 @@ is_license_notice: yes Redistribution and use in source and binary forms, with or without modification, are permitted provided that the conditions mentioned - in the accompanying LICENSE file are met (BSD-3-Clause). \ No newline at end of file + in the accompanying LICENSE file are met ({{BSD-3-Clause}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1220.RULE b/src/licensedcode/data/rules/bsd-new_1220.RULE index c108fd32ce..7da769c758 100644 --- a/src/licensedcode/data/rules/bsd-new_1220.RULE +++ b/src/licensedcode/data/rules/bsd-new_1220.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -Free software under the New BSD license, see LICENSE.txt for details. \ No newline at end of file +Free software under the {{New BSD license}}, see LICENSE.txt for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1221.RULE b/src/licensedcode/data/rules/bsd-new_1221.RULE index a6c3fccc56..2f353ac266 100644 --- a/src/licensedcode/data/rules/bsd-new_1221.RULE +++ b/src/licensedcode/data/rules/bsd-new_1221.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -[BSD][BSD License] \ No newline at end of file +[BSD][{{BSD License}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1222.RULE b/src/licensedcode/data/rules/bsd-new_1222.RULE index ef63211622..3c6be6664b 100644 --- a/src/licensedcode/data/rules/bsd-new_1222.RULE +++ b/src/licensedcode/data/rules/bsd-new_1222.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -[BSD License][BSD License] \ No newline at end of file +[{{BSD License}}][{{BSD License}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1223.RULE b/src/licensedcode/data/rules/bsd-new_1223.RULE index a1a852b14c..ac48940b37 100644 --- a/src/licensedcode/data/rules/bsd-new_1223.RULE +++ b/src/licensedcode/data/rules/bsd-new_1223.RULE @@ -6,5 +6,5 @@ referenced_filenames: - license_bsd.md --- -[BSD License] +[{{BSD License}}] license_bsd.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1224.RULE b/src/licensedcode/data/rules/bsd-new_1224.RULE index a4e9a2dba4..358505723f 100644 --- a/src/licensedcode/data/rules/bsd-new_1224.RULE +++ b/src/licensedcode/data/rules/bsd-new_1224.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the terms of the BSD 3-clause license \ No newline at end of file +distributed under the terms of the {{BSD 3-clause license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1225.RULE b/src/licensedcode/data/rules/bsd-new_1225.RULE index d4f6f0e0aa..78171a9c77 100644 --- a/src/licensedcode/data/rules/bsd-new_1225.RULE +++ b/src/licensedcode/data/rules/bsd-new_1225.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This software is licensed under the BSD-3-Clause license. See the LICENSE file for details. \ No newline at end of file +This software is licensed under the {{BSD-3-Clause license}}. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1226.RULE b/src/licensedcode/data/rules/bsd-new_1226.RULE index ffd26c45bb..4e4ba6f005 100644 --- a/src/licensedcode/data/rules/bsd-new_1226.RULE +++ b/src/licensedcode/data/rules/bsd-new_1226.RULE @@ -6,6 +6,6 @@ referenced_filenames: - License.txt --- -Use of this source code is governed by a BSD-style license +Use of this source code is {{governed by a BSD-style license}} that can be found in the License.txt file in the root of the source tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1228.RULE b/src/licensedcode/data/rules/bsd-new_1228.RULE index d0eae49407..3faad7bd89 100644 --- a/src/licensedcode/data/rules/bsd-new_1228.RULE +++ b/src/licensedcode/data/rules/bsd-new_1228.RULE @@ -7,7 +7,7 @@ ignorable_urls: - The BSD 3-Clause License + The {{BSD 3-Clause License}} https://github.com/xmlunit/xmlunit/blob/main/xmlunit-legacy/LICENSE.txt repo diff --git a/src/licensedcode/data/rules/bsd-new_1229.RULE b/src/licensedcode/data/rules/bsd-new_1229.RULE index ba82f59763..3c18d1e13d 100644 --- a/src/licensedcode/data/rules/bsd-new_1229.RULE +++ b/src/licensedcode/data/rules/bsd-new_1229.RULE @@ -6,6 +6,6 @@ relevance: 100 - The BSD 3-Clause License + The {{BSD 3-Clause License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_123.RULE b/src/licensedcode/data/rules/bsd-new_123.RULE index 8789ec6e99..41e97b7084 100644 --- a/src/licensedcode/data/rules/bsd-new_123.RULE +++ b/src/licensedcode/data/rules/bsd-new_123.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://framework.zend.com/license/new-bsd --- -license http://framework.zend.com/license/new-bsd New BSD License \ No newline at end of file +license http://framework.zend.com/license/new-bsd {{New BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1230.RULE b/src/licensedcode/data/rules/bsd-new_1230.RULE index 362cb8b600..8138ea06cb 100644 --- a/src/licensedcode/data/rules/bsd-new_1230.RULE +++ b/src/licensedcode/data/rules/bsd-new_1230.RULE @@ -6,4 +6,4 @@ relevance: 100 - The BSD 3-Clause License \ No newline at end of file + The {{BSD 3-Clause License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1231.RULE b/src/licensedcode/data/rules/bsd-new_1231.RULE index 891829f541..b75172c66c 100644 --- a/src/licensedcode/data/rules/bsd-new_1231.RULE +++ b/src/licensedcode/data/rules/bsd-new_1231.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -BSD-License: +{{BSD-License}}: http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1232.RULE b/src/licensedcode/data/rules/bsd-new_1232.RULE index 59a3298233..c03c019f44 100644 --- a/src/licensedcode/data/rules/bsd-new_1232.RULE +++ b/src/licensedcode/data/rules/bsd-new_1232.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.opensource.org/licenses/bsd-license.php --- -BSD-License: +{{BSD-License}}: https://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1233.RULE b/src/licensedcode/data/rules/bsd-new_1233.RULE index 6f1e147d54..ba178fe5ff 100644 --- a/src/licensedcode/data/rules/bsd-new_1233.RULE +++ b/src/licensedcode/data/rules/bsd-new_1233.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.html --- -| This file is distributed under the BSD License. +| This file is distributed under {{the BSD License}}. | See http://snowball.tartarus.org/license.php | Also see http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1234.RULE b/src/licensedcode/data/rules/bsd-new_1234.RULE index 7f6774db02..413f769f66 100644 --- a/src/licensedcode/data/rules/bsd-new_1234.RULE +++ b/src/licensedcode/data/rules/bsd-new_1234.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -The New BSD License -BSD License \ No newline at end of file +The {{New BSD License +BSD}} License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1237.RULE b/src/licensedcode/data/rules/bsd-new_1237.RULE index aabd3d5bfc..b8507103e2 100644 --- a/src/licensedcode/data/rules/bsd-new_1237.RULE +++ b/src/licensedcode/data/rules/bsd-new_1237.RULE @@ -5,5 +5,5 @@ referenced_filenames: - LICENSE.txt --- -Use of this file is governed by the BSD 3-clause license that +Use of this file is governed by the {{BSD 3-clause license}} that can be found in the LICENSE.txt file in the project root. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1238.RULE b/src/licensedcode/data/rules/bsd-new_1238.RULE index c668d77687..460786be27 100644 --- a/src/licensedcode/data/rules/bsd-new_1238.RULE +++ b/src/licensedcode/data/rules/bsd-new_1238.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -License BSD License (http://opensource.org/licenses/BSD-3-Clause) +License {{BSD License}} (http://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1239.RULE b/src/licensedcode/data/rules/bsd-new_1239.RULE index 5a58bb7fc5..93364b8e0b 100644 --- a/src/licensedcode/data/rules/bsd-new_1239.RULE +++ b/src/licensedcode/data/rules/bsd-new_1239.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://asm.ow2.io/license.html --- -License BSD-3-Clause (https://asm.ow2.io/license.html) +{{License BSD-3-Clause}} (https://asm.ow2.io/license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_124.RULE b/src/licensedcode/data/rules/bsd-new_124.RULE index a9bfeb6a3b..09cd0a3888 100644 --- a/src/licensedcode/data/rules/bsd-new_124.RULE +++ b/src/licensedcode/data/rules/bsd-new_124.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -released under the new BSD license (code +released under the {{new BSD license}} (code and documentation) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1240.RULE b/src/licensedcode/data/rules/bsd-new_1240.RULE index 248bcbbf2f..78b6a42913 100644 --- a/src/licensedcode/data/rules/bsd-new_1240.RULE +++ b/src/licensedcode/data/rules/bsd-new_1240.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/BSD-3-Clause --- -License BSD-3-Clause (https://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file +{{License BSD-3-Clause}} (https://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1243.RULE b/src/licensedcode/data/rules/bsd-new_1243.RULE index 55cd4cb12c..2e3fb4783e 100644 --- a/src/licensedcode/data/rules/bsd-new_1243.RULE +++ b/src/licensedcode/data/rules/bsd-new_1243.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 99 --- -License The BSD License \ No newline at end of file +License {{The BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1246.RULE b/src/licensedcode/data/rules/bsd-new_1246.RULE index 3cff402492..5f03e24c25 100644 --- a/src/licensedcode/data/rules/bsd-new_1246.RULE +++ b/src/licensedcode/data/rules/bsd-new_1246.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -BSD License (http://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file +{{BSD License}} (http://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1247.RULE b/src/licensedcode/data/rules/bsd-new_1247.RULE index 6185ade02a..ce3bd6defc 100644 --- a/src/licensedcode/data/rules/bsd-new_1247.RULE +++ b/src/licensedcode/data/rules/bsd-new_1247.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://asm.ow2.io/license.html --- -BSD-3-Clause (https://asm.ow2.io/license.html) \ No newline at end of file +{{BSD-3-Clause}} (https://asm.ow2.io/license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1248.RULE b/src/licensedcode/data/rules/bsd-new_1248.RULE index bbab3ef4ed..4f5844745d 100644 --- a/src/licensedcode/data/rules/bsd-new_1248.RULE +++ b/src/licensedcode/data/rules/bsd-new_1248.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/BSD-3-Clause --- -BSD-3-Clause (https://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file +{{BSD-3-Clause}} (https://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1250.RULE b/src/licensedcode/data/rules/bsd-new_1250.RULE index ebb36b3f98..c94bc0e3f2 100644 --- a/src/licensedcode/data/rules/bsd-new_1250.RULE +++ b/src/licensedcode/data/rules/bsd-new_1250.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -The BSD License (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file +{{The BSD License}} (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1254.RULE b/src/licensedcode/data/rules/bsd-new_1254.RULE index e926f1f61a..0a1521e5b1 100644 --- a/src/licensedcode/data/rules/bsd-new_1254.RULE +++ b/src/licensedcode/data/rules/bsd-new_1254.RULE @@ -5,4 +5,4 @@ relevance: 100 --- - BSD-3-Clause \ No newline at end of file + {{BSD-3-Clause}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1255.RULE b/src/licensedcode/data/rules/bsd-new_1255.RULE index 18fc2e6ad5..8379e2774a 100644 --- a/src/licensedcode/data/rules/bsd-new_1255.RULE +++ b/src/licensedcode/data/rules/bsd-new_1255.RULE @@ -5,4 +5,4 @@ relevance: 99 --- - BSD \ No newline at end of file +<{{name> BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1256.RULE b/src/licensedcode/data/rules/bsd-new_1256.RULE index 5d84b30e71..37ba229126 100644 --- a/src/licensedcode/data/rules/bsd-new_1256.RULE +++ b/src/licensedcode/data/rules/bsd-new_1256.RULE @@ -5,4 +5,4 @@ relevance: 99 --- - BSD License \ No newline at end of file + {{BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1259.RULE b/src/licensedcode/data/rules/bsd-new_1259.RULE index 64576e8760..ef3f433c50 100644 --- a/src/licensedcode/data/rules/bsd-new_1259.RULE +++ b/src/licensedcode/data/rules/bsd-new_1259.RULE @@ -5,4 +5,4 @@ relevance: 99 --- - The BSD License \ No newline at end of file + {{The BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1260.RULE b/src/licensedcode/data/rules/bsd-new_1260.RULE index 705ad5b152..24cd012239 100644 --- a/src/licensedcode/data/rules/bsd-new_1260.RULE +++ b/src/licensedcode/data/rules/bsd-new_1260.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- - BSD-3-Clause + {{BSD-3-Clause}} (https://asm.ow2.io/license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1261.RULE b/src/licensedcode/data/rules/bsd-new_1261.RULE index 35a0ef0c48..d75589d9e3 100644 --- a/src/licensedcode/data/rules/bsd-new_1261.RULE +++ b/src/licensedcode/data/rules/bsd-new_1261.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- - BSD-3-Clause + {{BSD-3-Clause}} (https://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1262.RULE b/src/licensedcode/data/rules/bsd-new_1262.RULE index 7eeb355ff6..261477d282 100644 --- a/src/licensedcode/data/rules/bsd-new_1262.RULE +++ b/src/licensedcode/data/rules/bsd-new_1262.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- - BSD +<{{name> BSD (http://www.linfo.org/bsdlicense.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1263.RULE b/src/licensedcode/data/rules/bsd-new_1263.RULE index 31345d6dc9..f2a2d40aa8 100644 --- a/src/licensedcode/data/rules/bsd-new_1263.RULE +++ b/src/licensedcode/data/rules/bsd-new_1263.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- - BSD License + {{BSD License}} (http://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1264.RULE b/src/licensedcode/data/rules/bsd-new_1264.RULE index 91f19ab269..04fb73a203 100644 --- a/src/licensedcode/data/rules/bsd-new_1264.RULE +++ b/src/licensedcode/data/rules/bsd-new_1264.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- - BSD +<{{name> BSD (LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1267.RULE b/src/licensedcode/data/rules/bsd-new_1267.RULE index e7b9718892..52885b4ae3 100644 --- a/src/licensedcode/data/rules/bsd-new_1267.RULE +++ b/src/licensedcode/data/rules/bsd-new_1267.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- - The BSD License + {{The BSD License}} (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_127.RULE b/src/licensedcode/data/rules/bsd-new_127.RULE index 4295f019e7..2c7198f8a7 100644 --- a/src/licensedcode/data/rules/bsd-new_127.RULE +++ b/src/licensedcode/data/rules/bsd-new_127.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -Licensed under the New BSD license. See LICENSE or: +Licensed under the {{New BSD license}}. See LICENSE or: 5 * http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1270.RULE b/src/licensedcode/data/rules/bsd-new_1270.RULE index 7c08c49b48..95e6a68061 100644 --- a/src/licensedcode/data/rules/bsd-new_1270.RULE +++ b/src/licensedcode/data/rules/bsd-new_1270.RULE @@ -3,4 +3,4 @@ license_expression: bsd-new is_license_notice: yes --- -source and binary code form contained in the plug-in is subject to the terms and conditions of the New BSD License. \ No newline at end of file +source and binary code form contained in the plug-in is subject to the terms and conditions of the {{New BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1271.RULE b/src/licensedcode/data/rules/bsd-new_1271.RULE index 9410035976..5c04fd5d6d 100644 --- a/src/licensedcode/data/rules/bsd-new_1271.RULE +++ b/src/licensedcode/data/rules/bsd-new_1271.RULE @@ -2,8 +2,9 @@ license_expression: bsd-new is_license_notice: yes relevance: 100 +skip_for_required_phrase_generation: yes --- -New BSD License: +{{New BSD License}} -BSD License \ No newline at end of file +{{ BSD License }} diff --git a/src/licensedcode/data/rules/bsd-new_1274.RULE b/src/licensedcode/data/rules/bsd-new_1274.RULE index 82a8b8c021..777e336535 100644 --- a/src/licensedcode/data/rules/bsd-new_1274.RULE +++ b/src/licensedcode/data/rules/bsd-new_1274.RULE @@ -7,7 +7,7 @@ ignorable_urls: - BSD 3-clause + {{BSD 3-clause}} https://raw.githubusercontent.com/ThreeTen/threetenbp/master/LICENSE.txt repo diff --git a/src/licensedcode/data/rules/bsd-new_1275.RULE b/src/licensedcode/data/rules/bsd-new_1275.RULE index 787e8ff731..6928f33a6a 100644 --- a/src/licensedcode/data/rules/bsd-new_1275.RULE +++ b/src/licensedcode/data/rules/bsd-new_1275.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- The reference implementation -has a BSD-style license. Details can be found in: licenses/jsr223-license.txt \ No newline at end of file +has a {{BSD-style license}}. Details can be found in: licenses/jsr223-license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1278.RULE b/src/licensedcode/data/rules/bsd-new_1278.RULE index 1c114624a4..a6cde10bca 100644 --- a/src/licensedcode/data/rules/bsd-new_1278.RULE +++ b/src/licensedcode/data/rules/bsd-new_1278.RULE @@ -5,4 +5,4 @@ minimum_coverage: 99 --- JZlib 0.0.* were released under the GNU LGPL license. Later, we have switched -over to a BSD-style license. \ No newline at end of file +over to a {{BSD-style license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_128.RULE b/src/licensedcode/data/rules/bsd-new_128.RULE index e34703ffd5..3c2735a4e2 100644 --- a/src/licensedcode/data/rules/bsd-new_128.RULE +++ b/src/licensedcode/data/rules/bsd-new_128.RULE @@ -9,7 +9,7 @@ ignorable_emails: LICENSE - This source file is subject to the new BSD license that is bundled + This source file is subject to the {{new BSD license}} that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd diff --git a/src/licensedcode/data/rules/bsd-new_1282.RULE b/src/licensedcode/data/rules/bsd-new_1282.RULE index 4f676cf111..5fa5934623 100644 --- a/src/licensedcode/data/rules/bsd-new_1282.RULE +++ b/src/licensedcode/data/rules/bsd-new_1282.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-new is_license_reference: yes -is_continuous: yes +is_required_phrase: yes +relevance: 90 --- -{{Go License}} \ No newline at end of file +Go License diff --git a/src/licensedcode/data/rules/bsd-new_1283.RULE b/src/licensedcode/data/rules/bsd-new_1283.RULE index be44ff1366..afb3ae897f 100644 --- a/src/licensedcode/data/rules/bsd-new_1283.RULE +++ b/src/licensedcode/data/rules/bsd-new_1283.RULE @@ -1,9 +1,10 @@ --- license_expression: bsd-new is_license_reference: yes -is_continuous: yes +is_required_phrase: yes +relevance: 100 ignorable_urls: - https://golang.org/LICENSE --- -{{https://golang.org/LICENSE}} \ No newline at end of file +{{ https://golang.org/LICENSE }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1284.RULE b/src/licensedcode/data/rules/bsd-new_1284.RULE index 71a183cf9d..f02d6831d6 100644 --- a/src/licensedcode/data/rules/bsd-new_1284.RULE +++ b/src/licensedcode/data/rules/bsd-new_1284.RULE @@ -1,9 +1,10 @@ --- license_expression: bsd-new is_license_reference: yes -is_continuous: yes +is_required_phrase: yes +relevance: 100 ignorable_urls: - https://go.dev/LICENSE --- -{{https://go.dev/LICENSE}} \ No newline at end of file +{{ https://go.dev/LICENSE }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1286.RULE b/src/licensedcode/data/rules/bsd-new_1286.RULE index 7692e5cf7e..f59a517f99 100644 --- a/src/licensedcode/data/rules/bsd-new_1286.RULE +++ b/src/licensedcode/data/rules/bsd-new_1286.RULE @@ -1,9 +1,10 @@ --- license_expression: bsd-new is_license_reference: yes -is_continuous: yes +is_required_phrase: yes +relevance: 100 ignorable_urls: - http://jaxen.codehaus.org/license.html --- -{{http://jaxen.codehaus.org/license.html}} \ No newline at end of file +http://jaxen.codehaus.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1287.RULE b/src/licensedcode/data/rules/bsd-new_1287.RULE index 004de7b00e..981210a440 100644 --- a/src/licensedcode/data/rules/bsd-new_1287.RULE +++ b/src/licensedcode/data/rules/bsd-new_1287.RULE @@ -1,11 +1,10 @@ --- license_expression: bsd-new is_license_reference: yes -is_continuous: yes -referenced_filenames: - - https://github.com/jaxen-xpath/jaxen/blob/master/LICENSE.txt +is_required_phrase: yes +relevance: 100 ignorable_urls: - https://github.com/jaxen-xpath/jaxen/blob/master/LICENSE.txt --- -{{https://github.com/jaxen-xpath/jaxen/blob/master/LICENSE.txt}} \ No newline at end of file +{{ https://github.com/jaxen-xpath/jaxen/blob/master/LICENSE.txt }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_129.RULE b/src/licensedcode/data/rules/bsd-new_129.RULE index f0b5f6f7ed..63af1f17cf 100644 --- a/src/licensedcode/data/rules/bsd-new_129.RULE +++ b/src/licensedcode/data/rules/bsd-new_129.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/BSD-3-Clause --- -BSD 3-Clause http://www.opensource.org/licenses/BSD-3-Clause \ No newline at end of file +{{BSD 3-Clause}} http://www.opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1292.RULE b/src/licensedcode/data/rules/bsd-new_1292.RULE index e9501c71a6..dd28c90fb2 100644 --- a/src/licensedcode/data/rules/bsd-new_1292.RULE +++ b/src/licensedcode/data/rules/bsd-new_1292.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.chromium --- -Chromium is licensed under a BSD-style license. See LICENSE.chromium for +Chromium is licensed under a {{BSD-style license}}. See LICENSE.chromium for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1295.RULE b/src/licensedcode/data/rules/bsd-new_1295.RULE index adf78db8e8..b80ec19f1f 100644 --- a/src/licensedcode/data/rules/bsd-new_1295.RULE +++ b/src/licensedcode/data/rules/bsd-new_1295.RULE @@ -7,7 +7,7 @@ ignorable_urls: - BSD + <{{name>BSD Free for open or commercial use, with credit line http://www.linfo.org/bsdlicense.html repo diff --git a/src/licensedcode/data/rules/bsd-new_1297.RULE b/src/licensedcode/data/rules/bsd-new_1297.RULE index 4a09522864..d5d1fef63e 100644 --- a/src/licensedcode/data/rules/bsd-new_1297.RULE +++ b/src/licensedcode/data/rules/bsd-new_1297.RULE @@ -5,4 +5,4 @@ relevance: 98 notes: a weird but seen-in-the-wild versioning --- -The Berkeley Software Distribution licence v3 \ No newline at end of file +The {{Berkeley Software Distribution licence v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1298.RULE b/src/licensedcode/data/rules/bsd-new_1298.RULE index a400aba04d..82a6836779 100644 --- a/src/licensedcode/data/rules/bsd-new_1298.RULE +++ b/src/licensedcode/data/rules/bsd-new_1298.RULE @@ -5,4 +5,4 @@ relevance: 98 notes: a weird but seen-in-the-wild versioning --- -The Berkeley Software Distribution license v3 \ No newline at end of file +The {{Berkeley Software Distribution license v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_130.RULE b/src/licensedcode/data/rules/bsd-new_130.RULE index 7f01e475bb..ab6f18aefa 100644 --- a/src/licensedcode/data/rules/bsd-new_130.RULE +++ b/src/licensedcode/data/rules/bsd-new_130.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -under a open-source 3-clause BSD license. \ No newline at end of file +under a open-source {{3-clause BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1302.RULE b/src/licensedcode/data/rules/bsd-new_1302.RULE index d0db2df64e..19b3403d48 100644 --- a/src/licensedcode/data/rules/bsd-new_1302.RULE +++ b/src/licensedcode/data/rules/bsd-new_1302.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.rst --- -license = BSD-3-Clause +{{license = BSD-3-Clause}} license_files = LICENSE.rst \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1303.RULE b/src/licensedcode/data/rules/bsd-new_1303.RULE index c15c25560e..f69709e5e2 100644 --- a/src/licensedcode/data/rules/bsd-new_1303.RULE +++ b/src/licensedcode/data/rules/bsd-new_1303.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.rst --- -BSD-3-Clause LICENSE.rst \ No newline at end of file +{{BSD-3-Clause}} LICENSE.rst \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1305.RULE b/src/licensedcode/data/rules/bsd-new_1305.RULE index 7b8bcd488c..401d27eb23 100644 --- a/src/licensedcode/data/rules/bsd-new_1305.RULE +++ b/src/licensedcode/data/rules/bsd-new_1305.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.rst --- -BSD-3-Clause license_files: LICENSE.rst \ No newline at end of file +{{BSD-3-Clause license}}_files: LICENSE.rst \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1306.RULE b/src/licensedcode/data/rules/bsd-new_1306.RULE index af7352a898..096b4eb225 100644 --- a/src/licensedcode/data/rules/bsd-new_1306.RULE +++ b/src/licensedcode/data/rules/bsd-new_1306.RULE @@ -6,7 +6,7 @@ referenced_filenames: - LICENSE --- -; Use of this source code is governed by a BSD-style license and patent +; Use of this source code is {{governed by a BSD-style license}} and patent ; grant that can be found in the LICENSE file in the root of the source ; tree. All contributing project authors may be found in the AUTHORS ; file in the root of the source tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1307.RULE b/src/licensedcode/data/rules/bsd-new_1307.RULE index 65b0eeb32a..7a69b9bd13 100644 --- a/src/licensedcode/data/rules/bsd-new_1307.RULE +++ b/src/licensedcode/data/rules/bsd-new_1307.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE --- -; Use of this source code is governed by a BSD-style license and patent +; Use of this source code is {{governed by a BSD-style license}} and patent ; grant that can be found in the LICENSE file in the root of the source ; tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1308.RULE b/src/licensedcode/data/rules/bsd-new_1308.RULE index 18fd959214..309d0b51fa 100644 --- a/src/licensedcode/data/rules/bsd-new_1308.RULE +++ b/src/licensedcode/data/rules/bsd-new_1308.RULE @@ -7,7 +7,7 @@ referenced_filenames: - PATENTS --- -${prefix} Use of this source code is governed by a BSD-style license${suffix} +${prefix} Use of this source code is {{governed by a BSD-style license}}${suffix} ${prefix} that can be found in the LICENSE file in the root of the source${suffix} ${prefix} tree. An additional intellectual property rights grant can be found${suffix} ${prefix} in the file PATENTS. All contributing project authors may${suffix} diff --git a/src/licensedcode/data/rules/bsd-new_1315.RULE b/src/licensedcode/data/rules/bsd-new_1315.RULE index 56756d843f..86c0924383 100644 --- a/src/licensedcode/data/rules/bsd-new_1315.RULE +++ b/src/licensedcode/data/rules/bsd-new_1315.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -distributed under a BSD-like license \ No newline at end of file +distributed under a {{BSD-like license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1316.RULE b/src/licensedcode/data/rules/bsd-new_1316.RULE index 17b1a98c69..dffa9a56e3 100644 --- a/src/licensedcode/data/rules/bsd-new_1316.RULE +++ b/src/licensedcode/data/rules/bsd-new_1316.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 99 --- -distributed under a BSD-like license. This +distributed under a {{BSD-like license}}. This does not restrict third parties from distributing independent implementations of software under other licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1317.RULE b/src/licensedcode/data/rules/bsd-new_1317.RULE index f1f8ffb7ac..93557a3db1 100644 --- a/src/licensedcode/data/rules/bsd-new_1317.RULE +++ b/src/licensedcode/data/rules/bsd-new_1317.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Software License Agreement (BSD-3-Clause License) \ No newline at end of file +Software License Agreement ({{BSD-3-Clause License}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1328.RULE b/src/licensedcode/data/rules/bsd-new_1328.RULE index fdfb4088af..0a3eda81e4 100644 --- a/src/licensedcode/data/rules/bsd-new_1328.RULE +++ b/src/licensedcode/data/rules/bsd-new_1328.RULE @@ -7,7 +7,7 @@ ignorable_urls: - BSD + <{{name>BSD {{ https://github.com/googleapis/api-common-java/blob/master/LICENSE }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1329.RULE b/src/licensedcode/data/rules/bsd-new_1329.RULE index 71d244819a..02b78bd003 100644 --- a/src/licensedcode/data/rules/bsd-new_1329.RULE +++ b/src/licensedcode/data/rules/bsd-new_1329.RULE @@ -8,5 +8,5 @@ ignorable_urls: - BSD + <{{name>BSD {{ https://github.com/googleapis/api-common-java/blob/master/LICENSE }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1334.RULE b/src/licensedcode/data/rules/bsd-new_1334.RULE index 2f2e336924..fcf2291242 100644 --- a/src/licensedcode/data/rules/bsd-new_1334.RULE +++ b/src/licensedcode/data/rules/bsd-new_1334.RULE @@ -7,7 +7,7 @@ ignorable_urls: - BSD + <{{name>BSD {{ https://github.com/googleapis/gax-java/blob/master/LICENSE }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1335.RULE b/src/licensedcode/data/rules/bsd-new_1335.RULE index fa0c537278..ad60c6273f 100644 --- a/src/licensedcode/data/rules/bsd-new_1335.RULE +++ b/src/licensedcode/data/rules/bsd-new_1335.RULE @@ -8,5 +8,5 @@ ignorable_urls: - BSD + <{{name>BSD {{ https://github.com/googleapis/gax-java/blob/master/LICENSE }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1353.RULE b/src/licensedcode/data/rules/bsd-new_1353.RULE index 9e36331c70..fca3723d0c 100644 --- a/src/licensedcode/data/rules/bsd-new_1353.RULE +++ b/src/licensedcode/data/rules/bsd-new_1353.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 90 --- -with a BSD-style license \ No newline at end of file +with a {{BSD-style license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1354.RULE b/src/licensedcode/data/rules/bsd-new_1354.RULE index ae87412abb..c2854999a3 100644 --- a/src/licensedcode/data/rules/bsd-new_1354.RULE +++ b/src/licensedcode/data/rules/bsd-new_1354.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -which is freely available under a BSD-style license. \ No newline at end of file +which is freely available under a {{BSD-style license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1355.RULE b/src/licensedcode/data/rules/bsd-new_1355.RULE index 1f5da6c228..73001d69b6 100644 --- a/src/licensedcode/data/rules/bsd-new_1355.RULE +++ b/src/licensedcode/data/rules/bsd-new_1355.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -freely available under a BSD-style license. \ No newline at end of file +freely available under a {{BSD-style license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1356.RULE b/src/licensedcode/data/rules/bsd-new_1356.RULE index 34ec658db1..856dc0a5c8 100644 --- a/src/licensedcode/data/rules/bsd-new_1356.RULE +++ b/src/licensedcode/data/rules/bsd-new_1356.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -available under a BSD-style license. \ No newline at end of file +available under a {{BSD-style license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_136.RULE b/src/licensedcode/data/rules/bsd-new_136.RULE index 23772a5b9b..ec19716e72 100644 --- a/src/licensedcode/data/rules/bsd-new_136.RULE +++ b/src/licensedcode/data/rules/bsd-new_136.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -complies with Open Source BSD License. \ No newline at end of file +complies with Open Source {{BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1360.RULE b/src/licensedcode/data/rules/bsd-new_1360.RULE index eceafbc10d..b3ba5fdca5 100644 --- a/src/licensedcode/data/rules/bsd-new_1360.RULE +++ b/src/licensedcode/data/rules/bsd-new_1360.RULE @@ -5,4 +5,4 @@ relevance: 100 --- ### License ### -Our license is based on the modified, __3-clause BSD__-License. \ No newline at end of file +Our license is based on the modified, __{{3-clause BSD__-License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1361.RULE b/src/licensedcode/data/rules/bsd-new_1361.RULE index 51ed130ba1..d690f2783c 100644 --- a/src/licensedcode/data/rules/bsd-new_1361.RULE +++ b/src/licensedcode/data/rules/bsd-new_1361.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -license is based on the modified, __3-clause BSD__-License. \ No newline at end of file +license is based on the modified, __{{3-clause BSD__-License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1362.RULE b/src/licensedcode/data/rules/bsd-new_1362.RULE index f4d7fabe00..474e044407 100644 --- a/src/licensedcode/data/rules/bsd-new_1362.RULE +++ b/src/licensedcode/data/rules/bsd-new_1362.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -based on the modified, __3-clause BSD__-License. \ No newline at end of file +based on the modified, __{{3-clause BSD__-License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1366.RULE b/src/licensedcode/data/rules/bsd-new_1366.RULE index aad5bf6411..c3c52d40a2 100644 --- a/src/licensedcode/data/rules/bsd-new_1366.RULE +++ b/src/licensedcode/data/rules/bsd-new_1366.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -BSD license source code. \ No newline at end of file +{{BSD license}} source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1367.RULE b/src/licensedcode/data/rules/bsd-new_1367.RULE index 4e3c0896bf..80af008cb0 100644 --- a/src/licensedcode/data/rules/bsd-new_1367.RULE +++ b/src/licensedcode/data/rules/bsd-new_1367.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -BSD-licensed code, so you can use both in free software and commercial software. \ No newline at end of file +{{BSD-licensed}} code, so you can use both in free software and commercial software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_137.RULE b/src/licensedcode/data/rules/bsd-new_137.RULE index 8ad729a7d4..be265252db 100644 --- a/src/licensedcode/data/rules/bsd-new_137.RULE +++ b/src/licensedcode/data/rules/bsd-new_137.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -This header is BSD licensed \ No newline at end of file +This header is {{BSD licensed}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1372.RULE b/src/licensedcode/data/rules/bsd-new_1372.RULE index 371e0609c4..1e46e8e1a7 100644 --- a/src/licensedcode/data/rules/bsd-new_1372.RULE +++ b/src/licensedcode/data/rules/bsd-new_1372.RULE @@ -1,10 +1,11 @@ --- license_expression: bsd-new is_license_text: yes +skip_for_required_phrase_generation: yes minimum_coverage: 90 --- -{{Simplified BSD License }} +Simplified BSD License Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -16,9 +17,9 @@ are permitted provided that the following conditions are met: this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -{{ * Neither the name of nor the names of its contributors may be used to + * Neither the name of nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior -written permission. }} +written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED diff --git a/src/licensedcode/data/rules/bsd-new_138.RULE b/src/licensedcode/data/rules/bsd-new_138.RULE index 0d16a79818..e47fba4e12 100644 --- a/src/licensedcode/data/rules/bsd-new_138.RULE +++ b/src/licensedcode/data/rules/bsd-new_138.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 99 --- -This header is BSD licensed so +This header is {{BSD licensed}} so anyone can use the definitions to implement compatible remote processors \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1381.RULE b/src/licensedcode/data/rules/bsd-new_1381.RULE index c89a5ddd6b..82115ba716 100644 --- a/src/licensedcode/data/rules/bsd-new_1381.RULE +++ b/src/licensedcode/data/rules/bsd-new_1381.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed as BSD 3-Clause \ No newline at end of file +licensed as {{BSD 3-Clause}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1383.RULE b/src/licensedcode/data/rules/bsd-new_1383.RULE index cc430e470e..70d83b5fa9 100644 --- a/src/licensedcode/data/rules/bsd-new_1383.RULE +++ b/src/licensedcode/data/rules/bsd-new_1383.RULE @@ -7,5 +7,5 @@ relevance: 99 NOTE: Only certain parts of the ScummVM project are under the {{BSD license}}. The majority of the files are under the {{GNU GPL.}} See the headers of the individual files to find out the exact license. -The term "BSD license" refers to any {{BSD-like license}}, as they are sometimes +The term "{{BSD license}}" refers to any {{BSD-like license}}, as they are sometimes hard to tell apart. No slight against other licenses is intended. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_139.RULE b/src/licensedcode/data/rules/bsd-new_139.RULE index 01d33cd057..a0598fc4be 100644 --- a/src/licensedcode/data/rules/bsd-new_139.RULE +++ b/src/licensedcode/data/rules/bsd-new_139.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 99 --- -This header is BSD licensed so anyone can use the definitions to implement +This header is {{BSD licensed}} so anyone can use the definitions to implement compatible drivers/servers. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_1423.RULE b/src/licensedcode/data/rules/bsd-new_1423.RULE new file mode 100644 index 0000000000..3fd9b94e2b --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_1423.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +relevance: 99 +notes: UCB is University of California at Berkeley +--- + +redistributed under the terms of the {{UCB BSD}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_143.RULE b/src/licensedcode/data/rules/bsd-new_143.RULE index f3cc05dda2..b9a61f39d5 100644 --- a/src/licensedcode/data/rules/bsd-new_143.RULE +++ b/src/licensedcode/data/rules/bsd-new_143.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-new -is_license_reference: yes +is_license_tag: yes +is_required_phrase: yes relevance: 99 referenced_filenames: - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_144.RULE b/src/licensedcode/data/rules/bsd-new_144.RULE index 2fca74fdee..12f71172df 100644 --- a/src/licensedcode/data/rules/bsd-new_144.RULE +++ b/src/licensedcode/data/rules/bsd-new_144.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -BSD 3-Clause License (a.k.a Revised, New, or Modified) \ No newline at end of file +{{BSD 3-Clause License}} (a.k.a Revised, New, or Modified) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_145.RULE b/src/licensedcode/data/rules/bsd-new_145.RULE index 777ecb0215..16fccfa815 100644 --- a/src/licensedcode/data/rules/bsd-new_145.RULE +++ b/src/licensedcode/data/rules/bsd-new_145.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 99 --- -The BSD license \ No newline at end of file +the BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_16.RULE b/src/licensedcode/data/rules/bsd-new_16.RULE index 631f4af39d..c1c36832b9 100644 --- a/src/licensedcode/data/rules/bsd-new_16.RULE +++ b/src/licensedcode/data/rules/bsd-new_16.RULE @@ -6,5 +6,5 @@ referenced_filenames: - License.txt --- -The source code is distributed under BSD license, see the file License.txt +The source code is distributed under {{BSD license}}, see the file License.txt at the top-level directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_162.RULE b/src/licensedcode/data/rules/bsd-new_162.RULE index da7167cdf0..1b71dfee93 100644 --- a/src/licensedcode/data/rules/bsd-new_162.RULE +++ b/src/licensedcode/data/rules/bsd-new_162.RULE @@ -6,6 +6,6 @@ is_license_reference: yes License ------- -The software is provided under a BSD-3-Clause `license`_. Contributions to this +The software is provided under a {{BSD-3-Clause `license}}`_. Contributions to this project are accepted under the same license with developer sign-off as described in the `Contributing Guidelines`_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_167.RULE b/src/licensedcode/data/rules/bsd-new_167.RULE index 4de9103342..ac61d3480a 100644 --- a/src/licensedcode/data/rules/bsd-new_167.RULE +++ b/src/licensedcode/data/rules/bsd-new_167.RULE @@ -6,4 +6,4 @@ minimum_coverage: 90 --- This product includes the ASM byte code manipulation library from -INRIA (BSD Style License) \ No newline at end of file +INRIA ({{BSD Style License}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_169.RULE b/src/licensedcode/data/rules/bsd-new_169.RULE index 673cabe0ce..17195fed82 100644 --- a/src/licensedcode/data/rules/bsd-new_169.RULE +++ b/src/licensedcode/data/rules/bsd-new_169.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 90 --- diff --git a/src/licensedcode/data/rules/bsd-new_17.RULE b/src/licensedcode/data/rules/bsd-new_17.RULE index 3231c38147..3999f28531 100644 --- a/src/licensedcode/data/rules/bsd-new_17.RULE +++ b/src/licensedcode/data/rules/bsd-new_17.RULE @@ -4,5 +4,5 @@ is_license_notice: yes notes: Debian BSD license --- -licensed with the standard 3-clause BSD license. On Debian GNU/Linux -systems, this license can be found in `/usr/share/common-licenses/BSD'. \ No newline at end of file +licensed with the standard {{3-clause BSD license}}. On Debian GNU/Linux +systems, this license can be found in `/usr/share/common-{{licenses/BSD}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_172.RULE b/src/licensedcode/data/rules/bsd-new_172.RULE index ffcecf0e9a..69e07ba13d 100644 --- a/src/licensedcode/data/rules/bsd-new_172.RULE +++ b/src/licensedcode/data/rules/bsd-new_172.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -__license__ = 'BSD license' \ No newline at end of file +__license__ = '{{BSD license}}' \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_174.RULE b/src/licensedcode/data/rules/bsd-new_174.RULE index cdfb5a7a42..d906dff6a2 100644 --- a/src/licensedcode/data/rules/bsd-new_174.RULE +++ b/src/licensedcode/data/rules/bsd-new_174.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- is available for use under the following license, commonly known -as the 3-clause (or "modified") BSD license: +as the 3-clause (or "{{modified") BSD license}}: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -30,5 +30,5 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ============================== Portions of are based on works by others, also made available by -them under the three-clause BSD license above. The copyright notices are +them under the {{three-clause BSD license}} above. The copyright notices are available in the corresponding source files; the license is as above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_179.RULE b/src/licensedcode/data/rules/bsd-new_179.RULE index 15995bdcfa..bce0421d99 100644 --- a/src/licensedcode/data/rules/bsd-new_179.RULE +++ b/src/licensedcode/data/rules/bsd-new_179.RULE @@ -9,5 +9,5 @@ ignorable_urls: - https://cs.chromium.org/chromium/src/LICENSE --- -Use of this source code is governed by a BSD-style license that may +Use of this source code is {{governed by a BSD-style license}} that may be found in the LICENSE file https://cs.chromium.org/chromium/src/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_180.RULE b/src/licensedcode/data/rules/bsd-new_180.RULE index 83a031d3c0..6858ac6d42 100644 --- a/src/licensedcode/data/rules/bsd-new_180.RULE +++ b/src/licensedcode/data/rules/bsd-new_180.RULE @@ -8,7 +8,7 @@ ignorable_urls: This is free software. It is licensed for use, modification and redistribution under the terms of the -Modified (3 clause) Berkeley Software Distribution License +Modified (3 clause) {{Berkeley Software Distribution License}} Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_185.RULE b/src/licensedcode/data/rules/bsd-new_185.RULE index aa84b23d83..8b321994ff 100644 --- a/src/licensedcode/data/rules/bsd-new_185.RULE +++ b/src/licensedcode/data/rules/bsd-new_185.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-new is_license_notice: yes +skip_for_required_phrase_generation: yes relevance: 100 referenced_filenames: - COPYING diff --git a/src/licensedcode/data/rules/bsd-new_187.RULE b/src/licensedcode/data/rules/bsd-new_187.RULE index 5469d4c4ea..8cd01c1e02 100644 --- a/src/licensedcode/data/rules/bsd-new_187.RULE +++ b/src/licensedcode/data/rules/bsd-new_187.RULE @@ -7,7 +7,7 @@ ignorable_urls: Redistribution and use in source and binary forms, with or without modification, is permitted pursuant to, and subject - to the license terms contained in, the Simplified BSD License + to the license terms contained in, the Simplified {{BSD License}} set forth in Section 4.c of the IETF Trust's Legal Provisions Relating to IETF Documents (http://trustee.ietf.org/license-info)." \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_190.RULE b/src/licensedcode/data/rules/bsd-new_190.RULE index d9dd1eb6d4..6caa5ff802 100644 --- a/src/licensedcode/data/rules/bsd-new_190.RULE +++ b/src/licensedcode/data/rules/bsd-new_190.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -It is licensed under a BSD license. \ No newline at end of file +It is licensed under a {{BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_191.RULE b/src/licensedcode/data/rules/bsd-new_191.RULE index 0cc18763a3..43476827ae 100644 --- a/src/licensedcode/data/rules/bsd-new_191.RULE +++ b/src/licensedcode/data/rules/bsd-new_191.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -are also licensed under the 3-clause BSD license \ No newline at end of file +are also licensed under the {{3-clause BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_192.RULE b/src/licensedcode/data/rules/bsd-new_192.RULE index fd6efbc3d8..46b66f00a4 100644 --- a/src/licensedcode/data/rules/bsd-new_192.RULE +++ b/src/licensedcode/data/rules/bsd-new_192.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -Distributed under the BSD License \ No newline at end of file +Distributed under {{the BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_193.RULE b/src/licensedcode/data/rules/bsd-new_193.RULE index 59d51da7bd..3da1885672 100644 --- a/src/licensedcode/data/rules/bsd-new_193.RULE +++ b/src/licensedcode/data/rules/bsd-new_193.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- // This library is free software; you can redistribute it and/or modify it -// under the terms of the New BSD License, a copy of which should have +// under the terms of the {{New BSD License}}, a copy of which should have // been delivered along with this distribution. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS diff --git a/src/licensedcode/data/rules/bsd-new_194.RULE b/src/licensedcode/data/rules/bsd-new_194.RULE index a8084fdb93..b492cd128a 100644 --- a/src/licensedcode/data/rules/bsd-new_194.RULE +++ b/src/licensedcode/data/rules/bsd-new_194.RULE @@ -3,4 +3,4 @@ license_expression: bsd-new is_license_notice: yes --- -This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree \ No newline at end of file +This source code is licensed under the {{BSD-style license}} found in the * LICENSE file in the root directory of this source tree \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_195.RULE b/src/licensedcode/data/rules/bsd-new_195.RULE index c62e4032e1..dad372165e 100644 --- a/src/licensedcode/data/rules/bsd-new_195.RULE +++ b/src/licensedcode/data/rules/bsd-new_195.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-new is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -license BSD-3-Clause \ No newline at end of file +License: BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_196.RULE b/src/licensedcode/data/rules/bsd-new_196.RULE index 936a3d1938..4e8206bdc6 100644 --- a/src/licensedcode/data/rules/bsd-new_196.RULE +++ b/src/licensedcode/data/rules/bsd-new_196.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. \ No newline at end of file +Copyrights licensed under the {{New BSD License}}. See the accompanying LICENSE file for terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_198.RULE b/src/licensedcode/data/rules/bsd-new_198.RULE index 912e257fde..b63f6e4098 100644 --- a/src/licensedcode/data/rules/bsd-new_198.RULE +++ b/src/licensedcode/data/rules/bsd-new_198.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the bsd-3-clause license \ No newline at end of file +licensed under the {{bsd-3-clause license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_199.RULE b/src/licensedcode/data/rules/bsd-new_199.RULE index f13fb3f7ff..c4d3378056 100644 --- a/src/licensedcode/data/rules/bsd-new_199.RULE +++ b/src/licensedcode/data/rules/bsd-new_199.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -It's licensed under the terms of the 3-clause BSD license. \ No newline at end of file +It's licensed under the terms of the {{3-clause BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_201.RULE b/src/licensedcode/data/rules/bsd-new_201.RULE index ac08dd3c2e..b8bb1ceedc 100644 --- a/src/licensedcode/data/rules/bsd-new_201.RULE +++ b/src/licensedcode/data/rules/bsd-new_201.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 90 --- -under a BSD-style license \ No newline at end of file +under a {{BSD-style license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_202.RULE b/src/licensedcode/data/rules/bsd-new_202.RULE index 4b07618820..8dcbdcd84a 100644 --- a/src/licensedcode/data/rules/bsd-new_202.RULE +++ b/src/licensedcode/data/rules/bsd-new_202.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -contributed by under a BSD-style license. \ No newline at end of file +contributed by under a {{BSD-style license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_203.RULE b/src/licensedcode/data/rules/bsd-new_203.RULE index 10508cb8e6..a9e49e7652 100644 --- a/src/licensedcode/data/rules/bsd-new_203.RULE +++ b/src/licensedcode/data/rules/bsd-new_203.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -under the Revised BSD license \ No newline at end of file +under the {{Revised BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_21.RULE b/src/licensedcode/data/rules/bsd-new_21.RULE index e8efb8e8dc..4c83ddacd8 100644 --- a/src/licensedcode/data/rules/bsd-new_21.RULE +++ b/src/licensedcode/data/rules/bsd-new_21.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 80 --- -version claims to be BSD licensed: \ No newline at end of file +version claims to be {{BSD licensed}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_210.RULE b/src/licensedcode/data/rules/bsd-new_210.RULE index b6eaa28d48..df4f44cbb0 100644 --- a/src/licensedcode/data/rules/bsd-new_210.RULE +++ b/src/licensedcode/data/rules/bsd-new_210.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is licensed under the terms of the "Three-Clause BSD License". \ No newline at end of file +is licensed under the terms of the "{{Three-Clause BSD License}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_212.RULE b/src/licensedcode/data/rules/bsd-new_212.RULE index 59a919be82..5b5f1ff345 100644 --- a/src/licensedcode/data/rules/bsd-new_212.RULE +++ b/src/licensedcode/data/rules/bsd-new_212.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -source code is released under the BSD License \ No newline at end of file +source code is released under {{the BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_213.RULE b/src/licensedcode/data/rules/bsd-new_213.RULE index f37ab40206..3049e2f871 100644 --- a/src/licensedcode/data/rules/bsd-new_213.RULE +++ b/src/licensedcode/data/rules/bsd-new_213.RULE @@ -3,4 +3,4 @@ license_expression: bsd-new is_license_notice: yes --- -source code is released under the BSD License. This license is very simple, and is friendly to all kinds of projects, whether open source or not. \ No newline at end of file +source code is released under {{the BSD License}}. This license is very simple, and is friendly to all kinds of projects, whether open source or not. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_214.RULE b/src/licensedcode/data/rules/bsd-new_214.RULE index 400e70aa90..dc5a4bcd17 100644 --- a/src/licensedcode/data/rules/bsd-new_214.RULE +++ b/src/licensedcode/data/rules/bsd-new_214.RULE @@ -7,4 +7,4 @@ ignorable_urls: ## License -This package is licensed under the [BSD 3-Clause license](http://opensource.org/licenses/BSD-3-Clause). \ No newline at end of file +This package is licensed under the [{{BSD 3-Clause license}}](http://opensource.org/licenses/BSD-3-Clause). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_215.RULE b/src/licensedcode/data/rules/bsd-new_215.RULE index a5f3aaf400..93d167d436 100644 --- a/src/licensedcode/data/rules/bsd-new_215.RULE +++ b/src/licensedcode/data/rules/bsd-new_215.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 90 --- -is BSD-licensed. \ No newline at end of file +is {{BSD-licensed}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_216.RULE b/src/licensedcode/data/rules/bsd-new_216.RULE index 1bda9d25cb..634b5dbc59 100644 --- a/src/licensedcode/data/rules/bsd-new_216.RULE +++ b/src/licensedcode/data/rules/bsd-new_216.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://choosealicense.com/licenses/bsd-3-clause --- -License: [`bsd-3-clause`](http://choosealicense.com/licenses/bsd-3-clause/) \ No newline at end of file +{{License: [`bsd-3-clause}}`](http://choosealicense.com/licenses/bsd-3-clause/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_217.RULE b/src/licensedcode/data/rules/bsd-new_217.RULE index ceae1357b7..6b914bcf9c 100644 --- a/src/licensedcode/data/rules/bsd-new_217.RULE +++ b/src/licensedcode/data/rules/bsd-new_217.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Code License: [BSD 3-Clause License] \ No newline at end of file +Code {{License: [BSD 3-Clause}} License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_219.RULE b/src/licensedcode/data/rules/bsd-new_219.RULE index 8711b374f8..338138e0c8 100644 --- a/src/licensedcode/data/rules/bsd-new_219.RULE +++ b/src/licensedcode/data/rules/bsd-new_219.RULE @@ -6,9 +6,9 @@ ignorable_urls: - http://www.opensource.org/licenses/BSD-3-Clause --- -is licensed under The BSD License (3 Clause, also known as -the new BSD license). The license is an OSI approved Open Source -license and is GPL-compatible(1). +is licensed under {{The BSD License (3 Clause}}, also known as +the new {{BSD license}}). The license is an OSI approved Open Source +license and is {{GPL-compatible}}(1). The license text can also be found here: http://www.opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_221.RULE b/src/licensedcode/data/rules/bsd-new_221.RULE index 3485754bbe..8013f00d37 100644 --- a/src/licensedcode/data/rules/bsd-new_221.RULE +++ b/src/licensedcode/data/rules/bsd-new_221.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/BSD-3-Clause --- -https://opensource.org/licenses/BSD-3-Clause BSD-3-Clause \ No newline at end of file +https://opensource.org/licenses/BSD-3-Clause {{BSD-3-Clause}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_223.RULE b/src/licensedcode/data/rules/bsd-new_223.RULE index e0281a7cdf..da56485d53 100644 --- a/src/licensedcode/data/rules/bsd-new_223.RULE +++ b/src/licensedcode/data/rules/bsd-new_223.RULE @@ -8,5 +8,5 @@ is_license_notice: yes License ======= -This software is licensed under the `New BSD License`. See the ``LICENSE`` +This software is licensed under the `{{New BSD License}}`. See the ``LICENSE`` file in the top distribution directory for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_224.RULE b/src/licensedcode/data/rules/bsd-new_224.RULE index a555344307..b155549209 100644 --- a/src/licensedcode/data/rules/bsd-new_224.RULE +++ b/src/licensedcode/data/rules/bsd-new_224.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/BSD-3-Clause --- -BSD License +{{BSD License}} :target: https://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_226.RULE b/src/licensedcode/data/rules/bsd-new_226.RULE index 8223c9840d..c7ed43c652 100644 --- a/src/licensedcode/data/rules/bsd-new_226.RULE +++ b/src/licensedcode/data/rules/bsd-new_226.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_227.RULE b/src/licensedcode/data/rules/bsd-new_227.RULE index 94bb765ede..bd14f4132c 100644 --- a/src/licensedcode/data/rules/bsd-new_227.RULE +++ b/src/licensedcode/data/rules/bsd-new_227.RULE @@ -5,4 +5,4 @@ relevance: 80 notes: this is used to point to a mentalis license in some rare usage. --- -is available under the BSD license. See the [LICENSE file] \ No newline at end of file +is available under {{the BSD license}}. See the [LICENSE file] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_228.RULE b/src/licensedcode/data/rules/bsd-new_228.RULE index 9f88ee6590..37443a2f31 100644 --- a/src/licensedcode/data/rules/bsd-new_228.RULE +++ b/src/licensedcode/data/rules/bsd-new_228.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -New BSD License \ No newline at end of file +new') BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_229.RULE b/src/licensedcode/data/rules/bsd-new_229.RULE index 45d8e6ffca..adcb634922 100644 --- a/src/licensedcode/data/rules/bsd-new_229.RULE +++ b/src/licensedcode/data/rules/bsd-new_229.RULE @@ -3,4 +3,4 @@ license_expression: bsd-new is_license_notice: yes --- -is open source software licensed under the New BSD License. See the [LICENSE.txt](LICENSE.txt) file for more. \ No newline at end of file +is open source software licensed under the {{New BSD License}}. See the [LICENSE.txt](LICENSE.txt) file for more. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_242.RULE b/src/licensedcode/data/rules/bsd-new_242.RULE index cd46e91bb7..957c80c0a7 100644 --- a/src/licensedcode/data/rules/bsd-new_242.RULE +++ b/src/licensedcode/data/rules/bsd-new_242.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -is licensed under the BSD license. \ No newline at end of file +is licensed under {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_245.RULE b/src/licensedcode/data/rules/bsd-new_245.RULE index f4b21276f0..351b9bf454 100644 --- a/src/licensedcode/data/rules/bsd-new_245.RULE +++ b/src/licensedcode/data/rules/bsd-new_245.RULE @@ -3,5 +3,5 @@ license_expression: bsd-new is_license_notice: yes --- -All the software is licensed under the Modified BSD license. So you are +All the software is licensed under the {{Modified BSD license}}. So you are free to use it and incorporate it into any package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_246.RULE b/src/licensedcode/data/rules/bsd-new_246.RULE index 9ff7a52c53..7322c90a1e 100644 --- a/src/licensedcode/data/rules/bsd-new_246.RULE +++ b/src/licensedcode/data/rules/bsd-new_246.RULE @@ -3,5 +3,5 @@ license_expression: bsd-new is_license_reference: yes --- -is open source software licensed under the BSD 3-Clause License. +is open source software licensed under the {{BSD 3-Clause License}}. See the LICENSE.txt file for more. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_248.RULE b/src/licensedcode/data/rules/bsd-new_248.RULE index 592cf83871..7f1d6e9f04 100644 --- a/src/licensedcode/data/rules/bsd-new_248.RULE +++ b/src/licensedcode/data/rules/bsd-new_248.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -This is licensed under the BSD license, see above. \ No newline at end of file +This is licensed under {{the BSD license}}, see above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_249.RULE b/src/licensedcode/data/rules/bsd-new_249.RULE index b23891c252..24c08da273 100644 --- a/src/licensedcode/data/rules/bsd-new_249.RULE +++ b/src/licensedcode/data/rules/bsd-new_249.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -This is licensed under the BSD license \ No newline at end of file +This is licensed under {{the BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_252.RULE b/src/licensedcode/data/rules/bsd-new_252.RULE index f32f0f0107..eb49fd6b29 100644 --- a/src/licensedcode/data/rules/bsd-new_252.RULE +++ b/src/licensedcode/data/rules/bsd-new_252.RULE @@ -6,4 +6,4 @@ referenced_filenames: - License.txt --- -Licensed under the BSD 3-Clause License; see License.txt. \ No newline at end of file +Licensed under the {{BSD 3-Clause License}}; see License.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_253.RULE b/src/licensedcode/data/rules/bsd-new_253.RULE index 27d133c2e9..63cede1a6a 100644 --- a/src/licensedcode/data/rules/bsd-new_253.RULE +++ b/src/licensedcode/data/rules/bsd-new_253.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -Licensed under the BSD License. See LICENSE.txt in the project root for license information. \ No newline at end of file +Licensed under {{the BSD License}}. See LICENSE.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_254.RULE b/src/licensedcode/data/rules/bsd-new_254.RULE index d8f6d08251..84a6b9bd79 100644 --- a/src/licensedcode/data/rules/bsd-new_254.RULE +++ b/src/licensedcode/data/rules/bsd-new_254.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Licensed under the BSD License. See LICENSE in the project root for license information. \ No newline at end of file +Licensed under {{the BSD License}}. See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_255.RULE b/src/licensedcode/data/rules/bsd-new_255.RULE index b5fb2d93b7..2695d2056b 100644 --- a/src/licensedcode/data/rules/bsd-new_255.RULE +++ b/src/licensedcode/data/rules/bsd-new_255.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 95 --- -Open Source Software Licensed Under the BSD License: \ No newline at end of file +Open Source Software Licensed Under {{the BSD License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_258.RULE b/src/licensedcode/data/rules/bsd-new_258.RULE index f6d6ee5045..e65a2e47e0 100644 --- a/src/licensedcode/data/rules/bsd-new_258.RULE +++ b/src/licensedcode/data/rules/bsd-new_258.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License New BSD License \ No newline at end of file +License {{New BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_259.RULE b/src/licensedcode/data/rules/bsd-new_259.RULE index a2ee5d9098..b14843946b 100644 --- a/src/licensedcode/data/rules/bsd-new_259.RULE +++ b/src/licensedcode/data/rules/bsd-new_259.RULE @@ -5,5 +5,5 @@ referenced_filenames: - COPYING-CMAKE-SCRIPTS --- -Redistribution and use is allowed according to the terms of the BSD license. +Redistribution and use is allowed according to the terms of {{the BSD license}}. For details see the accompanying COPYING-CMAKE-SCRIPTS file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_25_1.RULE b/src/licensedcode/data/rules/bsd-new_25_1.RULE index 562f626f51..e5973ed58a 100644 --- a/src/licensedcode/data/rules/bsd-new_25_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_25_1.RULE @@ -6,5 +6,5 @@ referenced_filenames: - BSD_LICENSE --- -Use of this source code is governed by a BSD-style license that can be found in the +Use of this source code is {{governed by a BSD-style license}} that can be found in the BSD_LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_25_2.RULE b/src/licensedcode/data/rules/bsd-new_25_2.RULE index 8ae12dfa23..e657b8ee28 100644 --- a/src/licensedcode/data/rules/bsd-new_25_2.RULE +++ b/src/licensedcode/data/rules/bsd-new_25_2.RULE @@ -5,5 +5,5 @@ referenced_filenames: - LICENSE --- -available under the same style of BSD license as the Go language, +available under the same style of {{BSD license}} as the Go language, which can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_26.RULE b/src/licensedcode/data/rules/bsd-new_26.RULE index 1c7638335b..f96177434e 100644 --- a/src/licensedcode/data/rules/bsd-new_26.RULE +++ b/src/licensedcode/data/rules/bsd-new_26.RULE @@ -1,7 +1,9 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 99 --- -BSD License \ No newline at end of file +BSD + License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_260.RULE b/src/licensedcode/data/rules/bsd-new_260.RULE index d32ef9c6c2..8ab912801b 100644 --- a/src/licensedcode/data/rules/bsd-new_260.RULE +++ b/src/licensedcode/data/rules/bsd-new_260.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Redistribution and use is allowed according to the terms of the BSD license. \ No newline at end of file +Redistribution and use is allowed according to the terms of {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_263.RULE b/src/licensedcode/data/rules/bsd-new_263.RULE index 082430cad4..a98677bff1 100644 --- a/src/licensedcode/data/rules/bsd-new_263.RULE +++ b/src/licensedcode/data/rules/bsd-new_263.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license --- -(BSD License: http://www.opensource.org/licenses/bsd-license) \ No newline at end of file +({{BSD License}}: http://www.opensource.org/licenses/bsd-license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_266.RULE b/src/licensedcode/data/rules/bsd-new_266.RULE index 868fdbba17..a7cf71d8dc 100644 --- a/src/licensedcode/data/rules/bsd-new_266.RULE +++ b/src/licensedcode/data/rules/bsd-new_266.RULE @@ -6,5 +6,5 @@ referenced_filenames: - README --- -This software may be distributed under the terms of the BSD license. +This software may be distributed under the terms of {{the BSD license}}. See README for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_270.RULE b/src/licensedcode/data/rules/bsd-new_270.RULE index f8223b509f..6a355542df 100644 --- a/src/licensedcode/data/rules/bsd-new_270.RULE +++ b/src/licensedcode/data/rules/bsd-new_270.RULE @@ -7,5 +7,5 @@ ignorable_urls: - http://opensource.org/licenses/bsd-license.php --- -# The BSD License +# {{The BSD License}} # http://opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_28.RULE b/src/licensedcode/data/rules/bsd-new_28.RULE index 30cd33f2b7..f7a197bc28 100644 --- a/src/licensedcode/data/rules/bsd-new_28.RULE +++ b/src/licensedcode/data/rules/bsd-new_28.RULE @@ -7,4 +7,4 @@ notes: bsdn notice variant, debian style License: -Software licensed under the BSD license, see /usr/share/common-licenses/BSD \ No newline at end of file +Software licensed under {{the BSD license}}, see /usr/share/common-{{licenses/BSD}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_280.RULE b/src/licensedcode/data/rules/bsd-new_280.RULE index 540423b01a..a930726ba0 100644 --- a/src/licensedcode/data/rules/bsd-new_280.RULE +++ b/src/licensedcode/data/rules/bsd-new_280.RULE @@ -3,7 +3,7 @@ license_expression: bsd-new is_license_reference: yes --- -If you choose to use this file in compliance with the BSD License, the +If you choose to use this file in compliance with {{the BSD License}}, the following notice applies to you: Redistribution and use in source and binary forms, with or without diff --git a/src/licensedcode/data/rules/bsd-new_281.RULE b/src/licensedcode/data/rules/bsd-new_281.RULE index 765e09dbf1..9c6ac85ad1 100644 --- a/src/licensedcode/data/rules/bsd-new_281.RULE +++ b/src/licensedcode/data/rules/bsd-new_281.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the New BSD License. \ No newline at end of file +licensed under the {{New BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_282.RULE b/src/licensedcode/data/rules/bsd-new_282.RULE index 3bcbcd8c2c..338142efb4 100644 --- a/src/licensedcode/data/rules/bsd-new_282.RULE +++ b/src/licensedcode/data/rules/bsd-new_282.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -under the BSD license \ No newline at end of file +under {{the BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_283.RULE b/src/licensedcode/data/rules/bsd-new_283.RULE index 1535d23621..e96a45f7a0 100644 --- a/src/licensedcode/data/rules/bsd-new_283.RULE +++ b/src/licensedcode/data/rules/bsd-new_283.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The terms of use of the software are governed by the BSD license. \ No newline at end of file +The terms of use of the software are governed by {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_284.RULE b/src/licensedcode/data/rules/bsd-new_284.RULE index c0f5734c24..285618c820 100644 --- a/src/licensedcode/data/rules/bsd-new_284.RULE +++ b/src/licensedcode/data/rules/bsd-new_284.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.txt --- -is released under the new BSD 3-clause license. See +is released under the new {{BSD 3-clause license}}. See LICENSE.txt for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_285.RULE b/src/licensedcode/data/rules/bsd-new_285.RULE index cd69481913..02b39b18eb 100644 --- a/src/licensedcode/data/rules/bsd-new_285.RULE +++ b/src/licensedcode/data/rules/bsd-new_285.RULE @@ -7,4 +7,4 @@ referenced_filenames: License -You may use under the terms of the BSD-style license described in the enclosed LICENSE.txt file. \ No newline at end of file +You may use under the terms of the {{BSD-style license}} described in the enclosed LICENSE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_286.RULE b/src/licensedcode/data/rules/bsd-new_286.RULE index 9c88a8d491..19a3ab8a44 100644 --- a/src/licensedcode/data/rules/bsd-new_286.RULE +++ b/src/licensedcode/data/rules/bsd-new_286.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 99 --- -which have been permitted for use under the -BSD license. \ No newline at end of file +which have been permitted for use under {{the +BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_288.RULE b/src/licensedcode/data/rules/bsd-new_288.RULE index 3c1ab1abd4..b95b19d801 100644 --- a/src/licensedcode/data/rules/bsd-new_288.RULE +++ b/src/licensedcode/data/rules/bsd-new_288.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -source used under the New BSD license \ No newline at end of file +source used under the {{New BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_290.RULE b/src/licensedcode/data/rules/bsd-new_290.RULE index d60a88bdb0..9a58c6ef36 100644 --- a/src/licensedcode/data/rules/bsd-new_290.RULE +++ b/src/licensedcode/data/rules/bsd-new_290.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -This project bundles the following dependencies under the BSD license. +This project bundles the following dependencies under {{the BSD license}}. See bundled license files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_291.RULE b/src/licensedcode/data/rules/bsd-new_291.RULE index 8fa5d1e701..f7736f2de2 100644 --- a/src/licensedcode/data/rules/bsd-new_291.RULE +++ b/src/licensedcode/data/rules/bsd-new_291.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -# Software is free software released under the "Modified BSD license" \ No newline at end of file +# Software is free software released under the "{{Modified BSD license}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_292.RULE b/src/licensedcode/data/rules/bsd-new_292.RULE index 4819edd5a7..e5ca12b108 100644 --- a/src/licensedcode/data/rules/bsd-new_292.RULE +++ b/src/licensedcode/data/rules/bsd-new_292.RULE @@ -1,8 +1,8 @@ --- license_expression: bsd-new is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 90 --- -a BSD-style license \ No newline at end of file +BSD-style license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_294.RULE b/src/licensedcode/data/rules/bsd-new_294.RULE index 3bbae88fda..05e8887c1a 100644 --- a/src/licensedcode/data/rules/bsd-new_294.RULE +++ b/src/licensedcode/data/rules/bsd-new_294.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -a BSD-license implementation of the public domain \ No newline at end of file +a {{BSD-license}} implementation of the public domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_300.RULE b/src/licensedcode/data/rules/bsd-new_300.RULE index ced9e79632..2e8ed510ce 100644 --- a/src/licensedcode/data/rules/bsd-new_300.RULE +++ b/src/licensedcode/data/rules/bsd-new_300.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This program is licensed under the BSD license (the one with +This program is licensed under {{the BSD license}} (the one with advertisement clause removed). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_301.RULE b/src/licensedcode/data/rules/bsd-new_301.RULE index aa7bb240f1..f5d4b897cd 100644 --- a/src/licensedcode/data/rules/bsd-new_301.RULE +++ b/src/licensedcode/data/rules/bsd-new_301.RULE @@ -8,9 +8,9 @@ See the README file for the current license terms. This software was previously distributed under BSD/GPL v2 dual license terms that allowed either of those license alternatives to be selected. As of February 11, 2012, the project has chosen to use only -the BSD license option for future distribution. As such, the GPL v2 -license option is no longer used. It should be noted that the BSD -license option (the one with advertisement clause removed) is compatible +{{the BSD license}} option for future distribution. As such, the GPL v2 +license option is no longer used. It should be noted that {{the BSD +license}} option (the one with advertisement clause removed) is compatible with GPL and as such, does not prevent use of this software in projects that use GPL. diff --git a/src/licensedcode/data/rules/bsd-new_302.RULE b/src/licensedcode/data/rules/bsd-new_302.RULE index 049440e635..6b0fc00ca5 100644 --- a/src/licensedcode/data/rules/bsd-new_302.RULE +++ b/src/licensedcode/data/rules/bsd-new_302.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -"License": "BSD 3-clause \"New\" or \"Revised\" License", \ No newline at end of file +"{{License": "BSD 3-clause}} \"New\" or \"Revised\" License", \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_303.RULE b/src/licensedcode/data/rules/bsd-new_303.RULE index 2c58f25cc5..9f3ff46ba0 100644 --- a/src/licensedcode/data/rules/bsd-new_303.RULE +++ b/src/licensedcode/data/rules/bsd-new_303.RULE @@ -5,6 +5,6 @@ relevance: 100 minimum_coverage: 95 --- -"License": "BSD 3-clause \"New\" or \"Revised\" License", +"{{License": "BSD 3-clause}} \"New\" or \"Revised\" License", "LicenseFile": -"LicenseId": "BSD-3-Clause", \ No newline at end of file +"LicenseId": "{{BSD-3-Clause}}", \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_304.RULE b/src/licensedcode/data/rules/bsd-new_304.RULE index 24478950a7..0815cc00e1 100644 --- a/src/licensedcode/data/rules/bsd-new_304.RULE +++ b/src/licensedcode/data/rules/bsd-new_304.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -"LicenseId": "BSD-3-Clause", \ No newline at end of file +"LicenseId": "{{BSD-3-Clause}}", \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_324.RULE b/src/licensedcode/data/rules/bsd-new_324.RULE index b2c6e7f01b..bf5af894cd 100644 --- a/src/licensedcode/data/rules/bsd-new_324.RULE +++ b/src/licensedcode/data/rules/bsd-new_324.RULE @@ -7,4 +7,4 @@ relevance: 100 To accommodate license compatibility with the widest possible range of client code licenses, the shared library code, which is linked at runtime into the same address space as the client using it, is -licensed under the terms of the "Three-Clause BSD License". \ No newline at end of file +licensed under the terms of the "{{Three-Clause BSD License}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_336.RULE b/src/licensedcode/data/rules/bsd-new_336.RULE index b55335e5a8..490bc214bd 100644 --- a/src/licensedcode/data/rules/bsd-new_336.RULE +++ b/src/licensedcode/data/rules/bsd-new_336.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/BSD-3-Clause --- -License: 3-Clause BSD License (https://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file +License: {{3-Clause BSD License}} (https://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_337.RULE b/src/licensedcode/data/rules/bsd-new_337.RULE index d89d04503d..061fb25510 100644 --- a/src/licensedcode/data/rules/bsd-new_337.RULE +++ b/src/licensedcode/data/rules/bsd-new_337.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -License: BSD 3 Clause (http://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file +{{License: BSD 3 Clause}} (http://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_338.RULE b/src/licensedcode/data/rules/bsd-new_338.RULE index 707fe74889..822fb8478f 100644 --- a/src/licensedcode/data/rules/bsd-new_338.RULE +++ b/src/licensedcode/data/rules/bsd-new_338.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-new_339.RULE b/src/licensedcode/data/rules/bsd-new_339.RULE index b2f9734e35..8298625c98 100644 --- a/src/licensedcode/data/rules/bsd-new_339.RULE +++ b/src/licensedcode/data/rules/bsd-new_339.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.scala-lang.org/license.html --- -License: BSD 3-Clause (http://www.scala-lang.org/license.html) \ No newline at end of file +{{License: BSD 3-Clause}} (http://www.scala-lang.org/license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_340.RULE b/src/licensedcode/data/rules/bsd-new_340.RULE index a2599b8233..d89cca66b9 100644 --- a/src/licensedcode/data/rules/bsd-new_340.RULE +++ b/src/licensedcode/data/rules/bsd-new_340.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -License: BSD 3-Clause License (http://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file +{{License: BSD 3-Clause}} License (http://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_344.RULE b/src/licensedcode/data/rules/bsd-new_344.RULE index 79b427aecd..a01b988bdf 100644 --- a/src/licensedcode/data/rules/bsd-new_344.RULE +++ b/src/licensedcode/data/rules/bsd-new_344.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://antlr.org/license.html --- -License: BSD licence (http://antlr.org/license.html) \ No newline at end of file +License: {{BSD licence}} (http://antlr.org/license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_345.RULE b/src/licensedcode/data/rules/bsd-new_345.RULE index 9e9d6e5a5c..e95d1e9c8e 100644 --- a/src/licensedcode/data/rules/bsd-new_345.RULE +++ b/src/licensedcode/data/rules/bsd-new_345.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.antlr.org/license.html --- -License: BSD License (http://www.antlr.org/license.html \ No newline at end of file +License: {{BSD License}} (http://www.antlr.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_348.RULE b/src/licensedcode/data/rules/bsd-new_348.RULE index 5e96e690db..4af2f11012 100644 --- a/src/licensedcode/data/rules/bsd-new_348.RULE +++ b/src/licensedcode/data/rules/bsd-new_348.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://dist.codehaus.org/janino/new_bsd_license.txt --- -License: New BSD License (http://dist.codehaus.org/janino/new_bsd_license.txt \ No newline at end of file +License: {{New BSD License}} (http://dist.codehaus.org/janino/new_bsd_license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_349.RULE b/src/licensedcode/data/rules/bsd-new_349.RULE index 3d5c8d3371..de7c93757d 100644 --- a/src/licensedcode/data/rules/bsd-new_349.RULE +++ b/src/licensedcode/data/rules/bsd-new_349.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://raw.githubusercontent.com/janino-compiler/janino/master/LICENSE --- -License: New BSD License (https://raw.githubusercontent.com/janino-compiler/janino/master/LICENSE \ No newline at end of file +License: {{New BSD License}} (https://raw.githubusercontent.com/janino-compiler/janino/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_350.RULE b/src/licensedcode/data/rules/bsd-new_350.RULE index d7f836666e..ca33191b20 100644 --- a/src/licensedcode/data/rules/bsd-new_350.RULE +++ b/src/licensedcode/data/rules/bsd-new_350.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/BSD-3-Clause --- -License: The BSD 3-Clause License (http://www.opensource.org/licenses/BSD-3-Clause \ No newline at end of file +License: The {{BSD 3-Clause License}} (http://www.opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_351.RULE b/src/licensedcode/data/rules/bsd-new_351.RULE index b650c15ce5..426f986f72 100644 --- a/src/licensedcode/data/rules/bsd-new_351.RULE +++ b/src/licensedcode/data/rules/bsd-new_351.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.antlr.org/license.html --- -License: The BSD License (http://www.antlr.org/license.html \ No newline at end of file +License: {{The BSD License}} (http://www.antlr.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_352.RULE b/src/licensedcode/data/rules/bsd-new_352.RULE index e07565e4b0..fae2c062d3 100644 --- a/src/licensedcode/data/rules/bsd-new_352.RULE +++ b/src/licensedcode/data/rules/bsd-new_352.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://jodd.org/license.html --- -License: The New BSD License (http://jodd.org/license.html \ No newline at end of file +License: The {{New BSD License}} (http://jodd.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_353.RULE b/src/licensedcode/data/rules/bsd-new_353.RULE index 61898d770b..e4b7cf7d05 100644 --- a/src/licensedcode/data/rules/bsd-new_353.RULE +++ b/src/licensedcode/data/rules/bsd-new_353.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.html --- -License: The New BSD License (http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file +License: The {{New BSD License}} (http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_357.RULE b/src/licensedcode/data/rules/bsd-new_357.RULE index b599f8356d..9fe0666a99 100644 --- a/src/licensedcode/data/rules/bsd-new_357.RULE +++ b/src/licensedcode/data/rules/bsd-new_357.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The 3-Clause BSD License \ No newline at end of file +The {{3-Clause BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_358.RULE b/src/licensedcode/data/rules/bsd-new_358.RULE index c85029c0f5..60aa4480fd 100644 --- a/src/licensedcode/data/rules/bsd-new_358.RULE +++ b/src/licensedcode/data/rules/bsd-new_358.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/BSD-3-Clause --- -"name": "The 3-Clause BSD License", +"name": "The {{3-Clause BSD License}}", "url": "https://opensource.org/licenses/BSD-3-Clause", \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_359.RULE b/src/licensedcode/data/rules/bsd-new_359.RULE index 354b102579..7ba61e9f5c 100644 --- a/src/licensedcode/data/rules/bsd-new_359.RULE +++ b/src/licensedcode/data/rules/bsd-new_359.RULE @@ -8,5 +8,5 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -* Licensed under the New BSD license. See LICENSE or: +* Licensed under the {{New BSD license}}. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_360.RULE b/src/licensedcode/data/rules/bsd-new_360.RULE index b01a28fd9a..c30bee6a14 100644 --- a/src/licensedcode/data/rules/bsd-new_360.RULE +++ b/src/licensedcode/data/rules/bsd-new_360.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-new_361.RULE b/src/licensedcode/data/rules/bsd-new_361.RULE index 47c15a7154..99ca4d9b63 100644 --- a/src/licensedcode/data/rules/bsd-new_361.RULE +++ b/src/licensedcode/data/rules/bsd-new_361.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-new_362.RULE b/src/licensedcode/data/rules/bsd-new_362.RULE index 855c64fae9..8d7cc2789e 100644 --- a/src/licensedcode/data/rules/bsd-new_362.RULE +++ b/src/licensedcode/data/rules/bsd-new_362.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://spdx.org/licenses/BSD-3-Clause --- -@license https://spdx.org/licenses/BSD-3-Clause BSD-3-Clause \ No newline at end of file +@license https://spdx.org/licenses/BSD-3-Clause {{BSD-3-Clause}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_364.RULE b/src/licensedcode/data/rules/bsd-new_364.RULE index 1b6abbdd46..3a37d6bd3f 100644 --- a/src/licensedcode/data/rules/bsd-new_364.RULE +++ b/src/licensedcode/data/rules/bsd-new_364.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The BSD 3-Clause License \ No newline at end of file +The {{BSD 3-Clause License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_365.RULE b/src/licensedcode/data/rules/bsd-new_365.RULE index 3ce5829498..30085bc02e 100644 --- a/src/licensedcode/data/rules/bsd-new_365.RULE +++ b/src/licensedcode/data/rules/bsd-new_365.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -default stopword list that is BSD-licensed \ No newline at end of file +default stopword list that is {{BSD-licensed}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_366.RULE b/src/licensedcode/data/rules/bsd-new_366.RULE index 93136a7245..32af691963 100644 --- a/src/licensedcode/data/rules/bsd-new_366.RULE +++ b/src/licensedcode/data/rules/bsd-new_366.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -are based on BSD-licensed reference implementations \ No newline at end of file +are based on {{BSD-licensed}} reference implementations \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_367.RULE b/src/licensedcode/data/rules/bsd-new_367.RULE index ad9ca626a0..1b139e2f5f 100644 --- a/src/licensedcode/data/rules/bsd-new_367.RULE +++ b/src/licensedcode/data/rules/bsd-new_367.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -includes BSD-licensed software developed \ No newline at end of file +includes {{BSD-licensed}} software developed \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_368.RULE b/src/licensedcode/data/rules/bsd-new_368.RULE index a5b9e24f2b..fdb231fe60 100644 --- a/src/licensedcode/data/rules/bsd-new_368.RULE +++ b/src/licensedcode/data/rules/bsd-new_368.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 minimum_coverage: 95 referenced_filenames: - LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_369.RULE b/src/licensedcode/data/rules/bsd-new_369.RULE index af4e1f4860..3d739ac99c 100644 --- a/src/licensedcode/data/rules/bsd-new_369.RULE +++ b/src/licensedcode/data/rules/bsd-new_369.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -includes BSD-licensed software \ No newline at end of file +includes {{BSD-licensed}} software \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_37.RULE b/src/licensedcode/data/rules/bsd-new_37.RULE index a7e53fd207..56c84ac891 100644 --- a/src/licensedcode/data/rules/bsd-new_37.RULE +++ b/src/licensedcode/data/rules/bsd-new_37.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -* The program is distributed under terms of BSD license. +* The program is distributed under terms of {{BSD license}}. * You can obtain the copy of the license by visiting: * * http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_370.RULE b/src/licensedcode/data/rules/bsd-new_370.RULE index f711908eda..6acbacd654 100644 --- a/src/licensedcode/data/rules/bsd-new_370.RULE +++ b/src/licensedcode/data/rules/bsd-new_370.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -from BSD-licensed dictionary \ No newline at end of file +from {{BSD-licensed}} dictionary \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_376.RULE b/src/licensedcode/data/rules/bsd-new_376.RULE index 41fe0c5e87..858b4e506e 100644 --- a/src/licensedcode/data/rules/bsd-new_376.RULE +++ b/src/licensedcode/data/rules/bsd-new_376.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://www.voidspace.org.uk/python/license.shtml --- -# This software is licensed under the terms of the BSD license. +# This software is licensed under the terms of {{the BSD license}}. # http://www.voidspace.org.uk/python/license.shtml # Basically you're free to copy, modify, distribute and relicense it, # So long as you keep a copy of the license with it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_387.RULE b/src/licensedcode/data/rules/bsd-new_387.RULE index 5120cd60dc..fa63c01a4b 100644 --- a/src/licensedcode/data/rules/bsd-new_387.RULE +++ b/src/licensedcode/data/rules/bsd-new_387.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The user DOES NOT get ANY WARRANTIES when using this tool. This software is released under the BSD 3-Clause License. By using this software, the user implicitly agrees to the licensing terms. \ No newline at end of file +The user DOES NOT get ANY WARRANTIES when using this tool. This software is released under the {{BSD 3-Clause License}}. By using this software, the user implicitly agrees to the licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_389.RULE b/src/licensedcode/data/rules/bsd-new_389.RULE index 775b3ae848..476a69f26a 100644 --- a/src/licensedcode/data/rules/bsd-new_389.RULE +++ b/src/licensedcode/data/rules/bsd-new_389.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/bsd-license.php --- -# The BSD License +# {{The BSD License}} # https://opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_390.RULE b/src/licensedcode/data/rules/bsd-new_390.RULE index f14ee393b0..4f32ea56fd 100644 --- a/src/licensedcode/data/rules/bsd-new_390.RULE +++ b/src/licensedcode/data/rules/bsd-new_390.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -Copyright License Agreement (BSD License) \ No newline at end of file +Copyright License Agreement ({{BSD License}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_396.RULE b/src/licensedcode/data/rules/bsd-new_396.RULE index e4c99aebc1..cd6d9ef478 100644 --- a/src/licensedcode/data/rules/bsd-new_396.RULE +++ b/src/licensedcode/data/rules/bsd-new_396.RULE @@ -5,4 +5,4 @@ relevance: 100 --- available -under a BSD License \ No newline at end of file +under a {{BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_398.RULE b/src/licensedcode/data/rules/bsd-new_398.RULE index 87942d2867..90becd5419 100644 --- a/src/licensedcode/data/rules/bsd-new_398.RULE +++ b/src/licensedcode/data/rules/bsd-new_398.RULE @@ -5,4 +5,4 @@ relevance: 100 --- distributed under - the terms of the BSD Licence \ No newline at end of file + the terms of {{the BSD Licence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_40.RULE b/src/licensedcode/data/rules/bsd-new_40.RULE index 90b9333b5f..84761e15aa 100644 --- a/src/licensedcode/data/rules/bsd-new_40.RULE +++ b/src/licensedcode/data/rules/bsd-new_40.RULE @@ -5,5 +5,5 @@ relevance: 99 notes: bsd notice --- -* Alternatively, this software may be distributed under the terms of BSD - * license. \ No newline at end of file +* Alternatively, this software may be distributed under the terms of {{BSD + * license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_400.RULE b/src/licensedcode/data/rules/bsd-new_400.RULE index b5a581e121..13ad4dadd1 100644 --- a/src/licensedcode/data/rules/bsd-new_400.RULE +++ b/src/licensedcode/data/rules/bsd-new_400.RULE @@ -5,4 +5,4 @@ relevance: 100 --- available for use under the following license, commonly known -as the 3-clause (or "modified") BSD license: \ No newline at end of file +as the 3-clause (or "{{modified") BSD license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_401.RULE b/src/licensedcode/data/rules/bsd-new_401.RULE index a89434af28..60cdb62493 100644 --- a/src/licensedcode/data/rules/bsd-new_401.RULE +++ b/src/licensedcode/data/rules/bsd-new_401.RULE @@ -5,4 +5,4 @@ relevance: 100 --- made available by -them under the three-clause BSD license above \ No newline at end of file +them under the {{three-clause BSD license}} above \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_406.RULE b/src/licensedcode/data/rules/bsd-new_406.RULE index 88882980ea..c00b88f54b 100644 --- a/src/licensedcode/data/rules/bsd-new_406.RULE +++ b/src/licensedcode/data/rules/bsd-new_406.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-new -is_license_notice: yes +is_license_reference: yes +is_required_phrase: yes relevance: 90 --- -Berkeley Software Distribution style license \ No newline at end of file +Berkeley Software Distribution style license diff --git a/src/licensedcode/data/rules/bsd-new_40_1.RULE b/src/licensedcode/data/rules/bsd-new_40_1.RULE index 3afa0c7e6d..05df294551 100644 --- a/src/licensedcode/data/rules/bsd-new_40_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_40_1.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 99 --- -* this software may be distributed under the terms of BSD - * license. \ No newline at end of file +* this software may be distributed under the terms of {{BSD + * license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_41.RULE b/src/licensedcode/data/rules/bsd-new_41.RULE index e25fbb67b2..06c52838c0 100644 --- a/src/licensedcode/data/rules/bsd-new_41.RULE +++ b/src/licensedcode/data/rules/bsd-new_41.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -based on BSD license \ No newline at end of file +based on {{BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_413.RULE b/src/licensedcode/data/rules/bsd-new_413.RULE index 17639fa58e..92e83209aa 100644 --- a/src/licensedcode/data/rules/bsd-new_413.RULE +++ b/src/licensedcode/data/rules/bsd-new_413.RULE @@ -1,14 +1,15 @@ --- license_expression: bsd-new is_license_text: yes +skip_for_required_phrase_generation: yes minimum_coverage: 90 --- -{{Simplified BSD License }} +Simplified BSD License Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -{{ * Neither the name of nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. }} -{{ * Neither the name of nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.}} + * Neither the name of nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + * Neither the name of nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_415.RULE b/src/licensedcode/data/rules/bsd-new_415.RULE index 27a41c120c..19a60eba24 100644 --- a/src/licensedcode/data/rules/bsd-new_415.RULE +++ b/src/licensedcode/data/rules/bsd-new_415.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Under BSD License \ No newline at end of file +Under {{BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_419.RULE b/src/licensedcode/data/rules/bsd-new_419.RULE index e416ff5d0b..f4295266cb 100644 --- a/src/licensedcode/data/rules/bsd-new_419.RULE +++ b/src/licensedcode/data/rules/bsd-new_419.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -freely and openly available under the BSD 3-clause license \ No newline at end of file +freely and openly available under the {{BSD 3-clause license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_420.RULE b/src/licensedcode/data/rules/bsd-new_420.RULE index 76b7c6c2e0..b0f57b3c84 100644 --- a/src/licensedcode/data/rules/bsd-new_420.RULE +++ b/src/licensedcode/data/rules/bsd-new_420.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under the BSD 3-clause license \ No newline at end of file +available under the {{BSD 3-clause license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_421.RULE b/src/licensedcode/data/rules/bsd-new_421.RULE index b52e06df5e..ce92ad004e 100644 --- a/src/licensedcode/data/rules/bsd-new_421.RULE +++ b/src/licensedcode/data/rules/bsd-new_421.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the BSD 3-clause license \ No newline at end of file +under the {{BSD 3-clause license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_422.RULE b/src/licensedcode/data/rules/bsd-new_422.RULE index ab9423f0ff..d4ee06a38b 100644 --- a/src/licensedcode/data/rules/bsd-new_422.RULE +++ b/src/licensedcode/data/rules/bsd-new_422.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- # This program and the accompanying materials -# are licensed and made available under the terms and conditions of the BSD License +# are licensed and made available under the terms and conditions of {{the BSD License}} # which accompanies this distribution. The full text of the license may be found at # http://opensource.org/licenses/bsd-license.php # -# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, +# THE PROGRAM IS DISTRIBUTED UNDER {{THE BSD LICENSE}} ON AN "AS IS" BASIS, # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_423.RULE b/src/licensedcode/data/rules/bsd-new_423.RULE index dcdb4929af..be796aa48d 100644 --- a/src/licensedcode/data/rules/bsd-new_423.RULE +++ b/src/licensedcode/data/rules/bsd-new_423.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The complete text of the BSD license can be is as follows: \ No newline at end of file +The complete text of {{the BSD license}} can be is as follows: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_425.RULE b/src/licensedcode/data/rules/bsd-new_425.RULE index e80ff09dd4..4131a26663 100644 --- a/src/licensedcode/data/rules/bsd-new_425.RULE +++ b/src/licensedcode/data/rules/bsd-new_425.RULE @@ -4,27 +4,27 @@ is_license_text: yes minimum_coverage: 95 --- -# This file contains code that was {{originally under the following license}}: -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions are met: -# -# * Redistributions of source code must retain the above copyright notice, this -# list of conditions and the following disclaimer. -# * Redistributions in binary form must reproduce the above copyright notice -# this list of conditions and the following disclaimer in the documentation -# and/or other materials provided with the distribution. -# * Neither the name of the nor the names of its contributors -# may be used to endorse or promote products derived from this software -# without specific prior written permission. -# -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE -# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, -# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file +This file contains code that was originally under the following license: + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +* Neither the name of the nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/src/licensedcode/data/rules/bsd-new_427.RULE b/src/licensedcode/data/rules/bsd-new_427.RULE index c14ef91262..60e962ce85 100644 --- a/src/licensedcode/data/rules/bsd-new_427.RULE +++ b/src/licensedcode/data/rules/bsd-new_427.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the OSI-approved BSD 3-clause License. \ No newline at end of file +distributed under the OSI-approved {{BSD 3-clause License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_428.RULE b/src/licensedcode/data/rules/bsd-new_428.RULE index 1b36692e68..5f4f21596f 100644 --- a/src/licensedcode/data/rules/bsd-new_428.RULE +++ b/src/licensedcode/data/rules/bsd-new_428.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -New BSD Licence \ No newline at end of file +New {{BSD Licence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_429.RULE b/src/licensedcode/data/rules/bsd-new_429.RULE index 93793cdddc..05a0943551 100644 --- a/src/licensedcode/data/rules/bsd-new_429.RULE +++ b/src/licensedcode/data/rules/bsd-new_429.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the OSI-approved BSD 3-clause License. Please see its Copyright.txt for details. \ No newline at end of file +distributed under the OSI-approved {{BSD 3-clause License}}. Please see its Copyright.txt for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_43.RULE b/src/licensedcode/data/rules/bsd-new_43.RULE index 01af522a49..4eb4b9322d 100644 --- a/src/licensedcode/data/rules/bsd-new_43.RULE +++ b/src/licensedcode/data/rules/bsd-new_43.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.html --- -Berkeley Software Distribution (BSD) License +{{Berkeley Software Distribution (BSD) License}} http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_430.RULE b/src/licensedcode/data/rules/bsd-new_430.RULE index 2ae36ba152..aa72afd748 100644 --- a/src/licensedcode/data/rules/bsd-new_430.RULE +++ b/src/licensedcode/data/rules/bsd-new_430.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://cmake.org/licensing --- -Distributed under the OSI-approved BSD 3-Clause License. See https://cmake.org/licensing for details. \ No newline at end of file +Distributed under the OSI-approved {{BSD 3-Clause License}}. See https://cmake.org/licensing for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_437.RULE b/src/licensedcode/data/rules/bsd-new_437.RULE index dd47fe3e1a..749b38ea30 100644 --- a/src/licensedcode/data/rules/bsd-new_437.RULE +++ b/src/licensedcode/data/rules/bsd-new_437.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -This software is distributable under the BSD license. See the terms of the -BSD license in the documentation provided with this software. +This software is distributable under {{the BSD license}}. See the terms of {{the +BSD license}} in the documentation provided with this software. http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_44.RULE b/src/licensedcode/data/rules/bsd-new_44.RULE index 3cdd8b5e6f..69da7dbf7c 100644 --- a/src/licensedcode/data/rules/bsd-new_44.RULE +++ b/src/licensedcode/data/rules/bsd-new_44.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -License (based on BSD license) \ No newline at end of file +License (based on BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_440.RULE b/src/licensedcode/data/rules/bsd-new_440.RULE index ee499b0ff1..ba2ef02b3e 100644 --- a/src/licensedcode/data/rules/bsd-new_440.RULE +++ b/src/licensedcode/data/rules/bsd-new_440.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -uses BSD license \ No newline at end of file +uses {{BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_448.RULE b/src/licensedcode/data/rules/bsd-new_448.RULE index ec6e846a6c..1d3980296b 100644 --- a/src/licensedcode/data/rules/bsd-new_448.RULE +++ b/src/licensedcode/data/rules/bsd-new_448.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -distributed under the Revised BSD License. The See LICENSE file for details \ No newline at end of file +distributed under the {{Revised BSD License}}. The See LICENSE file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_449.RULE b/src/licensedcode/data/rules/bsd-new_449.RULE index 183d1ddc09..feca079473 100644 --- a/src/licensedcode/data/rules/bsd-new_449.RULE +++ b/src/licensedcode/data/rules/bsd-new_449.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -library is distributed under the New BSD license. \ No newline at end of file +library is distributed under the {{New BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_45.RULE b/src/licensedcode/data/rules/bsd-new_45.RULE index f7f436da80..109955121b 100644 --- a/src/licensedcode/data/rules/bsd-new_45.RULE +++ b/src/licensedcode/data/rules/bsd-new_45.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -This file is entirely BSD licensed. \ No newline at end of file +This file is entirely {{BSD licensed}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_450.RULE b/src/licensedcode/data/rules/bsd-new_450.RULE index 03cec146f5..632a351c8e 100644 --- a/src/licensedcode/data/rules/bsd-new_450.RULE +++ b/src/licensedcode/data/rules/bsd-new_450.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -covered by his BSD license \ No newline at end of file +covered by his {{BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_451.RULE b/src/licensedcode/data/rules/bsd-new_451.RULE index 0425cc420a..1bc663318f 100644 --- a/src/licensedcode/data/rules/bsd-new_451.RULE +++ b/src/licensedcode/data/rules/bsd-new_451.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -The distribution is licensed under the BSD License (http://www.opensource.org/licenses/bsd-license.php). \ No newline at end of file +The distribution is licensed under {{the BSD License}} (http://www.opensource.org/licenses/bsd-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_453.RULE b/src/licensedcode/data/rules/bsd-new_453.RULE index ccb19f5b22..e463e39c1b 100644 --- a/src/licensedcode/data/rules/bsd-new_453.RULE +++ b/src/licensedcode/data/rules/bsd-new_453.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -BSD style license (3-clause BSD) \ No newline at end of file +{{BSD style license}} (3-clause BSD) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_454.RULE b/src/licensedcode/data/rules/bsd-new_454.RULE index b7c46dde2c..9fbb4c16c9 100644 --- a/src/licensedcode/data/rules/bsd-new_454.RULE +++ b/src/licensedcode/data/rules/bsd-new_454.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.BSD --- -The complete text of the Modified BSD licence can be found in LICENSE.BSD \ No newline at end of file +The complete text of the {{Modified BSD licence}} can be found in LICENSE.BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_457.RULE b/src/licensedcode/data/rules/bsd-new_457.RULE index 75ab7a3585..2e0da52a98 100644 --- a/src/licensedcode/data/rules/bsd-new_457.RULE +++ b/src/licensedcode/data/rules/bsd-new_457.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 95 --- -under BSD licence \ No newline at end of file +under {{BSD licence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_459.RULE b/src/licensedcode/data/rules/bsd-new_459.RULE index c758926336..41a3caeb7d 100644 --- a/src/licensedcode/data/rules/bsd-new_459.RULE +++ b/src/licensedcode/data/rules/bsd-new_459.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 95 --- -under BSD 3-clause licence \ No newline at end of file +under {{BSD 3-clause licence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_46.RULE b/src/licensedcode/data/rules/bsd-new_46.RULE index d9ac0e4f1e..75cc7615e5 100644 --- a/src/licensedcode/data/rules/bsd-new_46.RULE +++ b/src/licensedcode/data/rules/bsd-new_46.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed with a BSD license \ No newline at end of file +Distributed with a {{BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_460.RULE b/src/licensedcode/data/rules/bsd-new_460.RULE index 5eb342d949..ae9936542d 100644 --- a/src/licensedcode/data/rules/bsd-new_460.RULE +++ b/src/licensedcode/data/rules/bsd-new_460.RULE @@ -1,6 +1,8 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes +is_continuous: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-new_461.RULE b/src/licensedcode/data/rules/bsd-new_461.RULE index 9fd348adbe..4a8b5a8435 100644 --- a/src/licensedcode/data/rules/bsd-new_461.RULE +++ b/src/licensedcode/data/rules/bsd-new_461.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-new_462.RULE b/src/licensedcode/data/rules/bsd-new_462.RULE index 09068d9fda..e366e35cea 100644 --- a/src/licensedcode/data/rules/bsd-new_462.RULE +++ b/src/licensedcode/data/rules/bsd-new_462.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under a 3-term BSD license \ No newline at end of file +licensed under a {{3-term BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_463.RULE b/src/licensedcode/data/rules/bsd-new_463.RULE index 5fc2825f71..2399ddb621 100644 --- a/src/licensedcode/data/rules/bsd-new_463.RULE +++ b/src/licensedcode/data/rules/bsd-new_463.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under a 3-term BSD license \ No newline at end of file +under a {{3-term BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_464.RULE b/src/licensedcode/data/rules/bsd-new_464.RULE index 4c4ba513b9..9f5b718c54 100644 --- a/src/licensedcode/data/rules/bsd-new_464.RULE +++ b/src/licensedcode/data/rules/bsd-new_464.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Some code is licensed under a 3-term BSD license, to the following +Some code is licensed under a {{3-term BSD license}}, to the following copyright holders: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_465.RULE b/src/licensedcode/data/rules/bsd-new_465.RULE index 43c53dfef4..07952a1da3 100644 --- a/src/licensedcode/data/rules/bsd-new_465.RULE +++ b/src/licensedcode/data/rules/bsd-new_465.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -One component of the ssh source code is under a 3-clause BSD license, +One component of the ssh source code is under a {{3-clause BSD license}}, held by the University of California, since we pulled these parts from original Berkeley code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_466.RULE b/src/licensedcode/data/rules/bsd-new_466.RULE index 2df96fdd6f..f0a4b621ea 100644 --- a/src/licensedcode/data/rules/bsd-new_466.RULE +++ b/src/licensedcode/data/rules/bsd-new_466.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -source code is under a 3-clause BSD license \ No newline at end of file +source code is under a {{3-clause BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_467.RULE b/src/licensedcode/data/rules/bsd-new_467.RULE index 657945cf28..62f8c7bd41 100644 --- a/src/licensedcode/data/rules/bsd-new_467.RULE +++ b/src/licensedcode/data/rules/bsd-new_467.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -* Licensed under the New BSD License +* Licensed under the {{New BSD License}} * See: http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_468.RULE b/src/licensedcode/data/rules/bsd-new_468.RULE index ff2b6e2e12..770696ac23 100644 --- a/src/licensedcode/data/rules/bsd-new_468.RULE +++ b/src/licensedcode/data/rules/bsd-new_468.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.opensource.org/licenses/bsd-license.php --- -* Licensed under the New BSD License +* Licensed under the {{New BSD License}} * See: https://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_469.RULE b/src/licensedcode/data/rules/bsd-new_469.RULE index 3fcd7e8e96..d6752c8ef6 100644 --- a/src/licensedcode/data/rules/bsd-new_469.RULE +++ b/src/licensedcode/data/rules/bsd-new_469.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.phyast.pitt.edu/~micheles/python/documentation.html --- -distributed under the terms of the BSD License (see below). +distributed under the terms of {{the BSD License}} (see below). http://www.phyast.pitt.edu/~micheles/python/documentation.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_470.RULE b/src/licensedcode/data/rules/bsd-new_470.RULE index ddf3b4726a..5e330db3de 100644 --- a/src/licensedcode/data/rules/bsd-new_470.RULE +++ b/src/licensedcode/data/rules/bsd-new_470.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the terms of the BSD License (see below). \ No newline at end of file +distributed under the terms of {{the BSD License}} (see below). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_471.RULE b/src/licensedcode/data/rules/bsd-new_471.RULE index cfe73a3645..69c7a09e74 100644 --- a/src/licensedcode/data/rules/bsd-new_471.RULE +++ b/src/licensedcode/data/rules/bsd-new_471.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -distributed under the terms of the BSD License \ No newline at end of file +distributed under the terms of {{the BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_472.RULE b/src/licensedcode/data/rules/bsd-new_472.RULE index fecf66007b..6e1d22437c 100644 --- a/src/licensedcode/data/rules/bsd-new_472.RULE +++ b/src/licensedcode/data/rules/bsd-new_472.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The BSD 3-Clause "New" or "Revised" License \ No newline at end of file +The {{BSD 3-Clause}} "New" or "Revised" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_474.RULE b/src/licensedcode/data/rules/bsd-new_474.RULE index 7dc61e629b..9ddd80e1eb 100644 --- a/src/licensedcode/data/rules/bsd-new_474.RULE +++ b/src/licensedcode/data/rules/bsd-new_474.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Licensed under the BSD license, see LICENSE for details. \ No newline at end of file +Licensed under {{the BSD license}}, see LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_477.RULE b/src/licensedcode/data/rules/bsd-new_477.RULE index 49768b728f..d47013ff20 100644 --- a/src/licensedcode/data/rules/bsd-new_477.RULE +++ b/src/licensedcode/data/rules/bsd-new_477.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -software is open source software with portions licensed under a BSD license \ No newline at end of file +software is open source software with portions licensed under a {{BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_478.RULE b/src/licensedcode/data/rules/bsd-new_478.RULE index 5deebb5cbc..a08f3da6d4 100644 --- a/src/licensedcode/data/rules/bsd-new_478.RULE +++ b/src/licensedcode/data/rules/bsd-new_478.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under a BSD license \ No newline at end of file +licensed under a {{BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_479.RULE b/src/licensedcode/data/rules/bsd-new_479.RULE index f6b626cbed..7e2d2a47e2 100644 --- a/src/licensedcode/data/rules/bsd-new_479.RULE +++ b/src/licensedcode/data/rules/bsd-new_479.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -portions licensed under a BSD license \ No newline at end of file +portions licensed under a {{BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_480.RULE b/src/licensedcode/data/rules/bsd-new_480.RULE index 0f75f88272..0e4b6e11a7 100644 --- a/src/licensedcode/data/rules/bsd-new_480.RULE +++ b/src/licensedcode/data/rules/bsd-new_480.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- BSD LICENSE diff --git a/src/licensedcode/data/rules/bsd-new_492.RULE b/src/licensedcode/data/rules/bsd-new_492.RULE index f49913bcd4..cfbbf42644 100644 --- a/src/licensedcode/data/rules/bsd-new_492.RULE +++ b/src/licensedcode/data/rules/bsd-new_492.RULE @@ -11,4 +11,4 @@ copy or use the software. License Agreement For Open Source Computer Vision Library - (3-clause BSD License) \ No newline at end of file + ({{3-clause BSD License}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_494.RULE b/src/licensedcode/data/rules/bsd-new_494.RULE index 3ee804b0da..4a3e7e81e1 100644 --- a/src/licensedcode/data/rules/bsd-new_494.RULE +++ b/src/licensedcode/data/rules/bsd-new_494.RULE @@ -5,5 +5,5 @@ relevance: 99 --- Update modules from - the NetBSD source tree (the old 4-clause BSD license changed to + the NetBSD source tree (the old 4-clause {{BSD license}} changed to the new 3-clause one). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_495.RULE b/src/licensedcode/data/rules/bsd-new_495.RULE index 8fca40c703..e412410984 100644 --- a/src/licensedcode/data/rules/bsd-new_495.RULE +++ b/src/licensedcode/data/rules/bsd-new_495.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -is now covered by a modified BSD license. See LICENSE +is now covered by a {{modified BSD license}}. See LICENSE for the new terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_498.RULE b/src/licensedcode/data/rules/bsd-new_498.RULE index dad279cac9..ed1667299f 100644 --- a/src/licensedcode/data/rules/bsd-new_498.RULE +++ b/src/licensedcode/data/rules/bsd-new_498.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed under the BSD 3-clause License, \ No newline at end of file +Distributed under the {{BSD 3-clause License}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_501.RULE b/src/licensedcode/data/rules/bsd-new_501.RULE index 2c648636f1..8e56c33ec3 100644 --- a/src/licensedcode/data/rules/bsd-new_501.RULE +++ b/src/licensedcode/data/rules/bsd-new_501.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -BSD 3-Clause License \ No newline at end of file +{{BSD 3-Clause License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_509.RULE b/src/licensedcode/data/rules/bsd-new_509.RULE index 32a3f10f2b..61592aadf4 100644 --- a/src/licensedcode/data/rules/bsd-new_509.RULE +++ b/src/licensedcode/data/rules/bsd-new_509.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -Software License Agreement (BSD License) \ No newline at end of file +Software License Agreement ({{BSD License}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_51.RULE b/src/licensedcode/data/rules/bsd-new_51.RULE index 415b4a50bc..195c632b44 100644 --- a/src/licensedcode/data/rules/bsd-new_51.RULE +++ b/src/licensedcode/data/rules/bsd-new_51.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -Distributed with a BSD license; see LICENSE.txt:: \ No newline at end of file +Distributed with a {{BSD license}}; see LICENSE.txt:: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_512.RULE b/src/licensedcode/data/rules/bsd-new_512.RULE index 5308e1c4fe..2a832b2326 100644 --- a/src/licensedcode/data/rules/bsd-new_512.RULE +++ b/src/licensedcode/data/rules/bsd-new_512.RULE @@ -8,7 +8,7 @@ ignorable_urls: - License Agreement For Open Source Computer Vision Library (3-clause BSD License) + License Agreement For Open Source Computer Vision Library ({{3-clause BSD License}}) http://opencv.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_513.RULE b/src/licensedcode/data/rules/bsd-new_513.RULE index 78cb991007..f0162a7e4a 100644 --- a/src/licensedcode/data/rules/bsd-new_513.RULE +++ b/src/licensedcode/data/rules/bsd-new_513.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- - License Agreement For Open Source Computer Vision Library (3-clause BSD License) + License Agreement For Open Source Computer Vision Library ({{3-clause BSD License}}) http://opencv.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_514.RULE b/src/licensedcode/data/rules/bsd-new_514.RULE index 69dc33ddf8..81f02d1abc 100644 --- a/src/licensedcode/data/rules/bsd-new_514.RULE +++ b/src/licensedcode/data/rules/bsd-new_514.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opencv.org/license.html --- -License Agreement For Open Source Computer Vision Library (3-clause BSD License) +License Agreement For Open Source Computer Vision Library ({{3-clause BSD License}}) http://opencv.org/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_515.RULE b/src/licensedcode/data/rules/bsd-new_515.RULE index 1b30952613..31e627e2cc 100644 --- a/src/licensedcode/data/rules/bsd-new_515.RULE +++ b/src/licensedcode/data/rules/bsd-new_515.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -License Agreement For Open Source Computer Vision Library (3-clause BSD License) \ No newline at end of file +License Agreement For Open Source Computer Vision Library ({{3-clause BSD License}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_522.RULE b/src/licensedcode/data/rules/bsd-new_522.RULE index 24d5d5ac8f..7cb1a3cbf4 100644 --- a/src/licensedcode/data/rules/bsd-new_522.RULE +++ b/src/licensedcode/data/rules/bsd-new_522.RULE @@ -9,5 +9,5 @@ referenced_filenames: --- the Dart project authors. Please see the AUTHORS file for -details. All rights reserved. Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file." \ No newline at end of file +details. All rights reserved. Use of this source code is {{governed by a BSD-style +license}} that can be found in the LICENSE file." \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_525.RULE b/src/licensedcode/data/rules/bsd-new_525.RULE index 32fa7f69ab..907f9ee385 100644 --- a/src/licensedcode/data/rules/bsd-new_525.RULE +++ b/src/licensedcode/data/rules/bsd-new_525.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/BSD/ --- -BSD License (BSD) +{{BSD License}} (BSD) link: http://creativecommons.org/licenses/BSD/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_530.RULE b/src/licensedcode/data/rules/bsd-new_530.RULE index ed8b82d2a8..0f27f915a1 100644 --- a/src/licensedcode/data/rules/bsd-new_530.RULE +++ b/src/licensedcode/data/rules/bsd-new_530.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -BSD (3-clause): http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file +{{BSD (3-clause}}): http://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_531.RULE b/src/licensedcode/data/rules/bsd-new_531.RULE index 3320ab680d..95ae4aadc7 100644 --- a/src/licensedcode/data/rules/bsd-new_531.RULE +++ b/src/licensedcode/data/rules/bsd-new_531.RULE @@ -8,8 +8,8 @@ ignorable_urls: - {{Berkeley Software Distribution}} (BSD) License + {{Berkeley Software Distribution (BSD) License}} http://www.opensource.org/licenses/bsd-license.html repo - \ No newline at end of file + diff --git a/src/licensedcode/data/rules/bsd-new_532.RULE b/src/licensedcode/data/rules/bsd-new_532.RULE index 922342db8b..2eb15c5af6 100644 --- a/src/licensedcode/data/rules/bsd-new_532.RULE +++ b/src/licensedcode/data/rules/bsd-new_532.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.html --- -Berkeley Software Distribution (BSD) License +{{Berkeley Software Distribution (BSD) License}} http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_533.RULE b/src/licensedcode/data/rules/bsd-new_533.RULE index c60fe07572..8d92d4b7e4 100644 --- a/src/licensedcode/data/rules/bsd-new_533.RULE +++ b/src/licensedcode/data/rules/bsd-new_533.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-new_534.RULE b/src/licensedcode/data/rules/bsd-new_534.RULE index 8d74c7ac19..5ff9028b16 100644 --- a/src/licensedcode/data/rules/bsd-new_534.RULE +++ b/src/licensedcode/data/rules/bsd-new_534.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- Software License Agreement (BSD License) diff --git a/src/licensedcode/data/rules/bsd-new_536.RULE b/src/licensedcode/data/rules/bsd-new_536.RULE index 452e2df59b..1eaa64b711 100644 --- a/src/licensedcode/data/rules/bsd-new_536.RULE +++ b/src/licensedcode/data/rules/bsd-new_536.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://developers.google.com/open-source/licenses/bsd --- -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file or at +Use of this source code is {{governed by a BSD-style +license}} that can be found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_537.RULE b/src/licensedcode/data/rules/bsd-new_537.RULE index 5c7efeedac..590f82d393 100644 --- a/src/licensedcode/data/rules/bsd-new_537.RULE +++ b/src/licensedcode/data/rules/bsd-new_537.RULE @@ -6,9 +6,9 @@ ignorable_urls: - http://www.opensource.org/licenses/BSD-3-Clause --- -licensed under The BSD License (3 Clause, also known as -the new BSD license). The license is an OSI approved Open Source -license and is GPL-compatible(1). +licensed under {{The BSD License (3 Clause}}, also known as +the {{new BSD license}}). The license is an OSI approved Open Source +license and is {{GPL-compatible}}(1). The license text can also be found here: http://www.opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_538.RULE b/src/licensedcode/data/rules/bsd-new_538.RULE index 94f597bc60..62bd82ab35 100644 --- a/src/licensedcode/data/rules/bsd-new_538.RULE +++ b/src/licensedcode/data/rules/bsd-new_538.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://github.com/dart-lang/stagehand/blob/master/LICENSE --- -Created from templates made available by Stagehand under a BSD-style -[license](https://github.com/dart-lang/stagehand/blob/master/LICENSE). \ No newline at end of file +Created from templates made available by Stagehand under a {{BSD-style +[license}}](https://github.com/dart-lang/stagehand/blob/master/LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_539.RULE b/src/licensedcode/data/rules/bsd-new_539.RULE index cec6f5ad5e..b58e6695bb 100644 --- a/src/licensedcode/data/rules/bsd-new_539.RULE +++ b/src/licensedcode/data/rules/bsd-new_539.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Created from templates made available by Stagehand under a BSD-style -[license] \ No newline at end of file +Created from templates made available by Stagehand under a {{BSD-style +[license}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_54.RULE b/src/licensedcode/data/rules/bsd-new_54.RULE index 72ad4a853b..58fdb208eb 100644 --- a/src/licensedcode/data/rules/bsd-new_54.RULE +++ b/src/licensedcode/data/rules/bsd-new_54.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Redistribution and modifications are permitted subject to BSD license. \ No newline at end of file +Redistribution and modifications are permitted subject to {{BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_540.RULE b/src/licensedcode/data/rules/bsd-new_540.RULE index 425bf95b99..9909b76fc5 100644 --- a/src/licensedcode/data/rules/bsd-new_540.RULE +++ b/src/licensedcode/data/rules/bsd-new_540.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -Use of this source code is governed by the BSD license that can be found +Use of this source code is governed by {{the BSD license}} that can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_543.RULE b/src/licensedcode/data/rules/bsd-new_543.RULE index 7974e6fc4c..475b5da102 100644 --- a/src/licensedcode/data/rules/bsd-new_543.RULE +++ b/src/licensedcode/data/rules/bsd-new_543.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 minimum_coverage: 80 ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause diff --git a/src/licensedcode/data/rules/bsd-new_544.RULE b/src/licensedcode/data/rules/bsd-new_544.RULE index 87c2a3d691..e7b7026001 100644 --- a/src/licensedcode/data/rules/bsd-new_544.RULE +++ b/src/licensedcode/data/rules/bsd-new_544.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is free software; you can redistribute it and/or modify it under the terms of the BSD License as published by the Open Source Initiative, revised version. \ No newline at end of file +is free software; you can redistribute it and/or modify it under the terms of {{the BSD License}} as published by the Open Source Initiative, revised version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_545.RULE b/src/licensedcode/data/rules/bsd-new_545.RULE index 0166bb0053..c9654ed8d4 100644 --- a/src/licensedcode/data/rules/bsd-new_545.RULE +++ b/src/licensedcode/data/rules/bsd-new_545.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -you can redistribute it and/or modify it under the terms of the BSD License as published by the Open Source Initiative, revised version. \ No newline at end of file +you can redistribute it and/or modify it under the terms of {{the BSD License}} as published by the Open Source Initiative, revised version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_546.RULE b/src/licensedcode/data/rules/bsd-new_546.RULE index 75a56db5e8..f19aa54ebc 100644 --- a/src/licensedcode/data/rules/bsd-new_546.RULE +++ b/src/licensedcode/data/rules/bsd-new_546.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is free software; you can redistribute it and/or modify it under the terms of the BSD License. \ No newline at end of file +This code is free software; you can redistribute it and/or modify it under the terms of {{the BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_547.RULE b/src/licensedcode/data/rules/bsd-new_547.RULE index 25ce85a9be..e4cdcf0709 100644 --- a/src/licensedcode/data/rules/bsd-new_547.RULE +++ b/src/licensedcode/data/rules/bsd-new_547.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This program is free software; you can redistribute it and/or modify it under the terms of the BSD License. \ No newline at end of file +This program is free software; you can redistribute it and/or modify it under the terms of {{the BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_548.RULE b/src/licensedcode/data/rules/bsd-new_548.RULE index 8d2dc7200d..f89eade776 100644 --- a/src/licensedcode/data/rules/bsd-new_548.RULE +++ b/src/licensedcode/data/rules/bsd-new_548.RULE @@ -8,6 +8,6 @@ referenced_filenames: Copyright -This program is free software; you can redistribute it and/or modify it under the terms of the BSD License. +This program is free software; you can redistribute it and/or modify it under the terms of {{the BSD License}}. -On Debian GNU/Linux systems, the complete text of the BSD License can be found in `/usr/share/common-licenses/BSD'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of {{the BSD License}} can be found in `/usr/share/common-licenses/BSD'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_549.RULE b/src/licensedcode/data/rules/bsd-new_549.RULE index c28c348e73..f2e423f945 100644 --- a/src/licensedcode/data/rules/bsd-new_549.RULE +++ b/src/licensedcode/data/rules/bsd-new_549.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -is free software; you can redistribute it and/or modify it under the terms of the BSD License. +is free software; you can redistribute it and/or modify it under the terms of {{the BSD License}}. -This programme is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the BSD License for more details \ No newline at end of file +This programme is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the BSD License}} for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_55.RULE b/src/licensedcode/data/rules/bsd-new_55.RULE index f9d1b339ee..92b7150c9c 100644 --- a/src/licensedcode/data/rules/bsd-new_55.RULE +++ b/src/licensedcode/data/rules/bsd-new_55.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -subject to BSD license. \ No newline at end of file +subject to {{BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_550.RULE b/src/licensedcode/data/rules/bsd-new_550.RULE index 6e06ae3e25..3d018e6c44 100644 --- a/src/licensedcode/data/rules/bsd-new_550.RULE +++ b/src/licensedcode/data/rules/bsd-new_550.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License - is free software: you can redistribute it and/or modify it under the terms of the BSD License. A copy of this license is provided in LICENSE.txt. \ No newline at end of file + is free software: you can redistribute it and/or modify it under the terms of {{the BSD License}}. A copy of this license is provided in LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_551.RULE b/src/licensedcode/data/rules/bsd-new_551.RULE index 8705d247ac..b8bbaed601 100644 --- a/src/licensedcode/data/rules/bsd-new_551.RULE +++ b/src/licensedcode/data/rules/bsd-new_551.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -is free software: you can redistribute it and/or modify it under the terms of the BSD License. A copy of this license is provided in LICENSE.txt. \ No newline at end of file +is free software: you can redistribute it and/or modify it under the terms of {{the BSD License}}. A copy of this license is provided in LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_552.RULE b/src/licensedcode/data/rules/bsd-new_552.RULE index a392b8b3ff..fa3f6248ee 100644 --- a/src/licensedcode/data/rules/bsd-new_552.RULE +++ b/src/licensedcode/data/rules/bsd-new_552.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -you can redistribute it and/or modify it under the terms of the BSD License. A copy of this license is provided in LICENSE.txt. \ No newline at end of file +you can redistribute it and/or modify it under the terms of {{the BSD License}}. A copy of this license is provided in LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_553.RULE b/src/licensedcode/data/rules/bsd-new_553.RULE index 806b86d273..4d70225f37 100644 --- a/src/licensedcode/data/rules/bsd-new_553.RULE +++ b/src/licensedcode/data/rules/bsd-new_553.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This module is free software; you can redistribute it and/or modify it under the terms of the BSD license. See the LICENSE file included with this distribution. \ No newline at end of file +This module is free software; you can redistribute it and/or modify it under the terms of {{the BSD license}}. See the LICENSE file included with this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_554.RULE b/src/licensedcode/data/rules/bsd-new_554.RULE index 5f408851df..deba86171d 100644 --- a/src/licensedcode/data/rules/bsd-new_554.RULE +++ b/src/licensedcode/data/rules/bsd-new_554.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This module is free software; you can redistribute it and/or modify it under the terms of the BSD license. \ No newline at end of file +This module is free software; you can redistribute it and/or modify it under the terms of {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_555.RULE b/src/licensedcode/data/rules/bsd-new_555.RULE index 080f6e4b08..605bb832cb 100644 --- a/src/licensedcode/data/rules/bsd-new_555.RULE +++ b/src/licensedcode/data/rules/bsd-new_555.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -The library package is free software; you can redistribute it and/or modify it under the terms of the BSD License as published by the Free Software Foundation. \ No newline at end of file +The library package is free software; you can redistribute it and/or modify it under the terms of {{the BSD License}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_556.RULE b/src/licensedcode/data/rules/bsd-new_556.RULE index 01b63a45ec..b2caefc9dc 100644 --- a/src/licensedcode/data/rules/bsd-new_556.RULE +++ b/src/licensedcode/data/rules/bsd-new_556.RULE @@ -6,6 +6,6 @@ referenced_filenames: - COPYING --- -is open source software. You can redistribute it and/or modify it under the terms of the BSD License. See the COPYING file included with this software package for more details regarding distribution. +is open source software. You can redistribute it and/or modify it under the terms of {{the BSD License}}. See the COPYING file included with this software package for more details regarding distribution. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_557.RULE b/src/licensedcode/data/rules/bsd-new_557.RULE index 99841d7e6b..b0f5ac771e 100644 --- a/src/licensedcode/data/rules/bsd-new_557.RULE +++ b/src/licensedcode/data/rules/bsd-new_557.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -is open source software. You can redistribute it and/or modify it under the terms of the BSD License. See the COPYING file included with this software package for more details regarding distribution. \ No newline at end of file +is open source software. You can redistribute it and/or modify it under the terms of {{the BSD License}}. See the COPYING file included with this software package for more details regarding distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_558.RULE b/src/licensedcode/data/rules/bsd-new_558.RULE index d862c002f8..7f6ee324fd 100644 --- a/src/licensedcode/data/rules/bsd-new_558.RULE +++ b/src/licensedcode/data/rules/bsd-new_558.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is open source software. You can redistribute it and/or modify it under the terms of the BSD License. \ No newline at end of file +is open source software. You can redistribute it and/or modify it under the terms of {{the BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_559.RULE b/src/licensedcode/data/rules/bsd-new_559.RULE index 1e85717d35..7239c28106 100644 --- a/src/licensedcode/data/rules/bsd-new_559.RULE +++ b/src/licensedcode/data/rules/bsd-new_559.RULE @@ -7,8 +7,8 @@ referenced_filenames: --- This file is free software; you can redistribute it and/or modify - it under the terms of the BSD License. + it under the terms of {{the BSD License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the BSD license for more details (in file LICENSEBSD) \ No newline at end of file + See {{the BSD license}} for more details (in file LICENSEBSD) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_568.RULE b/src/licensedcode/data/rules/bsd-new_568.RULE index 6f1c3efa34..14886526a3 100644 --- a/src/licensedcode/data/rules/bsd-new_568.RULE +++ b/src/licensedcode/data/rules/bsd-new_568.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.debian.org/misc/bsd.license --- -license http://www.debian.org/misc/bsd.license BSD License (3 Clause) \ No newline at end of file +license http://www.debian.org/misc/bsd.license {{BSD License (3 Clause}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_570.RULE b/src/licensedcode/data/rules/bsd-new_570.RULE index e2824b66e1..708408183f 100644 --- a/src/licensedcode/data/rules/bsd-new_570.RULE +++ b/src/licensedcode/data/rules/bsd-new_570.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://www.debian.org/misc/bsd.license diff --git a/src/licensedcode/data/rules/bsd-new_571.RULE b/src/licensedcode/data/rules/bsd-new_571.RULE index 7b2009d5ee..c61db9ac80 100644 --- a/src/licensedcode/data/rules/bsd-new_571.RULE +++ b/src/licensedcode/data/rules/bsd-new_571.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-new_573.RULE b/src/licensedcode/data/rules/bsd-new_573.RULE index 948b2f10d6..bc3a8b68ac 100644 --- a/src/licensedcode/data/rules/bsd-new_573.RULE +++ b/src/licensedcode/data/rules/bsd-new_573.RULE @@ -1,6 +1,8 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes +is_continuous: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-new_574.RULE b/src/licensedcode/data/rules/bsd-new_574.RULE index 942c9e6429..c7bfffe76a 100644 --- a/src/licensedcode/data/rules/bsd-new_574.RULE +++ b/src/licensedcode/data/rules/bsd-new_574.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -software and hardware, are licensed under the BSD 3-clause license. \ No newline at end of file +software and hardware, are licensed under the {{BSD 3-clause license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_575.RULE b/src/licensedcode/data/rules/bsd-new_575.RULE index e3d9e233ed..d1cf8996f1 100644 --- a/src/licensedcode/data/rules/bsd-new_575.RULE +++ b/src/licensedcode/data/rules/bsd-new_575.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- is free software; you can redistribute it and/or modify -# it under the terms of the Revised BSD License; see LICENSE file for +# it under the terms of the {{Revised BSD License}}; see LICENSE file for # more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_576.RULE b/src/licensedcode/data/rules/bsd-new_576.RULE index 9da7133a0e..4cb0a83886 100644 --- a/src/licensedcode/data/rules/bsd-new_576.RULE +++ b/src/licensedcode/data/rules/bsd-new_576.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- BSD 3-Clause License diff --git a/src/licensedcode/data/rules/bsd-new_578.RULE b/src/licensedcode/data/rules/bsd-new_578.RULE index 14a7f01d34..99f1aad110 100644 --- a/src/licensedcode/data/rules/bsd-new_578.RULE +++ b/src/licensedcode/data/rules/bsd-new_578.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 minimum_coverage: 99 --- diff --git a/src/licensedcode/data/rules/bsd-new_579.RULE b/src/licensedcode/data/rules/bsd-new_579.RULE index 4e02516edc..de5f5d2020 100644 --- a/src/licensedcode/data/rules/bsd-new_579.RULE +++ b/src/licensedcode/data/rules/bsd-new_579.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -License Agreement (BSD License) \ No newline at end of file +License Agreement ({{BSD License}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_580.RULE b/src/licensedcode/data/rules/bsd-new_580.RULE index 80b3e99c4c..0c04c659a0 100644 --- a/src/licensedcode/data/rules/bsd-new_580.RULE +++ b/src/licensedcode/data/rules/bsd-new_580.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- Software License Agreement (BSD License) diff --git a/src/licensedcode/data/rules/bsd-new_582.RULE b/src/licensedcode/data/rules/bsd-new_582.RULE index 1b6e6b9857..42e8f7361b 100644 --- a/src/licensedcode/data/rules/bsd-new_582.RULE +++ b/src/licensedcode/data/rules/bsd-new_582.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -(BSD-licensed code) \ No newline at end of file +({{BSD-licensed}} code) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_583.RULE b/src/licensedcode/data/rules/bsd-new_583.RULE index f51536899c..5ac17082e5 100644 --- a/src/licensedcode/data/rules/bsd-new_583.RULE +++ b/src/licensedcode/data/rules/bsd-new_583.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- Software License Agreement (BSD License) diff --git a/src/licensedcode/data/rules/bsd-new_595.RULE b/src/licensedcode/data/rules/bsd-new_595.RULE index bc3d3e7546..10b3b08257 100644 --- a/src/licensedcode/data/rules/bsd-new_595.RULE +++ b/src/licensedcode/data/rules/bsd-new_595.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the terms of the Modified BSD License (also known as New or Revised or 3-Clause BSD) \ No newline at end of file +This project is licensed under the terms of the {{Modified BSD License}} (also known as {{New or Revised or 3-Clause BSD}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_596.RULE b/src/licensedcode/data/rules/bsd-new_596.RULE index 2ca4e9046e..461dc18e94 100644 --- a/src/licensedcode/data/rules/bsd-new_596.RULE +++ b/src/licensedcode/data/rules/bsd-new_596.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the terms of the Modified BSD License \ No newline at end of file +This project is licensed under the terms of the {{Modified BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_597.RULE b/src/licensedcode/data/rules/bsd-new_597.RULE index ed37dac572..c2c3309be8 100644 --- a/src/licensedcode/data/rules/bsd-new_597.RULE +++ b/src/licensedcode/data/rules/bsd-new_597.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE.txt --- -The software in this package is published under the terms of the BSD -style license a copy of which has been included with this distribution in +The software in this package is published under the terms of the {{BSD +style license}} a copy of which has been included with this distribution in the LICENSE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_598.RULE b/src/licensedcode/data/rules/bsd-new_598.RULE index 79bb21f664..6bc305b2f5 100644 --- a/src/licensedcode/data/rules/bsd-new_598.RULE +++ b/src/licensedcode/data/rules/bsd-new_598.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- (BSD Style License) diff --git a/src/licensedcode/data/rules/bsd-new_599.RULE b/src/licensedcode/data/rules/bsd-new_599.RULE index 0fc40960c7..23579bcac3 100644 --- a/src/licensedcode/data/rules/bsd-new_599.RULE +++ b/src/licensedcode/data/rules/bsd-new_599.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -Free software: BSD license \ No newline at end of file +Free software: {{BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_602.RULE b/src/licensedcode/data/rules/bsd-new_602.RULE index 0e5c8f30dc..db3d70f12e 100644 --- a/src/licensedcode/data/rules/bsd-new_602.RULE +++ b/src/licensedcode/data/rules/bsd-new_602.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- License: BSD 3-clause diff --git a/src/licensedcode/data/rules/bsd-new_604.RULE b/src/licensedcode/data/rules/bsd-new_604.RULE index 031750cd7c..e9c2ce69fa 100644 --- a/src/licensedcode/data/rules/bsd-new_604.RULE +++ b/src/licensedcode/data/rules/bsd-new_604.RULE @@ -8,6 +8,6 @@ referenced_filenames: --- * This program is free software; you can redistribute it and/or modify - * it under the terms of BSD license + * it under the terms of {{BSD license}} * * See README and COPYING for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_609.RULE b/src/licensedcode/data/rules/bsd-new_609.RULE index 5ee0e0f7d9..f87b378dee 100644 --- a/src/licensedcode/data/rules/bsd-new_609.RULE +++ b/src/licensedcode/data/rules/bsd-new_609.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License -Code licensed under the BSD 3-Clause license. See LICENSE file for terms. \ No newline at end of file +Code licensed under the {{BSD 3-Clause license}}. See LICENSE file for terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_61.RULE b/src/licensedcode/data/rules/bsd-new_61.RULE index 9fb490bc6f..5509845d3a 100644 --- a/src/licensedcode/data/rules/bsd-new_61.RULE +++ b/src/licensedcode/data/rules/bsd-new_61.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.txt --- -is distributed under a BSD license; see LICENSE.txt for more +is distributed under a {{BSD license}}; see LICENSE.txt for more # information \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_610.RULE b/src/licensedcode/data/rules/bsd-new_610.RULE index a7a04a7228..95c82b59aa 100644 --- a/src/licensedcode/data/rules/bsd-new_610.RULE +++ b/src/licensedcode/data/rules/bsd-new_610.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Code licensed under the BSD 3-Clause license. \ No newline at end of file +Code licensed under the {{BSD 3-Clause license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_611.RULE b/src/licensedcode/data/rules/bsd-new_611.RULE index cef2dbe00f..d78bac2c9e 100644 --- a/src/licensedcode/data/rules/bsd-new_611.RULE +++ b/src/licensedcode/data/rules/bsd-new_611.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Code licensed under the BSD 3-Clause license. See LICENSE file for terms. \ No newline at end of file +Code licensed under the {{BSD 3-Clause license}}. See LICENSE file for terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_612.RULE b/src/licensedcode/data/rules/bsd-new_612.RULE index 8041e961f3..41e8336ec8 100644 --- a/src/licensedcode/data/rules/bsd-new_612.RULE +++ b/src/licensedcode/data/rules/bsd-new_612.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -and BSD licensed \ No newline at end of file +and {{BSD licensed}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_617.RULE b/src/licensedcode/data/rules/bsd-new_617.RULE index dc685769b2..d7e3726405 100644 --- a/src/licensedcode/data/rules/bsd-new_617.RULE +++ b/src/licensedcode/data/rules/bsd-new_617.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -These programs are licensed under the BSD license (the one with +These programs are licensed under {{the BSD license}} (the one with advertisement clause removed). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_618.RULE b/src/licensedcode/data/rules/bsd-new_618.RULE index 1820766e95..d93741e4ae 100644 --- a/src/licensedcode/data/rules/bsd-new_618.RULE +++ b/src/licensedcode/data/rules/bsd-new_618.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- This software may be distributed, used, and modified under the terms of diff --git a/src/licensedcode/data/rules/bsd-new_620.RULE b/src/licensedcode/data/rules/bsd-new_620.RULE index 7fcd94ea5f..94fd532f70 100644 --- a/src/licensedcode/data/rules/bsd-new_620.RULE +++ b/src/licensedcode/data/rules/bsd-new_620.RULE @@ -7,4 +7,4 @@ relevance: 99 License This software may be distributed, used, and modified under the terms of -BSD license: \ No newline at end of file +{{BSD license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_621.RULE b/src/licensedcode/data/rules/bsd-new_621.RULE index 8d163a0e4a..0d0d900309 100644 --- a/src/licensedcode/data/rules/bsd-new_621.RULE +++ b/src/licensedcode/data/rules/bsd-new_621.RULE @@ -5,4 +5,4 @@ relevance: 99 --- This software may be distributed, used, and modified under the terms of -BSD license: \ No newline at end of file +{{BSD license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_622.RULE b/src/licensedcode/data/rules/bsd-new_622.RULE index 8fcc8e13a6..f06c1680df 100644 --- a/src/licensedcode/data/rules/bsd-new_622.RULE +++ b/src/licensedcode/data/rules/bsd-new_622.RULE @@ -4,9 +4,9 @@ is_license_notice: yes relevance: 100 --- -the project has chosen to use only the BSD -license option for future distribution. As such, the GPL v2 license +the project has chosen to use only {{the BSD +license}} option for future distribution. As such, the GPL v2 license option is no longer used and the contributions are not required to be licensed until GPL v2. In case of most files in hostap.git, "under the open source license indicated in the file" means that the contribution -is licensed under the modified BSD license (see below). \ No newline at end of file +is licensed under the {{modified BSD license}} (see below). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_623.RULE b/src/licensedcode/data/rules/bsd-new_623.RULE index aeec2f8a39..2512ac20b1 100644 --- a/src/licensedcode/data/rules/bsd-new_623.RULE +++ b/src/licensedcode/data/rules/bsd-new_623.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Modified BSD license (no advertisement clause): \ No newline at end of file +{{Modified BSD license}} (no advertisement clause): \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_624.RULE b/src/licensedcode/data/rules/bsd-new_624.RULE index fe99875e76..ed87c75206 100644 --- a/src/licensedcode/data/rules/bsd-new_624.RULE +++ b/src/licensedcode/data/rules/bsd-new_624.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 minimum_coverage: 96 --- diff --git a/src/licensedcode/data/rules/bsd-new_626.RULE b/src/licensedcode/data/rules/bsd-new_626.RULE index cdbc99002e..23db151c9d 100644 --- a/src/licensedcode/data/rules/bsd-new_626.RULE +++ b/src/licensedcode/data/rules/bsd-new_626.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -3-clause BSD license retained \ No newline at end of file +{{3-clause BSD license}} retained \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_627.RULE b/src/licensedcode/data/rules/bsd-new_627.RULE index 6ed811968b..70a85bfd47 100644 --- a/src/licensedcode/data/rules/bsd-new_627.RULE +++ b/src/licensedcode/data/rules/bsd-new_627.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- license -This software may be distributed under the terms of the BSD license +This software may be distributed under the terms of {{the BSD license}} See README for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_628.RULE b/src/licensedcode/data/rules/bsd-new_628.RULE index a9084d0176..168267f14a 100644 --- a/src/licensedcode/data/rules/bsd-new_628.RULE +++ b/src/licensedcode/data/rules/bsd-new_628.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- This software may be distributed under the terms of the BSD license. diff --git a/src/licensedcode/data/rules/bsd-new_63.RULE b/src/licensedcode/data/rules/bsd-new_63.RULE index 27c1c8c4b9..b3298fcca2 100644 --- a/src/licensedcode/data/rules/bsd-new_63.RULE +++ b/src/licensedcode/data/rules/bsd-new_63.RULE @@ -8,5 +8,5 @@ referenced_filenames: notes: Found in Chromium Debian copyright files --- -Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.: -License: global BSD-style \ No newline at end of file +Use of this source code is {{governed by a BSD-style license}} that can be found in the LICENSE file.: +{{License: global BSD-style}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_634.RULE b/src/licensedcode/data/rules/bsd-new_634.RULE index 26a07b3faf..bd0756783b 100644 --- a/src/licensedcode/data/rules/bsd-new_634.RULE +++ b/src/licensedcode/data/rules/bsd-new_634.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- License (based on BSD license) diff --git a/src/licensedcode/data/rules/bsd-new_635.RULE b/src/licensedcode/data/rules/bsd-new_635.RULE index bae5a1f60e..445cddc5b7 100644 --- a/src/licensedcode/data/rules/bsd-new_635.RULE +++ b/src/licensedcode/data/rules/bsd-new_635.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -Distributed under the OSI-approved BSD License (the "License"); +Distributed under the OSI-approved {{BSD License}} (the "License"); see accompanying file Copyright.txt for details. This software is distributed WITHOUT ANY WARRANTY; without even the diff --git a/src/licensedcode/data/rules/bsd-new_636.RULE b/src/licensedcode/data/rules/bsd-new_636.RULE index 93e8116e93..d6baf8e2ad 100644 --- a/src/licensedcode/data/rules/bsd-new_636.RULE +++ b/src/licensedcode/data/rules/bsd-new_636.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- Released under the terms of the following BSD License. diff --git a/src/licensedcode/data/rules/bsd-new_641.RULE b/src/licensedcode/data/rules/bsd-new_641.RULE index 401132b9fd..91a1041127 100644 --- a/src/licensedcode/data/rules/bsd-new_641.RULE +++ b/src/licensedcode/data/rules/bsd-new_641.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed under the terms of the Modified BSD License. \ No newline at end of file +Distributed under the terms of the {{Modified BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_642.RULE b/src/licensedcode/data/rules/bsd-new_642.RULE index dcf50a1e89..d910080b27 100644 --- a/src/licensedcode/data/rules/bsd-new_642.RULE +++ b/src/licensedcode/data/rules/bsd-new_642.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Framework is provided under the 3-clause BSD license \ No newline at end of file +Framework is provided under the {{3-clause BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_643.RULE b/src/licensedcode/data/rules/bsd-new_643.RULE index 69a545b6f1..3b8054e9d1 100644 --- a/src/licensedcode/data/rules/bsd-new_643.RULE +++ b/src/licensedcode/data/rules/bsd-new_643.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -provided under the 3-clause BSD license \ No newline at end of file +provided under the {{3-clause BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_644.RULE b/src/licensedcode/data/rules/bsd-new_644.RULE index e5a9848342..c03f36b24f 100644 --- a/src/licensedcode/data/rules/bsd-new_644.RULE +++ b/src/licensedcode/data/rules/bsd-new_644.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Three clause BSD license \ No newline at end of file +three-clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_645.RULE b/src/licensedcode/data/rules/bsd-new_645.RULE index ccc0a5aefa..dce5ccdc98 100644 --- a/src/licensedcode/data/rules/bsd-new_645.RULE +++ b/src/licensedcode/data/rules/bsd-new_645.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -PCRE is distributed under the terms of the "BSD" licence, as +PCRE is distributed under the terms of {{the "BSD" licence}}, as specified below. The documentation for PCRE, supplied in the "doc" directory, is distributed under the same terms as the software itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_647.RULE b/src/licensedcode/data/rules/bsd-new_647.RULE index 8871239f9d..23f9351ffe 100644 --- a/src/licensedcode/data/rules/bsd-new_647.RULE +++ b/src/licensedcode/data/rules/bsd-new_647.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under a 3-clause BSD license \ No newline at end of file +released under a {{3-clause BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_648.RULE b/src/licensedcode/data/rules/bsd-new_648.RULE index 34a529c342..c1a32348c5 100644 --- a/src/licensedcode/data/rules/bsd-new_648.RULE +++ b/src/licensedcode/data/rules/bsd-new_648.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This is released under the BSD license. \ No newline at end of file +This is released under {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_649.RULE b/src/licensedcode/data/rules/bsd-new_649.RULE index 04c466ad03..9c9beddc96 100644 --- a/src/licensedcode/data/rules/bsd-new_649.RULE +++ b/src/licensedcode/data/rules/bsd-new_649.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the BSD license. \ No newline at end of file +released under {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_65.RULE b/src/licensedcode/data/rules/bsd-new_65.RULE index 4ad56dc212..0c42bbd17f 100644 --- a/src/licensedcode/data/rules/bsd-new_65.RULE +++ b/src/licensedcode/data/rules/bsd-new_65.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -It is BSD licensed. \ No newline at end of file +It is {{BSD licensed}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_650.RULE b/src/licensedcode/data/rules/bsd-new_650.RULE index fe1955baa2..8943dffdce 100644 --- a/src/licensedcode/data/rules/bsd-new_650.RULE +++ b/src/licensedcode/data/rules/bsd-new_650.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Open Source Software Licensed under the BSD 3-Clause License \ No newline at end of file +Open Source Software Licensed under the {{BSD 3-Clause License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_651.RULE b/src/licensedcode/data/rules/bsd-new_651.RULE index c2385b6cf2..9120c04c7c 100644 --- a/src/licensedcode/data/rules/bsd-new_651.RULE +++ b/src/licensedcode/data/rules/bsd-new_651.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Terms of the BSD 3-Clause License: \ No newline at end of file +Terms of the {{BSD 3-Clause License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_652.RULE b/src/licensedcode/data/rules/bsd-new_652.RULE index b325c6c702..902766bfa0 100644 --- a/src/licensedcode/data/rules/bsd-new_652.RULE +++ b/src/licensedcode/data/rules/bsd-new_652.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- Terms of the BSD 3-Clause License: diff --git a/src/licensedcode/data/rules/bsd-new_653.RULE b/src/licensedcode/data/rules/bsd-new_653.RULE index 3e3f6949f2..6db681722e 100644 --- a/src/licensedcode/data/rules/bsd-new_653.RULE +++ b/src/licensedcode/data/rules/bsd-new_653.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -Go is used under the terms of the BSD like license. \ No newline at end of file +Go is used under the terms of the {{BSD like license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_673.RULE b/src/licensedcode/data/rules/bsd-new_673.RULE index 11af270ff4..27b53b1847 100644 --- a/src/licensedcode/data/rules/bsd-new_673.RULE +++ b/src/licensedcode/data/rules/bsd-new_673.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/BSD-3-Clause --- -`BSD-3-Clause` - [BSD 3-Clause "New" or "Revised"](https://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file +`{{BSD-3-Clause}}` - [{{BSD 3-Clause}} "New" or "Revised"](https://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_677.RULE b/src/licensedcode/data/rules/bsd-new_677.RULE index fd27679152..f3d2363aec 100644 --- a/src/licensedcode/data/rules/bsd-new_677.RULE +++ b/src/licensedcode/data/rules/bsd-new_677.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- |license - :alt: BSD License + :alt: {{BSD License}} :target: https://opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_678.RULE b/src/licensedcode/data/rules/bsd-new_678.RULE index 2bb26e4cd0..9436c4b95a 100644 --- a/src/licensedcode/data/rules/bsd-new_678.RULE +++ b/src/licensedcode/data/rules/bsd-new_678.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -License is available under the BSD license. See the LICENSE file \ No newline at end of file +License is available under {{the BSD license}}. See the LICENSE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_679.RULE b/src/licensedcode/data/rules/bsd-new_679.RULE index 341338c9bd..d14d77ec98 100644 --- a/src/licensedcode/data/rules/bsd-new_679.RULE +++ b/src/licensedcode/data/rules/bsd-new_679.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- New BSD License diff --git a/src/licensedcode/data/rules/bsd-new_680.RULE b/src/licensedcode/data/rules/bsd-new_680.RULE index 352d9edbab..8ef1627a73 100644 --- a/src/licensedcode/data/rules/bsd-new_680.RULE +++ b/src/licensedcode/data/rules/bsd-new_680.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Contributions will be licensed under the [3-clause BSD license] \ No newline at end of file +Contributions will be licensed under the [{{3-clause BSD license}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_681.RULE b/src/licensedcode/data/rules/bsd-new_681.RULE index 3aa063b9c9..a5ddbcf9ba 100644 --- a/src/licensedcode/data/rules/bsd-new_681.RULE +++ b/src/licensedcode/data/rules/bsd-new_681.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the [3-clause BSD license] \ No newline at end of file +licensed under the [{{3-clause BSD license}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_682.RULE b/src/licensedcode/data/rules/bsd-new_682.RULE index 03873c5c91..51e134df95 100644 --- a/src/licensedcode/data/rules/bsd-new_682.RULE +++ b/src/licensedcode/data/rules/bsd-new_682.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the [3-clause BSD license] \ No newline at end of file +under the [{{3-clause BSD license}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_687.RULE b/src/licensedcode/data/rules/bsd-new_687.RULE index 014029a9ba..2dbc5c72ae 100644 --- a/src/licensedcode/data/rules/bsd-new_687.RULE +++ b/src/licensedcode/data/rules/bsd-new_687.RULE @@ -1,12 +1,12 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 +skip_for_required_phrase_generation: yes minimum_coverage: 80 --- -{{license -Redistribution and use in source and binary forms}}, with or +license +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . diff --git a/src/licensedcode/data/rules/bsd-new_688.RULE b/src/licensedcode/data/rules/bsd-new_688.RULE index 9e536bbd57..170a665fe4 100644 --- a/src/licensedcode/data/rules/bsd-new_688.RULE +++ b/src/licensedcode/data/rules/bsd-new_688.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- BSD License diff --git a/src/licensedcode/data/rules/bsd-new_689.RULE b/src/licensedcode/data/rules/bsd-new_689.RULE index 52454a5197..a44b77e60e 100644 --- a/src/licensedcode/data/rules/bsd-new_689.RULE +++ b/src/licensedcode/data/rules/bsd-new_689.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -This is release under the BSD license. \ No newline at end of file +This is release under {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_696.RULE b/src/licensedcode/data/rules/bsd-new_696.RULE index 1b4b532a7a..b166c3a887 100644 --- a/src/licensedcode/data/rules/bsd-new_696.RULE +++ b/src/licensedcode/data/rules/bsd-new_696.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -Released under the BSD-style license that can +Released under the {{BSD-style license}} that can be found in Go's LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_700.RULE b/src/licensedcode/data/rules/bsd-new_700.RULE index 3aec830cc2..2491444663 100644 --- a/src/licensedcode/data/rules/bsd-new_700.RULE +++ b/src/licensedcode/data/rules/bsd-new_700.RULE @@ -1,11 +1,10 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 --- -The framework is free software. It is {{released under the terms of -the following BSD License.}} +The framework is free software. It is released under the terms of +the following BSD License. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -32,4 +31,4 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_703.RULE b/src/licensedcode/data/rules/bsd-new_703.RULE index 3cdef61e70..5b89720d37 100644 --- a/src/licensedcode/data/rules/bsd-new_703.RULE +++ b/src/licensedcode/data/rules/bsd-new_703.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -licensed under the BSD License \ No newline at end of file +licensed under {{the BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_704.RULE b/src/licensedcode/data/rules/bsd-new_704.RULE index 0340664714..35306c96e9 100644 --- a/src/licensedcode/data/rules/bsd-new_704.RULE +++ b/src/licensedcode/data/rules/bsd-new_704.RULE @@ -7,4 +7,4 @@ referenced_filenames: notes: reported by Luis Villa --- -BSD 3-Clause license; see LICENSE file. \ No newline at end of file +{{BSD 3-Clause license}}; see LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_706.RULE b/src/licensedcode/data/rules/bsd-new_706.RULE index 4991d66af4..81b1f56bf2 100644 --- a/src/licensedcode/data/rules/bsd-new_706.RULE +++ b/src/licensedcode/data/rules/bsd-new_706.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -3-Clause BSD License (the revised BSD license) \ No newline at end of file +{{3-Clause BSD License}} (the {{revised BSD license}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_707.RULE b/src/licensedcode/data/rules/bsd-new_707.RULE index 6da78cdda2..a10b7358b1 100644 --- a/src/licensedcode/data/rules/bsd-new_707.RULE +++ b/src/licensedcode/data/rules/bsd-new_707.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 90 --- -(the revised BSD license) \ No newline at end of file +(the {{revised BSD license}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_708.RULE b/src/licensedcode/data/rules/bsd-new_708.RULE index af83c027b1..32a803fb45 100644 --- a/src/licensedcode/data/rules/bsd-new_708.RULE +++ b/src/licensedcode/data/rules/bsd-new_708.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-new is_license_reference: yes -relevance: 90 +is_required_phrase: yes +relevance: 100 --- -revised BSD license \ No newline at end of file +Revised BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_709.RULE b/src/licensedcode/data/rules/bsd-new_709.RULE index 143060ded8..ece5e7311f 100644 --- a/src/licensedcode/data/rules/bsd-new_709.RULE +++ b/src/licensedcode/data/rules/bsd-new_709.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSED.BSD --- -* This program is licensed under the BSD license, read LICENSE.BSD +* This program is licensed under {{the BSD license}}, read LICENSE.BSD * for further information \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_710.RULE b/src/licensedcode/data/rules/bsd-new_710.RULE index a8275ec530..6c8c61f53b 100644 --- a/src/licensedcode/data/rules/bsd-new_710.RULE +++ b/src/licensedcode/data/rules/bsd-new_710.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -BSD license without advertising clause. (see +{{BSD license}} without advertising clause. (see http://www.opensource.org/licenses/bsd-license.php for further details) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_711.RULE b/src/licensedcode/data/rules/bsd-new_711.RULE index c3f277e091..cae372f66f 100644 --- a/src/licensedcode/data/rules/bsd-new_711.RULE +++ b/src/licensedcode/data/rules/bsd-new_711.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -which is released under the Revised BSD License +which is released under the {{Revised BSD License}} # See file LICENSE for full license details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_713.RULE b/src/licensedcode/data/rules/bsd-new_713.RULE index b6cba81061..c87f266f5e 100644 --- a/src/licensedcode/data/rules/bsd-new_713.RULE +++ b/src/licensedcode/data/rules/bsd-new_713.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -is licensed under the BSD 3-clause “New” or “Revised”. License See LICENSE for the full license text. \ No newline at end of file +is licensed under the {{BSD 3-clause}} “New” or “Revised”. License See LICENSE for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_714.RULE b/src/licensedcode/data/rules/bsd-new_714.RULE index 786d19a7c3..349b3cf963 100644 --- a/src/licensedcode/data/rules/bsd-new_714.RULE +++ b/src/licensedcode/data/rules/bsd-new_714.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -(This is the OSI approved 3-clause "New BSD License".) \ No newline at end of file +(This is the OSI approved 3-clause "{{New BSD License}}".) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_715.RULE b/src/licensedcode/data/rules/bsd-new_715.RULE index 294231552f..6a4390f3e7 100644 --- a/src/licensedcode/data/rules/bsd-new_715.RULE +++ b/src/licensedcode/data/rules/bsd-new_715.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -OSI approved 3-clause "New BSD License" \ No newline at end of file +OSI approved 3-clause "{{New BSD License}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_716.RULE b/src/licensedcode/data/rules/bsd-new_716.RULE index 924cadd65d..d1c517e449 100644 --- a/src/licensedcode/data/rules/bsd-new_716.RULE +++ b/src/licensedcode/data/rules/bsd-new_716.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -3-clause "New BSD License" \ No newline at end of file +3-clause "{{New BSD License}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_719.RULE b/src/licensedcode/data/rules/bsd-new_719.RULE index 6d48cfa9f8..bf72b4d8bf 100644 --- a/src/licensedcode/data/rules/bsd-new_719.RULE +++ b/src/licensedcode/data/rules/bsd-new_719.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -licensed BSD-style license \ No newline at end of file +licensed {{BSD-style license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_721.RULE b/src/licensedcode/data/rules/bsd-new_721.RULE index bf67171175..fa1892d681 100644 --- a/src/licensedcode/data/rules/bsd-new_721.RULE +++ b/src/licensedcode/data/rules/bsd-new_721.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Tor is distributed under the "3-clause BSD" license, a commonly used +Tor is distributed under the "{{3-clause BSD" license}}, a commonly used software license that means Tor is both free software and open source: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_722.RULE b/src/licensedcode/data/rules/bsd-new_722.RULE index 522dca2a11..b6094d4b38 100644 --- a/src/licensedcode/data/rules/bsd-new_722.RULE +++ b/src/licensedcode/data/rules/bsd-new_722.RULE @@ -9,4 +9,4 @@ notes: See https://github.com/nexB/scancode-toolkit/issues/2171 --- # This software may be modified and distributed under the terms -# of the BSD license. See the LICENSE file for details. \ No newline at end of file +# of {{the BSD license}}. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_723.RULE b/src/licensedcode/data/rules/bsd-new_723.RULE index 2754238561..7257c08981 100644 --- a/src/licensedcode/data/rules/bsd-new_723.RULE +++ b/src/licensedcode/data/rules/bsd-new_723.RULE @@ -6,4 +6,4 @@ notes: See https://github.com/nexB/scancode-toolkit/issues/2171 --- # This software may be modified and distributed under the terms -# of the BSD license. \ No newline at end of file +# of {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_724.RULE b/src/licensedcode/data/rules/bsd-new_724.RULE index 6691a283df..3b6b8a7f2a 100644 --- a/src/licensedcode/data/rules/bsd-new_724.RULE +++ b/src/licensedcode/data/rules/bsd-new_724.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- * This software may be modified and distributed under the terms of - * a BSD-style license. See the COPYING file in the package base + * a {{BSD-style license}}. See the COPYING file in the package base * directory for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_725.RULE b/src/licensedcode/data/rules/bsd-new_725.RULE index 7d24e3d488..3d897bb6b7 100644 --- a/src/licensedcode/data/rules/bsd-new_725.RULE +++ b/src/licensedcode/data/rules/bsd-new_725.RULE @@ -5,4 +5,4 @@ relevance: 99 --- * This software may be modified and distributed under the terms of - * a BSD-style license. \ No newline at end of file + * a {{BSD-style license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_726.RULE b/src/licensedcode/data/rules/bsd-new_726.RULE index 2df62d5ad0..4987f4492d 100644 --- a/src/licensedcode/data/rules/bsd-new_726.RULE +++ b/src/licensedcode/data/rules/bsd-new_726.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- * This software may be modified and distributed under the terms - * of the BSD license. See the LICENSE.txt file for details. \ No newline at end of file + * of {{the BSD license}}. See the LICENSE.txt file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_727.RULE b/src/licensedcode/data/rules/bsd-new_727.RULE index a7afd1157a..087cce8183 100644 --- a/src/licensedcode/data/rules/bsd-new_727.RULE +++ b/src/licensedcode/data/rules/bsd-new_727.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- * This software may be modified and distributed under the terms - * of the BSD 3-clause license. See the LICENSE file for details. \ No newline at end of file + * of the {{BSD 3-clause license}}. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_728.RULE b/src/licensedcode/data/rules/bsd-new_728.RULE index 9c3713c741..e73306d32e 100644 --- a/src/licensedcode/data/rules/bsd-new_728.RULE +++ b/src/licensedcode/data/rules/bsd-new_728.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- * This software may be modified and distributed under the terms - * of the 3-clause BSD license. See the LICENSE file for details. \ No newline at end of file + * of the {{3-clause BSD license}}. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_729.RULE b/src/licensedcode/data/rules/bsd-new_729.RULE index d30791a145..adc095e467 100644 --- a/src/licensedcode/data/rules/bsd-new_729.RULE +++ b/src/licensedcode/data/rules/bsd-new_729.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- * This software may be modified and distributed under the terms - * of the BSD 3-Clause license. See the LICENSE.txt file for details. \ No newline at end of file + * of the {{BSD 3-Clause license}}. See the LICENSE.txt file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_730.RULE b/src/licensedcode/data/rules/bsd-new_730.RULE index c037a28f12..2f81bf0f30 100644 --- a/src/licensedcode/data/rules/bsd-new_730.RULE +++ b/src/licensedcode/data/rules/bsd-new_730.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- # This software may be modified and distributed under the terms of the -# BSD-3-Clause license. See the accompanying LICENSE file for details. \ No newline at end of file +# {{BSD-3-Clause license}}. See the accompanying LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_731.RULE b/src/licensedcode/data/rules/bsd-new_731.RULE index b52a0d11c5..a6c8272f92 100644 --- a/src/licensedcode/data/rules/bsd-new_731.RULE +++ b/src/licensedcode/data/rules/bsd-new_731.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -BSD License +{{BSD License}} -This section pertains to the “three-clause” or “new” BSD license. \ No newline at end of file +This section pertains to the “three-clause” or “{{new” BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_734.RULE b/src/licensedcode/data/rules/bsd-new_734.RULE index 244ca5cbe4..f3f209c316 100644 --- a/src/licensedcode/data/rules/bsd-new_734.RULE +++ b/src/licensedcode/data/rules/bsd-new_734.RULE @@ -1,7 +1,6 @@ --- license_expression: bsd-new is_license_text: yes -relevance: 100 minimum_coverage: 96 --- diff --git a/src/licensedcode/data/rules/bsd-new_735.RULE b/src/licensedcode/data/rules/bsd-new_735.RULE index a073c08e62..923dc1025d 100644 --- a/src/licensedcode/data/rules/bsd-new_735.RULE +++ b/src/licensedcode/data/rules/bsd-new_735.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.md --- -Licensed under a 3-clause BSD style license - see LICENSE.md \ No newline at end of file +Licensed under a 3-clause {{BSD style license}} - see LICENSE.md \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_737.RULE b/src/licensedcode/data/rules/bsd-new_737.RULE index e159ae1e33..a36b673c5c 100644 --- a/src/licensedcode/data/rules/bsd-new_737.RULE +++ b/src/licensedcode/data/rules/bsd-new_737.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under a 3-clause BSD style license \ No newline at end of file +Licensed under a 3-clause {{BSD style license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_753.RULE b/src/licensedcode/data/rules/bsd-new_753.RULE index 0ef31195dd..4e0de88ec9 100644 --- a/src/licensedcode/data/rules/bsd-new_753.RULE +++ b/src/licensedcode/data/rules/bsd-new_753.RULE @@ -9,7 +9,7 @@ notes: seen in cpuinfo.py --- Permission to use, modify, and distribute this software is given under the -terms of the NumPy (BSD style) license. See LICENSE.txt that came with +terms of the NumPy ({{BSD style) license}}. See LICENSE.txt that came with this distribution for specifics. NO WARRANTY IS EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_756.RULE b/src/licensedcode/data/rules/bsd-new_756.RULE index 8bd5332211..91fd3027fd 100644 --- a/src/licensedcode/data/rules/bsd-new_756.RULE +++ b/src/licensedcode/data/rules/bsd-new_756.RULE @@ -9,5 +9,5 @@ notes: seen in cpuinfo.py --- Permission to use, modify, and distribute this software is given under the -terms of the NumPy (BSD style) license. See LICENSE.txt that came with +terms of the NumPy ({{BSD style) license}}. See LICENSE.txt that came with this distribution for specifics. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_763.RULE b/src/licensedcode/data/rules/bsd-new_763.RULE index 196b187320..950f79ca74 100644 --- a/src/licensedcode/data/rules/bsd-new_763.RULE +++ b/src/licensedcode/data/rules/bsd-new_763.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the BSD-3-Clause license \ No newline at end of file +licensed under the terms of the {{BSD-3-Clause license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_775.RULE b/src/licensedcode/data/rules/bsd-new_775.RULE index 223f366060..cf2fac1a7c 100644 --- a/src/licensedcode/data/rules/bsd-new_775.RULE +++ b/src/licensedcode/data/rules/bsd-new_775.RULE @@ -8,5 +8,5 @@ ignorable_urls: - https://cmake.org/licensing --- -Distributed under the OSI-approved BSD 3-Clause License. See accompanying +Distributed under the OSI-approved {{BSD 3-Clause License}}. See accompanying file Copyright.txt or https://cmake.org/licensing for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_776.RULE b/src/licensedcode/data/rules/bsd-new_776.RULE index a9ff71159a..248ad03256 100644 --- a/src/licensedcode/data/rules/bsd-new_776.RULE +++ b/src/licensedcode/data/rules/bsd-new_776.RULE @@ -8,7 +8,7 @@ ignorable_urls: - https://cmake.org/licensing --- -Distributed under the OSI-approved BSD 3-Clause License. See accompanying +Distributed under the OSI-approved {{BSD 3-Clause License}}. See accompanying file Copyright.txt or https://cmake.org/licensing for details. This software is distributed WITHOUT ANY WARRANTY; without even the diff --git a/src/licensedcode/data/rules/bsd-new_777.RULE b/src/licensedcode/data/rules/bsd-new_777.RULE index 5c3651c128..d448a5b8f9 100644 --- a/src/licensedcode/data/rules/bsd-new_777.RULE +++ b/src/licensedcode/data/rules/bsd-new_777.RULE @@ -6,5 +6,5 @@ referenced_filenames: - Copyright.txt --- -Distributed under the OSI-approved BSD 3-Clause License. See accompanying +Distributed under the OSI-approved {{BSD 3-Clause License}}. See accompanying file Copyright.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_779.RULE b/src/licensedcode/data/rules/bsd-new_779.RULE index 705f2b7df2..ccb5b61a15 100644 --- a/src/licensedcode/data/rules/bsd-new_779.RULE +++ b/src/licensedcode/data/rules/bsd-new_779.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://golang.org/ --- -Subject to the BSD-style license found at http://golang.org \ No newline at end of file +Subject to the {{BSD-style license}} found at http://golang.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_78.RULE b/src/licensedcode/data/rules/bsd-new_78.RULE index bd11c92d1f..7bd3b745ac 100644 --- a/src/licensedcode/data/rules/bsd-new_78.RULE +++ b/src/licensedcode/data/rules/bsd-new_78.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://developer.yahoo.net/yui/license.txt --- -Code licensed under the BSD License: +Code licensed under {{the BSD License}}: * http://developer.yahoo.net/yui/license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_788.RULE b/src/licensedcode/data/rules/bsd-new_788.RULE index d8156dc5a3..c23874845a 100644 --- a/src/licensedcode/data/rules/bsd-new_788.RULE +++ b/src/licensedcode/data/rules/bsd-new_788.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the terms of the BSD 3-clause "New" or "Revised" License \ No newline at end of file +under the terms of the {{BSD 3-clause}} "New" or "Revised" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_79.RULE b/src/licensedcode/data/rules/bsd-new_79.RULE index b84b88d531..351296f3a1 100644 --- a/src/licensedcode/data/rules/bsd-new_79.RULE +++ b/src/licensedcode/data/rules/bsd-new_79.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -Code licensed under the BSD License \ No newline at end of file +Code licensed under {{the BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_790.RULE b/src/licensedcode/data/rules/bsd-new_790.RULE index 2d6bfc46a6..4a4a528918 100644 --- a/src/licensedcode/data/rules/bsd-new_790.RULE +++ b/src/licensedcode/data/rules/bsd-new_790.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -Distributable under the BSD license. See the terms of the -BSD license in the documentation provided with this software. +Distributable under {{the BSD license}}. See the terms of {{the +BSD license}} in the documentation provided with this software. http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_791.RULE b/src/licensedcode/data/rules/bsd-new_791.RULE index 7b5062908e..742b2b738d 100644 --- a/src/licensedcode/data/rules/bsd-new_791.RULE +++ b/src/licensedcode/data/rules/bsd-new_791.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://www.opensource.org/licenses/bsd-license.php --- -Distributable under the BSD license. See the terms of the -BSD license in the documentation provided with this software. +Distributable under {{the BSD license}}. See the terms of {{the +BSD license}} in the documentation provided with this software. https://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_792.RULE b/src/licensedcode/data/rules/bsd-new_792.RULE index 1d8cf3c203..8f9352dc44 100644 --- a/src/licensedcode/data/rules/bsd-new_792.RULE +++ b/src/licensedcode/data/rules/bsd-new_792.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -// Use of this source code is governed by a BSD-style -// license that can be found src the LICENSE file. \ No newline at end of file +// Use of this source code is {{governed by a BSD-style +// license}} that can be found src the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_793.RULE b/src/licensedcode/data/rules/bsd-new_793.RULE index d8cf46c6ed..417f032f23 100644 --- a/src/licensedcode/data/rules/bsd-new_793.RULE +++ b/src/licensedcode/data/rules/bsd-new_793.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 99 --- -Distributable under the BSD license. See the terms of the -BSD license in the documentation provided with this software. \ No newline at end of file +Distributable under {{the BSD license}}. See the terms of {{the +BSD license}} in the documentation provided with this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_794.RULE b/src/licensedcode/data/rules/bsd-new_794.RULE index f6a4cc2625..eac47b0e82 100644 --- a/src/licensedcode/data/rules/bsd-new_794.RULE +++ b/src/licensedcode/data/rules/bsd-new_794.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -freely distributable under the BSD license. \ No newline at end of file +freely distributable under {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_795.RULE b/src/licensedcode/data/rules/bsd-new_795.RULE index 24c9ed89c7..64ecad71b7 100644 --- a/src/licensedcode/data/rules/bsd-new_795.RULE +++ b/src/licensedcode/data/rules/bsd-new_795.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -Distributable under the BSD license. \ No newline at end of file +Distributable under {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_796.RULE b/src/licensedcode/data/rules/bsd-new_796.RULE index 730727f367..a59ff02fae 100644 --- a/src/licensedcode/data/rules/bsd-new_796.RULE +++ b/src/licensedcode/data/rules/bsd-new_796.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 99 --- -This software is distributable under the BSD license. -See the terms of the BSD license in the documentation provided with this software. \ No newline at end of file +This software is distributable under {{the BSD license}}. +See the terms of {{the BSD license}} in the documentation provided with this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_797.RULE b/src/licensedcode/data/rules/bsd-new_797.RULE index 1df6981236..81305c211d 100644 --- a/src/licensedcode/data/rules/bsd-new_797.RULE +++ b/src/licensedcode/data/rules/bsd-new_797.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -This software is distributable under the BSD license. \ No newline at end of file +This software is distributable under {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_8.RULE b/src/licensedcode/data/rules/bsd-new_8.RULE index f9e3557592..4ed8f04542 100644 --- a/src/licensedcode/data/rules/bsd-new_8.RULE +++ b/src/licensedcode/data/rules/bsd-new_8.RULE @@ -5,5 +5,5 @@ notes: BSD notice variant found on Debian notices --- may be redistributed under the terms -of the BSD license found on Debian systems in the file -/usr/share/common-licenses/BSD \ No newline at end of file +of {{the BSD license}} found on Debian systems in the file +{{/usr/share/common-licenses/BSD}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_801.RULE b/src/licensedcode/data/rules/bsd-new_801.RULE index 3e4ede2eb1..d19fc4bb97 100644 --- a/src/licensedcode/data/rules/bsd-new_801.RULE +++ b/src/licensedcode/data/rules/bsd-new_801.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Eclipse Distribution License (New BSD License) \ No newline at end of file +Eclipse Distribution License ({{New BSD License}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_806.RULE b/src/licensedcode/data/rules/bsd-new_806.RULE index 045fdf73db..3fa5361293 100644 --- a/src/licensedcode/data/rules/bsd-new_806.RULE +++ b/src/licensedcode/data/rules/bsd-new_806.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under a three-clause BSD license \ No newline at end of file +available under a {{three-clause BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_807.RULE b/src/licensedcode/data/rules/bsd-new_807.RULE index 7e55a059a7..c173f60a2d 100644 --- a/src/licensedcode/data/rules/bsd-new_807.RULE +++ b/src/licensedcode/data/rules/bsd-new_807.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -distributed under a BSD license \ No newline at end of file +distributed under a {{BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_810.RULE b/src/licensedcode/data/rules/bsd-new_810.RULE index 414bfc0091..92db5bf3ee 100644 --- a/src/licensedcode/data/rules/bsd-new_810.RULE +++ b/src/licensedcode/data/rules/bsd-new_810.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -licensed under the BSD 3-clause “New” or “Revised” License. See LICENSE for the full license text. \ No newline at end of file +licensed under the {{BSD 3-clause}} “New” or “Revised” License. See LICENSE for the full license text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_816.RULE b/src/licensedcode/data/rules/bsd-new_816.RULE index 8d9a34d1ac..869212104b 100644 --- a/src/licensedcode/data/rules/bsd-new_816.RULE +++ b/src/licensedcode/data/rules/bsd-new_816.RULE @@ -5,4 +5,4 @@ relevance: 95 minimum_coverage: 95 --- -is licensed under the BSD license. Other software included in this distribution is provided under other licenses, as set forth below. \ No newline at end of file +is licensed under {{the BSD license}}. Other software included in this distribution is provided under other licenses, as set forth below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_817.RULE b/src/licensedcode/data/rules/bsd-new_817.RULE index 135e53b594..2e3cde411a 100644 --- a/src/licensedcode/data/rules/bsd-new_817.RULE +++ b/src/licensedcode/data/rules/bsd-new_817.RULE @@ -6,5 +6,5 @@ minimum_coverage: 95 --- The Google Chrome software developed by Google is licensed under -the BSD license. Other software included in this distribution is +{{the BSD license}}. Other software included in this distribution is provided under other licenses, as set forth below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_818.RULE b/src/licensedcode/data/rules/bsd-new_818.RULE index b1bfc8d270..a6036d0758 100644 --- a/src/licensedcode/data/rules/bsd-new_818.RULE +++ b/src/licensedcode/data/rules/bsd-new_818.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- The Google Chrome software developed by Google is licensed under -the BSD license. Other software included in this distribution is +{{the BSD license}}. Other software included in this distribution is provided under other licenses, as set forth below. -The BSD License +{{The BSD License}} http://opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_819.RULE b/src/licensedcode/data/rules/bsd-new_819.RULE index 45f6c0149b..e57e3e5175 100644 --- a/src/licensedcode/data/rules/bsd-new_819.RULE +++ b/src/licensedcode/data/rules/bsd-new_819.RULE @@ -8,5 +8,5 @@ ignorable_urls: - http://opensource.org/licenses/BSD-3-Clause --- -Published under the terms of the BSD 3-Clause License +Published under the terms of the {{BSD 3-Clause License}} (see LICENSE file or http://opensource.org/licenses/BSD-3-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_829.RULE b/src/licensedcode/data/rules/bsd-new_829.RULE index a2cc7cd052..cb5b882d47 100644 --- a/src/licensedcode/data/rules/bsd-new_829.RULE +++ b/src/licensedcode/data/rules/bsd-new_829.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -(The 3-Clause BSD Licence) \ No newline at end of file +(The {{3-Clause BSD Licence}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_830.RULE b/src/licensedcode/data/rules/bsd-new_830.RULE index e7ad77419a..38af17d05d 100644 --- a/src/licensedcode/data/rules/bsd-new_830.RULE +++ b/src/licensedcode/data/rules/bsd-new_830.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -Code is released under a BSD License: +Code is released under a {{BSD License}}: http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_832.RULE b/src/licensedcode/data/rules/bsd-new_832.RULE index e216307206..5135884b02 100644 --- a/src/licensedcode/data/rules/bsd-new_832.RULE +++ b/src/licensedcode/data/rules/bsd-new_832.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://silvershell.googlecode.com/files/LICENSE --- -Licensed under the BSD License (the "License"). +Licensed under {{the BSD License}} (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/bsd-new_833.RULE b/src/licensedcode/data/rules/bsd-new_833.RULE index c41b180820..f741d54b90 100644 --- a/src/licensedcode/data/rules/bsd-new_833.RULE +++ b/src/licensedcode/data/rules/bsd-new_833.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -Licensed under the BSD License (the "License"). +Licensed under {{the BSD License}} (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/bsd-new_834.RULE b/src/licensedcode/data/rules/bsd-new_834.RULE index 8e057c6e8e..ee4a73a170 100644 --- a/src/licensedcode/data/rules/bsd-new_834.RULE +++ b/src/licensedcode/data/rules/bsd-new_834.RULE @@ -5,4 +5,4 @@ relevance: 100 --- licensed -// under the BSD 3-clause license, whose text is further below. \ No newline at end of file +// under the {{BSD 3-clause license}}, whose text is further below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_835.RULE b/src/licensedcode/data/rules/bsd-new_835.RULE index 47ea74a126..c9aadb5b26 100644 --- a/src/licensedcode/data/rules/bsd-new_835.RULE +++ b/src/licensedcode/data/rules/bsd-new_835.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -// Original BSD 3-clause license text: \ No newline at end of file +// Original {{BSD 3-clause license}} text: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_836.RULE b/src/licensedcode/data/rules/bsd-new_836.RULE index 010dfdb3f1..e4567814ef 100644 --- a/src/licensedcode/data/rules/bsd-new_836.RULE +++ b/src/licensedcode/data/rules/bsd-new_836.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -// Original BSD 3-clause license \ No newline at end of file +// Original {{BSD 3-clause license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_837.RULE b/src/licensedcode/data/rules/bsd-new_837.RULE index d9873d610e..499bb73670 100644 --- a/src/licensedcode/data/rules/bsd-new_837.RULE +++ b/src/licensedcode/data/rules/bsd-new_837.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -The script is licensed under the BSD License. \ No newline at end of file +The script is licensed under {{the BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_838.RULE b/src/licensedcode/data/rules/bsd-new_838.RULE index d2fd4527f1..7c3b8085bb 100644 --- a/src/licensedcode/data/rules/bsd-new_838.RULE +++ b/src/licensedcode/data/rules/bsd-new_838.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 99 --- -licensed under the BSD license. -The rest of the project is also released under the BSD licence. \ No newline at end of file +licensed under {{the BSD license}}. +The rest of the project is also released under {{the BSD licence}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_839.RULE b/src/licensedcode/data/rules/bsd-new_839.RULE index 25cc6ae13b..91acf41a1e 100644 --- a/src/licensedcode/data/rules/bsd-new_839.RULE +++ b/src/licensedcode/data/rules/bsd-new_839.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -The rest of the project is also released under the BSD licence. \ No newline at end of file +The rest of the project is also released under {{the BSD licence}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_840.RULE b/src/licensedcode/data/rules/bsd-new_840.RULE index 9e5ab1fd53..bccaa7e111 100644 --- a/src/licensedcode/data/rules/bsd-new_840.RULE +++ b/src/licensedcode/data/rules/bsd-new_840.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -// Original BSD 3-clause licence text: \ No newline at end of file +// Original {{BSD 3-clause licence}} text: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_841.RULE b/src/licensedcode/data/rules/bsd-new_841.RULE index 8a4b6bb6c6..f3fcf88cb5 100644 --- a/src/licensedcode/data/rules/bsd-new_841.RULE +++ b/src/licensedcode/data/rules/bsd-new_841.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -The script is licenced under the BSD License. \ No newline at end of file +The script is licenced under {{the BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_842.RULE b/src/licensedcode/data/rules/bsd-new_842.RULE index 4a15286de8..837dee9b7c 100644 --- a/src/licensedcode/data/rules/bsd-new_842.RULE +++ b/src/licensedcode/data/rules/bsd-new_842.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -licenced under the BSD license. \ No newline at end of file +licenced under {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_843.RULE b/src/licensedcode/data/rules/bsd-new_843.RULE index c0e24e2927..4106e5d566 100644 --- a/src/licensedcode/data/rules/bsd-new_843.RULE +++ b/src/licensedcode/data/rules/bsd-new_843.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 99 --- -licenced under the BSD license. -The rest of the project is also released under the BSD licence. \ No newline at end of file +licenced under {{the BSD license}}. +The rest of the project is also released under {{the BSD licence}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_845.RULE b/src/licensedcode/data/rules/bsd-new_845.RULE index 3ecda5199f..0392494241 100644 --- a/src/licensedcode/data/rules/bsd-new_845.RULE +++ b/src/licensedcode/data/rules/bsd-new_845.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed under a 3-clause BSD license \ No newline at end of file +Distributed under a {{3-clause BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_855.RULE b/src/licensedcode/data/rules/bsd-new_855.RULE index db81796b99..194d6daaca 100644 --- a/src/licensedcode/data/rules/bsd-new_855.RULE +++ b/src/licensedcode/data/rules/bsd-new_855.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -New BSD License (or Modified BSD Licnese) \ No newline at end of file +{{New BSD License}} (or Modified BSD Licnese) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_857.RULE b/src/licensedcode/data/rules/bsd-new_857.RULE index 65c165424d..bff912c6b9 100644 --- a/src/licensedcode/data/rules/bsd-new_857.RULE +++ b/src/licensedcode/data/rules/bsd-new_857.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.txt --- -* This software is licensed under the BSD license. +* This software is licensed under {{the BSD license}}. * See the accompanying LICENSE.txt for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_858.RULE b/src/licensedcode/data/rules/bsd-new_858.RULE index 62ad41bbf5..02dda6c732 100644 --- a/src/licensedcode/data/rules/bsd-new_858.RULE +++ b/src/licensedcode/data/rules/bsd-new_858.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -BSD License 2.0 (3-clause, New or Revised) License \ No newline at end of file +{{BSD License}} 2.0 (3-clause, New or Revised) License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_859.RULE b/src/licensedcode/data/rules/bsd-new_859.RULE index ffa78f6449..9e7a70475e 100644 --- a/src/licensedcode/data/rules/bsd-new_859.RULE +++ b/src/licensedcode/data/rules/bsd-new_859.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -BSD licence 2.0 (3-clause, New or Revised) licence \ No newline at end of file +{{BSD licence}} 2.0 (3-clause, New or Revised) licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_865.RULE b/src/licensedcode/data/rules/bsd-new_865.RULE index 1a355d5b20..715d67d77b 100644 --- a/src/licensedcode/data/rules/bsd-new_865.RULE +++ b/src/licensedcode/data/rules/bsd-new_865.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -OSI Certified Open Source Software licensed under the BSD license. \ No newline at end of file +OSI Certified Open Source Software licensed under {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_867.RULE b/src/licensedcode/data/rules/bsd-new_867.RULE index 1aea9f2b35..bf231be667 100644 --- a/src/licensedcode/data/rules/bsd-new_867.RULE +++ b/src/licensedcode/data/rules/bsd-new_867.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is released under a "Three-clause BSD License". \ No newline at end of file +This file is released under a "{{Three-clause BSD License}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_868.RULE b/src/licensedcode/data/rules/bsd-new_868.RULE index 310cdf8822..9a2392e0d9 100644 --- a/src/licensedcode/data/rules/bsd-new_868.RULE +++ b/src/licensedcode/data/rules/bsd-new_868.RULE @@ -6,9 +6,9 @@ ignorable_urls: - http://www.opensource.org/licenses/BSD-3-Clause --- -Celery is licensed under The BSD License (3 Clause, also known as -the new BSD license). The license is an OSI approved Open Source -license and is GPL-compatible(1). +Celery is licensed under {{The BSD License (3 Clause}}, also known as +the {{new BSD license}}). The license is an OSI approved Open Source +license and is {{GPL-compatible}}(1). The license text can also be found here: http://www.opensource.org/licenses/BSD-3-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_87.RULE b/src/licensedcode/data/rules/bsd-new_87.RULE index 44bda26f53..86283c646f 100644 --- a/src/licensedcode/data/rules/bsd-new_87.RULE +++ b/src/licensedcode/data/rules/bsd-new_87.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.html --- -Berkeley Software Distribution (BSD) License +{{Berkeley Software Distribution (BSD) License}} http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_870.RULE b/src/licensedcode/data/rules/bsd-new_870.RULE index 656ef7d8b2..9d5291f531 100644 --- a/src/licensedcode/data/rules/bsd-new_870.RULE +++ b/src/licensedcode/data/rules/bsd-new_870.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://framework.zend.com/license/new-bsd --- -license https://framework.zend.com/license/new-bsd New BSD License \ No newline at end of file +license https://framework.zend.com/license/new-bsd {{New BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_873.RULE b/src/licensedcode/data/rules/bsd-new_873.RULE index 3d45f34c40..ead84bda9d 100644 --- a/src/licensedcode/data/rules/bsd-new_873.RULE +++ b/src/licensedcode/data/rules/bsd-new_873.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.oasis-open.org/sites/www.oasis-open.org/files/BSD-3-Clause.txt --- -subject to open source license terms expressed in the BSD-3-Clause License \ No newline at end of file +subject to open source license terms expressed in the {{BSD-3-Clause License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_877.RULE b/src/licensedcode/data/rules/bsd-new_877.RULE index 7b3d999b1e..64da87cb50 100644 --- a/src/licensedcode/data/rules/bsd-new_877.RULE +++ b/src/licensedcode/data/rules/bsd-new_877.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -Distributed under the OSI-approved BSD License +Distributed under the OSI-approved {{BSD License}} This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_878.RULE b/src/licensedcode/data/rules/bsd-new_878.RULE index aff143c33d..aee76305c9 100644 --- a/src/licensedcode/data/rules/bsd-new_878.RULE +++ b/src/licensedcode/data/rules/bsd-new_878.RULE @@ -4,4 +4,4 @@ is_license_clue: yes relevance: 90 --- -BSD-style +BSD-style \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_881.RULE b/src/licensedcode/data/rules/bsd-new_881.RULE index 21359deb06..071f65de47 100644 --- a/src/licensedcode/data/rules/bsd-new_881.RULE +++ b/src/licensedcode/data/rules/bsd-new_881.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -made available under the "BSD License" \ No newline at end of file +made available under {{the "BSD License}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_886.RULE b/src/licensedcode/data/rules/bsd-new_886.RULE index 26dc60232a..f100900c96 100644 --- a/src/licensedcode/data/rules/bsd-new_886.RULE +++ b/src/licensedcode/data/rules/bsd-new_886.RULE @@ -9,4 +9,4 @@ ignorable_urls: --- LICENSE -BSD License http://creativecommons.org/licenses/BSD/ \ No newline at end of file +{{BSD License}} http://creativecommons.org/licenses/BSD/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_889.RULE b/src/licensedcode/data/rules/bsd-new_889.RULE index 429c536906..e93f4dc2c4 100644 --- a/src/licensedcode/data/rules/bsd-new_889.RULE +++ b/src/licensedcode/data/rules/bsd-new_889.RULE @@ -8,4 +8,4 @@ ignorable_urls: - http://creativecommons.org/licenses/BSD/ --- -BSD License http://creativecommons.org/licenses/BSD/ \ No newline at end of file +{{BSD License}} http://creativecommons.org/licenses/BSD/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_892.RULE b/src/licensedcode/data/rules/bsd-new_892.RULE index 7817cefe4b..f17cf6f24b 100644 --- a/src/licensedcode/data/rules/bsd-new_892.RULE +++ b/src/licensedcode/data/rules/bsd-new_892.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -This file is distributed under BSD-style license. \ No newline at end of file +This file is distributed under {{BSD-style license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_893.RULE b/src/licensedcode/data/rules/bsd-new_893.RULE index baf396e228..1810d9ffb9 100644 --- a/src/licensedcode/data/rules/bsd-new_893.RULE +++ b/src/licensedcode/data/rules/bsd-new_893.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -distributed under BSD-style license. \ No newline at end of file +distributed under {{BSD-style license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_898.RULE b/src/licensedcode/data/rules/bsd-new_898.RULE index a8ba24ce2c..7eb0158dff 100644 --- a/src/licensedcode/data/rules/bsd-new_898.RULE +++ b/src/licensedcode/data/rules/bsd-new_898.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-new is_license_reference: yes +is_required_phrase: yes relevance: 99 --- -THE "BSD" LICENCE \ No newline at end of file +the BSD licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_903.RULE b/src/licensedcode/data/rules/bsd-new_903.RULE index 5f0e9726ad..76e9b68630 100644 --- a/src/licensedcode/data/rules/bsd-new_903.RULE +++ b/src/licensedcode/data/rules/bsd-new_903.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF {{THE BSD LICENSE}}. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_904.RULE b/src/licensedcode/data/rules/bsd-new_904.RULE index 38a7d3e151..4120940706 100644 --- a/src/licensedcode/data/rules/bsd-new_904.RULE +++ b/src/licensedcode/data/rules/bsd-new_904.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD-3 CLAUSE LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{BSD-3 CLAUSE LICENSE}}. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_905.RULE b/src/licensedcode/data/rules/bsd-new_905.RULE index 82fbd6a2f8..694cd4c720 100644 --- a/src/licensedcode/data/rules/bsd-new_905.RULE +++ b/src/licensedcode/data/rules/bsd-new_905.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -UNDER THE TERMS OF THE BSD-3 CLAUSE LICENSE \ No newline at end of file +UNDER THE TERMS OF THE {{BSD-3 CLAUSE LICENSE}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_906.RULE b/src/licensedcode/data/rules/bsd-new_906.RULE index fb6d780366..c05335daba 100644 --- a/src/licensedcode/data/rules/bsd-new_906.RULE +++ b/src/licensedcode/data/rules/bsd-new_906.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -UNDER THE TERMS OF THE BSD LICENSE \ No newline at end of file +UNDER THE TERMS OF {{THE BSD LICENSE}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_909.RULE b/src/licensedcode/data/rules/bsd-new_909.RULE index 21f82070fd..1f71a7543e 100644 --- a/src/licensedcode/data/rules/bsd-new_909.RULE +++ b/src/licensedcode/data/rules/bsd-new_909.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE BSD-3 CLAUSE LICENSE. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{BSD-3 CLAUSE LICENSE}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_915.RULE b/src/licensedcode/data/rules/bsd-new_915.RULE index 6f67a9854c..c4e81865c9 100644 --- a/src/licensedcode/data/rules/bsd-new_915.RULE +++ b/src/licensedcode/data/rules/bsd-new_915.RULE @@ -5,4 +5,4 @@ relevance: 100 --- contain material derived from BSD -and which use the BSD 3-clause license. \ No newline at end of file +and which use the {{BSD 3-clause license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_916.RULE b/src/licensedcode/data/rules/bsd-new_916.RULE index 876bcec5a3..93dca52002 100644 --- a/src/licensedcode/data/rules/bsd-new_916.RULE +++ b/src/licensedcode/data/rules/bsd-new_916.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -use the BSD 3-clause license. \ No newline at end of file +use the {{BSD 3-clause license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_917.RULE b/src/licensedcode/data/rules/bsd-new_917.RULE index 5fcf261a67..07dbc04c99 100644 --- a/src/licensedcode/data/rules/bsd-new_917.RULE +++ b/src/licensedcode/data/rules/bsd-new_917.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -Licensed under the BSD License +Licensed under {{the BSD License}} (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_918.RULE b/src/licensedcode/data/rules/bsd-new_918.RULE index f240cacdd2..3284fc940d 100644 --- a/src/licensedcode/data/rules/bsd-new_918.RULE +++ b/src/licensedcode/data/rules/bsd-new_918.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.opensource.org/licenses/bsd-license.php --- -Licensed under the BSD License +Licensed under {{the BSD License}} (https://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_920.RULE b/src/licensedcode/data/rules/bsd-new_920.RULE index d1c5a03890..06d83e6823 100644 --- a/src/licensedcode/data/rules/bsd-new_920.RULE +++ b/src/licensedcode/data/rules/bsd-new_920.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -is distributed under BSD License \ No newline at end of file +is distributed under {{BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_921.RULE b/src/licensedcode/data/rules/bsd-new_921.RULE index 19a4357294..8d477da510 100644 --- a/src/licensedcode/data/rules/bsd-new_921.RULE +++ b/src/licensedcode/data/rules/bsd-new_921.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -distributed under the BSD license, see the LICENSE file for details. \ No newline at end of file +distributed under {{the BSD license}}, see the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_922.RULE b/src/licensedcode/data/rules/bsd-new_922.RULE index 515701135f..a92a1faa4c 100644 --- a/src/licensedcode/data/rules/bsd-new_922.RULE +++ b/src/licensedcode/data/rules/bsd-new_922.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -LICENSE INFORMATION: BSD-3 Clause \ No newline at end of file +LICENSE INFORMATION: {{BSD-3 Clause}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_925.RULE b/src/licensedcode/data/rules/bsd-new_925.RULE index d664625b3c..f9f313d7ec 100644 --- a/src/licensedcode/data/rules/bsd-new_925.RULE +++ b/src/licensedcode/data/rules/bsd-new_925.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -BSD-3-Clause - BSD 3-Clause "New" or "Revised" License \ No newline at end of file +{{BSD-3-Clause}} - {{BSD 3-Clause}} "New" or "Revised" License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_927.RULE b/src/licensedcode/data/rules/bsd-new_927.RULE index ed2c3f57a5..af7731f89d 100644 --- a/src/licensedcode/data/rules/bsd-new_927.RULE +++ b/src/licensedcode/data/rules/bsd-new_927.RULE @@ -8,5 +8,5 @@ ignorable_urls: This is free software. It is licensed for use, modification and redistribution under the terms of the -Modified (3 clause) Berkeley Software Distribution License +{{Modified (3 clause) Berkeley Software Distribution License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_928.RULE b/src/licensedcode/data/rules/bsd-new_928.RULE index 12b5bf939e..f982fbee04 100644 --- a/src/licensedcode/data/rules/bsd-new_928.RULE +++ b/src/licensedcode/data/rules/bsd-new_928.RULE @@ -8,5 +8,5 @@ ignorable_urls: It is licensed for use, modification and redistribution under the terms of the -Modified (3 clause) Berkeley Software Distribution License +{{Modified (3 clause) Berkeley Software Distribution License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_931.RULE b/src/licensedcode/data/rules/bsd-new_931.RULE index 91a2704456..49c71b2096 100644 --- a/src/licensedcode/data/rules/bsd-new_931.RULE +++ b/src/licensedcode/data/rules/bsd-new_931.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the 3-Clause BSD License. \ No newline at end of file +This project is licensed under the {{3-Clause BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_932.RULE b/src/licensedcode/data/rules/bsd-new_932.RULE index 6cefd9c6cb..65169a0542 100644 --- a/src/licensedcode/data/rules/bsd-new_932.RULE +++ b/src/licensedcode/data/rules/bsd-new_932.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -This project is licensed under the 3-Clause BSD License. \ No newline at end of file +This project is licensed under the {{3-Clause BSD License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_950.RULE b/src/licensedcode/data/rules/bsd-new_950.RULE index 74b7ebc032..0dc62b3ca9 100644 --- a/src/licensedcode/data/rules/bsd-new_950.RULE +++ b/src/licensedcode/data/rules/bsd-new_950.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -routines are under the modified BSD license: \ No newline at end of file +routines are under the {{modified BSD license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_951.RULE b/src/licensedcode/data/rules/bsd-new_951.RULE index 5c0139cb37..b2e88b09bf 100644 --- a/src/licensedcode/data/rules/bsd-new_951.RULE +++ b/src/licensedcode/data/rules/bsd-new_951.RULE @@ -3,16 +3,16 @@ license_expression: bsd-new is_license_notice: yes relevance: 99 ignorable_copyrights: - - copyright its authors + - copyright its authors ignorable_holders: - - its authors + - its authors ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- Copyright and License -This code is copyright its authors, and is distributed under the `BSD -License`_. +This code is copyright its authors, and is distributed under {{the `BSD +License}}`_. -.. _BSD License: http://www.opensource.org/licenses/bsd-license.php +.. _{{BSD License}}: http://www.opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_952.RULE b/src/licensedcode/data/rules/bsd-new_952.RULE index 357ef5c278..fa5033f596 100644 --- a/src/licensedcode/data/rules/bsd-new_952.RULE +++ b/src/licensedcode/data/rules/bsd-new_952.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -licensed under a **[liberal BSD 3-clause license](LICENSE)**. \ No newline at end of file +licensed under a **[liberal {{BSD 3-clause license}}](LICENSE)**. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_953.RULE b/src/licensedcode/data/rules/bsd-new_953.RULE index 18c5c19e05..ed4e891d49 100644 --- a/src/licensedcode/data/rules/bsd-new_953.RULE +++ b/src/licensedcode/data/rules/bsd-new_953.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under a **[liberal BSD 3-clause license] \ No newline at end of file +licensed under a **[liberal {{BSD 3-clause license}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_954.RULE b/src/licensedcode/data/rules/bsd-new_954.RULE index 9edc8dd9e2..61fd85794e 100644 --- a/src/licensedcode/data/rules/bsd-new_954.RULE +++ b/src/licensedcode/data/rules/bsd-new_954.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -licensed under a **[liberal BSD 3-clause \ No newline at end of file +licensed under a **[liberal {{BSD 3-clause}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_955.RULE b/src/licensedcode/data/rules/bsd-new_955.RULE index cb1211b3f7..76e63e9f20 100644 --- a/src/licensedcode/data/rules/bsd-new_955.RULE +++ b/src/licensedcode/data/rules/bsd-new_955.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under a BSD 3-clause license \ No newline at end of file +licensed under a {{BSD 3-clause license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_956.RULE b/src/licensedcode/data/rules/bsd-new_956.RULE index 9d7a3f71b6..46a7e20da4 100644 --- a/src/licensedcode/data/rules/bsd-new_956.RULE +++ b/src/licensedcode/data/rules/bsd-new_956.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under a BSD 3-clause \ No newline at end of file +licensed under a {{BSD 3-clause}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_957.RULE b/src/licensedcode/data/rules/bsd-new_957.RULE index 57683e59ff..49c6774db4 100644 --- a/src/licensedcode/data/rules/bsd-new_957.RULE +++ b/src/licensedcode/data/rules/bsd-new_957.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -now BSD licensed \ No newline at end of file +now {{BSD licensed}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_958.RULE b/src/licensedcode/data/rules/bsd-new_958.RULE index 85963cee4c..ae6025bffb 100644 --- a/src/licensedcode/data/rules/bsd-new_958.RULE +++ b/src/licensedcode/data/rules/bsd-new_958.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Licensed under the revised BSD license. There is NO warranty; not even for MERCHANTABILITY or +Licensed under the {{revised BSD license}}. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_959.RULE b/src/licensedcode/data/rules/bsd-new_959.RULE index c3db0336bb..5acaac9d23 100644 --- a/src/licensedcode/data/rules/bsd-new_959.RULE +++ b/src/licensedcode/data/rules/bsd-new_959.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the revised BSD license. \ No newline at end of file +Licensed under the {{revised BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_965.RULE b/src/licensedcode/data/rules/bsd-new_965.RULE index b666b6b489..fa47ff3af8 100644 --- a/src/licensedcode/data/rules/bsd-new_965.RULE +++ b/src/licensedcode/data/rules/bsd-new_965.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -This is the BSD license \ No newline at end of file +This is {{the BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_971.RULE b/src/licensedcode/data/rules/bsd-new_971.RULE index 0e63511c1b..b5db63cd01 100644 --- a/src/licensedcode/data/rules/bsd-new_971.RULE +++ b/src/licensedcode/data/rules/bsd-new_971.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -Based on BSD-licensed source \ No newline at end of file +Based on {{BSD-licensed}} source \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_972.RULE b/src/licensedcode/data/rules/bsd-new_972.RULE index 9240bbafa7..286ba8dc35 100644 --- a/src/licensedcode/data/rules/bsd-new_972.RULE +++ b/src/licensedcode/data/rules/bsd-new_972.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -BSD-licensed source \ No newline at end of file +{{BSD-licensed}} source \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_973.RULE b/src/licensedcode/data/rules/bsd-new_973.RULE index bfe1d8fde4..046a29ba12 100644 --- a/src/licensedcode/data/rules/bsd-new_973.RULE +++ b/src/licensedcode/data/rules/bsd-new_973.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -under a BSD 3-Clause license, see LICENSE \ No newline at end of file +under a {{BSD 3-Clause license}}, see LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_974.RULE b/src/licensedcode/data/rules/bsd-new_974.RULE index 5139285ea3..ba407891e2 100644 --- a/src/licensedcode/data/rules/bsd-new_974.RULE +++ b/src/licensedcode/data/rules/bsd-new_974.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under a BSD 3-Clause license \ No newline at end of file +under a {{BSD 3-Clause license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_975.RULE b/src/licensedcode/data/rules/bsd-new_975.RULE index 617ee3748f..a284930075 100644 --- a/src/licensedcode/data/rules/bsd-new_975.RULE +++ b/src/licensedcode/data/rules/bsd-new_975.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under a BSD 3-Clause \ No newline at end of file +under a {{BSD 3-Clause}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_977.RULE b/src/licensedcode/data/rules/bsd-new_977.RULE index 1aea12d50a..b72f49abec 100644 --- a/src/licensedcode/data/rules/bsd-new_977.RULE +++ b/src/licensedcode/data/rules/bsd-new_977.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://spdx.org/licenses/BSD-3-Clause.html --- -BSD 3-Clause New License (https://spdx.org/licenses/BSD-3-Clause.html) \ No newline at end of file +{{BSD 3-Clause New License}} (https://spdx.org/licenses/BSD-3-Clause.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_984.RULE b/src/licensedcode/data/rules/bsd-new_984.RULE index 9443e5b85a..b63148dcb1 100644 --- a/src/licensedcode/data/rules/bsd-new_984.RULE +++ b/src/licensedcode/data/rules/bsd-new_984.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Seen in pacemaker HTML doc --- -scripts under the Revised BSD license. \ No newline at end of file +scripts under the {{Revised BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_jcraft_5.RULE b/src/licensedcode/data/rules/bsd-new_jcraft_5.RULE index 61da85853c..272f97b5de 100644 --- a/src/licensedcode/data/rules/bsd-new_jcraft_5.RULE +++ b/src/licensedcode/data/rules/bsd-new_jcraft_5.RULE @@ -9,7 +9,7 @@ ignorable_urls: - BSD + <{{name>BSD http://www.jcraft.com/jsch/LICENSE.txt License information from http://www.jcraft.com/jsch diff --git a/src/licensedcode/data/rules/bsd-new_maven.RULE b/src/licensedcode/data/rules/bsd-new_maven.RULE index 04e1442bb6..fde7393bbc 100644 --- a/src/licensedcode/data/rules/bsd-new_maven.RULE +++ b/src/licensedcode/data/rules/bsd-new_maven.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- license -Berkeley Software Distribution (BSD) License +{{Berkeley Software Distribution (BSD) License}} http://www.opensource.org/licenses/bsd-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_newlib.RULE b/src/licensedcode/data/rules/bsd-new_newlib.RULE index c6537aabe5..fcb3094b4b 100644 --- a/src/licensedcode/data/rules/bsd-new_newlib.RULE +++ b/src/licensedcode/data/rules/bsd-new_newlib.RULE @@ -7,11 +7,11 @@ ignorable_urls: This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions -of the BSD License. This program is distributed in the hope that +of {{the BSD License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. A copy of this license is available at http://www.opensource.org/licenses. Any Red Hat trademarks that are incorporated in the source code or documentation are not subject to -the BSD License and may only be used or replicated with the express +{{the BSD License}} and may only be used or replicated with the express permission of Red Hat, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_newlib2.RULE b/src/licensedcode/data/rules/bsd-new_newlib2.RULE index d7ca7d1d3a..bb286a0d51 100644 --- a/src/licensedcode/data/rules/bsd-new_newlib2.RULE +++ b/src/licensedcode/data/rules/bsd-new_newlib2.RULE @@ -7,7 +7,7 @@ ignorable_urls: This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions -of the BSD License. This program is distributed in the hope that +of {{the BSD License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. A copy of this license is available at diff --git a/src/licensedcode/data/rules/bsd-new_or_simplified_10.RULE b/src/licensedcode/data/rules/bsd-new_or_simplified_10.RULE index 1129949b22..1d11d87572 100644 --- a/src/licensedcode/data/rules/bsd-new_or_simplified_10.RULE +++ b/src/licensedcode/data/rules/bsd-new_or_simplified_10.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 95 --- -is OSI Certified Open Source Software licensed under the BSD license. \ No newline at end of file +is OSI Certified Open Source Software licensed under {{the BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_protojs_1.RULE b/src/licensedcode/data/rules/bsd-new_protojs_1.RULE index b1ebd6ae95..f4760aa531 100644 --- a/src/licensedcode/data/rules/bsd-new_protojs_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_protojs_1.RULE @@ -7,6 +7,6 @@ ignorable_urls: - https://opensource.org/licenses/BSD-3-Clause --- -**License:** [BSD 3-Clause License](https://opensource.org/licenses/BSD-3-Clause) +**{{License:** [BSD 3-Clause}} License](https://opensource.org/licenses/BSD-3-Clause) - "license": "BSD-3-Clause", \ No newline at end of file + "{{license": "BSD-3-Clause}}", \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_provided_1.RULE b/src/licensedcode/data/rules/bsd-new_provided_1.RULE index 6d2d2870c5..658b43d957 100644 --- a/src/licensedcode/data/rules/bsd-new_provided_1.RULE +++ b/src/licensedcode/data/rules/bsd-new_provided_1.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.rst --- -provided under the "BSD (3-clause) License" \ No newline at end of file +provided under the "{{BSD (3-clause) License}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_qt.RULE b/src/licensedcode/data/rules/bsd-new_qt.RULE index c28d659efc..3f8bda1b99 100644 --- a/src/licensedcode/data/rules/bsd-new_qt.RULE +++ b/src/licensedcode/data/rules/bsd-new_qt.RULE @@ -3,7 +3,7 @@ license_expression: bsd-new is_license_notice: yes --- -** You may use this file under the terms of the BSD license as follows: +** You may use this file under the terms of {{the BSD license}} as follows: ** ** "Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions are diff --git a/src/licensedcode/data/rules/bsd-new_readme1.RULE b/src/licensedcode/data/rules/bsd-new_readme1.RULE index e111b51a71..3b001fb889 100644 --- a/src/licensedcode/data/rules/bsd-new_readme1.RULE +++ b/src/licensedcode/data/rules/bsd-new_readme1.RULE @@ -5,4 +5,4 @@ relevance: 99 --- is available -under a BSD License \ No newline at end of file +under a {{BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_readme2.RULE b/src/licensedcode/data/rules/bsd-new_readme2.RULE index a72c7b8638..6e21733d42 100644 --- a/src/licensedcode/data/rules/bsd-new_readme2.RULE +++ b/src/licensedcode/data/rules/bsd-new_readme2.RULE @@ -2,6 +2,8 @@ license_expression: bsd-new is_license_reference: yes relevance: 100 +referenced_filenames: + - /legal/BSD-3-clause --- -([3-clause BSD license](/legal/BSD-3-clause)) \ No newline at end of file +([{{3-clause BSD license}}]({{ /legal/BSD-3-clause }})) diff --git a/src/licensedcode/data/rules/bsd-new_readme5.RULE b/src/licensedcode/data/rules/bsd-new_readme5.RULE index 3c94d6c522..776165baa0 100644 --- a/src/licensedcode/data/rules/bsd-new_readme5.RULE +++ b/src/licensedcode/data/rules/bsd-new_readme5.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -The Library is available under a BSD License \ No newline at end of file +The Library is available under a {{BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_1.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_1.RULE new file mode 100644 index 0000000000..b7e575c1c0 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_1.RULE @@ -0,0 +1,9 @@ +--- +license_expression: bsd-new +is_license_tag: yes +is_required_phrase: yes +relevance: 90 +--- + +governed by a BSD-style +license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_10.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_10.RULE new file mode 100644 index 0000000000..a424dc5cce --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_10.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +is_required_phrase: yes +relevance: 99 +--- + +Released under the terms of the following BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_11.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_11.RULE new file mode 100644 index 0000000000..36169a9b47 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_11.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +The BSD License (3 Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_12.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_12.RULE new file mode 100644 index 0000000000..30fb598f44 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_12.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 90 +--- + +BSD-like license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_13.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_13.RULE new file mode 100644 index 0000000000..a509103f91 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_13.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +modified BSD licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_14.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_14.RULE new file mode 100644 index 0000000000..3bc16c7b46 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_14.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +BSD 3-clause licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_15.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_15.RULE new file mode 100644 index 0000000000..036b19ee4f --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_15.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - https://github.com/googleapis/api-common-java/blob/master/LICENSE +--- + +https://github.com/googleapis/api-common-java/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_16.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_16.RULE new file mode 100644 index 0000000000..58a1269c9c --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_16.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +is_required_phrase: yes +relevance: 99 +--- + +Released under terms of following BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_17.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_17.RULE new file mode 100644 index 0000000000..c84df581de --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_17.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +BSD License (3 Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_18.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_18.RULE new file mode 100644 index 0000000000..540e5a247d --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_18.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 99 +referenced_filenames: + - /usr/share/common-licenses/BSD +--- + +/usr/share/common-licenses/BSD diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_19.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_19.RULE new file mode 100644 index 0000000000..4e1be8242d --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_19.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - http://www.jcraft.com/jzlib/LICENSE.txt +--- + +http://www.jcraft.com/jzlib/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_2.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_2.RULE new file mode 100644 index 0000000000..3da94eff86 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_2.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - https://github.com/googleapis/api-common-java/blob/master/LICENSE +--- + +https://github.com/googleapis/api-common-java/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_20.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_20.RULE new file mode 100644 index 0000000000..7e261005b9 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_20.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_notice: yes +is_required_phrase: yes +relevance: 99 +--- + +released under terms of the following bsd license diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_21.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_21.RULE new file mode 100644 index 0000000000..00eec2736a --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_21.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Modified (3 clause) Berkeley Software Distribution License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_22.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_22.RULE new file mode 100644 index 0000000000..295c446161 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_22.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Berkeley Software Distribution license v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_23.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_23.RULE new file mode 100644 index 0000000000..bd14af8b36 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_23.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Berkeley Software Distribution License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_24.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_24.RULE new file mode 100644 index 0000000000..67c96d49d9 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_24.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - http://treelayout.googlecode.com/files/LICENSE.TXT +--- + +http://treelayout.googlecode.com/files/LICENSE.TXT \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_25.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_25.RULE new file mode 100644 index 0000000000..30590bc68f --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_25.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - https://github.com/googleapis/gax-java/blob/master/LICENSE +--- + +https://github.com/googleapis/gax-java/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_26.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_26.RULE new file mode 100644 index 0000000000..fa409e01b0 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_26.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Berkeley Software Distribution licence v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_27.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_27.RULE new file mode 100644 index 0000000000..952b8302ef --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_27.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - https://github.com/googleapis/gax-java/blob/master/LICENSE +--- + +https://github.com/googleapis/gax-java/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_28.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_28.RULE new file mode 100644 index 0000000000..a320f85a36 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_28.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - https://github.com/googleapis/gax-java/blob/master/LICENSE +--- + +https://github.com/googleapis/gax-java/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_29.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_29.RULE new file mode 100644 index 0000000000..635e1c88a6 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_29.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - http://gdcm.sourceforge.net/Copyright.html +--- + +http://gdcm.sourceforge.net/Copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_3.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_3.RULE new file mode 100644 index 0000000000..f638572fa0 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_3.RULE @@ -0,0 +1,10 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - https://github.com/googleapis/api-common-java/blob/master/LICENSE +--- + +https://github.com/googleapis/api-common-java/blob/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_30.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_30.RULE new file mode 100644 index 0000000000..76510e83c2 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_30.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 99 +--- + +License: global BSD-style \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_31.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_31.RULE new file mode 100644 index 0000000000..f46aac5708 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_31.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 99 +--- + +name>BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_4.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_4.RULE new file mode 100644 index 0000000000..291d011e03 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_4.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +BSD New license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_5.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_5.RULE new file mode 100644 index 0000000000..29456d1a3b --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_5.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +New or Revised or 3-Clause BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_6.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_6.RULE new file mode 100644 index 0000000000..0f68f8885b --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_6.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +BSD 3-clause New License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_7.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_7.RULE new file mode 100644 index 0000000000..27dfb90851 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_7.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_tag: yes +is_required_phrase: yes +relevance: 99 +--- + +:license: BSD, see LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-new_required_phrase_8.RULE b/src/licensedcode/data/rules/bsd-new_required_phrase_8.RULE new file mode 100644 index 0000000000..7f28b48a76 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-new_required_phrase_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-new +is_license_reference: yes +is_required_phrase: yes +relevance: 90 +--- + +name> BSD BSD License +<{{name>BSD License}} http://javolution.org/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_294.RULE b/src/licensedcode/data/rules/bsd-simplified_294.RULE index 52a6246a9a..d448f4b18c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_294.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_294.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -BSD_licenses#2-clause_license_("Simplified_BSD_License"_or_"FreeBSD_License") \ No newline at end of file +BSD_licenses#2-clause_license_("{{Simplified_BSD_License}}"_or_"FreeBSD_License") \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_296.RULE b/src/licensedcode/data/rules/bsd-simplified_296.RULE index 920c3bb9cb..f38fd387dd 100644 --- a/src/licensedcode/data/rules/bsd-simplified_296.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_296.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -"Simplified_BSD_License"_or_"FreeBSD_License") \ No newline at end of file +"{{Simplified_BSD_License}}"_or_"FreeBSD_License") \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_297.RULE b/src/licensedcode/data/rules/bsd-simplified_297.RULE index 409f36c1c5..f75ef5faaa 100644 --- a/src/licensedcode/data/rules/bsd-simplified_297.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_297.RULE @@ -8,7 +8,7 @@ referenced_filenames: - LEGAL --- -license "BSD-2-Clause" -license_file "BSDL" +license "{{BSD-2-Clause" +license}}_file "BSDL" license_file "COPYING" license_file "LEGAL" \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_3.RULE b/src/licensedcode/data/rules/bsd-simplified_3.RULE index da31108469..49cc270d77 100644 --- a/src/licensedcode/data/rules/bsd-simplified_3.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_3.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-simplified is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -BSD 2-clause "NetBSD" License \ No newline at end of file +BSD 2-clause NetBSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_300.RULE b/src/licensedcode/data/rules/bsd-simplified_300.RULE index b2d1190baa..66f838fc7d 100644 --- a/src/licensedcode/data/rules/bsd-simplified_300.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_300.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-simplified is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-simplified_301.RULE b/src/licensedcode/data/rules/bsd-simplified_301.RULE index 5668d35c6e..dde9fc5245 100644 --- a/src/licensedcode/data/rules/bsd-simplified_301.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_301.RULE @@ -1,8 +1,9 @@ --- license_expression: bsd-simplified is_license_tag: yes +is_required_phrase: yes is_continuous: yes relevance: 100 --- -{{licenses: BSD-2}} \ No newline at end of file +licenses: BSD-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_302.RULE b/src/licensedcode/data/rules/bsd-simplified_302.RULE index 7b24d1a2ce..606f4f9960 100644 --- a/src/licensedcode/data/rules/bsd-simplified_302.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_302.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -covered by the Simplified BSD license: \ No newline at end of file +covered by the {{Simplified BSD license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_303.RULE b/src/licensedcode/data/rules/bsd-simplified_303.RULE index 964c1eaf6e..33be3a39d9 100644 --- a/src/licensedcode/data/rules/bsd-simplified_303.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_303.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://opensource.org/licenses/bsd-license.php --- -BSD-2-Clause \ No newline at end of file +{{BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_310.RULE b/src/licensedcode/data/rules/bsd-simplified_310.RULE index 4697b6cb82..cb21a05799 100644 --- a/src/licensedcode/data/rules/bsd-simplified_310.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_310.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under a BSD 2-Clause license. \ No newline at end of file +available under a {{BSD 2-Clause license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_312.RULE b/src/licensedcode/data/rules/bsd-simplified_312.RULE index 2134d132cb..bfc532cad6 100644 --- a/src/licensedcode/data/rules/bsd-simplified_312.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_312.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -available under the Simplified BSD License; see LICENSE for the full text. \ No newline at end of file +available under the {{Simplified BSD License}}; see LICENSE for the full text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_313.RULE b/src/licensedcode/data/rules/bsd-simplified_313.RULE index d9c04bbc9e..946d7c0431 100644 --- a/src/licensedcode/data/rules/bsd-simplified_313.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_313.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under the Simplified BSD License \ No newline at end of file +available under the {{Simplified BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_314.RULE b/src/licensedcode/data/rules/bsd-simplified_314.RULE index ef63dcca77..262229e497 100644 --- a/src/licensedcode/data/rules/bsd-simplified_314.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_314.RULE @@ -6,5 +6,5 @@ referenced_filenames: - README.md --- -Distributed under the Simplified BSD License. +Distributed under the {{Simplified BSD License}}. See README.md for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_315.RULE b/src/licensedcode/data/rules/bsd-simplified_315.RULE index 78cfbb71e3..9ed0dac369 100644 --- a/src/licensedcode/data/rules/bsd-simplified_315.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_315.RULE @@ -8,4 +8,4 @@ referenced_filenames: ### License -available under the Simplified BSD License; see LICENSE for the full text. \ No newline at end of file +available under the {{Simplified BSD License}}; see LICENSE for the full text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_316.RULE b/src/licensedcode/data/rules/bsd-simplified_316.RULE index c0bad20bbc..181c912b89 100644 --- a/src/licensedcode/data/rules/bsd-simplified_316.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_316.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The software is open source software released under the "Simplified BSD License". \ No newline at end of file +The software is open source software released under the "{{Simplified BSD License}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_317.RULE b/src/licensedcode/data/rules/bsd-simplified_317.RULE index 8690cea1b7..158bdf3da7 100644 --- a/src/licensedcode/data/rules/bsd-simplified_317.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_317.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the "Simplified BSD License". \ No newline at end of file +released under the "{{Simplified BSD License}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_318.RULE b/src/licensedcode/data/rules/bsd-simplified_318.RULE index a45fb569a3..72c56f3dcb 100644 --- a/src/licensedcode/data/rules/bsd-simplified_318.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_318.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: https://git.musl-libc.org/cgit/musl/tree/COPYRIGHT --- -licensed under a two-clause BSD license. \ No newline at end of file +licensed under a {{two-clause BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_319.RULE b/src/licensedcode/data/rules/bsd-simplified_319.RULE index c2ef2c4808..64a32a075c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_319.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_319.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: https://git.musl-libc.org/cgit/musl/tree/COPYRIGHT --- -licensed under a 2-clause BSD license (license text in the source files) \ No newline at end of file +{{licensed under a 2-clause BSD license}} (license text in the source files) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_320.RULE b/src/licensedcode/data/rules/bsd-simplified_320.RULE index 28d2d1eed0..b8cffa3cc1 100644 --- a/src/licensedcode/data/rules/bsd-simplified_320.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_320.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -Examples are licensed under: (SPDX-License-Identifier) BSD-2-Clause \ No newline at end of file +Examples are licensed under: (SPDX-License-Identifier) {{BSD-2-Clause}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_321.RULE b/src/licensedcode/data/rules/bsd-simplified_321.RULE index a4ecb6f711..860afa5c66 100644 --- a/src/licensedcode/data/rules/bsd-simplified_321.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_321.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licensed under: (SPDX-License-Identifier) BSD-2-Clause \ No newline at end of file +licensed under: (SPDX-License-Identifier) {{BSD-2-Clause}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_323.RULE b/src/licensedcode/data/rules/bsd-simplified_323.RULE index d0271bbc58..4b659f25bf 100644 --- a/src/licensedcode/data/rules/bsd-simplified_323.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_323.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- is licensed under the -Simplified BSD License (also known as "2-clause BSD", or "FreeBSD License") +{{Simplified BSD License}} (also known as "2-clause BSD", or "FreeBSD License") See the License for details about distribution rights, and the specific rights regarding derivate works. diff --git a/src/licensedcode/data/rules/bsd-simplified_329.RULE b/src/licensedcode/data/rules/bsd-simplified_329.RULE index c24cc40f6d..28ab17143e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_329.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_329.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under a permissive BSD 2-clause license. \ No newline at end of file +licensed under a permissive {{BSD 2-clause license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_330.RULE b/src/licensedcode/data/rules/bsd-simplified_330.RULE index 3b13f3db06..702f4f34ce 100644 --- a/src/licensedcode/data/rules/bsd-simplified_330.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_330.RULE @@ -8,4 +8,4 @@ referenced_filenames: License -2 clause BSD license. See LICENSE file for details. \ No newline at end of file +{{2 clause BSD license}}. See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_331.RULE b/src/licensedcode/data/rules/bsd-simplified_331.RULE index 933e151c29..b320a9e017 100644 --- a/src/licensedcode/data/rules/bsd-simplified_331.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_331.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -2 clause BSD license. See LICENSE file for details. \ No newline at end of file +{{2 clause BSD license}}. See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_332.RULE b/src/licensedcode/data/rules/bsd-simplified_332.RULE index 7015c223ba..5230d8cec2 100644 --- a/src/licensedcode/data/rules/bsd-simplified_332.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_332.RULE @@ -5,4 +5,4 @@ relevance: 100 --- * The copyright in this software is being made available under the 2-clauses - * BSD License, included below. \ No newline at end of file + * {{BSD License}}, included below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_333.RULE b/src/licensedcode/data/rules/bsd-simplified_333.RULE index 06cdeae79b..bb27e8ee48 100644 --- a/src/licensedcode/data/rules/bsd-simplified_333.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_333.RULE @@ -4,4 +4,4 @@ is_license_notice: yes notes: https://raw.githubusercontent.com/uclouvain/openjpeg/fe2fa707161b2025ef82c325b9110c08bd0e812e/README.md --- -released under the [BSD 2-clause "Simplified" License][link-license], anyone can use or modify the code, even for commercial applications. The only restriction is to retain the copyright in the sources or in the binaries documentation. \ No newline at end of file +released under the [{{BSD 2-clause "Simplified" License}}][link-license], anyone can use or modify the code, even for commercial applications. The only restriction is to retain the copyright in the sources or in the binaries documentation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_334.RULE b/src/licensedcode/data/rules/bsd-simplified_334.RULE index d5878cfbb3..a7edc2848f 100644 --- a/src/licensedcode/data/rules/bsd-simplified_334.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_334.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-simplified is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -"BSD 2-clause \"Simplified\" \ No newline at end of file +BSD 2-clause "Simplified \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_335.RULE b/src/licensedcode/data/rules/bsd-simplified_335.RULE index e5f269703f..5f65e56b3a 100644 --- a/src/licensedcode/data/rules/bsd-simplified_335.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_335.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -LICENSE "BSD 2-clause \"Simplified\" \ No newline at end of file +LICENSE "{{BSD 2-clause \"Simplified\"}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_336.RULE b/src/licensedcode/data/rules/bsd-simplified_336.RULE index 6b56a3db2f..4c4a172540 100644 --- a/src/licensedcode/data/rules/bsd-simplified_336.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_336.RULE @@ -1,8 +1,8 @@ --- license_expression: bsd-simplified is_license_notice: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 --- -{{BSD-licensed dictionary of Polish}} \ No newline at end of file +{{ BSD-licensed dictionary of Polish }} diff --git a/src/licensedcode/data/rules/bsd-simplified_337.RULE b/src/licensedcode/data/rules/bsd-simplified_337.RULE index 9cd7516b57..faf3bb3bf1 100644 --- a/src/licensedcode/data/rules/bsd-simplified_337.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_337.RULE @@ -5,7 +5,7 @@ is_license_tag: yes - BSD-license + {{BSD-license}} {{Revised 2-clause BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_338.RULE b/src/licensedcode/data/rules/bsd-simplified_338.RULE index 3d1dd08f0a..19addebcaa 100644 --- a/src/licensedcode/data/rules/bsd-simplified_338.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_338.RULE @@ -3,5 +3,5 @@ license_expression: bsd-simplified is_license_tag: yes --- -name: BSD-license +{{name: BSD-license}} comments: {{Revised 2-clause BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_39.RULE b/src/licensedcode/data/rules/bsd-simplified_39.RULE index b56dd2bf15..558bd66024 100644 --- a/src/licensedcode/data/rules/bsd-simplified_39.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_39.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-simplified -is_license_reference: yes +is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -Licensed under the BSD 2-clause license \ No newline at end of file +licensed under the 'BSD 2-clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_41.RULE b/src/licensedcode/data/rules/bsd-simplified_41.RULE index 2b029bfb79..5455c4dbbf 100644 --- a/src/licensedcode/data/rules/bsd-simplified_41.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_41.RULE @@ -3,5 +3,5 @@ license_expression: bsd-simplified is_license_notice: yes --- -The TRE regular expression implementation is Copyright and licensed -under a 2-clause BSD license (license text in the source files). \ No newline at end of file +The TRE regular expression implementation is Copyright and {{licensed +under a 2-clause BSD license}} (license text in the source files). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_42.RULE b/src/licensedcode/data/rules/bsd-simplified_42.RULE index 2c5d955ff7..e237cff51b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_42.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_42.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -and is licensed under a two-clause BSD license. \ No newline at end of file +and is licensed under a {{two-clause BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_46.RULE b/src/licensedcode/data/rules/bsd-simplified_46.RULE index 77072c8b95..c6d8fd9989 100644 --- a/src/licensedcode/data/rules/bsd-simplified_46.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_46.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is licensed under the BSD 2-clause \ No newline at end of file +is {{licensed under the BSD 2-clause}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_47.RULE b/src/licensedcode/data/rules/bsd-simplified_47.RULE index e3614c6189..0038b34739 100644 --- a/src/licensedcode/data/rules/bsd-simplified_47.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_47.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/BSD-2-Clause --- -[BSD 2 License](http://opensource.org/licenses/BSD-2-Clause) \ No newline at end of file +[{{BSD 2 License}}](http://opensource.org/licenses/BSD-2-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_48.RULE b/src/licensedcode/data/rules/bsd-simplified_48.RULE index 0496f97de7..db20ff97f5 100644 --- a/src/licensedcode/data/rules/bsd-simplified_48.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_48.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://choosealicense.com/licenses/bsd-2-clause --- -License: [`bsd-2-clause`](http://choosealicense.com/licenses/bsd-2-clause/) \ No newline at end of file +{{License: [`bsd-2}}-clause`](http://choosealicense.com/licenses/bsd-2-clause/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_49.RULE b/src/licensedcode/data/rules/bsd-simplified_49.RULE index e3e72237c3..dfc92a46a8 100644 --- a/src/licensedcode/data/rules/bsd-simplified_49.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_49.RULE @@ -5,4 +5,4 @@ relevance: 100 --- ## License -Code is under the [BSD 2-clause "Simplified" License] \ No newline at end of file +Code is under the [{{BSD 2-clause "Simplified" License}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_50.RULE b/src/licensedcode/data/rules/bsd-simplified_50.RULE index 7ab8666256..c323ab87b3 100644 --- a/src/licensedcode/data/rules/bsd-simplified_50.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_50.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-simplified is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-simplified_51.RULE b/src/licensedcode/data/rules/bsd-simplified_51.RULE index 52ad22293b..4b723f53f4 100644 --- a/src/licensedcode/data/rules/bsd-simplified_51.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_51.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is released under the [BSD 2-Clause license] \ No newline at end of file +is released under the [{{BSD 2-Clause license}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_53.RULE b/src/licensedcode/data/rules/bsd-simplified_53.RULE index 909800ccbb..b73a1e56b7 100644 --- a/src/licensedcode/data/rules/bsd-simplified_53.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_53.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-simplified -is_license_reference: yes +is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -License: BSD-2 \ No newline at end of file +license = 'BSD 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_55.RULE b/src/licensedcode/data/rules/bsd-simplified_55.RULE index b90633565b..ab0de33cda 100644 --- a/src/licensedcode/data/rules/bsd-simplified_55.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_55.RULE @@ -4,6 +4,6 @@ is_license_text: yes --- The libfdt source code is disjunctively dual licensed -(GPL-2.0+ OR BSD-2-Clause). It is used by this project under the terms of -the BSD-2-Clause license. Any contributions to this code must be made under +(GPL-2.0+ OR {{BSD-2-Clause}}). It is used by this project under the terms of +the {{BSD-2-Clause license}}. Any contributions to this code must be made under the terms of both licenses. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_56.RULE b/src/licensedcode/data/rules/bsd-simplified_56.RULE index b754cd5c46..a7c2c60957 100644 --- a/src/licensedcode/data/rules/bsd-simplified_56.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_56.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The module is licensed under 2-clause BSD license. \ No newline at end of file +The module is {{licensed under 2-clause BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_58.RULE b/src/licensedcode/data/rules/bsd-simplified_58.RULE index 5c3e28a074..a43bad73ee 100644 --- a/src/licensedcode/data/rules/bsd-simplified_58.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_58.RULE @@ -6,5 +6,5 @@ referenced_filenames: --- * This software may be distributed and modified according to the terms of - * the BSD 2-Clause license. Note that NO WARRANTY is provided. + * the {{BSD 2-Clause license}}. Note that NO WARRANTY is provided. * See "LICENSE_BSD2.txt" for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_59.RULE b/src/licensedcode/data/rules/bsd-simplified_59.RULE index dd6276ee87..3a0c7992c2 100644 --- a/src/licensedcode/data/rules/bsd-simplified_59.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_59.RULE @@ -6,4 +6,4 @@ referenced_filenames: - License --- -Licensed under the BSD 2-Clause License (the "License"). See License in the project root for license information. \ No newline at end of file +{{Licensed under the BSD 2-Clause}} License (the "License"). See License in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_60.RULE b/src/licensedcode/data/rules/bsd-simplified_60.RULE index 8b22441184..c62d71daf4 100644 --- a/src/licensedcode/data/rules/bsd-simplified_60.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_60.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.txt --- -// Licensed under the BSD 2-Clause License. +// {{Licensed under the BSD 2-Clause License}}. // See LICENSE.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_61.RULE b/src/licensedcode/data/rules/bsd-simplified_61.RULE index 1fc5bf0f17..e7b3d1dd4e 100644 --- a/src/licensedcode/data/rules/bsd-simplified_61.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_61.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -// Licensed under the BSD 2-Clause License. +// {{Licensed under the BSD 2-Clause License}}. // See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_62.RULE b/src/licensedcode/data/rules/bsd-simplified_62.RULE index e6c9086fe7..93bfe36d31 100644 --- a/src/licensedcode/data/rules/bsd-simplified_62.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_62.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Redistribution and use is allowed according to the terms of the 2-clause BSD license. \ No newline at end of file +Redistribution and use is allowed according to the terms of the 2-clause {{BSD license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_63.RULE b/src/licensedcode/data/rules/bsd-simplified_63.RULE index 76fb428321..de47974e02 100644 --- a/src/licensedcode/data/rules/bsd-simplified_63.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_63.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-simplified is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -2-clause BSD License \ No newline at end of file +2-clause) BSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_64.RULE b/src/licensedcode/data/rules/bsd-simplified_64.RULE index 37df8c723d..3beb18e56c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_64.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_64.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licensed under 2-clause BSD License is available at: \ No newline at end of file +{{licensed under 2-clause BSD License}} is available at: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_67.RULE b/src/licensedcode/data/rules/bsd-simplified_67.RULE index fa4e1e9d83..3d462cd418 100644 --- a/src/licensedcode/data/rules/bsd-simplified_67.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_67.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is licensed under the BSD 2-clause licence: \ No newline at end of file +is {{licensed under the BSD 2-clause}} licence: \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_69.RULE b/src/licensedcode/data/rules/bsd-simplified_69.RULE index 52093816e3..4b0bed0db7 100644 --- a/src/licensedcode/data/rules/bsd-simplified_69.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_69.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-simplified is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -licensed under the BSD 2-clause licence: \ No newline at end of file +licensed under the BSD 2-clause licence diff --git a/src/licensedcode/data/rules/bsd-simplified_7.RULE b/src/licensedcode/data/rules/bsd-simplified_7.RULE index 6452e4cb66..28820fa23a 100644 --- a/src/licensedcode/data/rules/bsd-simplified_7.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_7.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- ### License -This project is licensed under a Simplified BSD license. Please read the [LICENSE file][license]. \ No newline at end of file +This project is licensed under a {{Simplified BSD license}}. Please read the [LICENSE file][license]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_72.RULE b/src/licensedcode/data/rules/bsd-simplified_72.RULE index 40ab34a66e..973000ad97 100644 --- a/src/licensedcode/data/rules/bsd-simplified_72.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_72.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the BSD 2-clause licence \ No newline at end of file +the {{BSD 2-clause licence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_73.RULE b/src/licensedcode/data/rules/bsd-simplified_73.RULE index fa3a40d15b..de4cdc666b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_73.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_73.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -This file is licensed under the 2-Clause BSD license (see LICENSE.txt) \ No newline at end of file +This file is licensed under the {{2-Clause BSD license}} (see LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_75.RULE b/src/licensedcode/data/rules/bsd-simplified_75.RULE index d6363c0116..995616e4bf 100644 --- a/src/licensedcode/data/rules/bsd-simplified_75.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_75.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is licensed under the 2-Clause BSD license \ No newline at end of file +This file is licensed under the {{2-Clause BSD license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_79.RULE b/src/licensedcode/data/rules/bsd-simplified_79.RULE index 68fbcfb8c1..0621bb7124 100644 --- a/src/licensedcode/data/rules/bsd-simplified_79.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_79.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/BSD-2-Clause --- -License: BSD 2-Clause License (https://opensource.org/licenses/BSD-2-Clause) \ No newline at end of file +License: {{BSD 2-Clause License}} (https://opensource.org/licenses/BSD-2-Clause) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_80.RULE b/src/licensedcode/data/rules/bsd-simplified_80.RULE index b69c3fb204..edb84ddf7b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_80.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_80.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://javolution.org/LICENSE.txt --- -License: BSD License (http://javolution.org/LICENSE.txt \ No newline at end of file +License: {{BSD License}} (http://javolution.org/LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_81.RULE b/src/licensedcode/data/rules/bsd-simplified_81.RULE index 8add7c40ee..efa1a13a0c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_81.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_81.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/bsd-license.php --- -License: The BSD 2-Clause License (http://opensource.org/licenses/bsd-license.php \ No newline at end of file +License: The {{BSD 2-Clause License}} (http://opensource.org/licenses/bsd-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_83.RULE b/src/licensedcode/data/rules/bsd-simplified_83.RULE index cc1ece71b4..2c7bbcfa20 100644 --- a/src/licensedcode/data/rules/bsd-simplified_83.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_83.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-simplified is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/bsd-simplified_84.RULE b/src/licensedcode/data/rules/bsd-simplified_84.RULE index 1293884446..bd70480e9c 100644 --- a/src/licensedcode/data/rules/bsd-simplified_84.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_84.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The BSD 2-Clause License \ No newline at end of file +The {{BSD 2-Clause License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_89.RULE b/src/licensedcode/data/rules/bsd-simplified_89.RULE index 43c58535e5..b53118826b 100644 --- a/src/licensedcode/data/rules/bsd-simplified_89.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_89.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -BSD BSD-2-Clause \ No newline at end of file +BSD {{BSD-2-Clause}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_91.RULE b/src/licensedcode/data/rules/bsd-simplified_91.RULE index b09d56876a..12f16eb9b5 100644 --- a/src/licensedcode/data/rules/bsd-simplified_91.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_91.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -License 2 clause BSD license. See [LICENSE] \ No newline at end of file +License {{2 clause BSD license}}. See [LICENSE] \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_93.RULE b/src/licensedcode/data/rules/bsd-simplified_93.RULE index 076415012b..921356a534 100644 --- a/src/licensedcode/data/rules/bsd-simplified_93.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_93.RULE @@ -1,7 +1,8 @@ --- license_expression: bsd-simplified is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -BSD 2-Clause licensed. \ No newline at end of file +BSD 2-Clause licensed diff --git a/src/licensedcode/data/rules/bsd-simplified_94.RULE b/src/licensedcode/data/rules/bsd-simplified_94.RULE index 708c512ed3..6e2c922461 100644 --- a/src/licensedcode/data/rules/bsd-simplified_94.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_94.RULE @@ -8,6 +8,6 @@ referenced_filenames: #### License -All source material within __lib__ directory are BSD 2-Clause licensed. +All source material within __lib__ directory are {{BSD 2-Clause licensed}}. See [LICENSE](LICENSE) for details. The license is also reminded at the top of each source file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_96.RULE b/src/licensedcode/data/rules/bsd-simplified_96.RULE index 05e13c532a..9bf0d425e1 100644 --- a/src/licensedcode/data/rules/bsd-simplified_96.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_96.RULE @@ -5,4 +5,4 @@ relevance: 90 minimum_coverage: 100 --- -provided within "lz4.h" (BSD license) \ No newline at end of file +provided within "lz4.h" ({{BSD license}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_97.RULE b/src/licensedcode/data/rules/bsd-simplified_97.RULE index a7a3f29a68..9dddb81a5a 100644 --- a/src/licensedcode/data/rules/bsd-simplified_97.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_97.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file +{{BSD 2-Clause License}} (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_99.RULE b/src/licensedcode/data/rules/bsd-simplified_99.RULE index b94d407a25..496b66f351 100644 --- a/src/licensedcode/data/rules/bsd-simplified_99.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_99.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -library is provided as open-source software using BSD 2-Clause license. \ No newline at end of file +library is provided as open-source software using {{BSD 2-Clause license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_botan.RULE b/src/licensedcode/data/rules/bsd-simplified_botan.RULE index 353e6999db..567bff7098 100644 --- a/src/licensedcode/data/rules/bsd-simplified_botan.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_botan.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is released under the Simplified BSD License \ No newline at end of file +is released under the {{Simplified BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_docutils.RULE b/src/licensedcode/data/rules/bsd-simplified_docutils.RULE index 0ad671b9e9..f7efdbc3a6 100644 --- a/src/licensedcode/data/rules/bsd-simplified_docutils.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_docutils.RULE @@ -5,5 +5,5 @@ relevance: 100 minimum_coverage: 100 --- -Released under the terms of the `2-Clause BSD license`_ - (`local copy `__). \ No newline at end of file +Released under the terms of the `{{2-Clause BSD license}}`_ + (`local copy <{{licenses/BSD-2-Clause}}.txt>`__). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_docutils2.RULE b/src/licensedcode/data/rules/bsd-simplified_docutils2.RULE index b4a1af0b75..66c215b6aa 100644 --- a/src/licensedcode/data/rules/bsd-simplified_docutils2.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_docutils2.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Released under the terms of the `2-Clause BSD license`_ \ No newline at end of file +Released under the terms of the `{{2-Clause BSD license}}`_ \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_docutils3.RULE b/src/licensedcode/data/rules/bsd-simplified_docutils3.RULE index c6a80b151a..f065efce32 100644 --- a/src/licensedcode/data/rules/bsd-simplified_docutils3.RULE +++ b/src/licensedcode/data/rules/bsd-simplified_docutils3.RULE @@ -5,5 +5,5 @@ is_license_reference: yes These files are part of , released under the `GNU General Public License`_ version 3 or later. The author relicensed - them for under the terms of the `2-Clause BSD license`_ - (`local copy `__). \ No newline at end of file + them for under the terms of the `{{2-Clause BSD license}}`_ + (`local copy <{{licenses/BSD-2-Clause}}.txt>`__). \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_required_phrase_1.RULE b/src/licensedcode/data/rules/bsd-simplified_required_phrase_1.RULE new file mode 100644 index 0000000000..7856ec6f48 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_required_phrase_1.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_clue: yes +relevance: 60 +is_continuous: yes +--- + +BSD-2 diff --git a/src/licensedcode/data/rules/bsd-simplified_required_phrase_10.RULE b/src/licensedcode/data/rules/bsd-simplified_required_phrase_10.RULE new file mode 100644 index 0000000000..44a8895d36 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_required_phrase_10.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_tag: yes +is_required_phrase: yes +relevance: 100 +--- + +licenses/BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_required_phrase_11.RULE b/src/licensedcode/data/rules/bsd-simplified_required_phrase_11.RULE new file mode 100644 index 0000000000..9a02508a02 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_required_phrase_11.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +2-Clause License" or "FreeBSD License \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_required_phrase_12.RULE b/src/licensedcode/data/rules/bsd-simplified_required_phrase_12.RULE new file mode 100644 index 0000000000..dafeba4922 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_required_phrase_12.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under 'BSD 2-clause license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_required_phrase_13.RULE b/src/licensedcode/data/rules/bsd-simplified_required_phrase_13.RULE new file mode 100644 index 0000000000..40d2cbc7a8 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_required_phrase_13.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under BSD-2-clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_required_phrase_3.RULE b/src/licensedcode/data/rules/bsd-simplified_required_phrase_3.RULE new file mode 100644 index 0000000000..38c6c08c25 --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_required_phrase_3.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Revised 2-clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_required_phrase_4.RULE b/src/licensedcode/data/rules/bsd-simplified_required_phrase_4.RULE new file mode 100644 index 0000000000..6e6248517d --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_required_phrase_4.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under a 2-clause BSD license \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-simplified_required_phrase_9.RULE b/src/licensedcode/data/rules/bsd-simplified_required_phrase_9.RULE new file mode 100644 index 0000000000..74922ba82a --- /dev/null +++ b/src/licensedcode/data/rules/bsd-simplified_required_phrase_9.RULE @@ -0,0 +1,8 @@ +--- +license_expression: bsd-simplified +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +two-clause BSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/bsd-source-code_21.RULE b/src/licensedcode/data/rules/bsd-source-code_21.RULE index 9a59f4ca9c..7a4f086b78 100644 --- a/src/licensedcode/data/rules/bsd-source-code_21.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_21.RULE @@ -8,9 +8,9 @@ ignorable_holders: - Deusty, LLC --- -// Software License Agreement {{(BSD License)}} +// Software License Agreement (BSD License) -Copyright (c) {{Deusty, LLC}} +Copyright (c) Deusty, LLC All rights reserved. // Redistribution and use of this software in source and binary forms, diff --git a/src/licensedcode/data/rules/bsd-source-code_24.RULE b/src/licensedcode/data/rules/bsd-source-code_24.RULE index a25f59aa87..6b235f2d5a 100644 --- a/src/licensedcode/data/rules/bsd-source-code_24.RULE +++ b/src/licensedcode/data/rules/bsd-source-code_24.RULE @@ -4,7 +4,7 @@ is_license_text: yes minimum_coverage: 95 --- -// Software License Agreement {{(BSD License)}} +// Software License Agreement (BSD License) // // Redistribution and use of this software in source and binary forms, // with or without modification, are permitted provided that the following conditions are met: diff --git a/src/licensedcode/data/rules/cc-by-3.0_10.RULE b/src/licensedcode/data/rules/cc-by-3.0_10.RULE index f3f5e66202..800367144c 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_10.RULE @@ -5,4 +5,4 @@ ignorable_urls: - http://www.creativecommons.org/licenses/by/3.0/us --- -This database incorporates geographical data, which is made available under the Creative Commons Attribution 3.0 License. To view a copy of this license, visit http://www.creativecommons.org/licenses/by/3.0/us/. \ No newline at end of file +This database incorporates geographical data, which is made available under the {{Creative Commons Attribution 3.0 License}}. To view a copy of this license, visit http://www.creativecommons.org/licenses/by/3.0/us/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_102.RULE b/src/licensedcode/data/rules/cc-by-3.0_102.RULE index 5ec2a034b7..8b79fdc516 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_102.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_102.RULE @@ -1,7 +1,6 @@ --- license_expression: cc-by-3.0 is_license_text: yes -relevance: 100 --- Creative Commons Attribution 3.0 Unported diff --git a/src/licensedcode/data/rules/cc-by-3.0_106.RULE b/src/licensedcode/data/rules/cc-by-3.0_106.RULE index a635b51560..c0240da7e2 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_106.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_106.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://spdx.org/licenses/CC-BY-3.0 --- -under the terms of [the Creative Commons Attribution License 3.0 Unported (SPDX: "CC-BY-3.0")](http://spdx.org/licenses/CC-BY-3.0). \ No newline at end of file +under the terms of [the {{Creative Commons Attribution License 3.0 Unported}} (SPDX: "{{CC-BY-3.0}}")](http://spdx.org/licenses/CC-BY-3.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_107.RULE b/src/licensedcode/data/rules/cc-by-3.0_107.RULE index e3b34700bb..2534dbbe45 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_107.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_107.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the Creative Commons Attribution License 3.0 Unported. \ No newline at end of file +Licensed under the {{Creative Commons Attribution License 3.0 Unported}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_109.RULE b/src/licensedcode/data/rules/cc-by-3.0_109.RULE index 67df860a13..14da21f6d7 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_109.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_109.RULE @@ -3,7 +3,7 @@ license_expression: cc-by-3.0 is_license_notice: yes --- -License: CC-BY-3.0 +{{License: CC-BY-3.0}} Creative Commons Legal Code . Attribution 3.0 Unported diff --git a/src/licensedcode/data/rules/cc-by-3.0_11.RULE b/src/licensedcode/data/rules/cc-by-3.0_11.RULE index 9a620ee5ad..ac3a528c6c 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_11.RULE @@ -5,4 +5,4 @@ ignorable_urls: - http://www.creativecommons.org/licenses/by/3.0/us --- -This is made available under the Creative Commons Attribution 3.0 License. To view a copy of this license, visit http://www.creativecommons.org/licenses/by/3.0/us/. \ No newline at end of file +This is made available under the {{Creative Commons Attribution 3.0 License}}. To view a copy of this license, visit http://www.creativecommons.org/licenses/by/3.0/us/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_111.RULE b/src/licensedcode/data/rules/cc-by-3.0_111.RULE index a6a6c4c56c..73e7e7d53b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_111.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_111.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- are covered by the - Creative Commons Attribution 3.0 + {{Creative Commons Attribution 3.0}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_112.RULE b/src/licensedcode/data/rules/cc-by-3.0_112.RULE index 77b668e1f0..5571d26d67 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_112.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_112.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -CC-BY-3.0 Creative Commons Attribution 3.0 Unported \ No newline at end of file +{{CC-BY-3.0}} {{Creative Commons Attribution 3.0 Unported}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_113.RULE b/src/licensedcode/data/rules/cc-by-3.0_113.RULE index 775916ea6d..10c5f842f1 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_113.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_113.RULE @@ -1,10 +1,11 @@ --- license_expression: cc-by-3.0 is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Creative Commons Attribution 3.0 Unported \ No newline at end of file +Creative Commons +Attribution 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_114.RULE b/src/licensedcode/data/rules/cc-by-3.0_114.RULE index ee1ba97983..4e8ebe6fc0 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_114.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_114.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: Creative Commons Attribution 3.0 Unported \ No newline at end of file +name: {{Creative Commons Attribution 3.0 Unported}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_115.RULE b/src/licensedcode/data/rules/cc-by-3.0_115.RULE index 946006a86c..796f1f863d 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_115.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_115.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Creative Commons Attribution 3.0 Unported CC-BY-3.0 \ No newline at end of file +{{Creative Commons Attribution 3.0 Unported}} {{CC-BY-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_116.RULE b/src/licensedcode/data/rules/cc-by-3.0_116.RULE index 190597f85b..79f3bb6c97 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_116.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_116.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: Creative Commons Attribution 3.0 Unported \ No newline at end of file +license: {{Creative Commons Attribution 3.0 Unported}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_117.RULE b/src/licensedcode/data/rules/cc-by-3.0_117.RULE index fac6139bda..64ead7d612 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_117.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_117.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: CC-BY-3.0 \ No newline at end of file +licenseId: {{CC-BY-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_119.RULE b/src/licensedcode/data/rules/cc-by-3.0_119.RULE index 3701ac43e1..ec2b55e737 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_119.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_119.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-3.0_12.RULE b/src/licensedcode/data/rules/cc-by-3.0_12.RULE index 900f85d44d..b37db6389d 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_12.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://creativecommons.org/licenses/by/3.0/ --- -This work is licensed under the Creative Commons Attribution 3.0 Unported License. +This work is licensed under the {{Creative Commons Attribution 3.0 Unported License}}. To view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/ or send a letter to Creative Commons, diff --git a/src/licensedcode/data/rules/cc-by-3.0_122.RULE b/src/licensedcode/data/rules/cc-by-3.0_122.RULE index c7838a4337..c8dd0aba34 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_122.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_122.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This theme is licensed under the terms of the Creative Commons Attribution 3.0 Unported \ No newline at end of file +This theme is licensed under the terms of the {{Creative Commons Attribution 3.0 Unported}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_123.RULE b/src/licensedcode/data/rules/cc-by-3.0_123.RULE index de7fa326da..4fd7217087 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_123.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_123.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This theme is licensed under the terms of the Creative Commons Attribution 3.0 Unported \ No newline at end of file +This theme is licensed under the terms of the {{Creative Commons Attribution 3.0 Unported}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_124.RULE b/src/licensedcode/data/rules/cc-by-3.0_124.RULE index 71815a0cb2..d0716c4ef6 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_124.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_124.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the Creative Commons Attribution 3.0 Unported \ No newline at end of file +licensed under the terms of the {{Creative Commons Attribution 3.0 Unported}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_125.RULE b/src/licensedcode/data/rules/cc-by-3.0_125.RULE index 0b920ffa11..fdc96a5538 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_125.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_125.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the Creative Commons Attribution 3.0 \ No newline at end of file +licensed under the terms of the {{Creative Commons Attribution 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_13.RULE b/src/licensedcode/data/rules/cc-by-3.0_13.RULE index 745b864867..960dc05590 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_13.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by/3.0 --- -documentation licensed under CC BY 3.0 - +documentation {{licensed under CC BY 3.0}} - * http://creativecommons.org/licenses/by/3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_134.RULE b/src/licensedcode/data/rules/cc-by-3.0_134.RULE index 922a595e57..4f65fc51ea 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_134.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_134.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-3.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-3.0_16.RULE b/src/licensedcode/data/rules/cc-by-3.0_16.RULE index 856459473f..d575c48095 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_16.RULE @@ -7,4 +7,4 @@ ignorable_urls: Except where otherwise noted, third-party content on this site is licensed under a \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_21.RULE b/src/licensedcode/data/rules/cc-by-3.0_21.RULE index 9492072f2f..9239696803 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_21.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://creativecommons.org/licenses/by/3.0/ --- -These icons are licensed under a Creative Commons -Attribution 3.0 license. +These icons are licensed under a {{Creative Commons +Attribution 3.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_25.RULE b/src/licensedcode/data/rules/cc-by-3.0_25.RULE index 189e74602b..08702917d5 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_25.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/licenses/by/3.0/ --- -documentation under http://creativecommons.org/licenses/by/3.0/">CC BY 3.0 \ No newline at end of file +documentation under http://creativecommons.org/licenses/by/3.0/">{{CC BY 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_27.RULE b/src/licensedcode/data/rules/cc-by-3.0_27.RULE index f4907bc284..f88e798c0b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_27.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by/3.0/ --- -Creative Commons Attribution 3.0 Unported (CC-BY 3.0) +{{Creative Commons Attribution 3.0 Unported}} ({{CC-BY 3.0}}) link: http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_29.RULE b/src/licensedcode/data/rules/cc-by-3.0_29.RULE index 84dccc9bcd..555e430cec 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_29.RULE @@ -14,4 +14,4 @@ ignorable_urls: Copyright the [project contributors](CONTRIBUTORS.md). -Released under a [Creative Commons Attribution 3.0 Unported License](http://creativecommons.org/licenses/by/3.0/). \ No newline at end of file +Released under a [{{Creative Commons Attribution 3.0 Unported License}}](http://creativecommons.org/licenses/by/3.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_30.RULE b/src/licensedcode/data/rules/cc-by-3.0_30.RULE index b1dc8ed534..9aba546762 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_30.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/licenses/by/3.0 --- -Released under a [Creative Commons Attribution 3.0 Unported License](http://creativecommons.org/licenses/by/3.0/). \ No newline at end of file +Released under a [{{Creative Commons Attribution 3.0 Unported License}}](http://creativecommons.org/licenses/by/3.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_31.RULE b/src/licensedcode/data/rules/cc-by-3.0_31.RULE index edab8bc9c2..1626524463 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_31.RULE @@ -14,4 +14,4 @@ ignorable_urls: Copyright the [project contributors](CONTRIBUTORS.md). -Released under a [Creative Commons Attribution 3.0 Unported License](https://creativecommons.org/licenses/by/3.0/). \ No newline at end of file +Released under a [{{Creative Commons Attribution 3.0 Unported License}}](https://creativecommons.org/licenses/by/3.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_32.RULE b/src/licensedcode/data/rules/cc-by-3.0_32.RULE index d9c7a1fde5..4bb7158f6f 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_32.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by/3.0 --- -Released under a [Creative Commons Attribution 3.0 Unported License](https://creativecommons.org/licenses/by/3.0/). \ No newline at end of file +Released under a [{{Creative Commons Attribution 3.0 Unported License}}](https://creativecommons.org/licenses/by/3.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_33.RULE b/src/licensedcode/data/rules/cc-by-3.0_33.RULE index ab540e10dd..33e496f903 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_33.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://fontawesome.io/license --- -The Font Awesome documentation is licensed under the CC BY 3.0 License: +The Font Awesome documentation is {{licensed under the CC BY 3.0 License}}: http://creativecommons.org/licenses/by/3.0/ Attribution is no longer required as of Font Awesome 3.0, but much appreciated: diff --git a/src/licensedcode/data/rules/cc-by-3.0_34.RULE b/src/licensedcode/data/rules/cc-by-3.0_34.RULE index d178afcf19..d677bea23e 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_34.RULE @@ -1,7 +1,6 @@ --- license_expression: cc-by-3.0 is_license_text: yes -relevance: 100 ignorable_urls: - http://creativecommons.org/ --- diff --git a/src/licensedcode/data/rules/cc-by-3.0_35.RULE b/src/licensedcode/data/rules/cc-by-3.0_35.RULE index 2775e3347d..38fe7f7318 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_35.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/licenses/by/3.0/ --- -This work is licensed under the Creative Commons Attribution 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/ or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. \ No newline at end of file +This work is licensed under the {{Creative Commons Attribution 3.0 Unported License}}. To view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/ or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_36.RULE b/src/licensedcode/data/rules/cc-by-3.0_36.RULE index 3f25f193c4..f7b4105e9c 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_36.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under a Creative Commons Attribution 3.0 Unported License \ No newline at end of file +Released under a {{Creative Commons Attribution 3.0 Unported License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_37.RULE b/src/licensedcode/data/rules/cc-by-3.0_37.RULE index ee319a68b9..c4636c4985 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_37.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under a Creative Commons Attribution 3.0 License \ No newline at end of file +Released under a {{Creative Commons Attribution 3.0 License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_38.RULE b/src/licensedcode/data/rules/cc-by-3.0_38.RULE index 70853ef48f..08c87d38f6 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_38.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- documentation (everything found under the docs/ subdirectory in -the source tree) is licensed under the Creative Commons CC BY 3.0 -license, which can be found at: +the source tree) is licensed under the {{Creative Commons CC BY 3.0 +license}}, which can be found at: https://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_39.RULE b/src/licensedcode/data/rules/cc-by-3.0_39.RULE index 6c8a8073e9..6e6bc8b4b4 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_39.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_39.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://creativecommons.org/licenses/by/3.0/ --- -licensed under the Creative Commons CC BY 3.0 -license, which can be found at: +licensed under the {{Creative Commons CC BY 3.0 +license}}, which can be found at: https://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_40.RULE b/src/licensedcode/data/rules/cc-by-3.0_40.RULE index 00d4009b22..8270f61185 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_40.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_40.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Creative Commons CC BY 3.0 \ No newline at end of file +licensed under the Creative Commons {{CC BY 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_41.RULE b/src/licensedcode/data/rules/cc-by-3.0_41.RULE index a9522755f3..53d7dc6389 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_41.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_41.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed under the Creative Commons CC BY 3.0 -license \ No newline at end of file +licensed under the {{Creative Commons CC BY 3.0 +license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_42.RULE b/src/licensedcode/data/rules/cc-by-3.0_42.RULE index a6643697f2..1b8b3f7997 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_42.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_42.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://creativecommons.org/licenses/by/3.0/ --- -licensed under the Creative Commons CC BY 3.0 -license https://creativecommons.org/licenses/by/3.0/ \ No newline at end of file +licensed under the {{Creative Commons CC BY 3.0 +license}} https://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_43.RULE b/src/licensedcode/data/rules/cc-by-3.0_43.RULE index a4409ed5f8..6c2f193f49 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_43.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_43.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://creativecommons.org/licenses/by/3.0/ --- -the Creative Commons CC BY 3.0 -license https://creativecommons.org/licenses/by/3.0/ \ No newline at end of file +the {{Creative Commons CC BY 3.0 +license}} https://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_45.RULE b/src/licensedcode/data/rules/cc-by-3.0_45.RULE index cdcbfa4358..a19e165dda 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_45.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_45.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- documentation (everything found under the docs/ subdirectory in -the source tree) is licensed under the Creative Commons CC BY 3.0 -license, which can be found at: +the source tree) is licensed under the {{Creative Commons CC BY 3.0 +license}}, which can be found at: http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_46.RULE b/src/licensedcode/data/rules/cc-by-3.0_46.RULE index b6bc030b3a..a18bef81a5 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_46.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_46.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://creativecommons.org/licenses/by/3.0/ --- -licensed under the Creative Commons CC BY 3.0 -license, which can be found at: +licensed under the {{Creative Commons CC BY 3.0 +license}}, which can be found at: http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_47.RULE b/src/licensedcode/data/rules/cc-by-3.0_47.RULE index 64c39f6d50..f0be4278d2 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_47.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_47.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by/3.0/ --- -licensed under the Creative Commons CC BY 3.0 -license http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file +licensed under the {{Creative Commons CC BY 3.0 +license}} http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_48.RULE b/src/licensedcode/data/rules/cc-by-3.0_48.RULE index 1e3d4d8bc8..b479c223ab 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_48.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_48.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by/3.0/ --- -the Creative Commons CC BY 3.0 -license http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file +the {{Creative Commons CC BY 3.0 +license}} http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_50.RULE b/src/licensedcode/data/rules/cc-by-3.0_50.RULE index dc299a508f..e6d8225028 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_50.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_50.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/licenses/by/3.0/us/ --- -licensed under a Creative Commons Attribution 3.0 United States License< \ No newline at end of file +licensed under a {{Creative Commons Attribution 3.0 United States License}}< \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_52.RULE b/src/licensedcode/data/rules/cc-by-3.0_52.RULE index ae143545bd..51f6bb68b6 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_52.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_52.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-3.0_53.RULE b/src/licensedcode/data/rules/cc-by-3.0_53.RULE index d4163ce816..81d7c73f8a 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_53.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_53.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://creativecommons.org/licenses/by/3.0/us/ diff --git a/src/licensedcode/data/rules/cc-by-3.0_55.RULE b/src/licensedcode/data/rules/cc-by-3.0_55.RULE index 349a22ce6d..a62b98616d 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_55.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_55.RULE @@ -1,7 +1,8 @@ --- license_expression: cc-by-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Creative Commons-Attribution 3.0 license \ No newline at end of file +Creative Commons Attribution 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_56.RULE b/src/licensedcode/data/rules/cc-by-3.0_56.RULE index ed4c79b2cb..2e0447ea02 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_56.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_56.RULE @@ -1,7 +1,8 @@ --- license_expression: cc-by-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Creative Commons-Attribution 3.0 \ No newline at end of file +Creative Commons Attribution 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_57.RULE b/src/licensedcode/data/rules/cc-by-3.0_57.RULE index dbbf4378e4..15c379dba9 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_57.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_57.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the Creative Commons-Attribution 3.0 license \ No newline at end of file +the {{Creative Commons-Attribution 3.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_58.RULE b/src/licensedcode/data/rules/cc-by-3.0_58.RULE index 0c97257856..d93ba16b49 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_58.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_58.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the Creative Commons-Attribution 3.0 \ No newline at end of file +the {{Creative Commons-Attribution 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_60.RULE b/src/licensedcode/data/rules/cc-by-3.0_60.RULE index 105358aebc..a8939be776 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_60.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_60.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The graphics are licensed under the CC-BY 3.0 \ No newline at end of file +The graphics are {{licensed under the CC-BY 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_61.RULE b/src/licensedcode/data/rules/cc-by-3.0_61.RULE index a9282290c9..f007809558 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_61.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_61.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-3.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-3.0_66.RULE b/src/licensedcode/data/rules/cc-by-3.0_66.RULE index 0ea1317689..6d7e38a90b 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_66.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_66.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://creativecommons.org/licenses/by/3.0/ --- -documentation licensed under CC BY 3.0 - +documentation {{licensed under CC BY 3.0}} - https://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_67.RULE b/src/licensedcode/data/rules/cc-by-3.0_67.RULE index 44835cfaf5..9829475a36 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_67.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_67.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://creativecommons.org/licenses/by/3.0/ --- -licensed under CC BY 3.0 - +{{licensed under CC BY 3.0}} - https://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_68.RULE b/src/licensedcode/data/rules/cc-by-3.0_68.RULE index 6d4821e2ed..d750ec01fe 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_68.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_68.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by/3.0/ --- -licensed under CC BY 3.0 - +{{licensed under CC BY 3.0}} - http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_69.RULE b/src/licensedcode/data/rules/cc-by-3.0_69.RULE index bc1060bf6f..76b8e6ef73 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_69.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_69.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://fontawesome.io/ --- -* - Font Awesome documentation licensed under CC BY 3.0 - +* - Font Awesome documentation {{licensed under CC BY 3.0}} - * http://creativecommons.org/licenses/by/3.0/ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: diff --git a/src/licensedcode/data/rules/cc-by-3.0_70.RULE b/src/licensedcode/data/rules/cc-by-3.0_70.RULE index 85f8215949..45e3babea3 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_70.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_70.RULE @@ -7,7 +7,7 @@ ignorable_urls: - https://fontawesome.io/ --- -* - Font Awesome documentation licensed under CC BY 3.0 - +* - Font Awesome documentation {{licensed under CC BY 3.0}} - * https://creativecommons.org/licenses/by/3.0/ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: diff --git a/src/licensedcode/data/rules/cc-by-3.0_71.RULE b/src/licensedcode/data/rules/cc-by-3.0_71.RULE index 329734171f..407f26d0dd 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_71.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_71.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This work is licensed under a Creative Commons Attribution 3.0 Unported License \ No newline at end of file +This work is licensed under a {{Creative Commons Attribution 3.0 Unported License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_72.RULE b/src/licensedcode/data/rules/cc-by-3.0_72.RULE index f733ad145e..b1aed3a678 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_72.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_72.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by/3.0/ --- -Licensed under a Creative Commons Attribution 3.0 license. +Licensed under a {{Creative Commons Attribution 3.0 license}}. http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_73.RULE b/src/licensedcode/data/rules/cc-by-3.0_73.RULE index bb933e041f..8a7ae37cea 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_73.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_73.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://creativecommons.org/licenses/by/3.0/ --- -Licensed under a Creative Commons Attribution 3.0 license. +Licensed under a {{Creative Commons Attribution 3.0 license}}. https://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_74.RULE b/src/licensedcode/data/rules/cc-by-3.0_74.RULE index c1cf98c9c9..3a55c1ef43 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_74.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_74.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under a Creative Commons Attribution 3.0 license. \ No newline at end of file +Licensed under a {{Creative Commons Attribution 3.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_75.RULE b/src/licensedcode/data/rules/cc-by-3.0_75.RULE index 4204633c0c..23679af891 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_75.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_75.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-3.0_76.RULE b/src/licensedcode/data/rules/cc-by-3.0_76.RULE index 5acd1ac683..3cd2ae3808 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_76.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_76.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -This Font Software is under the CC BY 3.0 TH license. \ No newline at end of file +This Font Software is {{under the CC BY 3.0}} TH license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_77.RULE b/src/licensedcode/data/rules/cc-by-3.0_77.RULE index 3df68ea830..a177372829 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_77.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_77.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- Some documentation is taken from the GitHub Developer site -, which is available under the following Creative -Commons Attribution 3.0 License. This applies only to the go-github source +, which is available under the following {{Creative +Commons Attribution 3.0 License}}. This applies only to the go-github source code and would not apply to any compiled binaries. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_78.RULE b/src/licensedcode/data/rules/cc-by-3.0_78.RULE index ae4c930a34..3b1de92a5f 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_78.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_78.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -available under the following Creative -Commons Attribution 3.0 License \ No newline at end of file +available under the following {{Creative +Commons Attribution 3.0 License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_79.RULE b/src/licensedcode/data/rules/cc-by-3.0_79.RULE index 6d1f6865ab..43689bbd1d 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_79.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_79.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by/3.0/ --- -Shared under the Creative Commons Attribution 3.0 Unported License +Shared under the {{Creative Commons Attribution 3.0 Unported License}} http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_8.RULE b/src/licensedcode/data/rules/cc-by-3.0_8.RULE index aca55a8ac2..46b86e74d4 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_8.RULE @@ -5,5 +5,5 @@ ignorable_urls: - https://creativecommons.org/licenses/by/3.0/legalcode --- -Distributed under the terms of the Creative Commons Attribution License -version 3.0 (CC-BY 3.0) . \ No newline at end of file +Distributed under the terms of the {{Creative Commons Attribution License +version 3.0}} ({{CC-BY 3.0}}) . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_80.RULE b/src/licensedcode/data/rules/cc-by-3.0_80.RULE index e23e43c0df..e2a707e8b3 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_80.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_80.RULE @@ -5,4 +5,4 @@ relevance: 100 --- You are granted a license to use, reproduce and create derivative works of this -document under Creative Commons Attribution 3.0 Unported License. \ No newline at end of file +document under {{Creative Commons Attribution 3.0 Unported License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_9.RULE b/src/licensedcode/data/rules/cc-by-3.0_9.RULE index bc3e7bae14..700f98e5e6 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_9.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_9.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- licensed under - http://creativecommons.org/licenses/by/3.0/" CC BY 3.0 \ No newline at end of file + http://creativecommons.org/licenses/by/3.0/" {{CC BY 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_96.RULE b/src/licensedcode/data/rules/cc-by-3.0_96.RULE index 15dce4ec2e..ecda6243cf 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_96.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_96.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Creative Commons Attribution 3.0 license \ No newline at end of file +licensed under the {{Creative Commons Attribution 3.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_97.RULE b/src/licensedcode/data/rules/cc-by-3.0_97.RULE index f32d75ed63..ed33e51ddb 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_97.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_97.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed under the Creative Commons Attribution 3.0 license -(CC-BY-3.0) \ No newline at end of file +licensed under the {{Creative Commons Attribution 3.0 license}} +({{CC-BY-3.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_98.RULE b/src/licensedcode/data/rules/cc-by-3.0_98.RULE index 0e23aa252e..df805077ad 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_98.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_98.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://creativecommons.org/licenses/by/3.0/ --- -is licensed under the Creative Commons Attribution 3.0 license -(CC-BY-3.0). See https://creativecommons.org/licenses/by/3.0/ +is licensed under the {{Creative Commons Attribution 3.0 license}} +({{CC-BY-3.0}}). See https://creativecommons.org/licenses/by/3.0/ for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_99.RULE b/src/licensedcode/data/rules/cc-by-3.0_99.RULE index 27e8a6e4f4..2b19dde8bd 100644 --- a/src/licensedcode/data/rules/cc-by-3.0_99.RULE +++ b/src/licensedcode/data/rules/cc-by-3.0_99.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://creativecommons.org/licenses/by/3.0/ --- -licensed under the Creative Commons Attribution 3.0 license -(CC-BY-3.0). See https://creativecommons.org/licenses/by/3.0/ +licensed under the {{Creative Commons Attribution 3.0 license}} +({{CC-BY-3.0}}). See https://creativecommons.org/licenses/by/3.0/ for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_required_phrase_1.RULE b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_1.RULE new file mode 100644 index 0000000000..ca92a7cca5 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_1.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under the CC BY 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_required_phrase_10.RULE b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_10.RULE new file mode 100644 index 0000000000..adfff9ee31 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_10.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +under CC BY 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_required_phrase_2.RULE b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_2.RULE new file mode 100644 index 0000000000..602e21facb --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_2.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +under the CC BY 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_required_phrase_5.RULE b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_5.RULE new file mode 100644 index 0000000000..2a85b9d474 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_5.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Creative Commons CC BY 3.0 +license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_required_phrase_6.RULE b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_6.RULE new file mode 100644 index 0000000000..a9928fd227 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_6.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Creative Commons Attribution License 3.0 Unported \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_required_phrase_7.RULE b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_7.RULE new file mode 100644 index 0000000000..ba8a70f42c --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_7.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc-by-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Creative Commons Attribution License +version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_required_phrase_8.RULE b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_8.RULE new file mode 100644 index 0000000000..6f485febf8 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under CC BY 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-3.0_required_phrase_9.RULE b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_9.RULE new file mode 100644 index 0000000000..0d85ebfe0c --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-3.0_required_phrase_9.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc-by-3.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under CC BY 3.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0.RULE b/src/licensedcode/data/rules/cc-by-4.0.RULE index abd9a9ab2c..9461273266 100644 --- a/src/licensedcode/data/rules/cc-by-4.0.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0.RULE @@ -59,11 +59,11 @@ exhaustive, and do not form part of our licenses. ======================================================================= -Creative Commons Attribution 4.0 International Public License +{{Creative Commons Attribution 4.0 International Public License}} By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons -Attribution 4.0 International Public License ("Public License"). To the +to be bound by the terms and conditions of this {{Creative Commons +Attribution 4.0 International Public License}} ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in diff --git a/src/licensedcode/data/rules/cc-by-4.0_1.RULE b/src/licensedcode/data/rules/cc-by-4.0_1.RULE index cbfdfaefd3..5adff90a1b 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_1.RULE @@ -3,9 +3,9 @@ license_expression: cc-by-4.0 is_license_notice: yes --- -Creative Commons Attribution 4.0 International Public License +{{Creative Commons Attribution 4.0 International Public License}} -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. +By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this {{Creative Commons Attribution 4.0}} International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. Section 1 – Definitions. Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. diff --git a/src/licensedcode/data/rules/cc-by-4.0_101.RULE b/src/licensedcode/data/rules/cc-by-4.0_101.RULE index 4a71cf8d79..b96739f8bf 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_101.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_101.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -CC-BY-4.0 Creative Commons Attribution 4.0 International \ No newline at end of file +{{CC-BY-4.0}} {{Creative Commons Attribution 4.0 International}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_102.RULE b/src/licensedcode/data/rules/cc-by-4.0_102.RULE index 6967c6e221..fcfc027b00 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_102.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_102.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: Creative Commons Attribution 4.0 International \ No newline at end of file +name: {{Creative Commons Attribution 4.0 International}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_103.RULE b/src/licensedcode/data/rules/cc-by-4.0_103.RULE index f9c4e4e8c4..41ffb27c3c 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_103.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_103.RULE @@ -1,10 +1,10 @@ --- license_expression: cc-by-4.0 is_license_tag: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: CC-BY-4.0 \ No newline at end of file +license>CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_104.RULE b/src/licensedcode/data/rules/cc-by-4.0_104.RULE index 2c9871d5fe..1652e9b1c3 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_104.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_104.RULE @@ -1,10 +1,10 @@ --- license_expression: cc-by-4.0 is_license_tag: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: Creative Commons Attribution 4.0 International \ No newline at end of file +License: Creative Commons Attribution 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_105.RULE b/src/licensedcode/data/rules/cc-by-4.0_105.RULE index 737b1cb1c5..a2742f8dd8 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_105.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_105.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: CC-BY-4.0 \ No newline at end of file +licenseId: {{CC-BY-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_106.RULE b/src/licensedcode/data/rules/cc-by-4.0_106.RULE index f927740797..ca269ba14e 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_106.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_106.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Documentation is under CC-BY-4.0 \ No newline at end of file +Documentation {{is under CC-BY-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_107.RULE b/src/licensedcode/data/rules/cc-by-4.0_107.RULE index 29db512f42..8db9ed1d22 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_107.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_107.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the CC-BY 4.0 license \ No newline at end of file +under the {{CC-BY 4.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_108.RULE b/src/licensedcode/data/rules/cc-by-4.0_108.RULE index 8323041f3c..0990242138 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_108.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_108.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-4.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-4.0_112.RULE b/src/licensedcode/data/rules/cc-by-4.0_112.RULE index a54842e877..0cb7be695d 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_112.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_112.RULE @@ -4,4 +4,4 @@ is_license_reference: yes notes: See in SUSE CVE data. We report it as CC-BY-4.0 --- -The license changed from {{CC-BY-NC-4.0 to CC-BY-4.0}} on May 12th 2021. \ No newline at end of file +The {{license changed from CC-BY-NC-4.0 to CC-BY-4.0}} on May 12th 2021. diff --git a/src/licensedcode/data/rules/cc-by-4.0_113.RULE b/src/licensedcode/data/rules/cc-by-4.0_113.RULE index dd04d7904e..ded9162064 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_113.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_113.RULE @@ -7,5 +7,5 @@ ignorable_urls: License -The data in this repo is available for use under a CC BY 4.0 license +The data in this repo is available for use under a {{CC BY 4.0 license}} (http://creativecommons.org/licenses/by/4.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_114.RULE b/src/licensedcode/data/rules/cc-by-4.0_114.RULE index 24743e8271..1d791ede47 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_114.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_114.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by/4.0 --- -The data in this repo is available for use under a CC BY 4.0 license +The data in this repo is available for use under a {{CC BY 4.0 license}} (http://creativecommons.org/licenses/by/4.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_12.RULE b/src/licensedcode/data/rules/cc-by-4.0_12.RULE index 1fce564d3b..e9afaa2e62 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_12.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_12.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is used under the terms of the Creative Commons Attribution 4.0 license. \ No newline at end of file +is used under the terms of the {{Creative Commons Attribution 4.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_13.RULE b/src/licensedcode/data/rules/cc-by-4.0_13.RULE index 32ecebe84e..6d286351f7 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_13.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Docs licensed CC-BY-4.0 \ No newline at end of file +Docs {{licensed CC-BY-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_14.RULE b/src/licensedcode/data/rules/cc-by-4.0_14.RULE index 15ac4ebf5b..d6ffb2f599 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_14.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_14.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by/4.0/deed.en_US --- -License: Creative Commons Attribution 4.0 International (CC By 4.0) +{{License: Creative Commons Attribution 4.0 International}} ({{CC By 4.0}}) http://creativecommons.org/licenses/by/4.0/deed.en_US \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_15.RULE b/src/licensedcode/data/rules/cc-by-4.0_15.RULE index 855935e8c8..0defb45022 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_15.RULE @@ -6,11 +6,11 @@ ignorable_urls: --- ===============LICENSE_START======================================================= -CC-BY-4.0 +{{CC-BY-4.0}} =================================================================================== This documentation file is distributed -under the Creative Commons Attribution 4.0 International License (the "License"); +under the {{Creative Commons Attribution 4.0 International License}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/cc-by-4.0_17.RULE b/src/licensedcode/data/rules/cc-by-4.0_17.RULE index bd8715deff..be87f950db 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_17.RULE @@ -6,11 +6,11 @@ ignorable_urls: --- ===============LICENSE_START======================================================= - CC-BY-4.0 + {{CC-BY-4.0}} =================================================================================== =================================================================================== This Acumos documentation file is distributed by -under the Creative Commons Attribution 4.0 International License (the "License"); +under the {{Creative Commons Attribution 4.0 International License}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/cc-by-4.0_18.RULE b/src/licensedcode/data/rules/cc-by-4.0_18.RULE index 5feb160a9a..875babb0be 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_18.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://creativecommons.org/licenses/by/4.0/ --- -Licensed under Creative Commons Attribution 4.0 International License +Licensed under {{Creative Commons Attribution 4.0 International License}} https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_19.RULE b/src/licensedcode/data/rules/cc-by-4.0_19.RULE index 16c4b5e493..bb112a5d23 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_19.RULE @@ -5,4 +5,4 @@ ignorable_urls: - http://creativecommons.org/licenses/by/4.0 --- -Project documentation files are made available under the Creative Commons Attribution 4.0 International License (CC-BY-4.0), available at http://creativecommons.org/licenses/by/4.0/. \ No newline at end of file +Project documentation files are made available under the {{Creative Commons Attribution 4.0 International License}} ({{CC-BY-4.0}}), available at http://creativecommons.org/licenses/by/4.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_2.RULE b/src/licensedcode/data/rules/cc-by-4.0_2.RULE index 5b980796fa..f898702747 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_2.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_2.RULE @@ -13,9 +13,9 @@ Creative Commons public licenses provide a standard set of terms and conditions Considerations for the public: By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public. -Creative Commons Attribution 4.0 International Public License +{{Creative Commons Attribution 4.0 International Public License}} -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. +By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this {{Creative Commons Attribution 4.0 International Public License}} ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. Section 1 – Definitions. diff --git a/src/licensedcode/data/rules/cc-by-4.0_22.RULE b/src/licensedcode/data/rules/cc-by-4.0_22.RULE index c0a35426bd..f0fc4268bc 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_22.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_22.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Except as otherwise noted, the content of this page is licensed under CC-BY-4.0 license. \ No newline at end of file +Except as otherwise noted, the content of this page is licensed under {{CC-BY-4.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_23.RULE b/src/licensedcode/data/rules/cc-by-4.0_23.RULE index cb2eacb8b2..bb1047d6d7 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_23.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_23.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- This work, "free-programming-books", is licensed under the -Creative Commons Attribution 4.0 International License. To view a copy of +{{Creative Commons Attribution 4.0 International License}}. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_24.RULE b/src/licensedcode/data/rules/cc-by-4.0_24.RULE index c8d4ba3057..5770712deb 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_24.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-4.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-4.0_27.RULE b/src/licensedcode/data/rules/cc-by-4.0_27.RULE index 6d11bb4c3b..64a1b7a01b 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_27.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/licenses/by/4.0/ --- -available under [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/ \ No newline at end of file +available under [{{Creative Commons Attribution 4.0 International License}}](http://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_28.RULE b/src/licensedcode/data/rules/cc-by-4.0_28.RULE index fa84a0c1b2..59e87382ed 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_28.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_28.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by/4.0/ --- -available under [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file +available under [{{Creative Commons Attribution 4.0 International License}}](https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_29.RULE b/src/licensedcode/data/rules/cc-by-4.0_29.RULE index adf4b0fe2a..a82d907087 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_29.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed as CC BY 4.0. \ No newline at end of file +licensed as {{CC BY 4.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_30.RULE b/src/licensedcode/data/rules/cc-by-4.0_30.RULE index 400025ff60..bb5d68dd1c 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_30.RULE @@ -6,4 +6,4 @@ referenced_filenames: - ccby40 --- -* text is licensed as [CC BY 4.0][ccby40]. \ No newline at end of file +* text is licensed as [{{CC BY 4.0}}][ccby40]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_31.RULE b/src/licensedcode/data/rules/cc-by-4.0_31.RULE index a675f1072c..023cc72176 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_31.RULE @@ -10,7 +10,7 @@ ignorable_urls: ## Code of Conduct -The CoC text carries a Creative Commons [CC BY 4.0][ccby40] license. +The CoC text carries a {{Creative Commons [CC BY 4.0}}][ccby40] license. It is not automatically included into bundles generated by Styrene. [ccby40]: https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_35.RULE b/src/licensedcode/data/rules/cc-by-4.0_35.RULE index 562d7fbdc3..12d2e282bb 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_35.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/licenses/by/4.0 --- -document is published under the Creative Commons Attribution 4.0 license - see the full license agreement at http://creativecommons.org/licenses/by/4.0/. By obtaining, using and/or copying this document, you (the licensee) agree that you have read, understood, and will comply with the terms and conditions of the license. \ No newline at end of file +document is published under the {{Creative Commons Attribution 4.0 license}} - see the full license agreement at http://creativecommons.org/licenses/by/4.0/. By obtaining, using and/or copying this document, you (the licensee) agree that you have read, understood, and will comply with the terms and conditions of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_37.RULE b/src/licensedcode/data/rules/cc-by-4.0_37.RULE index c10cee8b11..73fdf2c178 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_37.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- This work is licensed under the -Creative Commons Attribution 4.0 International License. To view a copy of +{{Creative Commons Attribution 4.0 International License}}. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_38.RULE b/src/licensedcode/data/rules/cc-by-4.0_38.RULE index 8a1c046d2b..d188950937 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_38.RULE @@ -7,4 +7,4 @@ ignorable_urls: - https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg --- -CC BY 4.0](https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file +{{CC BY 4.0}}](https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_39.RULE b/src/licensedcode/data/rules/cc-by-4.0_39.RULE index 1834afdc37..cdbdc243aa 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_39.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_39.RULE @@ -8,5 +8,5 @@ ignorable_urls: License -This work is licensed under the Creative Commons Attribution 4.0 International License. +This work is licensed under the {{Creative Commons Attribution 4.0 International License}}. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_4.RULE b/src/licensedcode/data/rules/cc-by-4.0_4.RULE index f0000de68d..ca0ebf3591 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_4.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_4.RULE @@ -1,9 +1,9 @@ --- license_expression: cc-by-4.0 is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 --- -Creative Commons Attribution 4.0 International (CC BY 4.0) \ No newline at end of file +Creative Commons Attribution 4.0 International (CC BY 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_40.RULE b/src/licensedcode/data/rules/cc-by-4.0_40.RULE index f9c08684fa..abbe33aba5 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_40.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_40.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by/4.0 --- -CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file +{{CC BY 4.0 License}} (https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_41.RULE b/src/licensedcode/data/rules/cc-by-4.0_41.RULE index 2e8ca23561..2cd748c7d9 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_41.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_41.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the CC BY 4.0 license \ No newline at end of file +the {{CC BY 4.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_45.RULE b/src/licensedcode/data/rules/cc-by-4.0_45.RULE index 778df368b1..4ccc6add59 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_45.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_45.RULE @@ -11,4 +11,4 @@ ignorable_urls: [![Creative Commons License](http://i.creativecommons.org/l/by/4.0/88x31.png)](https://creativecommons.org/licenses/by/4.0/) -This work is licensed under a [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/). \ No newline at end of file +This work is licensed under a [{{Creative Commons Attribution 4.0 International License}}](http://creativecommons.org/licenses/by/4.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_46.RULE b/src/licensedcode/data/rules/cc-by-4.0_46.RULE index 14b4340aed..307aa5dfa5 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_46.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_46.RULE @@ -9,4 +9,4 @@ ignorable_urls: [![Creative Commons License](http://i.creativecommons.org/l/by/4.0/88x31.png)](https://creativecommons.org/licenses/by/4.0/) -This work is licensed under a [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/). \ No newline at end of file +This work is licensed under a [{{Creative Commons Attribution 4.0 International License}}](http://creativecommons.org/licenses/by/4.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_47.RULE b/src/licensedcode/data/rules/cc-by-4.0_47.RULE index f60aebfe28..728f806422 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_47.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_47.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/licenses/by/4.0 --- -This work is licensed under a [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/). \ No newline at end of file +This work is licensed under a [{{Creative Commons Attribution 4.0 International License}}](http://creativecommons.org/licenses/by/4.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_5.RULE b/src/licensedcode/data/rules/cc-by-4.0_5.RULE index a3d94b3186..173ff4d1b3 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_5.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_5.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-4.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-4.0_50.RULE b/src/licensedcode/data/rules/cc-by-4.0_50.RULE index b5f4b9f132..033320d769 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_50.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_50.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -CC-BY-4.0 \ No newline at end of file +CC-BY-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_51.RULE b/src/licensedcode/data/rules/cc-by-4.0_51.RULE index 8bbf360b8f..f3a18ea948 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_51.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_51.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The graphics are licensed under the CC-BY 4.0 \ No newline at end of file +The graphics are {{licensed under the CC-BY 4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_52.RULE b/src/licensedcode/data/rules/cc-by-4.0_52.RULE index 188d88b4e7..9d871f7576 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_52.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_52.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-4.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-4.0_53.RULE b/src/licensedcode/data/rules/cc-by-4.0_53.RULE index 3806baa984..8e935484c5 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_53.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_53.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-4.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-4.0_54.RULE b/src/licensedcode/data/rules/cc-by-4.0_54.RULE index aa8367a242..34d35cb0fa 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_54.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_54.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by/4.0/ --- -licensed under CC-BY 4.0: https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file +{{licensed under CC-BY 4.0}}: https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_55.RULE b/src/licensedcode/data/rules/cc-by-4.0_55.RULE index 728f8c8c26..dfbf258c24 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_55.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_55.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/licenses/by/4.0/ --- -licensed under CC-BY 4.0: http://creativecommons.org/licenses/by/4.0/ \ No newline at end of file +{{licensed under CC-BY 4.0}}: http://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_56.RULE b/src/licensedcode/data/rules/cc-by-4.0_56.RULE index c2196f7058..41e0dffb88 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_56.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_56.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This pack can be modified and distributed under the terms of CC BY 4.0 licence. \ No newline at end of file +This pack can be modified and distributed under the terms of {{CC BY 4.0 licence}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_57.RULE b/src/licensedcode/data/rules/cc-by-4.0_57.RULE index 79aa16ff0e..6ca6cb1bbd 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_57.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_57.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This can be modified and distributed under the terms of CC BY 4.0 licence. \ No newline at end of file +This can be modified and distributed under the terms of {{CC BY 4.0 licence}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_58.RULE b/src/licensedcode/data/rules/cc-by-4.0_58.RULE index 249873d1c6..63d48ffe17 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_58.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_58.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Unless otherwise specified, all other files are distributed under the terms of the CC-BY-4.0 license. \ No newline at end of file +Unless otherwise specified, all other files are distributed under the terms of the {{CC-BY-4.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_59.RULE b/src/licensedcode/data/rules/cc-by-4.0_59.RULE index 778ff6a3fd..593d6b39ab 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_59.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_59.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -all other files are distributed under the terms of the CC-BY-4.0 license. \ No newline at end of file +all other files are distributed under the terms of the {{CC-BY-4.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_6.RULE b/src/licensedcode/data/rules/cc-by-4.0_6.RULE index 8ee31b849d..cf7f96a25c 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_6.RULE @@ -7,5 +7,5 @@ ignorable_urls: License -This work is licensed under the Creative Commons Attribution 4.0 International License. +This work is licensed under the {{Creative Commons Attribution 4.0 International License}}. To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_60.RULE b/src/licensedcode/data/rules/cc-by-4.0_60.RULE index b7681cf680..8852a582fa 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_60.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_60.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the terms of the CC-BY-4.0 license. \ No newline at end of file +distributed under the terms of the {{CC-BY-4.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_61.RULE b/src/licensedcode/data/rules/cc-by-4.0_61.RULE index 14c946ff33..902bf11579 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_61.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_61.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by/4.0/ --- -Unless otherwise specified, all other files are distributed under the terms of the [CC-BY-4.0 license](https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file +Unless otherwise specified, all other files are distributed under the terms of the [{{CC-BY-4.0 license}}](https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_62.RULE b/src/licensedcode/data/rules/cc-by-4.0_62.RULE index 592513a9db..47b653fd6e 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_62.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_62.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by/4.0/ --- -distributed under the terms of the CC-BY-4.0 license https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file +distributed under the terms of the {{CC-BY-4.0 license}} https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_65.RULE b/src/licensedcode/data/rules/cc-by-4.0_65.RULE index 3c7da6ea38..de3a432b29 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_65.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_65.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- The data are -made available under the [Creative Commons Attribution 4.0 -license](https://creativecommons.org/licenses/by/4.0/). \ No newline at end of file +made available under the [{{Creative Commons Attribution 4.0 +license}}](https://creativecommons.org/licenses/by/4.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_66.RULE b/src/licensedcode/data/rules/cc-by-4.0_66.RULE index 1a4a3dda40..fb4ee9632c 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_66.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_66.RULE @@ -5,5 +5,5 @@ relevance: 100 --- The data are -made available under the [Creative Commons Attribution 4.0 -license] \ No newline at end of file +made available under the [{{Creative Commons Attribution 4.0 +license}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_67.RULE b/src/licensedcode/data/rules/cc-by-4.0_67.RULE index ffca007417..0baff4727b 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_67.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_67.RULE @@ -8,5 +8,5 @@ ignorable_urls: This work is licensed under a - href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International - License \ No newline at end of file + href="https://creativecommons.org/licenses/by/4.0/">{{Creative Commons Attribution 4.0 International + License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_68.RULE b/src/licensedcode/data/rules/cc-by-4.0_68.RULE index bf2f5e34a6..e5b56c12b8 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_68.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_68.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Creative Commons Attribution 4.0 International License. \ No newline at end of file +licensed under the {{Creative Commons Attribution 4.0 International License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_69.RULE b/src/licensedcode/data/rules/cc-by-4.0_69.RULE index 8fe883d51e..2fec90ec78 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_69.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_69.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- Where specifically noted, some datasets are licensed under a -[Creative Commons Attribution 4.0 International License (CC BY 4.0)](http://creativecommons.org/licenses/by/4.0). \ No newline at end of file +[{{Creative Commons Attribution 4.0 International License}} ({{CC BY 4.0}})](http://creativecommons.org/licenses/by/4.0). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_7.RULE b/src/licensedcode/data/rules/cc-by-4.0_7.RULE index a8ac626157..ad9b8dfd43 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_7.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by/4.0/ --- -This work is licensed under the Creative Commons Attribution 4.0 International License. +This work is licensed under the {{Creative Commons Attribution 4.0 International License}}. To view a copy of this license, visit http://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_71.RULE b/src/licensedcode/data/rules/cc-by-4.0_71.RULE index f139953703..773b43196e 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_71.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_71.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The data files (data/) are licensed under the Creative Commons Attribution 4.0 International Public License. \ No newline at end of file +The data files (data/) are licensed under the {{Creative Commons Attribution 4.0 International Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_8.RULE b/src/licensedcode/data/rules/cc-by-4.0_8.RULE index 12c5405bdf..0be430980b 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_8.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_8.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -documentation is licensed CC-BY-4.0 \ No newline at end of file +documentation is {{licensed CC-BY-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_93.RULE b/src/licensedcode/data/rules/cc-by-4.0_93.RULE index 5694a098de..c8e2083fe5 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_93.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_93.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by/4.0 --- -provided under a Creative Commons Attribution 4.0 International (CC BY 4.0) license (https://creativecommons.org/licenses/by/4.0/). \ No newline at end of file +provided under a {{Creative Commons Attribution 4.0 International (CC BY 4.0}}) license (https://creativecommons.org/licenses/by/4.0/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_94.RULE b/src/licensedcode/data/rules/cc-by-4.0_94.RULE index cdceaff339..d64cb80ef0 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_94.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_94.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -provided under a Creative Commons Attribution 4.0 International (CC BY 4.0) \ No newline at end of file +provided under a {{Creative Commons Attribution 4.0 International (CC BY 4.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_95.RULE b/src/licensedcode/data/rules/cc-by-4.0_95.RULE index 30c13eb8f6..eac97d351d 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_95.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_95.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-4.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-4.0_97.RULE b/src/licensedcode/data/rules/cc-by-4.0_97.RULE index 28c38c8d49..85eb29b06c 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_97.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_97.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- Unless stated otherwise, artwork included in this distribution is licensed -under the Creative Commons Attribution 4.0 International License. \ No newline at end of file +under the {{Creative Commons Attribution 4.0 International License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_98.RULE b/src/licensedcode/data/rules/cc-by-4.0_98.RULE index c6d558c1b0..f096aae153 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_98.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_98.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- Unless stated otherwise, artwork included in this distribution is licensed -under the Creative Commons Attribution 4.0 International License. +under the {{Creative Commons Attribution 4.0 International License}}. You can learn more about the permitted use by visiting https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_address.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_address.RULE index 5e64925342..0c373cb03a 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_address.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_address.RULE @@ -5,6 +5,6 @@ ignorable_urls: - https://creativecommons.org/licenses/by/4.0/ --- -is licensed under the Creative Commons Attribution 4.0 International License. +is licensed under the {{Creative Commons Attribution 4.0 International License}}. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url1.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_url1.RULE index 961946387d..86f278c3c9 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url1.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_url1.RULE @@ -9,6 +9,6 @@ I am providing code and resources in this repository to you under an open source license. Because this is my personal repository, the license you receive to my code and resources is from me and not my employer -Creative Commons Attribution 4.0 International License (CC BY 4.0) +{{Creative Commons Attribution 4.0 International License}} ({{CC BY 4.0}}) http://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url2.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_url2.RULE index 9e4cdabfa9..2eec844ba8 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url2.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_url2.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://creativecommons.org/licenses/by/4.0/ --- -Creative Commons Attribution 4.0 International License (CC BY 4.0) +{{Creative Commons Attribution 4.0 International License}} ({{CC BY 4.0}}) http://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url3.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_url3.RULE index 1ae7e7522f..c1bad9a242 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url3.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_url3.RULE @@ -8,5 +8,5 @@ ignorable_urls: ## License -[![License: CC BY 4.0](https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg)] +[![{{License: CC BY 4.0}}](https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg)] (https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url4.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_url4.RULE index 2eb3a17df9..ea0874aa4d 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url4.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_url4.RULE @@ -9,4 +9,4 @@ ignorable_urls: ## License -[![License: CC BY 4.0](https://img.shields.io/badge/License-CC0%201.0-brightgreen.svg?style=flat-square)](https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file +[![{{License: CC BY 4.0}}](https://img.shields.io/badge/License-CC0%201.0-brightgreen.svg?style=flat-square)](https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_and_url5.RULE b/src/licensedcode/data/rules/cc-by-4.0_and_url5.RULE index e6157778e6..0ff154cbaf 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_and_url5.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_and_url5.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by/4.0/ --- -Licensed under Attribution 4.0 International (CC BY 4.0) +Licensed under Attribution 4.0 International ({{CC BY 4.0}}) http://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_required_phrase_1.RULE b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_1.RULE new file mode 100644 index 0000000000..8dc994003d --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_1.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_required_phrase_2.RULE b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_2.RULE new file mode 100644 index 0000000000..79e0c8f73c --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_2.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +CC-BY 4.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_required_phrase_3.RULE b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_3.RULE new file mode 100644 index 0000000000..76f63511ab --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_3.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Creative Commons Attribution 4.0 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_required_phrase_4.RULE b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_4.RULE new file mode 100644 index 0000000000..3de4c990b3 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_4.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +is under CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_required_phrase_5.RULE b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_5.RULE new file mode 100644 index 0000000000..e8a5a076e7 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_5.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Creative Commons Attribution 4.0 International License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_required_phrase_6.RULE b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_6.RULE new file mode 100644 index 0000000000..b52bacece6 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_6.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +license changed from CC-BY-NC-4.0 to CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_required_phrase_7.RULE b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_7.RULE new file mode 100644 index 0000000000..af18b24bf2 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_7.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Creative Commons [CC BY 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_required_phrase_8.RULE b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_8.RULE new file mode 100644 index 0000000000..2e002196f7 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-4.0_required_phrase_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc-by-4.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +CC BY 4.0 licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_badge.RULE b/src/licensedcode/data/rules/cc-by-4.0_url_badge.RULE index 60a151cd7c..a919850bde 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_url_badge.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_url_badge.RULE @@ -5,4 +5,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by/4.0 --- -[![License: CC BY 4.0](https://licensebuttons.net/l/by/4.0/80x15.png)](https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file +[![{{License: CC BY 4.0}}](https://licensebuttons.net/l/by/4.0/80x15.png)](https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_badge_1.RULE b/src/licensedcode/data/rules/cc-by-4.0_url_badge_1.RULE index 857da77df1..755494a7be 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_url_badge_1.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_url_badge_1.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg --- -[![License: CC BY 4.0](https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file +[![{{License: CC BY 4.0}}](https://img.shields.io/badge/License-CC%20BY%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-4.0_url_glc_60.RULE b/src/licensedcode/data/rules/cc-by-4.0_url_glc_60.RULE index be5f8ab58b..02c6751cf1 100644 --- a/src/licensedcode/data/rules/cc-by-4.0_url_glc_60.RULE +++ b/src/licensedcode/data/rules/cc-by-4.0_url_glc_60.RULE @@ -1,9 +1,10 @@ --- license_expression: cc-by-4.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - - http://creativecommons.org/licenses/by/4.0 + - http://creativecommons.org/licenses/by/4.0/ --- -http://creativecommons.org/licenses/by/4.0 \ No newline at end of file +http://creativecommons.org/licenses/by/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_25.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_25.RULE index 3c21edddfa..ce188bc131 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_25.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Creative Commons Attribution-Non Commercial-No Derivatives 1.0 License \ No newline at end of file +{{Creative Commons Attribution-Non Commercial-No Derivatives 1.0}} License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_26.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_26.RULE index ad219db900..2d72fccf9b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_26.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-nc-nd-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_58.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_58.RULE index e0bfd5ecbe..d73fde7109 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_58.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_58.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -CC-BY-NC-ND-1.0 Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic \ No newline at end of file +{{CC-BY-NC-ND-1.0}} {{Creative Commons Attribution Non Commercial No Derivatives 1.0}} Generic \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_59.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_59.RULE index 06a00f2ad2..322679e069 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_59.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_59.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-nc-nd-1.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_60.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_60.RULE index 78338d44c8..c9e862e88a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_60.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_60.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic \ No newline at end of file +name: {{Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_61.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_61.RULE index 8376901233..8311b56689 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_61.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_61.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic CC-BY-NC-ND-1.0 \ No newline at end of file +{{Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic}} {{CC-BY-NC-ND-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_62.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_62.RULE index 268adc7c43..78ce5b55e3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_62.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_62.RULE @@ -1,10 +1,11 @@ --- license_expression: cc-by-nc-nd-1.0 is_license_tag: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: CC-BY-NC-ND-1.0 \ No newline at end of file +license: {{CC-BY-NC-ND-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_63.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_63.RULE index 6867f92413..5332bcc66f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_63.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_63.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic \ No newline at end of file +license: {{Creative Commons Attribution Non Commercial No Derivatives 1.0 Generic}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_64.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_64.RULE index 69ffb25ac7..d5f0036e9d 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_64.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_64.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: CC-BY-NC-ND-1.0 \ No newline at end of file +licenseId: {{CC-BY-NC-ND-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_65.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_65.RULE index f3191324ea..a688847f0e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_65.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_65.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -CC-BY-NC-ND-1.0 Creative Commons Attribution Non Commercial No Derivatives 1.0 \ No newline at end of file +{{CC-BY-NC-ND-1.0}} {{Creative Commons Attribution Non Commercial No Derivatives 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_67.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_67.RULE index d4837786de..a179dcc104 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-1.0_67.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-1.0_67.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/CC-BY-NC-ND-1.0 \ No newline at end of file +licenses.nuget.org/{{CC-BY-NC-ND-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0.RULE index 4b99922068..8500aa17f5 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0.RULE @@ -59,13 +59,13 @@ exhaustive, and do not form part of our licenses. ======================================================================= -Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 -International Public License +{{Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 +International Public License}} By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons +to be bound by the terms and conditions of this {{Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public -License ("Public License"). To the extent this Public License may be +License}} ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0.SPDX.RULE index c0461ec82c..c6008d1028 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0.SPDX.RULE @@ -17,9 +17,9 @@ Considerations for licensors: Our public licenses are intended for use by those Considerations for the public: By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public. -Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License +{{Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License}} -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. +By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this {{Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License}} ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. Section 1 – Definitions. diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_10.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_10.RULE index 5af1ddaeda..dbc5de0f85 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_10.RULE @@ -3,9 +3,9 @@ license_expression: cc-by-nc-nd-4.0 is_license_text: yes --- -Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License +{{Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License}} -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. +By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this {{Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License}} ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. Section 1 – Definitions. Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_25.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_25.RULE index 6a36443c37..058c232bd0 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_25.RULE @@ -8,4 +8,4 @@ ignorable_urls: > You can use and share the unmodified images freely for non-commercial use. -> [![CC BY-NC-ND](images/cc-by-nc-nd.png)](https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en) \ No newline at end of file +> [![{{CC BY-NC-ND}}](images/{{cc-by-nc-nd}}.png)](https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_26.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_26.RULE index 3e24f9e741..9ddc51ccb3 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_26.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en --- -> [![CC BY-NC-ND](images/cc-by-nc-nd.png)](https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en) \ No newline at end of file +> [![{{CC BY-NC-ND}}](images/{{cc-by-nc-nd}}.png)](https://creativecommons.org/licenses/by-nc-nd/4.0/deed.en) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_27.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_27.RULE index 68ee74e229..059bc4bfcb 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_27.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_27.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-nc-nd-4.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_53.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_53.RULE index 9fce211b30..1e29bdbf5b 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_53.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_53.RULE @@ -45,12 +45,12 @@ or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public : wiki.creativecommons.org/Considerations_for_licensees -Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International -Public License +{{Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International +Public License}} By exercising the Licensed Rights (defined below), You accept and agree to -be bound by the terms and conditions of this Creative Commons Attribution-NonCommercial-NoDerivatives -4.0 International Public License ("Public License"). To the extent this Public +be bound by the terms and conditions of this {{Creative Commons Attribution-NonCommercial-NoDerivatives +4.0 International Public License}} ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_54.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_54.RULE index f273c9b907..6871d02153 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_54.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_54.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-nc-nd-4.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_55.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_55.RULE index 6e7b17ad62..3d1d156eb2 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_55.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_55.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -CC-BY-NC-ND-4.0 Creative Commons Attribution Non Commercial No Derivatives 4.0 International \ No newline at end of file +{{CC-BY-NC-ND-4.0}} {{Creative Commons Attribution Non Commercial No Derivatives 4.0}} International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_56.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_56.RULE index 5000418dc2..78ef15e728 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_56.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_56.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Creative Commons Attribution Non Commercial No Derivatives 4.0 International \ No newline at end of file +{{Creative Commons Attribution Non Commercial No Derivatives 4.0}} International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_57.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_57.RULE index db1517ab39..0c4919e32e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_57.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_57.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: Creative Commons Attribution Non Commercial No Derivatives 4.0 International \ No newline at end of file +name: {{Creative Commons Attribution Non Commercial No Derivatives 4.0}} International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_58.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_58.RULE index b081fa6a0f..ea862a23de 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_58.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_58.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Creative Commons Attribution Non Commercial No Derivatives 4.0 International CC-BY-NC-ND-4.0 \ No newline at end of file +{{Creative Commons Attribution Non Commercial No Derivatives 4.0}} International {{CC-BY-NC-ND-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_59.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_59.RULE index 03220918ab..d2dd978175 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_59.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_59.RULE @@ -1,10 +1,11 @@ --- license_expression: cc-by-nc-nd-4.0 is_license_tag: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: CC-BY-NC-ND-4.0 \ No newline at end of file +license: {{CC-BY-NC-ND-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_6.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_6.RULE index cd95fd2959..6940cc120f 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_6.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under Creative Commons license Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0). \ No newline at end of file +distributed under Creative Commons license Attribution-NonCommercial-NoDerivatives 4.0 International ({{CC BY-NC-ND 4.0}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_60.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_60.RULE index a66b4aba4f..3a3aa07e58 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_60.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_60.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: Creative Commons Attribution Non Commercial No Derivatives 4.0 International \ No newline at end of file +license: {{Creative Commons Attribution Non Commercial No Derivatives 4.0}} International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_61.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_61.RULE index 5c431f1c89..047ca5b27a 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_61.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_61.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: CC-BY-NC-ND-4.0 \ No newline at end of file +licenseId: {{CC-BY-NC-ND-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_62.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_62.RULE index 3fc6770b45..11969a217e 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_62.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_62.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -CC-BY-NC-ND-4.0 Creative Commons Attribution Non Commercial No Derivatives 4.0 \ No newline at end of file +{{CC-BY-NC-ND-4.0}} {{Creative Commons Attribution Non Commercial No Derivatives 4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_63.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_63.RULE index 434ae96b3c..2f2c49aa59 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_63.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_63.RULE @@ -5,4 +5,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by-nc-nd/4.0/ --- -all content is licensed under https://creativecommons.org/licenses/by-nc-nd/4.0/ Creative Commons CC BY-NC-ND 4.0 \ No newline at end of file +all content is licensed under https://creativecommons.org/licenses/by-nc-nd/4.0/ Creative Commons {{CC BY-NC-ND 4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_65.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_65.RULE index baeb22832f..c9bdea55d4 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_65.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_65.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/CC-BY-NC-ND-4.0 \ No newline at end of file +licenses.nuget.org/{{CC-BY-NC-ND-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_7.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_7.RULE index 948ab508c4..9fc6d0b2d1 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_7.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_7.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Creative Commons license Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0). \ No newline at end of file +Creative Commons license Attribution-NonCommercial-NoDerivatives 4.0 International ({{CC BY-NC-ND 4.0}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge.RULE index 0964e1da02..c9fd571a66 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge.RULE @@ -5,4 +5,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by-nc-nd/4.0 --- -[![License: CC BY-NC-ND 4.0](https://licensebuttons.net/l/by-nc-nd/4.0/80x15.png)](https://creativecommons.org/licenses/by-nc-nd/4.0/) \ No newline at end of file +[![{{License: CC BY-NC-ND 4.0}}](https://licensebuttons.net/l/by-nc-nd/4.0/80x15.png)](https://creativecommons.org/licenses/by-nc-nd/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge_1.RULE b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge_1.RULE index 3c2d926701..c538b780ba 100644 --- a/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge_1.RULE +++ b/src/licensedcode/data/rules/cc-by-nc-nd-4.0_url_badge_1.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://img.shields.io/badge/License-CC%20BY--NC--ND%204.0-lightgrey.svg --- -[![License: CC BY-NC-ND 4.0](https://img.shields.io/badge/License-CC%20BY--NC--ND%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-nd/4.0/) \ No newline at end of file +[![{{License: CC BY-NC-ND 4.0}}](https://img.shields.io/badge/License-CC%20BY--NC--ND%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-nd/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0-stack_overflow.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0-stack_overflow.RULE index 98e00423b4..20ab2590e7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0-stack_overflow.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0-stack_overflow.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- user contributions licensed under -cc by-sa 3.0 +cc by-sa 3.0}} with attribution required \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_1.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_1.RULE index 6238502ab3..b29be4bdf2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_1.RULE @@ -1,9 +1,10 @@ --- license_expression: cc-by-sa-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://creativecommons.org/licenses/by-sa/3.0/ --- -http://creativecommons.org/licenses/by-sa/3.0/ \ No newline at end of file +"http://creativecommons.org/licenses/by-sa/3.0/" \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_100.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_100.RULE index 3d4d45b387..650391963d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_100.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_100.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/CC-BY-SA-3.0 \ No newline at end of file +licenses.nuget.org/{{CC-BY-SA-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_104.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_104.RULE new file mode 100644 index 0000000000..be7a711e0b --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_104.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/3.0/legalcode +--- + +licensed under {{Creative Commons Attribution-ShareAlike 3.0}} License as found +at https://creativecommons.org/licenses/by-sa/3.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_13.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_13.RULE index 1a1968a2b8..45f4ff402f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_13.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_13.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-sa-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_17.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_17.RULE index 7c6b4d8b39..5e2157a017 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_17.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by-sa/3.0/ --- -Creative Commons Attribution-Share Alike 3.0 Unported (CC-BY-SA 3.0) +{{Creative Commons Attribution-Share Alike 3.0 Unported}} ({{CC-BY-SA 3.0}}) link: http://creativecommons.org/licenses/by-sa/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_18.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_18.RULE index feeb878f95..8f3f6cdf24 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_18.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by-sa/3.0/ --- -license: CC-BY-SA 3.0 +{{license: CC-BY-SA 3.0}} License link: http://creativecommons.org/licenses/by-sa/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_19.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_19.RULE index f91c32f3a7..3a6437c92c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_19.RULE @@ -9,8 +9,8 @@ ignorable_urls: License information The text of and illustrations in this document are licensed -under a Creative Commons Attribution–Share Alike 3.0 Unported -license ("CC-BY-SA"). +under a {{Creative Commons Attribution–Share Alike 3.0 Unported +license}} ("CC-BY-SA"). A summary of CC-BY-SA is available at http://creativecommons.org/licenses/by-sa/3.0/ diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_3.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_3.RULE index 1348e41601..b9094535b1 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_3.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_3.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by-sa/3.0/ --- -* Content is licensed under CC-BY-SA 3.0: +* Content is {{licensed under CC-BY-SA 3.0}}: http://creativecommons.org/licenses/by-sa/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_37.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_37.RULE index e06e743bd8..5aba089538 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_37.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/3.0 --- -`CC-BY-SA-3.0` - [Creative Commons Attribution-ShareAlike 3.0 International License](https://creativecommons.org/licenses/by-sa/3.0/) \ No newline at end of file +`{{CC-BY-SA-3.0}}` - [Creative Commons Attribution-ShareAlike 3.0 International License](https://creativecommons.org/licenses/by-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_41.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_41.RULE index b60a9a35b5..b72aedc139 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_41.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_41.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://creativecommons.org/compatiblelicenses --- -License: CC-BY-SA-3.0 +{{License: CC-BY-SA-3.0}} Creative Commons Attribution-ShareAlike 3.0 Unported . CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_42.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_42.RULE index d4ebf5266d..c3446fc4d8 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_42.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_42.RULE @@ -1,7 +1,8 @@ --- license_expression: cc-by-sa-3.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -License: CC-BY-SA-3.0 \ No newline at end of file +License: {{CC-BY-SA-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_43.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_43.RULE index 528d8b8ae1..a54398908b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_43.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_43.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under a Creative Commons Attribution-Share Alike 3.0 license \ No newline at end of file +Licensed under a {{Creative Commons Attribution-Share Alike 3.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_49.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_49.RULE index e73d88ddfb..42884496b8 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_49.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_49.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- licensed -under a Creative Commons Attribution–Share Alike 3.0 Unported -license ("CC-BY-SA"). available at +under a {{Creative Commons Attribution–Share Alike 3.0 Unported +license}} ("CC-BY-SA"). available at http://creativecommons.org/licenses/by-sa/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_50.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_50.RULE index 525d83e339..a5e1794659 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_50.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_50.RULE @@ -5,5 +5,5 @@ relevance: 100 --- The text of and illustrations in this document are licensed -under a Creative Commons Attribution–Share Alike 3.0 Unported -license ("CC-BY-SA"). \ No newline at end of file +under a {{Creative Commons Attribution–Share Alike 3.0 Unported +license}} ("CC-BY-SA"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_51.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_51.RULE index 895534c94b..bc03f0188d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_51.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_51.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed under a Creative Commons Attribution–Share Alike 3.0 Unported -license ("CC-BY-SA"). \ No newline at end of file +licensed under a {{Creative Commons Attribution–Share Alike 3.0 Unported +license}} ("CC-BY-SA"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_52.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_52.RULE index bc3c2f5d3d..461a311c97 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_52.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_52.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). \ No newline at end of file +{{Creative Commons Attribution–Share Alike 3.0 Unported license}} ("CC-BY-SA"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_53.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_53.RULE index 9447b71197..200ab359b7 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_53.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_53.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-sa-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_6.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_6.RULE index c490214321..7d0e5f2467 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_6.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://creativecommons.org/licenses/by-sa/3.0/ --- -This work is licenced under the Creative Commons Attribution-Share Alike 3.0 +This work is {{licenced under the Creative Commons Attribution-Share Alike 3.0}} United States License. To view a copy of this licence, visit http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California 94105, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_60.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_60.RULE index 5035b163bd..8009ce8b0c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_60.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_60.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under a CC BY-SA 3.0 license \ No newline at end of file +distributed under a {{CC BY-SA 3.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_62.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_62.RULE index 19ba715e63..1227150ffe 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_62.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_62.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://creativecommons.org/licenses/by-sa/3.0/ --- -licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License +licensed under a {{Creative Commons Attribution-Share Alike 3.0 Unported License}} http://creativecommons.org/licenses/by-sa/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_63.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_63.RULE index bb532f3b42..38ef297a2a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_63.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_63.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/3.0/ --- -licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License +licensed under a {{Creative Commons Attribution-Share Alike 3.0 Unported License}} https://creativecommons.org/licenses/by-sa/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_64.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_64.RULE index a9c5a6e09e..3516af4ae3 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_64.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_64.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License \ No newline at end of file +licensed under a {{Creative Commons Attribution-Share Alike 3.0 Unported License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_82.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_82.RULE index f0bd589939..ebe689434b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_82.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_82.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://creativecommons.org/licenses/by-sa/3.0/ --- -This work is licensed under the Creative Commons Attribution-Share Alike 3.0 -Unported License. To view a copy of this license, visit +This work is licensed under the {{Creative Commons Attribution-Share Alike 3.0 +Unported License}}. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_83.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_83.RULE index 4f9233461c..2ffc58e217 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_83.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_83.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license. \ No newline at end of file +is licensed under the {{Creative Commons Attribution-Share Alike 3.0 Unported license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_84.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_84.RULE index 7809e7a03c..e252c8feb5 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_84.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_84.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license. \ No newline at end of file +licensed under the {{Creative Commons Attribution-Share Alike 3.0 Unported license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_85.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_85.RULE index 738150a1a2..310a6ef53f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_85.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_85.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://creativecommons.org/licenses/by-sa/3.0 --- -Artistic or creative content is licensed under the Creative Commons - Attribution-Share Alike 3.0 Unported license. +Artistic or creative content is licensed under the {{Creative Commons + Attribution-Share Alike 3.0 Unported license}}. (http://creativecommons.org/licenses/by-sa/3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_91.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_91.RULE index db66ea5967..22bfeb674d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_91.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_91.RULE @@ -3,4 +3,4 @@ license_expression: cc-by-sa-3.0 is_license_reference: yes --- -CC-BY-SA-3.0 Creative Commons Attribution Share Alike 3.0 \ No newline at end of file +{{CC-BY-SA-3.0}} {{Creative Commons Attribution Share Alike 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_92.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_92.RULE index 3c78293435..d103ff150b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_92.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_92.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -CC-BY-SA-3.0 Creative Commons Attribution Share Alike 3.0 Unported \ No newline at end of file +{{CC-BY-SA-3.0}} {{Creative Commons Attribution Share Alike 3.0 Unported}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_93.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_93.RULE index 2e0cf6b230..a1027bd4f3 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_93.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_93.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-sa-3.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_94.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_94.RULE index 526fe024e6..2e80908acc 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_94.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_94.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: Creative Commons Attribution Share Alike 3.0 Unported \ No newline at end of file +name: {{Creative Commons Attribution Share Alike 3.0 Unported}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_95.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_95.RULE index f79beb03aa..36f16da51b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_95.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_95.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Creative Commons Attribution Share Alike 3.0 Unported CC-BY-SA-3.0 \ No newline at end of file +{{Creative Commons Attribution Share Alike 3.0 Unported}} {{CC-BY-SA-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_96.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_96.RULE index 4a57e29036..55c7676155 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_96.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_96.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: Creative Commons Attribution Share Alike 3.0 Unported \ No newline at end of file +license: {{Creative Commons Attribution Share Alike 3.0 Unported}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_97.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_97.RULE index 8977e3e951..0c069fe93a 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_97.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_97.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: CC-BY-SA-3.0 \ No newline at end of file +licenseId: {{CC-BY-SA-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_98.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_98.RULE index 1a03204088..9f7e548da3 100644 --- a/src/licensedcode/data/rules/cc-by-sa-3.0_98.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_98.RULE @@ -1,9 +1,10 @@ --- license_expression: cc-by-sa-3.0 is_license_notice: yes +is_required_phrase: yes is_continuous: yes relevance: 30 minimum_coverage: 100 --- -{{This code is released under the Creative Commons license. See Creative Commons License}} \ No newline at end of file +This code is released under the Creative Commons license. See Creative Commons License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_1.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_1.RULE new file mode 100644 index 0000000000..a4a304189d --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_1.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under {{cc by sa 3 0}} diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_2.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_2.RULE new file mode 100644 index 0000000000..413cff864a --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_2.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_tag: yes +is_required_phrase: yes +--- + +{{cc by sa 3 0}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_3.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_3.RULE new file mode 100644 index 0000000000..b9b153f7fd --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_3.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_tag: yes +is_required_phrase: yes +--- + +licenced under the creative commons attribution share alike 3 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_4.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_4.RULE new file mode 100644 index 0000000000..5f8c0b7e71 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_4.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_tag: yes +is_required_phrase: yes +--- + +creative commons attribution share alike 3 0 unported license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_5.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_5.RULE new file mode 100644 index 0000000000..0f2d3ad5e0 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_5.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_tag: yes +is_required_phrase: yes +--- + +this code is released under creative commons license see creative commons license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_6.RULE b/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_6.RULE new file mode 100644 index 0000000000..25034bca10 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-3.0_required_phrase_6.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cc-by-sa-3.0 +is_license_tag: yes +is_required_phrase: yes +--- + +licenced under creative commons attribution share alike 3 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0.RULE index 081dee28bd..bfbc88fe9b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0.RULE @@ -59,12 +59,12 @@ exhaustive, and do not form part of our licenses. ======================================================================= -Creative Commons Attribution-ShareAlike 4.0 International Public -License +{{Creative Commons Attribution-ShareAlike 4.0 International Public +License}} By exercising the Licensed Rights (defined below), You accept and agree -to be bound by the terms and conditions of this Creative Commons -Attribution-ShareAlike 4.0 International Public License ("Public +to be bound by the terms and conditions of this {{Creative Commons +Attribution-ShareAlike 4.0 International Public License}} ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0.SPDX.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0.SPDX.RULE index 08603111da..760877a6c4 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0.SPDX.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0.SPDX.RULE @@ -5,7 +5,7 @@ minimum_coverage: 10 notes: license text as published by SPDX --- -Creative Commons Attribution-ShareAlike 4.0 International +{{Creative Commons Attribution-ShareAlike 4.0 International}} Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. @@ -19,9 +19,9 @@ Considerations for the public: By using one of our public licenses, a licensor g Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public. -Creative Commons Attribution-ShareAlike 4.0 International Public License +{{Creative Commons Attribution-ShareAlike 4.0 International Public License}} -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. +By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this {{Creative Commons Attribution-ShareAlike 4.0 International Public License}} ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. Section 1 – Definitions. diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_1.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_1.RULE index be500e38d1..55727e75c6 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_1.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://creativecommons.org/licenses/by-sa/4.0 --- -This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/. \ No newline at end of file +This work is licensed under the {{Creative Commons Attribution-ShareAlike 4.0 International License}}. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_10.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_10.RULE index c5c8da504a..fd48ffd36b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_10.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_10.RULE @@ -7,5 +7,5 @@ ignorable_urls: ile are licensed under the Creative Commons Attribution 4.0 International License under the terms and conditions set forth in the file [`LICENSE.docs`](LICENSE.docs). You -may obtain a duplicate copy of the same license, titled CC BY-SA 4.0, +may obtain a duplicate copy of the same license, titled {{CC BY-SA 4.0}}, at http://creativecommons.org/licenses/by-sa/4.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_102.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_102.RULE index 12bf78a65a..5a9556eea9 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_102.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_102.RULE @@ -5,4 +5,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/4.0/ --- -This page is licensed under the `Creative Commons Attribution-ShareAlike 4.0 International license `_. \ No newline at end of file +This page is licensed under the `{{Creative Commons Attribution-ShareAlike 4.0 International license}} `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_106.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_106.RULE new file mode 100644 index 0000000000..a9c5d324ec --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_106.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_notice: yes +ignorable_urls: + - https://creativecommons.org/licenses/by-sa/4.0/legalcode +--- + +licensed under {{Creative Commons Attribution-ShareAlike 4.0}} License as found +at https://creativecommons.org/licenses/by-sa/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_11.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_11.RULE index 6fe5c1cce5..c392e0782d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_11.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_11.RULE @@ -3,9 +3,9 @@ license_expression: cc-by-sa-4.0 is_license_notice: yes --- -Creative Commons Attribution-ShareAlike 4.0 International Public License +{{Creative Commons Attribution-ShareAlike 4.0 International Public License}} -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. +By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this {{Creative Commons Attribution-ShareAlike 4.0 International Public License}} ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. Section 1 – Definitions. Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_15.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_15.RULE index 29c7a441c1..19c97d9cca 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_15.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_15.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- This Meteor Code of Conduct is licensed under the -[Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) +[{{Creative Commons Attribution-ShareAlike 4.0 International}}](https://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_16.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_16.RULE index 011cfa6095..42a1175464 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_16.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_16.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- licensed under the -[Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) +[{{Creative Commons Attribution-ShareAlike 4.0 International}}](https://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_17.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_17.RULE index b42019b306..d36674060e 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_17.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_17.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/4.0 --- -[Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) +[{{Creative Commons Attribution-ShareAlike 4.0 International}}](https://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_18.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_18.RULE index 349b55f67c..9a658077df 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_18.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_18.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/4.0 --- -[Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file +[{{Creative Commons Attribution-ShareAlike 4.0 International}}](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_19.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_19.RULE index 72751741ec..1a4e304547 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_19.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_19.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-sa-4.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_21.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_21.RULE index e43f0b398e..d6a0411360 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_21.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_21.RULE @@ -9,6 +9,6 @@ ignorable_urls: Documentation License The documentation portion of Celery (the rendered contents of the "docs" directory of a software distribution or checkout) is supplied -under the "Creative Commons Attribution-ShareAlike 4.0 -International" (CC BY-SA 4.0) License as described by +under the "{{Creative Commons Attribution-ShareAlike 4.0 +International}}" ({{CC BY-SA 4.0) License}} as described by https://creativecommons.org/licenses/by-sa/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_24.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_24.RULE index 26abee86c6..73b14af0d4 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_24.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_24.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- * All the Product's GUI elements, including illustrations and icon sets, as - * well as technical writing content are licensed under the terms of the - * Creative Commons Attribution-ShareAlike 4.0 International. See the License + * well as technical writing content are {{licensed under the terms of the + * Creative Commons Attribution-ShareAlike 4.0 International}}. See the License * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_25.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_25.RULE index 6a225702ca..62faf0a691 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_25.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_25.RULE @@ -5,5 +5,5 @@ relevance: 100 --- * All the Product's GUI elements, including illustrations and icon sets, as - * well as technical writing content are licensed under the terms of the - * Creative Commons Attribution-ShareAlike 4.0 International. \ No newline at end of file + * well as technical writing content are {{licensed under the terms of the + * Creative Commons Attribution-ShareAlike 4.0 International}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_26.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_26.RULE index 5b4f64b80a..2e708e9844 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_26.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_26.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- * All the Product's GUI elements, including illustrations and icon sets, as - * well as technical writing content are licensed under the terms of the - * Creative Commons Attribution-ShareAlike 4.0 International. See the License + * well as technical writing content are {{licensed under the terms of the + * Creative Commons Attribution-ShareAlike 4.0 International}}. See the License * terms at https://creativecommons.org/licenses/by-sa/4.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_29.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_29.RULE index f3b5f3256c..2860b0088c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_29.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_29.RULE @@ -5,4 +5,4 @@ relevance: 100 --- Portions of this software are licensed as follows: -All content residing under the "doc/" directory of this repository is licensed under "Creative Commons: CC BY-SA 4.0 license". \ No newline at end of file +All content residing under the "doc/" directory of this repository is {{licensed under "Creative Commons: CC BY-SA 4.0}} license". \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_30.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_30.RULE index 2caf91c051..b2d448e7c3 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_30.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_30.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All content residing under the "doc/" directory of this repository is licensed under "Creative Commons: CC BY-SA 4.0 license". \ No newline at end of file +All content residing under the "doc/" directory of this repository is licensed under "{{Creative Commons: CC BY-SA 4.0 license}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_31.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_31.RULE index 3beb859af3..0ddcb104b2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_31.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_31.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under "Creative Commons: CC BY-SA 4.0 license". \ No newline at end of file +{{licensed under "Creative Commons: CC BY-SA 4.0}} license". \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_32.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_32.RULE index 4cffe3afe2..adc668389f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_32.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_32.RULE @@ -1,7 +1,8 @@ --- license_expression: cc-by-sa-4.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -licensed under "Creative Commons: CC BY-SA 4.0 \ No newline at end of file +licensed under "Creative Commons: {{CC BY-SA 4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_33.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_33.RULE index 398edef38f..ca0d361998 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_33.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_33.RULE @@ -6,10 +6,10 @@ ignorable_urls: - http://creativecommons.org/licenses/by-sa/4.0/ --- -## Creative Commons Attribution-ShareAlike 4.0 International Public License +## {{Creative Commons Attribution-ShareAlike 4.0 International}} Public License -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. +By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this {{Creative Commons Attribution-ShareAlike 4.0 International}} Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. Section 1 – Definitions. diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_34.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_34.RULE index 5223702582..6421575402 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_34.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_34.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/4.0/ --- -## Creative Commons Attribution-ShareAlike 4.0 International Public License +## {{Creative Commons Attribution-ShareAlike 4.0 International Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_35.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_35.RULE index c306ac1c98..ddcc33d05c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_35.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_35.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/by-sa/4.0/ --- -## Creative Commons Attribution-ShareAlike 4.0 International Public License +## {{Creative Commons Attribution-ShareAlike 4.0 International Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_36.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_36.RULE index 5b5244f1fe..805253a1cc 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_36.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_36.RULE @@ -1,9 +1,10 @@ --- license_expression: cc-by-sa-4.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://creativecommons.org/licenses/by-sa/4.0/ --- - \ No newline at end of file +"http://creativecommons.org/licenses/by-sa/4.0/" \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_37.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_37.RULE index 03c8654b02..e92bb81c84 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_37.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_37.RULE @@ -1,7 +1,8 @@ --- license_expression: cc-by-sa-4.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Creative Commons Attribution-ShareAlike 4.0 International Public License \ No newline at end of file +{{Creative Commons Attribution-ShareAlike 4.0 International Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_38.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_38.RULE index ad4c849558..567a42d02f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_38.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_38.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/4.0 --- -`CC-BY-SA-4.0` - [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file +`{{CC-BY-SA-4.0}}` - [{{Creative Commons Attribution-ShareAlike 4.0 International License}}](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_39.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_39.RULE index 3839898c12..917348490d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_39.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_39.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/4.0 --- -[Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file +[{{Creative Commons Attribution-ShareAlike 4.0 International License}}](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_40.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_40.RULE index 138a0c6cbd..5fc1016a46 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_40.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_40.RULE @@ -1,6 +1,7 @@ --- license_expression: cc-by-sa-4.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_41.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_41.RULE index 3b6a224d55..e704c4f378 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_41.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_41.RULE @@ -11,4 +11,4 @@ ignorable_urls: Creative Commons License
This work is licensed under a -Creative Commons Attribution-ShareAlike 4.0 International License. \ No newline at end of file +{{Creative Commons Attribution-ShareAlike 4.0 International License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_42.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_42.RULE index f292b3fd1e..e2b9a52ffc 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_42.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_42.RULE @@ -9,4 +9,4 @@ ignorable_urls: Creative Commons License
This work is licensed under a -Creative Commons Attribution-ShareAlike 4.0 International License. \ No newline at end of file +{{Creative Commons Attribution-ShareAlike 4.0 International License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_44.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_44.RULE index 4ef2e4c189..922df2589c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_44.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_44.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- This work is licensed under a -Creative Commons Attribution-ShareAlike 4.0 International License. \ No newline at end of file +{{Creative Commons Attribution-ShareAlike 4.0 International License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_45.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_45.RULE index 7c15bf0c98..198c5383c1 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_45.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_45.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License \ No newline at end of file +This work is {{licensed under a Creative Commons Attribution-ShareAlike 4.0 International}} License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_46.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_46.RULE index 816db65f77..7fbeab51e4 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_46.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_46.RULE @@ -10,4 +10,4 @@ ignorable_urls: ![cc license](http://i.creativecommons.org/l/by-sa/4.0/88x31.png) -This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International](http://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file +This work is {{licensed under a [Creative Commons Attribution-ShareAlike 4.0 International}}](http://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_47.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_47.RULE index c042053de1..ae7e09f728 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_47.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_47.RULE @@ -8,4 +8,4 @@ ignorable_urls: ![cc license](http://i.creativecommons.org/l/by-sa/4.0/88x31.png) -This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International](http://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file +This work is {{licensed under a [Creative Commons Attribution-ShareAlike 4.0 International}}](http://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_48.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_48.RULE index 71b2ae5a25..cfa3a87e11 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_48.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_48.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/licenses/by-sa/4.0 --- -This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International](http://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file +This work is {{licensed under a [Creative Commons Attribution-ShareAlike 4.0 International}}](http://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_49.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_49.RULE index 1fa3c6e98f..d3156a9baf 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_49.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_49.RULE @@ -10,4 +10,4 @@ ignorable_urls: ![cc license](https://i.creativecommons.org/l/by-sa/4.0/88x31.png) -This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file +This work is {{licensed under a [Creative Commons Attribution-ShareAlike 4.0 International}}](https://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_50.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_50.RULE index b108959fbc..d300d0a9ac 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_50.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_50.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/4.0 --- -This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file +This work is {{licensed under a [Creative Commons Attribution-ShareAlike 4.0 International}}](https://creativecommons.org/licenses/by-sa/4.0/) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_51.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_51.RULE index c12b6df7f4..d241eb6397 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_51.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_51.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- # License -Licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. \ No newline at end of file +Licensed under a {{Creative Commons Attribution-ShareAlike 4.0 International License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_52.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_52.RULE index 8eff19ccbe..7965e1cc56 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_52.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_52.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/4.0/ --- -Licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. \ No newline at end of file +Licensed under a {{Creative Commons Attribution-ShareAlike 4.0 International License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_53.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_53.RULE index 27263a5685..14c37ebea2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_53.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_53.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/4.0 --- -Licensed under CC BY-SA 4.0 \ No newline at end of file +Licensed under {{CC BY-SA 4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_55.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_55.RULE index 3df824822a..aada36af67 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_55.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_55.RULE @@ -7,6 +7,6 @@ referenced_filenames: --- * This software may be modified and distributed under the terms of the - * Creative Commons Attribution-ShareAlike 4.0 International License. + * {{Creative Commons Attribution-ShareAlike 4.0 International License}}. * * See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_56.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_56.RULE index 862c322d17..67a2f10cca 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_56.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_56.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/4.0/ --- -The documentation, its source code and related things are licensed under the Creative Commons `CC-BY-SA 4.0 license`_. -.. _CC-BY-SA 4.0 license: https://creativecommons.org/licenses/by-sa/4.0/ \ No newline at end of file +The documentation, its source code and related things are licensed under the {{Creative Commons `CC-BY-SA 4.0 license}}`_. +.. _{{CC-BY-SA 4.0 license}}: https://creativecommons.org/licenses/by-sa/4.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_58.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_58.RULE index c1e1f58aff..8e0584610b 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_58.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_58.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/licenses/by-sa/4.0 --- -CC BY-SA 4.0 (http://creativecommons.org/licenses/by-sa/4.0) \ No newline at end of file +{{CC BY-SA 4.0}} (http://creativecommons.org/licenses/by-sa/4.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_59.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_59.RULE index 2ecae190c6..1ea8a1f078 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_59.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_59.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/4.0 --- -CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0) \ No newline at end of file +{{CC BY-SA 4.0}} (https://creativecommons.org/licenses/by-sa/4.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_6.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_6.RULE index e5c8c46fad..d59b32f65c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_6.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_6.RULE @@ -1,7 +1,8 @@ --- license_expression: cc-by-sa-4.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -CC-BY-SA-4.0 \ No newline at end of file +{{CC-BY-SA-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_60.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_60.RULE index 9fac4052ae..d27078801f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_60.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_60.RULE @@ -8,4 +8,4 @@ ignorable_urls: --- [![Creative Commons BY-SA License](https://i.creativecommons.org/l/by-sa/4.0/80x15.png)](http://creativecommons.org/licenses/by-sa/4.0/) -This work is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/"). \ No newline at end of file +This work is {{licensed under a [Creative Commons Attribution-ShareAlike 4.0 International}} License](http://creativecommons.org/licenses/by-sa/4.0/"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_62.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_62.RULE index c7ac435f1b..12a9f62a00 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_62.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_62.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the Creative Commons Attribution-ShareAlike 4.0 International License \ No newline at end of file +released under the {{Creative Commons Attribution-ShareAlike 4.0 International License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_84.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_84.RULE index 93a008d1a7..f38161c8a0 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_84.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_84.RULE @@ -4,7 +4,7 @@ is_license_text: yes relevance: 100 --- -Creative Commons Attribution-ShareAlike 4.0 International Public License +{{Creative Commons Attribution-ShareAlike 4.0 International Public License}} Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. @@ -16,9 +16,9 @@ Creative Commons public licenses provide a standard set of terms and conditions Considerations for the public: By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public. -Creative Commons Attribution-ShareAlike 4.0 International Public License +{{Creative Commons Attribution-ShareAlike 4.0 International}} Public License -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. +By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this {{Creative Commons Attribution-ShareAlike 4.0 International}} Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. Section 1 – Definitions. diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_85.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_85.RULE index 8b47d1ad21..bf6e4c174d 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_85.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_85.RULE @@ -8,4 +8,4 @@ ignorable_urls: This README.md file and the CONTRIBUTING.md file are licensed under the Creative Commons Attribution 4.0 International License under the terms and conditions set forth in the file LICENSE.docs. You may obtain a duplicate copy -of the same license, titled CC BY-SA 4.0, at http://creativecommons.org/licenses/by-sa/4.0/. \ No newline at end of file +of the same license, titled {{CC BY-SA 4.0}}, at http://creativecommons.org/licenses/by-sa/4.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_86.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_86.RULE index c0aad1bcc3..cc251b3204 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_86.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_86.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under a Creative Commons Attribution-ShareAlike 4.0 International license. \ No newline at end of file +{{licensed under a Creative Commons Attribution-ShareAlike 4.0 International}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_87.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_87.RULE index 84f2a04ad3..65c8da38c2 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_87.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_87.RULE @@ -4,4 +4,4 @@ is_license_notice: yes notes: https://www.snapeda.com/about/terms/ --- -licensed to you pursuant to Creative Commons Attribution-ShareAlike 4.0 International License (CC BY-SA) ("Creative Commons License") \ No newline at end of file +licensed to you pursuant to {{Creative Commons Attribution-ShareAlike 4.0 International License}} (CC BY-SA) ("Creative Commons License") \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_88.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_88.RULE index abcccf21b5..96993ba8b4 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_88.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_88.RULE @@ -3,4 +3,4 @@ license_expression: cc-by-sa-4.0 is_license_reference: yes --- -CC-BY-SA-4.0 Creative Commons Attribution Share Alike 4.0 \ No newline at end of file +{{CC-BY-SA-4.0}} Creative Commons Attribution Share Alike 4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_89.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_89.RULE index 5e3dfbbeea..268535835c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_89.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_89.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -CC-BY-SA-4.0 Creative Commons Attribution Share Alike 4.0 International \ No newline at end of file +{{CC-BY-SA-4.0}} Creative Commons Attribution Share Alike 4.0 International \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_92.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_92.RULE index d1f424ee8c..7689a76782 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_92.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_92.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Creative Commons Attribution Share Alike 4.0 International CC-BY-SA-4.0 \ No newline at end of file +Creative Commons Attribution Share Alike 4.0 International {{CC-BY-SA-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_93.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_93.RULE index 6be3a8111c..6e6b739d80 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_93.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_93.RULE @@ -1,10 +1,11 @@ --- license_expression: cc-by-sa-4.0 is_license_tag: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: CC-BY-SA-4.0 \ No newline at end of file +license: {{CC-BY-SA-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_95.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_95.RULE index a7ed95c058..fd7c052190 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_95.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_95.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: CC-BY-SA-4.0 \ No newline at end of file +licenseId: {{CC-BY-SA-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_98.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_98.RULE index 4a8341764c..c35b9ae01f 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_98.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_98.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/CC-BY-SA-4.0 \ No newline at end of file +licenses.nuget.org/{{CC-BY-SA-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_99.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_99.RULE index 80da36d117..e6a553c8c0 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_99.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_99.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under CC-BY-SA 4.0 \ No newline at end of file +licensed under {{CC-BY-SA 4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_and_url.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_and_url.RULE index 8104a44e5e..bba448b538 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_and_url.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_and_url.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/4.0/legalcode --- -[CC-BY-SA-4.0](https://creativecommons.org/licenses/by-sa/4.0/legalcode) \ No newline at end of file +[{{CC-BY-SA-4.0}}](https://creativecommons.org/licenses/by-sa/4.0/legalcode) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_1.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_1.RULE new file mode 100644 index 0000000000..b41189609a --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_1.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_tag: yes +is_required_phrase: yes +--- + +{{cc by sa 4 0}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_2.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_2.RULE new file mode 100644 index 0000000000..d57b885313 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_2.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under creative commons attribution sharealike 4 0 international \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_3.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_3.RULE new file mode 100644 index 0000000000..4ffafabac8 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_3.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_tag: yes +is_required_phrase: yes +--- + +creative commons {{cc by sa 4 0}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_4.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_4.RULE new file mode 100644 index 0000000000..a4d500fe42 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_4.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under the terms of the creative commons attribution sharealike 4 0 international \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_5.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_5.RULE new file mode 100644 index 0000000000..6851198f6c --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_5.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under terms of the creative commons attribution sharealike 4 0 international \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_6.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_6.RULE new file mode 100644 index 0000000000..5b03a15d12 --- /dev/null +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_required_phrase_6.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cc-by-sa-4.0 +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under terms of creative commons attribution sharealike 4 0 international \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge.RULE index ad2cef8bda..caf3b34282 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg --- -[![License: CC BY-SA 4.0](https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file +[![{{License: CC BY-SA 4.0}}](https://img.shields.io/badge/License-CC%20BY--SA%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge_1.RULE b/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge_1.RULE index 059f2ef394..be06aa7c2c 100644 --- a/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge_1.RULE +++ b/src/licensedcode/data/rules/cc-by-sa-4.0_url_badge_1.RULE @@ -5,4 +5,4 @@ ignorable_urls: - https://creativecommons.org/licenses/by-sa/4.0 --- -[![License: CC BY-SA 4.0](https://licensebuttons.net/l/by-sa/4.0/80x15.png)](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file +[![{{License: CC BY-SA 4.0}}](https://licensebuttons.net/l/by-sa/4.0/80x15.png)](https://creativecommons.org/licenses/by-sa/4.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_100.RULE b/src/licensedcode/data/rules/cc0-1.0_100.RULE index c29ceaef01..9a9ef7744f 100644 --- a/src/licensedcode/data/rules/cc0-1.0_100.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_100.RULE @@ -10,5 +10,5 @@ To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. . - You should have received a copy of the CC0 Public Domain Dedication along with + You should have received a copy of the {{CC0 Public Domain Dedication}} along with this software. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_101.RULE b/src/licensedcode/data/rules/cc0-1.0_101.RULE index 103b23abec..c4ec67dd22 100644 --- a/src/licensedcode/data/rules/cc0-1.0_101.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_101.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/CC0-1.0 --- -On Debian systems, the complete text of the CC0 1.0 Universal license can be +On Debian systems, the complete text of the {{CC0 1.0 Universal license}} can be found in ‘/usr/share/common-licenses/CC0-1.0’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_104.RULE b/src/licensedcode/data/rules/cc0-1.0_104.RULE index 5471eddba7..1977494e2b 100644 --- a/src/licensedcode/data/rules/cc0-1.0_104.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_104.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: See in https://raw.githubusercontent.com/madorning/energySim0.1.0/0ad5c19898215e11fd8cfb0d569b4d48a886e922/LICENSE --- -we waive copyright and related rights in the work worldwide through the CC0 1.0 Universal public domain dedication. \ No newline at end of file +we waive copyright and related rights in the work worldwide through the {{CC0 1.0 Universal public domain dedication}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_106.RULE b/src/licensedcode/data/rules/cc0-1.0_106.RULE index f8357db900..7d7a40ccf8 100644 --- a/src/licensedcode/data/rules/cc0-1.0_106.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_106.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This icon is provided as CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. \ No newline at end of file +This icon is provided as {{CC0 1.0 Universal (CC0 1.0) Public Domain Dedication}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_107.RULE b/src/licensedcode/data/rules/cc0-1.0_107.RULE index fd0f31f2af..db80919d91 100644 --- a/src/licensedcode/data/rules/cc0-1.0_107.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_107.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -This icon is provided as CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. +This icon is provided as {{CC0 1.0 Universal (CC0 1.0) Public Domain Dedication}}. You can copy, modify, use, distribute this icon, even for commercial purposes, all without asking permission with no attribution required, but always appreciated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_108.RULE b/src/licensedcode/data/rules/cc0-1.0_108.RULE index 3de5792014..97c74e38a2 100644 --- a/src/licensedcode/data/rules/cc0-1.0_108.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_108.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/publicdomain/zero/1.0/deed.en --- -* The image is a free public picture from Wikimedias copyright and distributed under the terms of the Creative Commons CC0 1.0 Universal Public Domain Dedication (http://creativecommons.org/publicdomain/zero/1.0/deed.en) \ No newline at end of file +* The image is a free public picture from Wikimedias copyright and distributed under the terms of the {{Creative Commons CC0 1.0 Universal Public Domain Dedication}} (http://creativecommons.org/publicdomain/zero/1.0/deed.en) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_109.RULE b/src/licensedcode/data/rules/cc0-1.0_109.RULE index 65db82f2ca..9bac8b3364 100644 --- a/src/licensedcode/data/rules/cc0-1.0_109.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_109.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/publicdomain/zero/1.0/deed.en --- -distributed under the terms of the Creative Commons CC0 1.0 Universal Public Domain Dedication (http://creativecommons.org/publicdomain/zero/1.0/deed.en) \ No newline at end of file +distributed under the terms of the {{Creative Commons CC0 1.0 Universal Public Domain Dedication}} (http://creativecommons.org/publicdomain/zero/1.0/deed.en) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_11.RULE b/src/licensedcode/data/rules/cc0-1.0_11.RULE index 9623c2c6ec..e3430dd98c 100644 --- a/src/licensedcode/data/rules/cc0-1.0_11.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_11.RULE @@ -3,7 +3,7 @@ license_expression: cc0-1.0 is_license_notice: yes --- -No Copyright - CC0 1.0 Universal (CC0 1.0) +No Copyright - {{CC0 1.0 Universal CC0 1.0}}) The person who associated a work with this deed has dedicated the work to the public domain by waiving all of his or her rights diff --git a/src/licensedcode/data/rules/cc0-1.0_110.RULE b/src/licensedcode/data/rules/cc0-1.0_110.RULE index 3341a498c8..8e2c115ec3 100644 --- a/src/licensedcode/data/rules/cc0-1.0_110.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_110.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/publicdomain/zero/1.0/deed.en --- -Wikimedias copyright and distributed under the terms of the Creative Commons CC0 1.0 Universal Public Domain Dedication (http://creativecommons.org/publicdomain/zero/1.0/deed.en) \ No newline at end of file +Wikimedias copyright and distributed under the terms of the {{Creative Commons CC0 1.0 Universal Public Domain Dedication}} (http://creativecommons.org/publicdomain/zero/1.0/deed.en) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_116.RULE b/src/licensedcode/data/rules/cc0-1.0_116.RULE index cb9873643d..4ca21f93a4 100644 --- a/src/licensedcode/data/rules/cc0-1.0_116.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_116.RULE @@ -1,7 +1,6 @@ --- license_expression: cc0-1.0 is_license_text: yes -relevance: 100 notes: Seen in Debian perl copyright file. Has a typo --- diff --git a/src/licensedcode/data/rules/cc0-1.0_117.RULE b/src/licensedcode/data/rules/cc0-1.0_117.RULE index cd847d6171..4fa63c34ac 100644 --- a/src/licensedcode/data/rules/cc0-1.0_117.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_117.RULE @@ -6,4 +6,4 @@ relevance: 100 To the extent possible under law has waived all copyright and related or neighboring rights to -License: CC0-1.0 \ No newline at end of file +{{License: CC0-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_118.RULE b/src/licensedcode/data/rules/cc0-1.0_118.RULE index 4a95882c01..aabf2bb324 100644 --- a/src/licensedcode/data/rules/cc0-1.0_118.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_118.RULE @@ -1,7 +1,6 @@ --- license_expression: cc0-1.0 is_license_text: yes -relevance: 100 ignorable_urls: - http://creativecommons.org/publicdomain/zero/1.0/ --- diff --git a/src/licensedcode/data/rules/cc0-1.0_119.RULE b/src/licensedcode/data/rules/cc0-1.0_119.RULE index 463cc54e00..d3d6afd38b 100644 --- a/src/licensedcode/data/rules/cc0-1.0_119.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_119.RULE @@ -1,7 +1,6 @@ --- license_expression: cc0-1.0 is_license_text: yes -relevance: 100 ignorable_urls: - http://creativecommons.org/publicdomain/zero/1.0/ --- diff --git a/src/licensedcode/data/rules/cc0-1.0_12.RULE b/src/licensedcode/data/rules/cc0-1.0_12.RULE index 5135e81035..c7d6d9d553 100644 --- a/src/licensedcode/data/rules/cc0-1.0_12.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_12.RULE @@ -1,7 +1,8 @@ --- license_expression: cc0-1.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -license: CC0-1.0 \ No newline at end of file +License: CC0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_127.RULE b/src/licensedcode/data/rules/cc0-1.0_127.RULE index 6a900884b4..c0346d2318 100644 --- a/src/licensedcode/data/rules/cc0-1.0_127.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_127.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/publicdomain/zero/1.0 --- -- CC0 1.0 Universal : http://creativecommons.org/publicdomain/zero/1.0 \ No newline at end of file +- {{CC0 1.0 Universal}} : http://creativecommons.org/publicdomain/zero/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_128.RULE b/src/licensedcode/data/rules/cc0-1.0_128.RULE index cb978df4db..0e83b825af 100644 --- a/src/licensedcode/data/rules/cc0-1.0_128.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_128.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Seen in https://github.com/asciidoctor/asciidoctor-pdf/blob/main/NOTICE.adoc --- -License: Creative Commons CC0 1.0 Universal Public Domain Dedication \ No newline at end of file +License: {{Creative Commons CC0 1.0 Universal Public Domain Dedication}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_129.RULE b/src/licensedcode/data/rules/cc0-1.0_129.RULE index f17c77dcf0..52e544dcfd 100644 --- a/src/licensedcode/data/rules/cc0-1.0_129.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_129.RULE @@ -6,8 +6,8 @@ referenced_filenames: - /usr/share/common-licenses/CC0-1.0 --- -You may use this work under the terms of a Creative Commons CC0 1.0 - License/Waiver. +You may use this work under the terms of a {{Creative Commons CC0 1.0 + License}}/Waiver. . - On Debian systems, the complete text of the Creative Commons CC0 1.0 - Universal license can be found in `/usr/share/common-licenses/CC0-1.0'. \ No newline at end of file + On Debian systems, the complete text of the {{Creative Commons CC0 1.0 + Universal license}} can be found in `/usr/share/common-licenses/CC0-1.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_13.RULE b/src/licensedcode/data/rules/cc0-1.0_13.RULE index 76e6aa8e07..12089fa520 100644 --- a/src/licensedcode/data/rules/cc0-1.0_13.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_13.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://creativecommons.org/publicdomain/zero/1.0/deed --- -## License +## {{License -[Creative Commons Zero v1.0 Universal](https://creativecommons.org/publicdomain/zero/1.0/deed) \ No newline at end of file +[Creative Commons Zero v1.0 Universal}}](https://creativecommons.org/publicdomain/zero/1.0/deed) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_139.RULE b/src/licensedcode/data/rules/cc0-1.0_139.RULE index 2663158df3..6e9e8371d2 100644 --- a/src/licensedcode/data/rules/cc0-1.0_139.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_139.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is in the Public Domian (Creative Commons CC0 1.0 Universal)) \ No newline at end of file +This file is in the {{Public Domian (Creative Commons CC0 1.0 Universal}})) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_14.RULE b/src/licensedcode/data/rules/cc0-1.0_14.RULE index b77fc1c47f..e1032fe900 100644 --- a/src/licensedcode/data/rules/cc0-1.0_14.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_14.RULE @@ -1,9 +1,10 @@ --- license_expression: cc0-1.0 -is_license_reference: yes +is_license_tag: yes +is_required_phrase: yes relevance: 100 --- License -Creative Commons Zero v1.0 Universal \ No newline at end of file +[Creative Commons Zero v1.0 Universal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_142.RULE b/src/licensedcode/data/rules/cc0-1.0_142.RULE index 0f6efdd8a6..ff7a10e782 100644 --- a/src/licensedcode/data/rules/cc0-1.0_142.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_142.RULE @@ -8,4 +8,4 @@ referenced_filenames: License -Distributed under the CC0-1.0 License. See LICENSE for more information. \ No newline at end of file +{{Distributed under the CC0-1.0 License}}. See LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_143.RULE b/src/licensedcode/data/rules/cc0-1.0_143.RULE index c2aff31bc9..0b9dd6c270 100644 --- a/src/licensedcode/data/rules/cc0-1.0_143.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_143.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Distributed under the CC0-1.0 License. See LICENSE for more information. \ No newline at end of file +{{Distributed under the CC0-1.0 License}}. See LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_144.RULE b/src/licensedcode/data/rules/cc0-1.0_144.RULE index 564375b7e5..97540eaf56 100644 --- a/src/licensedcode/data/rules/cc0-1.0_144.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_144.RULE @@ -1,7 +1,8 @@ --- license_expression: cc0-1.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -Distributed under the CC0-1.0 License. \ No newline at end of file +Distributed under the CC0-1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_149.RULE b/src/licensedcode/data/rules/cc0-1.0_149.RULE index a73e68457f..db93ea7c87 100644 --- a/src/licensedcode/data/rules/cc0-1.0_149.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_149.RULE @@ -6,8 +6,8 @@ referenced_filenames: - /usr/share/common-licenses/CC0-1.0 --- -You may use this work under the terms of a Creative Commons CC0 1.0 - License/Waiver. +You may use this work under the terms of a {{Creative Commons CC0 1.0 + License}}/Waiver. . - On Debian GNU/Linux systems, the complete text of the Creative Commons CC0 1.0 - Universal license can be found in `/usr/share/common-licenses/CC0-1.0'. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{Creative Commons CC0 1.0 + Universal license}} can be found in `/usr/share/common-licenses/CC0-1.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_151.RULE b/src/licensedcode/data/rules/cc0-1.0_151.RULE index a8573c1add..a56ef846b3 100644 --- a/src/licensedcode/data/rules/cc0-1.0_151.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_151.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/CC0-1.0 --- -On Debian GNU/Linux systems, the complete text of the CC0 1.0 Universal license can be +On Debian GNU/Linux systems, the complete text of the {{CC0 1.0 Universal license}} can be found in ‘/usr/share/common-licenses/CC0-1.0’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_152.RULE b/src/licensedcode/data/rules/cc0-1.0_152.RULE index 4237db36fc..1d90eb0d29 100644 --- a/src/licensedcode/data/rules/cc0-1.0_152.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_152.RULE @@ -12,8 +12,8 @@ To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. . - You should have received a copy of the CC0 Public Domain Dedication along with + You should have received a copy of the {{CC0 Public Domain Dedication}} along with this software. If not, see . . - On Debian GNU/Linux systems, the complete text of the CC0 1.0 Universal license can be + On Debian GNU/Linux systems, the complete text of the {{CC0 1.0 Universal license}} can be found in ‘/usr/share/common-licenses/CC0-1.0’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_153.RULE b/src/licensedcode/data/rules/cc0-1.0_153.RULE index 50d1445755..a9652a2cba 100644 --- a/src/licensedcode/data/rules/cc0-1.0_153.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_153.RULE @@ -11,8 +11,8 @@ To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. . - You should have received a copy of the CC0 Public Domain Dedication along with + You should have received a copy of the {{CC0 Public Domain Dedication}} along with this software. If not, see . . - On Debian systems, the complete text of the CC0 1.0 Universal license can be + On Debian systems, the complete text of the {{CC0 1.0 Universal license}} can be found in ‘/usr/share/common-licenses/CC0-1.0’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_157.RULE b/src/licensedcode/data/rules/cc0-1.0_157.RULE index 32c6b429f2..0f7ca1a244 100644 --- a/src/licensedcode/data/rules/cc0-1.0_157.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_157.RULE @@ -6,8 +6,8 @@ referenced_filenames: - /usr/share/common-licenses/CC0-1.0 --- -You may use this work under the terms of a Creative Commons CC0 1.0 - License/Waiver. +You may use this work under the terms of a {{Creative Commons CC0 1.0 + License}}/Waiver. . - On Debian systems, the text of the Creative Commons CC0 1.0 - Universal license can be found in `/usr/share/common-licenses/CC0-1.0'. \ No newline at end of file + On Debian systems, the text of the {{Creative Commons CC0 1.0 + Universal license}} can be found in `/usr/share/common-licenses/CC0-1.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_159.RULE b/src/licensedcode/data/rules/cc0-1.0_159.RULE index 656b0321bb..385c1f3cd9 100644 --- a/src/licensedcode/data/rules/cc0-1.0_159.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_159.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/CC0-1.0 --- -On Debian systems, the text of the CC0 1.0 Universal license can be +On Debian systems, the text of the {{CC0 1.0 Universal license}} can be found in ‘/usr/share/common-licenses/CC0-1.0’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_160.RULE b/src/licensedcode/data/rules/cc0-1.0_160.RULE index 35ac25003e..d8b1313f02 100644 --- a/src/licensedcode/data/rules/cc0-1.0_160.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_160.RULE @@ -12,8 +12,8 @@ To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. . - You should have received a copy of the CC0 Public Domain Dedication along with + You should have received a copy of the {{CC0 Public Domain Dedication}} along with this software. If not, see . . - On Debian systems, the text of the CC0 1.0 Universal license can be + On Debian systems, the text of the {{CC0 1.0 Universal license}} can be found in ‘/usr/share/common-licenses/CC0-1.0’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_161.RULE b/src/licensedcode/data/rules/cc0-1.0_161.RULE index d5da48784d..dc4dc768c8 100644 --- a/src/licensedcode/data/rules/cc0-1.0_161.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_161.RULE @@ -12,8 +12,8 @@ To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. . - You should have received a copy of the CC0 Public Domain Dedication along with + You should have received a copy of the {{CC0 Public Domain Dedication}} along with this software. If not, see . . - On Debian systems, the text of the CC0 1.0 Universal license can be + On Debian systems, the text of the {{CC0 1.0 Universal license}} can be found in ‘/usr/share/common-licenses/CC0-1.0’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_162.RULE b/src/licensedcode/data/rules/cc0-1.0_162.RULE index 60de1a8e56..f915477450 100644 --- a/src/licensedcode/data/rules/cc0-1.0_162.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_162.RULE @@ -3,5 +3,5 @@ license_expression: cc0-1.0 is_license_reference: yes --- -The complete text of the Creative Commons 0 1.0 Universal - can be found in `/usr/share/common-licenses/CC0-1.0'. \ No newline at end of file +The complete text of the {{Creative Commons 0 1.0 Universal}} + can be found in `{{/usr/share/common-licenses/CC0-1.0}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_163.RULE b/src/licensedcode/data/rules/cc0-1.0_163.RULE index b92d37df8b..7689c09b07 100644 --- a/src/licensedcode/data/rules/cc0-1.0_163.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_163.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/publicdomain/zero/1.0 --- -CC0 1.0 Universal : https://creativecommons.org/publicdomain/zero/1.0 \ No newline at end of file +{{CC0 1.0 Universal}} : https://creativecommons.org/publicdomain/zero/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_164.RULE b/src/licensedcode/data/rules/cc0-1.0_164.RULE index f0161bd9de..2a5d7a6d08 100644 --- a/src/licensedcode/data/rules/cc0-1.0_164.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_164.RULE @@ -1,7 +1,8 @@ --- license_expression: cc0-1.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -LicenseId: CC0-1.0 \ No newline at end of file +LicenseId": "CC0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_166.RULE b/src/licensedcode/data/rules/cc0-1.0_166.RULE index 5634178f41..5b48b6f0d1 100644 --- a/src/licensedcode/data/rules/cc0-1.0_166.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_166.RULE @@ -3,4 +3,4 @@ license_expression: cc0-1.0 is_license_reference: yes --- -CC0-1.0 Creative Commons Zero v1.0 Universal \ No newline at end of file +{{CC0-1.0}} {{Creative Commons Zero v1.0 Universal}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_167.RULE b/src/licensedcode/data/rules/cc0-1.0_167.RULE index 21b97cff10..889e8a3eb3 100644 --- a/src/licensedcode/data/rules/cc0-1.0_167.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_167.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: Creative Commons Zero v1.0 Universal \ No newline at end of file +name: {{Creative Commons Zero v1.0 Universal}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_168.RULE b/src/licensedcode/data/rules/cc0-1.0_168.RULE index 246c5d2778..fcc1df0602 100644 --- a/src/licensedcode/data/rules/cc0-1.0_168.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_168.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Creative Commons Zero v1.0 Universal CC0-1.0 \ No newline at end of file +{{Creative Commons Zero v1.0 Universal}} {{CC0-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_170.RULE b/src/licensedcode/data/rules/cc0-1.0_170.RULE index 79f257c348..98b56ba184 100644 --- a/src/licensedcode/data/rules/cc0-1.0_170.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_170.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- donated to public domain. -For details, see CC0 1.0 Universal (1.0), Public Domain Dedication, +For details, see {{CC0 1.0 Universal (1.0), Public Domain Dedication}}, http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_176.RULE b/src/licensedcode/data/rules/cc0-1.0_176.RULE index 696668f830..50892511f5 100644 --- a/src/licensedcode/data/rules/cc0-1.0_176.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_176.RULE @@ -11,7 +11,7 @@ ignorable_urls: * and released to the * public domain, as explained at http://creativecommons.org/publicdomain/zero/1.0/ - Public Domain, per Creative Commons CC0 + {{Public Domain, per Creative Commons CC0}} http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_178.RULE b/src/licensedcode/data/rules/cc0-1.0_178.RULE index d984fddc77..42fb3440f7 100644 --- a/src/licensedcode/data/rules/cc0-1.0_178.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_178.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -code is in the public domain using the CC0 Public Domain Dedication. \ No newline at end of file +code is in the public domain using the {{CC0 Public Domain Dedication}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_179.RULE b/src/licensedcode/data/rules/cc0-1.0_179.RULE index e73c749b0d..2276b0b6ef 100644 --- a/src/licensedcode/data/rules/cc0-1.0_179.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_179.RULE @@ -1,6 +1,7 @@ --- license_expression: cc0-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc0-1.0_186.RULE b/src/licensedcode/data/rules/cc0-1.0_186.RULE index f2f901c64f..ee819c58aa 100644 --- a/src/licensedcode/data/rules/cc0-1.0_186.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_186.RULE @@ -24,5 +24,5 @@ Certain owners wish to permanently relinquish those rights to a Work for its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. - The complete text of the Creative Commons 0 1.0 Universal + The complete text of the {{Creative Commons 0 1.0 Universal}} can be found in `/usr/share/common-licenses/CC0-1.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_187.RULE b/src/licensedcode/data/rules/cc0-1.0_187.RULE index 176f7182d3..dc63589bee 100644 --- a/src/licensedcode/data/rules/cc0-1.0_187.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_187.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/CC0-1.0 --- -text of the Creative Commons 0 1.0 Universal +text of the {{Creative Commons 0 1.0 Universal}} can be found in `/usr/share/common-licenses/CC0-1.0'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_19.RULE b/src/licensedcode/data/rules/cc0-1.0_19.RULE index 46a085b813..24a197f7c8 100644 --- a/src/licensedcode/data/rules/cc0-1.0_19.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_19.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://choosealicense.com/licenses/cc0-1.0 --- -License: [`cc0-1.0`](http://choosealicense.com/licenses/cc0-1.0/) \ No newline at end of file +{{License: [`cc0-1.0}}`](http://choosealicense.com/licenses/cc0-1.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_199.RULE b/src/licensedcode/data/rules/cc0-1.0_199.RULE index 5ef846f061..e882196513 100644 --- a/src/licensedcode/data/rules/cc0-1.0_199.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_199.RULE @@ -1,6 +1,8 @@ --- license_expression: cc0-1.0 is_license_notice: yes +is_required_phrase: yes +relevance: 100 --- -Public Domain, per {{Creative Commons CC0}} \ No newline at end of file +Public Domain, per Creative Commons CC0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_2.RULE b/src/licensedcode/data/rules/cc0-1.0_2.RULE index 3b081d22eb..2ed850fc80 100644 --- a/src/licensedcode/data/rules/cc0-1.0_2.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_2.RULE @@ -1,6 +1,7 @@ --- license_expression: cc0-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/cc0-1.0_203.RULE b/src/licensedcode/data/rules/cc0-1.0_203.RULE index a02fb4ebc8..8f818677ae 100644 --- a/src/licensedcode/data/rules/cc0-1.0_203.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_203.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.creativecommons.org/publicdomain/zero/1.0/ --- -name: CC0 universal +name: {{CC0 universal}} url: http://www.creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_204.RULE b/src/licensedcode/data/rules/cc0-1.0_204.RULE index 0c8742e765..a1ee8d5f06 100644 --- a/src/licensedcode/data/rules/cc0-1.0_204.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_204.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/zero/1.0/ --- -licensed under a Creative Commons Zero (CC0) 1.0 . \ No newline at end of file +{{licensed under a Creative Commons Zero (CC0) 1.0}} . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_205.RULE b/src/licensedcode/data/rules/cc0-1.0_205.RULE index 9592e9de79..c3781c429d 100644 --- a/src/licensedcode/data/rules/cc0-1.0_205.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_205.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/licenses/zero/1.0/ --- -Creative Commons Zero (CC0) 1.0 \ No newline at end of file +{{Creative Commons Zero (CC0) 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_206.RULE b/src/licensedcode/data/rules/cc0-1.0_206.RULE index 8ec254de4b..881ff2b9b6 100644 --- a/src/licensedcode/data/rules/cc0-1.0_206.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_206.RULE @@ -5,9 +5,9 @@ ignorable_urls: - http://creativecommons.org/publicdomain/zero/1.0 --- -Licensed under CC0-1.0. +{{Licensed under CC0-1.0}}. -To the extent possible under law, the person who associated CC0-1.0 with OSLOC +To the extent possible under law, the person who associated {{CC0-1.0}} with OSLOC has waived all copyright and related or neighboring rights to OSLOC. For the original license text see diff --git a/src/licensedcode/data/rules/cc0-1.0_208.RULE b/src/licensedcode/data/rules/cc0-1.0_208.RULE index d51661c480..b77751ffd7 100644 --- a/src/licensedcode/data/rules/cc0-1.0_208.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_208.RULE @@ -1,6 +1,7 @@ --- license_expression: cc0-1.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 notes: common in SPDX documents --- diff --git a/src/licensedcode/data/rules/cc0-1.0_209.RULE b/src/licensedcode/data/rules/cc0-1.0_209.RULE index 5f8068e35c..a874c81b3b 100644 --- a/src/licensedcode/data/rules/cc0-1.0_209.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_209.RULE @@ -5,6 +5,6 @@ ignorable_urls: - https://creativecommons.org/publicdomain/zero/1.0/ --- -For all those files, unless they have an explicit license notice, the license -is the Creative Commons CC0 1.0. The text can be found at -https://creativecommons.org/publicdomain/zero/1.0/ . \ No newline at end of file +For all those files, unless they have an explicit license notice, the {{license +is the Creative Commons CC0 1.0}}. The text can be found at +{{https://creativecommons.org/publicdomain/zero/1.0/ }}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_210.RULE b/src/licensedcode/data/rules/cc0-1.0_210.RULE index cdfad4039c..7df16cf357 100644 --- a/src/licensedcode/data/rules/cc0-1.0_210.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_210.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- All other files that do not have an explicit copyright notice (e.g., all -examples and some demos) are licensed under the Creative Commons CC0 1.0 license. The +examples and some demos) are licensed under the {{Creative Commons CC0 1.0 license}}. The exact text can be found at https://creativecommons.org/publicdomain/zero/1.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_211.RULE b/src/licensedcode/data/rules/cc0-1.0_211.RULE index 8246b615a3..894260ed7f 100644 --- a/src/licensedcode/data/rules/cc0-1.0_211.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_211.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Creative Commons CC0 1.0 license \ No newline at end of file +licensed under the {{Creative Commons CC0 1.0 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_22.RULE b/src/licensedcode/data/rules/cc0-1.0_22.RULE index ef0763f28e..cefc6ff1af 100644 --- a/src/licensedcode/data/rules/cc0-1.0_22.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_22.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This work is licensed under the Creative Commons CC0 1.0 Universal License \ No newline at end of file +This work is licensed under the {{Creative Commons CC0 1.0 Universal License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_23.RULE b/src/licensedcode/data/rules/cc0-1.0_23.RULE index a8aa38c0cb..d5d55f27b0 100644 --- a/src/licensedcode/data/rules/cc0-1.0_23.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_23.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://creativecommons.org/publicdomain/zero/1.0 --- -This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication -license. Its contents can be found at: +This work is subject to the {{CC0 1.0 Universal}} ({{CC0 1.0) Public Domain Dedication +license}}. Its contents can be found at: http://creativecommons.org/publicdomain/zero/1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_26.RULE b/src/licensedcode/data/rules/cc0-1.0_26.RULE index c25a99810d..9ef189a341 100644 --- a/src/licensedcode/data/rules/cc0-1.0_26.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_26.RULE @@ -9,5 +9,5 @@ To the extent possible under law, the authors have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. -You should have received a copy of the CC0 Public Domain Dedication along +You should have received a copy of the {{CC0 Public Domain Dedication}} along with this software. If not, see https://creativecommons.org/publicdomain/zero/1.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_27.RULE b/src/licensedcode/data/rules/cc0-1.0_27.RULE index cf8dec78c8..a1404a4be8 100644 --- a/src/licensedcode/data/rules/cc0-1.0_27.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_27.RULE @@ -9,6 +9,6 @@ To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. - You should have received a copy of the CC0 Public Domain Dedication along + You should have received a copy of the {{CC0 Public Domain Dedication}} along with this software. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_29.RULE b/src/licensedcode/data/rules/cc0-1.0_29.RULE index c29a5b6d9b..ef13d842b8 100644 --- a/src/licensedcode/data/rules/cc0-1.0_29.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_29.RULE @@ -5,12 +5,12 @@ ignorable_urls: - http://creativecommons.org/publicdomain/zero/1.0/ --- -* License: CC0 Public Domain Dedication * +* License: {{CC0 Public Domain Dedication}} * * * * To the extent possible under law, the author(s) have dedicated all copyright * * and related and neighboring rights to this software to the public domain * * worldwide. This software is distributed without any warranty. * * * -* You should have received a copy of the CC0 Public Domain Dedication along * +* You should have received a copy of the {{CC0 Public Domain Dedication}} along * * with this software. * * If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_34.RULE b/src/licensedcode/data/rules/cc0-1.0_34.RULE index 4ddf44984e..529b68fdc7 100644 --- a/src/licensedcode/data/rules/cc0-1.0_34.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_34.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -"LicenseId": "CC0-1.0", +"{{LicenseId": "CC0-1.0}}", "LicenseFile": "CC0_LICENSE", \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_35.RULE b/src/licensedcode/data/rules/cc0-1.0_35.RULE index acb01dd264..09d257d8ae 100644 --- a/src/licensedcode/data/rules/cc0-1.0_35.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_35.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -"License": "Creative Commons Zero v1.0 Universal", -"LicenseId": "CC0-1.0", +"{{License": "Creative Commons Zero v1.0 Universal}}", +"LicenseId": "{{CC0-1.0}}", "LicenseFile": "CC0_LICENSE", \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_37.RULE b/src/licensedcode/data/rules/cc0-1.0_37.RULE index 6f64cc675f..f4c39725bd 100644 --- a/src/licensedcode/data/rules/cc0-1.0_37.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_37.RULE @@ -3,8 +3,8 @@ license_expression: cc0-1.0 is_license_notice: yes --- -"License": "Creative Commons Zero v1.0 Universal", -"LicenseId": "CC0-1.0", +"{{License": "Creative Commons Zero v1.0 Universal}}", +"{{LicenseId": "CC0-1.0}}", "LicenseFile": "CC0_LICENSE", To the extent possible under law, the implementers have waived all copyright diff --git a/src/licensedcode/data/rules/cc0-1.0_52.RULE b/src/licensedcode/data/rules/cc0-1.0_52.RULE index a9ca519041..886c5e83c7 100644 --- a/src/licensedcode/data/rules/cc0-1.0_52.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_52.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- classes which are donated to public domain. -For details, see CC0 1.0 Universal (1.0), Public Domain Dedication, +For details, see {{CC0 1.0 Universal (1.0), Public Domain Dedication}}, http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_56.RULE b/src/licensedcode/data/rules/cc0-1.0_56.RULE index 7418279a47..b6eabe1bf8 100644 --- a/src/licensedcode/data/rules/cc0-1.0_56.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_56.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/publicdomain/zero/1.0/ --- -License Public Domain: `CC0 1.0 Universal `_. \ No newline at end of file +{{License Public Domain: `CC0 1.0 Universal}} `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_57.RULE b/src/licensedcode/data/rules/cc0-1.0_57.RULE index 80bed5a6d5..d3767ce638 100644 --- a/src/licensedcode/data/rules/cc0-1.0_57.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_57.RULE @@ -1,7 +1,8 @@ --- license_expression: cc0-1.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -License Public Domain: CC0 1.0 Universal. \ No newline at end of file +License Public Domain: `CC0 1.0 Universal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_58.RULE b/src/licensedcode/data/rules/cc0-1.0_58.RULE index 59f286b557..473bae1c6c 100644 --- a/src/licensedcode/data/rules/cc0-1.0_58.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_58.RULE @@ -5,5 +5,5 @@ relevance: 100 --- License: CC0 - You may use this work under the terms of a Creative Commons CC0 1.0 - License/Waiver. \ No newline at end of file + You may use this work under the terms of a {{Creative Commons CC0 1.0 + License}}/Waiver. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_59.RULE b/src/licensedcode/data/rules/cc0-1.0_59.RULE index 00a1db43af..2bfd64314a 100644 --- a/src/licensedcode/data/rules/cc0-1.0_59.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_59.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -You may use this work under the terms of a Creative Commons CC0 1.0 - License/Waiver. \ No newline at end of file +You may use this work under the terms of a {{Creative Commons CC0 1.0 + License}}/Waiver. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_61.RULE b/src/licensedcode/data/rules/cc0-1.0_61.RULE index 05837fb450..6fc1c52432 100644 --- a/src/licensedcode/data/rules/cc0-1.0_61.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_61.RULE @@ -1,7 +1,8 @@ --- license_expression: cc0-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -CC0 1.0 Universal') \ No newline at end of file +CC0 1.0 Universal diff --git a/src/licensedcode/data/rules/cc0-1.0_62.RULE b/src/licensedcode/data/rules/cc0-1.0_62.RULE index d31b5bab82..428b5dfa4a 100644 --- a/src/licensedcode/data/rules/cc0-1.0_62.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_62.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://creativecommons.org/publicdomain/zero/1.0/legalcode --- -License: CC0 1.0 Universal +License: {{CC0 1.0 Universal}} https://creativecommons.org/publicdomain/zero/1.0/legalcode \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_63.RULE b/src/licensedcode/data/rules/cc0-1.0_63.RULE index 630fb60c20..32e0effefe 100644 --- a/src/licensedcode/data/rules/cc0-1.0_63.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_63.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: CC0 1.0 Universal \ No newline at end of file +License: {{CC0 1.0 Universal}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_67.RULE b/src/licensedcode/data/rules/cc0-1.0_67.RULE index b70f3e0d2b..0414727573 100644 --- a/src/licensedcode/data/rules/cc0-1.0_67.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_67.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: CC0 1.0 Universal (CC0 1.0) \ No newline at end of file +License: {{CC0 1.0 Universal (CC0 1.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_68.RULE b/src/licensedcode/data/rules/cc0-1.0_68.RULE index 4f35c6342b..a5cc842083 100644 --- a/src/licensedcode/data/rules/cc0-1.0_68.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_68.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/publicdomain/zero/1.0/legalcode --- -This file made available under CC0 1.0 Universal (https://creativecommons.org/publicdomain/zero/1.0/legalcode) \ No newline at end of file +This file made available under {{CC0 1.0 Universal}} (https://creativecommons.org/publicdomain/zero/1.0/legalcode) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_69.RULE b/src/licensedcode/data/rules/cc0-1.0_69.RULE index 398939a887..5e53acedd8 100644 --- a/src/licensedcode/data/rules/cc0-1.0_69.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_69.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This work was prepared by an U.S. Government employee and, therefore, is excluded from copyright by Section 105 of the Copyright Act of 1976. Copyright and Related Rights in the Work worldwide are waived through the CC0 1.0 Universal license. \ No newline at end of file +This work was prepared by an U.S. Government employee and, therefore, is excluded from copyright by Section 105 of the Copyright Act of 1976. Copyright and Related Rights in the Work worldwide are waived through the {{CC0 1.0 Universal license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_70.RULE b/src/licensedcode/data/rules/cc0-1.0_70.RULE index 7eda300550..4e17f716a3 100644 --- a/src/licensedcode/data/rules/cc0-1.0_70.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_70.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This work was prepared by an U.S. Government employee and, therefore, is excluded from copyright by Section 105 of the Copyright Act of 1976. Copyright and Related Rights in the Work worldwide are waived through the CC0 1.0 Universal license. \ No newline at end of file +This work was prepared by an U.S. Government employee and, therefore, is excluded from copyright by Section 105 of the Copyright Act of 1976. Copyright and Related Rights in the Work worldwide are waived through the {{CC0 1.0 Universal license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_71.RULE b/src/licensedcode/data/rules/cc0-1.0_71.RULE index be6de0a05d..4c2ef36385 100644 --- a/src/licensedcode/data/rules/cc0-1.0_71.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_71.RULE @@ -9,4 +9,4 @@ ignorable_urls: This Work was prepared by a United States Government employee and, therefore, is excluded from copyright by Section 105 of the Copyright Act of 1976. -Copyright and Related Rights in the Work worldwide are waived through the [CC0 1.0](https://creativecommons.org/publicdomain/zero/1.0/) [Universal license](https://creativecommons.org/publicdomain/zero/1.0/legalcode). \ No newline at end of file +Copyright and Related Rights in the Work worldwide are waived through the [{{CC0 1.0}}](https://creativecommons.org/publicdomain/zero/1.0/) [Universal license](https://creativecommons.org/publicdomain/zero/1.0/legalcode). \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_77.RULE b/src/licensedcode/data/rules/cc0-1.0_77.RULE index 7d7e2efe7f..8a772777c7 100644 --- a/src/licensedcode/data/rules/cc0-1.0_77.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_77.RULE @@ -15,7 +15,7 @@ The included source code for any executable code that Styrene generates, and any associated scripting, is hereby gifted into the public domain -using a Creative Commons [CC0 1.0][cc0] Public Domain Dedication. +using a {{Creative Commons [CC0 1.0][cc0] Public Domain Dedication.}} This covers all the extras that Styrene builds into your app bundle. In other words, this exception lets you distribute or use the bundle without any possible infingement against our licenses. diff --git a/src/licensedcode/data/rules/cc0-1.0_78.RULE b/src/licensedcode/data/rules/cc0-1.0_78.RULE index c2aeb8f959..9e96c73241 100644 --- a/src/licensedcode/data/rules/cc0-1.0_78.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_78.RULE @@ -5,8 +5,8 @@ relevance: 100 minimum_coverage: 70 --- -This file is made available under the Creative Commons CC0 1.0 -Universal Public Domain Dedication. +This file is made available under the {{Creative Commons CC0 1.0 +Universal Public Domain Dedication}}. The person who associated a work with this deed has dedicated the work to the public domain by waiving all of his or her rights to the work worldwide under copyright law, including all related diff --git a/src/licensedcode/data/rules/cc0-1.0_79.RULE b/src/licensedcode/data/rules/cc0-1.0_79.RULE index 09834661e0..af44f6101d 100644 --- a/src/licensedcode/data/rules/cc0-1.0_79.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_79.RULE @@ -5,8 +5,8 @@ relevance: 100 minimum_coverage: 70 --- -* This file is made available under the Creative Commons CC0 1.0 - * Universal Public Domain Dedication. +* This file is made available under the {{Creative Commons CC0 1.0 + * Universal Public Domain Dedication}}. * * The person who associated a work with this deed has dedicated * the work to the public domain by waiving all of his or her rights diff --git a/src/licensedcode/data/rules/cc0-1.0_84.RULE b/src/licensedcode/data/rules/cc0-1.0_84.RULE index 146c4ba7f1..27a088da32 100644 --- a/src/licensedcode/data/rules/cc0-1.0_84.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_84.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://creativecommons.org/about/cc0 --- -`CC0-1.0` - [Public Domain](https://creativecommons.org/about/cc0/) \ No newline at end of file +`{{CC0-1.0` - [Public Domain]}}(https://creativecommons.org/about/cc0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_86.RULE b/src/licensedcode/data/rules/cc0-1.0_86.RULE index 894ee1d1f8..75047f7af4 100644 --- a/src/licensedcode/data/rules/cc0-1.0_86.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_86.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the CC0 Public Domain Dedication license. \ No newline at end of file +Licensed under the {{CC0 Public Domain Dedication}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_93.RULE b/src/licensedcode/data/rules/cc0-1.0_93.RULE index c22da6555c..0cb0696a90 100644 --- a/src/licensedcode/data/rules/cc0-1.0_93.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_93.RULE @@ -1,6 +1,7 @@ --- license_expression: cc0-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - https://creativecommons.org/publicdomain/zero/1.0/ diff --git a/src/licensedcode/data/rules/cc0-1.0_97.RULE b/src/licensedcode/data/rules/cc0-1.0_97.RULE index 628e7f02a3..d477bd3399 100644 --- a/src/licensedcode/data/rules/cc0-1.0_97.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_97.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This file is made available under the Creative Commons CC0 1.0 -Universal Public Domain Dedication. \ No newline at end of file +This file is made available under the {{Creative Commons CC0 1.0 +Universal Public Domain Dedication}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_98.RULE b/src/licensedcode/data/rules/cc0-1.0_98.RULE index fa4077f932..23b8059220 100644 --- a/src/licensedcode/data/rules/cc0-1.0_98.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_98.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -the Creative Commons CC0 1.0 -Universal Public Domain Dedication. \ No newline at end of file +the {{Creative Commons CC0 1.0 +Universal Public Domain Dedication}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_99.RULE b/src/licensedcode/data/rules/cc0-1.0_99.RULE index 4d36ef2959..b4d3c3c5a4 100644 --- a/src/licensedcode/data/rules/cc0-1.0_99.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_99.RULE @@ -12,8 +12,8 @@ To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. . - You should have received a copy of the CC0 Public Domain Dedication along with + You should have received a copy of the {{CC0 Public Domain Dedication}} along with this software. If not, see . . - On Debian systems, the complete text of the CC0 1.0 Universal license can be + On Debian systems, the complete text of the {{CC0 1.0 Universal license}} can be found in ‘/usr/share/common-licenses/CC0-1.0’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_data.RULE b/src/licensedcode/data/rules/cc0-1.0_data.RULE index 6441aad398..90722e6da9 100644 --- a/src/licensedcode/data/rules/cc0-1.0_data.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_data.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- The ScanCode includes datasets (e.g. for license detection) that are dedicated -to the Public Domain using the Creative Commons CC0 1.0 Universal (CC0 1.0) -Public Domain Dedication: http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file +to the Public Domain using the Creative Commons {{CC0 1.0 Universal (CC0 1.0) +Public Domain Dedication}}: http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_data2.RULE b/src/licensedcode/data/rules/cc0-1.0_data2.RULE index 2045ff52b3..95c22797cc 100644 --- a/src/licensedcode/data/rules/cc0-1.0_data2.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_data2.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://creativecommons.org/publicdomain/zero/1.0/ --- -dedicated to the Public Domain using the Creative Commons CC0 1.0 Universal (CC0 1.0) -Public Domain Dedication: http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file +dedicated to the Public Domain using the Creative Commons {{CC0 1.0 Universal (CC0 1.0) +Public Domain Dedication}}: http://creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_1.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_1.RULE new file mode 100644 index 0000000000..91ad46697c --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_1.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Creative Commons CC0 1.0 Universal Public Domain Dedication \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_10.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_10.RULE new file mode 100644 index 0000000000..86935d1a02 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_10.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +CC0-1.0` - [Public Domain] \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_11.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_11.RULE new file mode 100644 index 0000000000..773c4c5137 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_11.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Creative Commons 0 1.0 Universal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_12.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_12.RULE new file mode 100644 index 0000000000..dd3b2ee5e0 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_12.RULE @@ -0,0 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/CC0-1.0 +--- + +/usr/share/common-licenses/CC0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_13.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_13.RULE new file mode 100644 index 0000000000..7ddda21e4a --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_13.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Creative Commons CC0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_14.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_14.RULE new file mode 100644 index 0000000000..27ac124c67 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_14.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +CC0 1.0 Universal (CC0 1.0) Public Domain Dedication \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_15.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_15.RULE new file mode 100644 index 0000000000..5ed16f35ca --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_15.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +CC0 Universal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_16.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_16.RULE new file mode 100644 index 0000000000..50e62c6225 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_16.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Public Domian (Creative Commons CC0 1.0 Universal \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_17.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_17.RULE new file mode 100644 index 0000000000..c5b86c91a4 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_17.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +CC0 1.0 Universal (1.0), Public Domain Dedication \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_18.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_18.RULE new file mode 100644 index 0000000000..ca32e243e8 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_18.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Creative Commons Zero (CC0) 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_19.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_19.RULE new file mode 100644 index 0000000000..69cf2e0753 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_19.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +CC0 1.0) Public Domain Dedication +license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_2.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_2.RULE new file mode 100644 index 0000000000..657c7702d0 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_2.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +Creative Commons [CC0 1.0][cc0] Public Domain Dedication. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_20.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_20.RULE new file mode 100644 index 0000000000..c9b0c0d113 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_20.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +license +is the Creative Commons CC0 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_21.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_21.RULE new file mode 100644 index 0000000000..37481ac488 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_21.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +Licensed under CC0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_22.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_22.RULE new file mode 100644 index 0000000000..3ca40e0801 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_22.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +Distributed under CC0-1.0 License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_23.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_23.RULE new file mode 100644 index 0000000000..b1ebc0573d --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_23.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +license is Creative Commons CC0 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_24.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_24.RULE new file mode 100644 index 0000000000..a936e38eae --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_24.RULE @@ -0,0 +1,10 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - http://www.creativecommons.org/publicdomain/zero/1.0/ +--- + +http://www.creativecommons.org/publicdomain/zero/1.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_3.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_3.RULE new file mode 100644 index 0000000000..e91a1bef44 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_3.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +CC0 1.0 Universal license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_4.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_4.RULE new file mode 100644 index 0000000000..e0318feb10 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_4.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under a Creative Commons Zero (CC0) 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_5.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_5.RULE new file mode 100644 index 0000000000..bc933597a4 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_5.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Creative Commons CC0 1.0 + License \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_6.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_6.RULE new file mode 100644 index 0000000000..0be984fa10 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_6.RULE @@ -0,0 +1,9 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Creative Commons CC0 1.0 + Universal license \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_7.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_7.RULE new file mode 100644 index 0000000000..c892358057 --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_7.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +CC0 1.0 Universal CC0 1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_8.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_8.RULE new file mode 100644 index 0000000000..968f6ec89c --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +CC0 Public Domain Dedication \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_required_phrase_9.RULE b/src/licensedcode/data/rules/cc0-1.0_required_phrase_9.RULE new file mode 100644 index 0000000000..614bf8892b --- /dev/null +++ b/src/licensedcode/data/rules/cc0-1.0_required_phrase_9.RULE @@ -0,0 +1,8 @@ +--- +license_expression: cc0-1.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +CC0 1.0 Universal public domain dedication \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_url_badge.RULE b/src/licensedcode/data/rules/cc0-1.0_url_badge.RULE index 51c23c8f5d..7cf14568f5 100644 --- a/src/licensedcode/data/rules/cc0-1.0_url_badge.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_url_badge.RULE @@ -5,4 +5,4 @@ ignorable_urls: - http://creativecommons.org/publicdomain/zero/1.0 --- -[![License: CC0-1.0](https://licensebuttons.net/l/zero/1.0/80x15.png)](http://creativecommons.org/publicdomain/zero/1.0/) \ No newline at end of file +[![{{License: CC0-1.0}}](https://licensebuttons.net/l/zero/1.0/80x15.png)](http://creativecommons.org/publicdomain/zero/1.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_url_badge_1.RULE b/src/licensedcode/data/rules/cc0-1.0_url_badge_1.RULE index 2bc5b9fe69..4e32aee1de 100644 --- a/src/licensedcode/data/rules/cc0-1.0_url_badge_1.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_url_badge_1.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://img.shields.io/badge/License-CC0%201.0-lightgrey.svg --- -[![License: CC0-1.0](https://img.shields.io/badge/License-CC0%201.0-lightgrey.svg)](http://creativecommons.org/publicdomain/zero/1.0/) \ No newline at end of file +[![{{License: CC0-1.0}}](https://img.shields.io/badge/License-CC0%201.0-lightgrey.svg)](http://creativecommons.org/publicdomain/zero/1.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_us_gov.RULE b/src/licensedcode/data/rules/cc0-1.0_us_gov.RULE index 3aa0d90b33..62f7c2e131 100644 --- a/src/licensedcode/data/rules/cc0-1.0_us_gov.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_us_gov.RULE @@ -6,4 +6,4 @@ is_license_notice: yes This Work was prepared by a United States Government employee and, therefore, is excluded from copyright by Section 105 of the Copyright Act of 1976. Copyright and Related Rights in the Work worldwide are waived through the -CC0 1.0 Universal license. \ No newline at end of file +{{CC0 1.0 Universal license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cc0-1.0_us_govt.RULE b/src/licensedcode/data/rules/cc0-1.0_us_govt.RULE index 0b9ba17c02..168d32154a 100644 --- a/src/licensedcode/data/rules/cc0-1.0_us_govt.RULE +++ b/src/licensedcode/data/rules/cc0-1.0_us_govt.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- SPDXVersion: SPDX-2.1 -DataLicense: CC0-1.0 +{{DataLicense: CC0-1.0}} SPDXID: SPDXRef-LICENSE DocumentName: LICENSE DocumentNamespace: https://github.com/iadgov/Connectivity-Tester @@ -16,9 +16,9 @@ Created: 2017-12-22T13:00:00Z PackageName: ConnectivityTester PackageSupplier: National Security Agency PackageDownloadLocation: https://github.com/iadgov/Connectivity-Tester/archive/master.zip -PackageLicenseConcluded: CC0-1.0 +PackageLicenseConcluded: {{CC0-1.0}} PackageHomePage: https://github.com/iadgov/Connectivity-Tester -PackageLicenseDeclared: CC0-1.0 -PackageLicenseComments: This Work was prepared by a United States Government employee and, therefore, is excluded from copyright by Section 105 of the Copyright Act of 1976. Copyright and Related Rights in the Work worldwide are waived through the CC0 1.0 Universal license. -PackageCopyrightText: This Work was prepared by a United States Government employee and, therefore, is excluded from copyright by Section 105 of the Copyright Act of 1976. Copyright and Related Rights in the Work worldwide are waived through the CC0 1.0 Universal license. +PackageLicenseDeclared: {{CC0-1.0}} +PackageLicenseComments: This Work was prepared by a United States Government employee and, therefore, is excluded from copyright by Section 105 of the Copyright Act of 1976. Copyright and Related Rights in the Work worldwide are waived through the {{CC0 1.0 Universal license}}. +PackageCopyrightText: This Work was prepared by a United States Government employee and, therefore, is excluded from copyright by Section 105 of the Copyright Act of 1976. Copyright and Related Rights in the Work worldwide are waived through the {{CC0 1.0 Universal license}}. PackageSummary: Aids in discovering HTTP and HTTPS connectivity issues. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cclrc_1.RULE b/src/licensedcode/data/rules/cclrc_1.RULE new file mode 100644 index 0000000000..946ef31c9c --- /dev/null +++ b/src/licensedcode/data/rules/cclrc_1.RULE @@ -0,0 +1,10 @@ +--- +license_expression: cclrc +is_license_notice: yes +referenced_filenames: + - External_License/CCLRC_CDAT_License.txt +--- + +* This software may be distributed under the terms of the + * {{CCLRC Licence}} for CCLRC Software + * /External_License/CCLRC_CDAT_License.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/cclrc_2.RULE b/src/licensedcode/data/rules/cclrc_2.RULE new file mode 100644 index 0000000000..ed360a2c09 --- /dev/null +++ b/src/licensedcode/data/rules/cclrc_2.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cclrc +is_license_notice: yes +--- + +* This software may be distributed under the terms of the + * {{CCLRC Licence}} for CCLRC Software \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_15.RULE b/src/licensedcode/data/rules/cddl-1.0_15.RULE index 426b4aabbc..b4c735dd6a 100644 --- a/src/licensedcode/data/rules/cddl-1.0_15.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_15.RULE @@ -3,7 +3,7 @@ license_expression: cddl-1.0 is_license_text: yes --- -COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0 (CDDL-1.0) +{{COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0}} ({{CDDL-1.0}}) 1. Definitions. diff --git a/src/licensedcode/data/rules/cddl-1.0_19.RULE b/src/licensedcode/data/rules/cddl-1.0_19.RULE index b8cd472aad..07a4cc96fa 100644 --- a/src/licensedcode/data/rules/cddl-1.0_19.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_19.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://glassfish.dev.java.net/public/CDDLv1.0.html --- - - CDDL 1.0 +{{ + CDDL 1.0}} https://glassfish.dev.java.net/public/CDDLv1.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_2.RULE b/src/licensedcode/data/rules/cddl-1.0_2.RULE index 8352de565a..0a96c9a762 100644 --- a/src/licensedcode/data/rules/cddl-1.0_2.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_2.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Common Development and Distribution License 1.0 \ No newline at end of file +{{Common Development and Distribution License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_22.RULE b/src/licensedcode/data/rules/cddl-1.0_22.RULE index 00e17bd441..f3410d80ae 100644 --- a/src/licensedcode/data/rules/cddl-1.0_22.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_22.RULE @@ -1,7 +1,8 @@ --- license_expression: cddl-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -License: CDDL-1.0 \ No newline at end of file +License: {{CDDL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_28.RULE b/src/licensedcode/data/rules/cddl-1.0_28.RULE index 4be513c3b8..22a4b5151b 100644 --- a/src/licensedcode/data/rules/cddl-1.0_28.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_28.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- -CDDL 1 +{{CDDL 1}} http://opensource.org/licenses/CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_29.RULE b/src/licensedcode/data/rules/cddl-1.0_29.RULE index a9e1a9e50a..6822901652 100644 --- a/src/licensedcode/data/rules/cddl-1.0_29.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_29.RULE @@ -8,7 +8,7 @@ ignorable_urls: -CDDL 1 +{{CDDL 1}} http://opensource.org/licenses/CDDL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_43.RULE b/src/licensedcode/data/rules/cddl-1.0_43.RULE index 7b58d7d1fa..5d18dbff89 100644 --- a/src/licensedcode/data/rules/cddl-1.0_43.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_43.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -opensource.org/licenses/CDDL-1.0 \ No newline at end of file +opensource.org/licenses/{{CDDL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_44.RULE b/src/licensedcode/data/rules/cddl-1.0_44.RULE index 1aa9af6152..0c999cb7e4 100644 --- a/src/licensedcode/data/rules/cddl-1.0_44.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_44.RULE @@ -1,6 +1,8 @@ --- license_expression: cddl-1.0 is_license_reference: yes +is_required_phrase: yes +is_continuous: yes relevance: 100 ignorable_urls: - https://opensource.org/licenses/CDDL-1.0 diff --git a/src/licensedcode/data/rules/cddl-1.0_48.RULE b/src/licensedcode/data/rules/cddl-1.0_48.RULE index 240e1430c7..5af7900eb0 100644 --- a/src/licensedcode/data/rules/cddl-1.0_48.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_48.RULE @@ -7,8 +7,8 @@ ignorable_urls: - http://opensource.org/licenses/CDDL-1.0 --- -The accompanying software is licensed under the Common Development and -Distribution License, Version 1.0 (CDDL-1.0, the "License"); you may not use +The accompanying software is licensed under the {{Common Development and +Distribution License, Version 1.0}} ({{CDDL-1.0}}, the "License"); you may not use any part of this software except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/cddl-1.0_56.RULE b/src/licensedcode/data/rules/cddl-1.0_56.RULE index 1a98db5f89..7f2732cd17 100644 --- a/src/licensedcode/data/rules/cddl-1.0_56.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_56.RULE @@ -9,7 +9,7 @@ under the Common Development and Distribution License (CDDL). Exceptions are noted within the associated source files. -COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0 +{{COMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0}} 1. Definitions. diff --git a/src/licensedcode/data/rules/cddl-1.0_58.RULE b/src/licensedcode/data/rules/cddl-1.0_58.RULE index 68fddc9dee..b21b6c85e4 100644 --- a/src/licensedcode/data/rules/cddl-1.0_58.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_58.RULE @@ -9,7 +9,7 @@ ignorable_urls: CDDL HEADER START The contents of this file are subject to the terms of the -Common Development and Distribution License, Version 1.0 only +{{Common Development and Distribution License, Version 1.0}} only (the "License"). You may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/cddl-1.0_59.RULE b/src/licensedcode/data/rules/cddl-1.0_59.RULE index 85516958b8..de0b3869fc 100644 --- a/src/licensedcode/data/rules/cddl-1.0_59.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_59.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- The contents of this file are subject to the terms of the -Common Development and Distribution License, Version 1.0 only +{{Common Development and Distribution License, Version 1.0}} only (the "License"). You may not use this file except in compliance with the License. diff --git a/src/licensedcode/data/rules/cddl-1.0_61.RULE b/src/licensedcode/data/rules/cddl-1.0_61.RULE index 2f49bd6e14..f9c18a0d9f 100644 --- a/src/licensedcode/data/rules/cddl-1.0_61.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_61.RULE @@ -15,7 +15,7 @@ Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. The contents of this file are subject to the terms of the -Common Development and Distribution License Version 1.0 (CDDL-1.0). +{{Common Development and Distribution License Version 1.0}} ({{CDDL-1.0}}). You can obtain a copy of the license from the top-level file "OPENSOLARIS.LICENSE" or at . You may not use this file except in compliance with the license. diff --git a/src/licensedcode/data/rules/cddl-1.0_64.RULE b/src/licensedcode/data/rules/cddl-1.0_64.RULE index f40a9e925d..dca4c24eca 100644 --- a/src/licensedcode/data/rules/cddl-1.0_64.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_64.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Driver is licensed under the CDDL 1.0. \ No newline at end of file +Driver is {{licensed under the CDDL 1.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_65.RULE b/src/licensedcode/data/rules/cddl-1.0_65.RULE index 4867c06570..46b2568a69 100644 --- a/src/licensedcode/data/rules/cddl-1.0_65.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_65.RULE @@ -1,7 +1,8 @@ --- license_expression: cddl-1.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -licensed under the CDDL 1.0. \ No newline at end of file +licensed under the {{CDDL 1.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_69.RULE b/src/licensedcode/data/rules/cddl-1.0_69.RULE index 45bd68870b..bfca4194e4 100644 --- a/src/licensedcode/data/rules/cddl-1.0_69.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_69.RULE @@ -3,4 +3,4 @@ license_expression: cddl-1.0 is_license_reference: yes --- -CDDL-1.0 Common Development and Distribution License 1.0 \ No newline at end of file +{{CDDL-1.0}} {{Common Development and Distribution License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_70.RULE b/src/licensedcode/data/rules/cddl-1.0_70.RULE index 777b8f8caf..fabad8472c 100644 --- a/src/licensedcode/data/rules/cddl-1.0_70.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_70.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: Common Development and Distribution License 1.0 \ No newline at end of file +name: {{Common Development and Distribution License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_71.RULE b/src/licensedcode/data/rules/cddl-1.0_71.RULE index d8582d5ece..af0989909f 100644 --- a/src/licensedcode/data/rules/cddl-1.0_71.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_71.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Common Development and Distribution License 1.0 CDDL-1.0 \ No newline at end of file +{{Common Development and Distribution License 1.0}} {{CDDL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_72.RULE b/src/licensedcode/data/rules/cddl-1.0_72.RULE index ba7e1ea2c2..16dd953f25 100644 --- a/src/licensedcode/data/rules/cddl-1.0_72.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_72.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: Common Development and Distribution License 1.0 \ No newline at end of file +license: {{Common Development and Distribution License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_73.RULE b/src/licensedcode/data/rules/cddl-1.0_73.RULE index 2fc4e4fb19..6a6dcf36cb 100644 --- a/src/licensedcode/data/rules/cddl-1.0_73.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_73.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: CDDL-1.0 \ No newline at end of file +licenseId: {{CDDL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_79.RULE b/src/licensedcode/data/rules/cddl-1.0_79.RULE index b2621c1078..2b2e24790c 100644 --- a/src/licensedcode/data/rules/cddl-1.0_79.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_79.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/CDDL-1.0 \ No newline at end of file +licenses.nuget.org/{{CDDL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_90.RULE b/src/licensedcode/data/rules/cddl-1.0_90.RULE index 3f40fc4921..4c3c63e154 100644 --- a/src/licensedcode/data/rules/cddl-1.0_90.RULE +++ b/src/licensedcode/data/rules/cddl-1.0_90.RULE @@ -5,4 +5,4 @@ ignorable_urls: - https://opensource.org/licenses/CDDL-1.0 --- -Common Development and Distribution License 1.0 \ No newline at end of file +{{Common Development and Distribution License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_required_phrase_1.RULE b/src/licensedcode/data/rules/cddl-1.0_required_phrase_1.RULE new file mode 100644 index 0000000000..ca93afe4d8 --- /dev/null +++ b/src/licensedcode/data/rules/cddl-1.0_required_phrase_1.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_tag: yes +is_required_phrase: yes +--- + +license name {{cddl 1 0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_required_phrase_2.RULE b/src/licensedcode/data/rules/cddl-1.0_required_phrase_2.RULE new file mode 100644 index 0000000000..f86b10f753 --- /dev/null +++ b/src/licensedcode/data/rules/cddl-1.0_required_phrase_2.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_tag: yes +is_required_phrase: yes +--- + +common development and distribution license version 1 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_required_phrase_3.RULE b/src/licensedcode/data/rules/cddl-1.0_required_phrase_3.RULE new file mode 100644 index 0000000000..937a9a4ce8 --- /dev/null +++ b/src/licensedcode/data/rules/cddl-1.0_required_phrase_3.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_tag: yes +is_required_phrase: yes +--- + +cddl 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/cddl-1.0_required_phrase_4.RULE b/src/licensedcode/data/rules/cddl-1.0_required_phrase_4.RULE new file mode 100644 index 0000000000..693a546c8b --- /dev/null +++ b/src/licensedcode/data/rules/cddl-1.0_required_phrase_4.RULE @@ -0,0 +1,7 @@ +--- +license_expression: cddl-1.0 +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under {{cddl 1 0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_12.RULE b/src/licensedcode/data/rules/commercial-license_12.RULE index 113d8d3a8d..4b7f9f43d6 100644 --- a/src/licensedcode/data/rules/commercial-license_12.RULE +++ b/src/licensedcode/data/rules/commercial-license_12.RULE @@ -6,4 +6,4 @@ relevance: 100 {{Commercial Licensing}} -For commercial licensing, contact us \ No newline at end of file +For {{commercial licensing}}, contact us \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_21.RULE b/src/licensedcode/data/rules/commercial-license_21.RULE index e6bf1873be..f221197b6f 100644 --- a/src/licensedcode/data/rules/commercial-license_21.RULE +++ b/src/licensedcode/data/rules/commercial-license_21.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Commercial License Usage \ No newline at end of file +{{Commercial License}} Usage \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_22.RULE b/src/licensedcode/data/rules/commercial-license_22.RULE index 7e27f84d78..289d21da9f 100644 --- a/src/licensedcode/data/rules/commercial-license_22.RULE +++ b/src/licensedcode/data/rules/commercial-license_22.RULE @@ -6,9 +6,9 @@ ignorable_urls: - http://www.qt.io/terms-conditions --- -Commercial License Usage +{{Commercial License}} Usage Licensees holding valid commercial Qt licenses may use this file in -accordance with the commercial license agreement provided with the +accordance with the {{commercial license}} agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and The Qt Company. For licensing terms and conditions see http://www.qt.io/terms-conditions. For further diff --git a/src/licensedcode/data/rules/commercial-license_23.RULE b/src/licensedcode/data/rules/commercial-license_23.RULE index 3ca812f03e..98661e968b 100644 --- a/src/licensedcode/data/rules/commercial-license_23.RULE +++ b/src/licensedcode/data/rules/commercial-license_23.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- ** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the +** accordance with the {{commercial license}} agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further diff --git a/src/licensedcode/data/rules/commercial-license_24.RULE b/src/licensedcode/data/rules/commercial-license_24.RULE index f612826107..63aa90f4c4 100644 --- a/src/licensedcode/data/rules/commercial-license_24.RULE +++ b/src/licensedcode/data/rules/commercial-license_24.RULE @@ -6,9 +6,9 @@ ignorable_urls: - https://www.qt.io/terms-conditions --- -** Commercial License Usage +** {{Commercial License}} Usage ** Licensees holding valid commercial Qt licenses may use this file in -** accordance with the commercial license agreement provided with the +** accordance with the {{commercial license}} agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further diff --git a/src/licensedcode/data/rules/commercial-license_29.RULE b/src/licensedcode/data/rules/commercial-license_29.RULE index a7544b08ad..416f5ff52c 100644 --- a/src/licensedcode/data/rules/commercial-license_29.RULE +++ b/src/licensedcode/data/rules/commercial-license_29.RULE @@ -3,6 +3,6 @@ license_expression: commercial-license is_license_notice: yes --- -If you are a commercial software developer and you want to release your software under a different license +If you are a {{commercial software}} developer and you want to release your software under a different license than CC-BY 2.0, you may purchase commercial licenses. By purchasing commercial licenses, we offer you the freedom to choose between the following license models. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_33.RULE b/src/licensedcode/data/rules/commercial-license_33.RULE index ee3d722ba3..f6b14d76a8 100644 --- a/src/licensedcode/data/rules/commercial-license_33.RULE +++ b/src/licensedcode/data/rules/commercial-license_33.RULE @@ -3,9 +3,9 @@ license_expression: commercial-license is_license_text: yes --- -Commercial License +{{Commercial License}} -This license agreement refers to for software - Commercial License. +This license agreement refers to for software - {{Commercial License}}. The Team grants to you a limited, non-transferable and non-exclusive right to use, royalty-free, copy and modify the software. diff --git a/src/licensedcode/data/rules/commercial-license_37.RULE b/src/licensedcode/data/rules/commercial-license_37.RULE index cd3c323006..81261da666 100644 --- a/src/licensedcode/data/rules/commercial-license_37.RULE +++ b/src/licensedcode/data/rules/commercial-license_37.RULE @@ -8,4 +8,4 @@ ignorable_urls: Kendo UI commercial licenses may be obtained at http://www.telerik.com/purchase/license-agreement/kendo-ui-complete -If you do not own a commercial license, this file shall be governed by the trial license terms. \ No newline at end of file +If you do not own a {{commercial license}}, this file shall be governed by the trial license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_38.RULE b/src/licensedcode/data/rules/commercial-license_38.RULE index 6542be2690..8263048f97 100644 --- a/src/licensedcode/data/rules/commercial-license_38.RULE +++ b/src/licensedcode/data/rules/commercial-license_38.RULE @@ -4,7 +4,7 @@ is_license_text: yes relevance: 100 --- -EGENIX.COM COMMERCIAL LICENSE AGREEMENT VERSION 1.0.0 +EGENIX.COM {{COMMERCIAL LICENSE}} AGREEMENT VERSION 1.0.0 1. Introduction @@ -156,4 +156,4 @@ The controlling language of this License Agreement is English. If Licensee has r By downloading, copying, installing or otherwise using the Software, Licensee agrees to be bound by the terms and conditions of this License Agreement. -For question regarding this license agreement, please write to: +For question regarding this license agreement, please write to: \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_39.RULE b/src/licensedcode/data/rules/commercial-license_39.RULE index 653e30c118..28dae5626d 100644 --- a/src/licensedcode/data/rules/commercial-license_39.RULE +++ b/src/licensedcode/data/rules/commercial-license_39.RULE @@ -6,13 +6,13 @@ relevance: 100 Redistribution -eGenix.com hereby authorizes Licensee to redistribute the Software bundled with a products developed by Licensee on the Developer Installation Targets ("the Product") subject to the terms and conditions of the eGenix.com Commercial License Agreement for installation and use in combination with the Product on the following Redistribution Installation Targets, provided that: +eGenix.com hereby authorizes Licensee to redistribute the Software bundled with a products developed by Licensee on the Developer Installation Targets ("the Product") subject to the terms and conditions of the eGenix.com {{Commercial License}} Agreement for installation and use in combination with the Product on the following Redistribution Installation Targets, provided that: 1) Licensee shall not and shall not permit or assist any third party to sell or distribute the Software as a separate product; 2) Licensee shall not and shall not permit any third party to -(i) market, sell or distribute the Software to any end user except subject to the eGenix Commercial License Agreement, +(i) market, sell or distribute the Software to any end user except subject to the eGenix {{Commercial License}} Agreement, (ii) rent, sell, lease or otherwise transfer the Software or any part thereof or use it for the benefit of any third party, diff --git a/src/licensedcode/data/rules/commercial-license_42.RULE b/src/licensedcode/data/rules/commercial-license_42.RULE index f68253540c..36d074647a 100644 --- a/src/licensedcode/data/rules/commercial-license_42.RULE +++ b/src/licensedcode/data/rules/commercial-license_42.RULE @@ -70,10 +70,10 @@ set forth herein and strictly limited to the number of users as defined here. The Licensed Products are free to use by Licensor in any organization, commercial or non-commercial, according to this License Agreement for up to, but not exceeding, 25 (twenty five) -distinct users. Any other use requires a Commercial License +distinct users. Any other use requires a {{Commercial License}} Agreement which may grant in its sole discretion. -Licensors with a Commercial License agreement can subscribe to +Licensors with a {{Commercial License}} agreement can subscribe to Maintenance and Support services to periodically receive updated versions of the Licensed Products, get access to support services (web, e-mail and telephone) and receive updated signed versions of diff --git a/src/licensedcode/data/rules/commercial-license_43.RULE b/src/licensedcode/data/rules/commercial-license_43.RULE index 6d4c011dfe..3a6d2d8275 100644 --- a/src/licensedcode/data/rules/commercial-license_43.RULE +++ b/src/licensedcode/data/rules/commercial-license_43.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -provides a commercial license \ No newline at end of file +provides a {{commercial license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_44.RULE b/src/licensedcode/data/rules/commercial-license_44.RULE index 08cadf718b..4e0d347469 100644 --- a/src/licensedcode/data/rules/commercial-license_44.RULE +++ b/src/licensedcode/data/rules/commercial-license_44.RULE @@ -10,4 +10,4 @@ ignorable_urls: Sidekiq Pro has a commercial-friendly license allowing private forks and modifications of Sidekiq. Please see https://sidekiq.org/products/pro.html for -more detail. You can find the commercial license terms in COMM-LICENSE. \ No newline at end of file +more detail. You can find the {{commercial license}} terms in COMM-LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_45.RULE b/src/licensedcode/data/rules/commercial-license_45.RULE index 5901d05507..319e616983 100644 --- a/src/licensedcode/data/rules/commercial-license_45.RULE +++ b/src/licensedcode/data/rules/commercial-license_45.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -If you need a commercial license, please contact us. \ No newline at end of file +If you need a {{commercial license}}, please contact us. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_58.RULE b/src/licensedcode/data/rules/commercial-license_58.RULE index 77927bee0d..b575d1e898 100644 --- a/src/licensedcode/data/rules/commercial-license_58.RULE +++ b/src/licensedcode/data/rules/commercial-license_58.RULE @@ -6,4 +6,4 @@ relevance: 100 ## License -This is commercial software. \ No newline at end of file +This is {{commercial software}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_59.RULE b/src/licensedcode/data/rules/commercial-license_59.RULE index 3db0e90feb..3c6760f4b5 100644 --- a/src/licensedcode/data/rules/commercial-license_59.RULE +++ b/src/licensedcode/data/rules/commercial-license_59.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- License -This is commercial software. To use it, you need to agree to the -[**End User License Agreement for Progress KendoReact**](https://www.telerik.com/purchase/license-agreement/progress-kendoreact). If you do not own a commercial license, this file shall be governed by the trial license terms. \ No newline at end of file +This is {{commercial software}}. To use it, you need to {{agree to the +[**End User License Agreement}} for Progress KendoReact**](https://www.telerik.com/purchase/license-agreement/progress-kendoreact). If you do not own a {{commercial license}}, this file shall be governed by the trial license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_60.RULE b/src/licensedcode/data/rules/commercial-license_60.RULE index b7b60b2eb4..a5b8b14da6 100644 --- a/src/licensedcode/data/rules/commercial-license_60.RULE +++ b/src/licensedcode/data/rules/commercial-license_60.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This is commercial software. \ No newline at end of file +This is {{commercial software}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_61.RULE b/src/licensedcode/data/rules/commercial-license_61.RULE index 2e4a5891ca..42c6af0df4 100644 --- a/src/licensedcode/data/rules/commercial-license_61.RULE +++ b/src/licensedcode/data/rules/commercial-license_61.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This is commercial software. To use it, you need to agree to the -[**End User License Agreement \ No newline at end of file +This is {{commercial software}}. To use it, you need to {{agree to the +[**End User License Agreement}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_62.RULE b/src/licensedcode/data/rules/commercial-license_62.RULE index c43e3c655d..66acfa3cdd 100644 --- a/src/licensedcode/data/rules/commercial-license_62.RULE +++ b/src/licensedcode/data/rules/commercial-license_62.RULE @@ -5,5 +5,5 @@ relevance: 100 --- License -This is commercial software. To use it, you need to agree to the -[**End User License Agreement \ No newline at end of file +This is {{commercial software}}. To use it, you need to {{agree to the +[**End User License Agreement}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_63.RULE b/src/licensedcode/data/rules/commercial-license_63.RULE index 01bf2b2e91..88dc7673ee 100644 --- a/src/licensedcode/data/rules/commercial-license_63.RULE +++ b/src/licensedcode/data/rules/commercial-license_63.RULE @@ -5,5 +5,5 @@ relevance: 100 --- License -This is commercial software. To use it, you need to agree to the End User License Agreement . If you do not own a commercial license, this file shall be governed by the trial license terms. +This is {{commercial software}}. To use it, you need to {{agree to the End User License Agreement}} . If you do not own a {{commercial license}}, this file shall be governed by the trial license terms. All available commercial licenses may be obtained at \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_65.RULE b/src/licensedcode/data/rules/commercial-license_65.RULE index ce6e58c38a..c89ac8ef45 100644 --- a/src/licensedcode/data/rules/commercial-license_65.RULE +++ b/src/licensedcode/data/rules/commercial-license_65.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This file may be licensed under the terms of the Labs Commercial -License Agreement. \ No newline at end of file +This file may be licensed under the terms of the Labs {{Commercial +License}} Agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_66.RULE b/src/licensedcode/data/rules/commercial-license_66.RULE index 565a804c92..02b9f636b8 100644 --- a/src/licensedcode/data/rules/commercial-license_66.RULE +++ b/src/licensedcode/data/rules/commercial-license_66.RULE @@ -6,7 +6,7 @@ ignorable_authors: - Labs --- -This file is licensed under the terms of the Labs' Commercial License +This file is licensed under the terms of the Labs' {{Commercial License}} Agreement distributed with the file or available on the software download site. Recipient shall use the content of this file only on semiconductor devices or systems developed by or for Labs. diff --git a/src/licensedcode/data/rules/commercial-license_69.RULE b/src/licensedcode/data/rules/commercial-license_69.RULE index 9446f1e6c3..d2e6f38588 100644 --- a/src/licensedcode/data/rules/commercial-license_69.RULE +++ b/src/licensedcode/data/rules/commercial-license_69.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under a commercial license \ No newline at end of file +licensed under a {{commercial license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_70.RULE b/src/licensedcode/data/rules/commercial-license_70.RULE index 1dbd3ecb2a..592805cc88 100644 --- a/src/licensedcode/data/rules/commercial-license_70.RULE +++ b/src/licensedcode/data/rules/commercial-license_70.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -require a commercial license to be used in a commercial business. \ No newline at end of file +require a {{commercial license}} to be used in a commercial business. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_71.RULE b/src/licensedcode/data/rules/commercial-license_71.RULE index 1a69df75c5..7037f5ccf4 100644 --- a/src/licensedcode/data/rules/commercial-license_71.RULE +++ b/src/licensedcode/data/rules/commercial-license_71.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -require a commercial license to be used \ No newline at end of file +require a {{commercial license}} to be used \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_73.RULE b/src/licensedcode/data/rules/commercial-license_73.RULE index 555c6ff7b0..bf98750af3 100644 --- a/src/licensedcode/data/rules/commercial-license_73.RULE +++ b/src/licensedcode/data/rules/commercial-license_73.RULE @@ -5,7 +5,7 @@ relevance: 100 --- * NOTICE OF LICENSE -* This source file is subject to a commercial license from +* This source file is subject to a {{commercial license}} from * Use, copy, modification or distribution of this source file without written * license agreement from the ecommence is strictly forbidden. * In order to obtain a license, please contact us: \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_74.RULE b/src/licensedcode/data/rules/commercial-license_74.RULE index 6c1debd5e0..0ecb081bb2 100644 --- a/src/licensedcode/data/rules/commercial-license_74.RULE +++ b/src/licensedcode/data/rules/commercial-license_74.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -* This source file is subject to a commercial license +* This source file is subject to a {{commercial license}} * \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_75.RULE b/src/licensedcode/data/rules/commercial-license_75.RULE index 89184cb5b4..8d956ceb05 100644 --- a/src/licensedcode/data/rules/commercial-license_75.RULE +++ b/src/licensedcode/data/rules/commercial-license_75.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -* This source file is subject to a commercial license from +* This source file is subject to a {{commercial license}} from * Use, copy, modification or distribution of this source file without written * license agreement from the is strictly forbidden. * In order to obtain a license, please contact us: \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_87.RULE b/src/licensedcode/data/rules/commercial-license_87.RULE index 8ac0634350..8023eae587 100644 --- a/src/licensedcode/data/rules/commercial-license_87.RULE +++ b/src/licensedcode/data/rules/commercial-license_87.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the Commercial Software License. \ No newline at end of file +released under the {{Commercial Software}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_88.RULE b/src/licensedcode/data/rules/commercial-license_88.RULE index 688d4fdb02..544993fdf9 100644 --- a/src/licensedcode/data/rules/commercial-license_88.RULE +++ b/src/licensedcode/data/rules/commercial-license_88.RULE @@ -3,4 +3,4 @@ license_expression: commercial-license is_license_notice: yes --- -you may distribute under the terms of commercial license, that allows you to distribute private forks and modifications. \ No newline at end of file +you may distribute under the terms of {{commercial license}}, that allows you to distribute private forks and modifications. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_89.RULE b/src/licensedcode/data/rules/commercial-license_89.RULE index 68794c511d..6767057b4f 100644 --- a/src/licensedcode/data/rules/commercial-license_89.RULE +++ b/src/licensedcode/data/rules/commercial-license_89.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the terms of commercial license \ No newline at end of file +under the terms of {{commercial license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_92.RULE b/src/licensedcode/data/rules/commercial-license_92.RULE index 0fe62d5744..1901c5e7c5 100644 --- a/src/licensedcode/data/rules/commercial-license_92.RULE +++ b/src/licensedcode/data/rules/commercial-license_92.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -* Commercial license +* {{Commercial license}} * You can buy a license key on the following site: \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_93.RULE b/src/licensedcode/data/rules/commercial-license_93.RULE index c21386a12e..2bf7d87cc0 100644 --- a/src/licensedcode/data/rules/commercial-license_93.RULE +++ b/src/licensedcode/data/rules/commercial-license_93.RULE @@ -5,5 +5,5 @@ is_license_notice: yes # License -Some parts of this extension is under a commercial license. +Some parts of this extension is under a {{commercial license}}. You can buy a license key on the following site: \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_94.RULE b/src/licensedcode/data/rules/commercial-license_94.RULE index 839f14537d..2a927f3e98 100644 --- a/src/licensedcode/data/rules/commercial-license_94.RULE +++ b/src/licensedcode/data/rules/commercial-license_94.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -this extension is under a commercial license. \ No newline at end of file +this extension is under a {{commercial license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_95.RULE b/src/licensedcode/data/rules/commercial-license_95.RULE index 2fa6de6f15..a6267bf5d8 100644 --- a/src/licensedcode/data/rules/commercial-license_95.RULE +++ b/src/licensedcode/data/rules/commercial-license_95.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -this is under a commercial license. \ No newline at end of file +this is under a {{commercial license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_96.RULE b/src/licensedcode/data/rules/commercial-license_96.RULE index be6b93b3ec..5d13b4bedc 100644 --- a/src/licensedcode/data/rules/commercial-license_96.RULE +++ b/src/licensedcode/data/rules/commercial-license_96.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is under a commercial license. \ No newline at end of file +is under a {{commercial license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-license_98.RULE b/src/licensedcode/data/rules/commercial-license_98.RULE index b682816b44..9780f9de24 100644 --- a/src/licensedcode/data/rules/commercial-license_98.RULE +++ b/src/licensedcode/data/rules/commercial-license_98.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Note: this software requires a commercial license \ No newline at end of file +Note: this software requires a {{commercial license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/commercial-option_33.RULE b/src/licensedcode/data/rules/commercial-option_33.RULE index 630a795081..c6008adbf6 100644 --- a/src/licensedcode/data/rules/commercial-option_33.RULE +++ b/src/licensedcode/data/rules/commercial-option_33.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -commercial license agreement \ No newline at end of file +{{commercial license}} agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/commons-clause_10.RULE b/src/licensedcode/data/rules/commons-clause_10.RULE index a5415c1f1a..301f4944fd 100644 --- a/src/licensedcode/data/rules/commons-clause_10.RULE +++ b/src/licensedcode/data/rules/commons-clause_10.RULE @@ -2,6 +2,7 @@ license_expression: commons-clause is_license_reference: yes relevance: 100 +is_required_phrase: yes --- -“Commons Clause” License \ No newline at end of file +“Commons Clause” License diff --git a/src/licensedcode/data/rules/commons-clause_3.RULE b/src/licensedcode/data/rules/commons-clause_3.RULE index 7711397312..133cbdaa9a 100644 --- a/src/licensedcode/data/rules/commons-clause_3.RULE +++ b/src/licensedcode/data/rules/commons-clause_3.RULE @@ -3,7 +3,7 @@ license_expression: commons-clause is_license_text: yes --- -"Commons Clause" License Condition +"Commons Clause" License Condition The Software is provided to you by the Licensor under the License, as defined below, subject to the following condition. Without limiting diff --git a/src/licensedcode/data/rules/commons-clause_5.RULE b/src/licensedcode/data/rules/commons-clause_5.RULE index d20e7abacb..ef0628777e 100644 --- a/src/licensedcode/data/rules/commons-clause_5.RULE +++ b/src/licensedcode/data/rules/commons-clause_5.RULE @@ -1,7 +1,6 @@ --- license_expression: commons-clause is_license_text: yes -relevance: 100 --- “Commons Clause” License Condition v1.0 diff --git a/src/licensedcode/data/rules/commons-clause_6.RULE b/src/licensedcode/data/rules/commons-clause_6.RULE index 45b3fd8e6b..6901eb3c95 100644 --- a/src/licensedcode/data/rules/commons-clause_6.RULE +++ b/src/licensedcode/data/rules/commons-clause_6.RULE @@ -2,6 +2,7 @@ license_expression: commons-clause is_license_reference: yes relevance: 100 +is_required_phrase: yes --- -Commons Clause \ No newline at end of file +Commons Clause diff --git a/src/licensedcode/data/rules/commons-clause_7.RULE b/src/licensedcode/data/rules/commons-clause_7.RULE index 626d64b8e1..92958a4e13 100644 --- a/src/licensedcode/data/rules/commons-clause_7.RULE +++ b/src/licensedcode/data/rules/commons-clause_7.RULE @@ -12,4 +12,4 @@ the foregoing, “Sell” means practicing any or all of the rights granted to y under the License to provide to third parties, for a fee or other consideration, a product or service that consists, entirely or substantially, of the Software or the functionality of the Software. Any license notice or attribution required -by the License must also include this Commons Cause License Condition notice. \ No newline at end of file +by the License must also include this {{Commons Cause License Condition}} notice. diff --git a/src/licensedcode/data/rules/commons-clause_8.RULE b/src/licensedcode/data/rules/commons-clause_8.RULE index 836eccddd7..9284c98fc0 100644 --- a/src/licensedcode/data/rules/commons-clause_8.RULE +++ b/src/licensedcode/data/rules/commons-clause_8.RULE @@ -2,6 +2,7 @@ license_expression: commons-clause is_license_reference: yes relevance: 100 +is_required_phrase: yes --- -“Commons Clause” License Condition v1.0 \ No newline at end of file +“Commons Clause” License Condition v1.0 diff --git a/src/licensedcode/data/rules/commons-clause_9.RULE b/src/licensedcode/data/rules/commons-clause_9.RULE index 2dd04bd606..92c25707db 100644 --- a/src/licensedcode/data/rules/commons-clause_9.RULE +++ b/src/licensedcode/data/rules/commons-clause_9.RULE @@ -2,6 +2,7 @@ license_expression: commons-clause is_license_reference: yes relevance: 100 +is_required_phrase: yes --- -“Commons Clause” License Condition \ No newline at end of file +“Commons Clause” License Condition diff --git a/src/licensedcode/data/rules/debian_common_apache-2.0-plus.RULE b/src/licensedcode/data/rules/debian_common_apache-2.0-plus.RULE index 5b92e12783..b615146610 100644 --- a/src/licensedcode/data/rules/debian_common_apache-2.0-plus.RULE +++ b/src/licensedcode/data/rules/debian_common_apache-2.0-plus.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: apache-2.0+ \ No newline at end of file +{{License: apache-2}}.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/debian_common_mpl-1.1-plus.RULE b/src/licensedcode/data/rules/debian_common_mpl-1.1-plus.RULE index 4953b5cff9..3134e1bcf5 100644 --- a/src/licensedcode/data/rules/debian_common_mpl-1.1-plus.RULE +++ b/src/licensedcode/data/rules/debian_common_mpl-1.1-plus.RULE @@ -1,7 +1,8 @@ --- license_expression: mpl-1.1 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -License: mpl-1.1+ \ No newline at end of file +License: {{mpl-1.1+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_1.RULE b/src/licensedcode/data/rules/epl-1.0_1.RULE index 9171003f50..01a7f108c3 100644 --- a/src/licensedcode/data/rules/epl-1.0_1.RULE +++ b/src/licensedcode/data/rules/epl-1.0_1.RULE @@ -1,7 +1,9 @@ --- license_expression: epl-1.0 is_license_reference: yes +is_required_phrase: yes +is_continuous: yes relevance: 100 --- -Eclipse Public License 1.0 \ No newline at end of file +{{Eclipse Public License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_100.RULE b/src/licensedcode/data/rules/epl-1.0_100.RULE index 2c8c767d6c..0044f0dabe 100644 --- a/src/licensedcode/data/rules/epl-1.0_100.RULE +++ b/src/licensedcode/data/rules/epl-1.0_100.RULE @@ -8,7 +8,7 @@ ignorable_urls: License -The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at https://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. +The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the {{Eclipse Public License Version 1.0}} ("EPL"). A copy of the EPL is available at https://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at http://www.eclipse.org. http://www.eclipse.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_101.RULE b/src/licensedcode/data/rules/epl-1.0_101.RULE index cd45da61e2..cd603d3961 100644 --- a/src/licensedcode/data/rules/epl-1.0_101.RULE +++ b/src/licensedcode/data/rules/epl-1.0_101.RULE @@ -8,6 +8,6 @@ ignorable_urls: License -The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at https://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. +The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the {{Eclipse Public License Version 1.0}} ("EPL"). A copy of the EPL is available at https://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at http://www.eclipse.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_102.RULE b/src/licensedcode/data/rules/epl-1.0_102.RULE index 0007654f38..b93848dc3c 100644 --- a/src/licensedcode/data/rules/epl-1.0_102.RULE +++ b/src/licensedcode/data/rules/epl-1.0_102.RULE @@ -8,7 +8,7 @@ ignorable_urls: License -The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at https://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. +The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the {{Eclipse Public License Version 1.0}} ("EPL"). A copy of the EPL is available at https://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at https://www.eclipse.org. https://www.eclipse.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_103.RULE b/src/licensedcode/data/rules/epl-1.0_103.RULE index 3c11db168e..ed823d3ac6 100644 --- a/src/licensedcode/data/rules/epl-1.0_103.RULE +++ b/src/licensedcode/data/rules/epl-1.0_103.RULE @@ -8,6 +8,6 @@ ignorable_urls: License -The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at https://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. +The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the {{Eclipse Public License Version 1.0}} ("EPL"). A copy of the EPL is available at https://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at https://www.eclipse.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_104.RULE b/src/licensedcode/data/rules/epl-1.0_104.RULE index 7fe14d123f..6b462f114c 100644 --- a/src/licensedcode/data/rules/epl-1.0_104.RULE +++ b/src/licensedcode/data/rules/epl-1.0_104.RULE @@ -10,7 +10,7 @@ License The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the -Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available +{{Eclipse Public License Version 1.0}} ("EPL"). A copy of the EPL is available at https://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. diff --git a/src/licensedcode/data/rules/epl-1.0_105.RULE b/src/licensedcode/data/rules/epl-1.0_105.RULE index f955379c20..c6d0e9db31 100644 --- a/src/licensedcode/data/rules/epl-1.0_105.RULE +++ b/src/licensedcode/data/rules/epl-1.0_105.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.eclipse.org/legal/epl-v10.html/ --- -code is subject to the terms and conditions of the Eclipse Public License 1.0 available +code is subject to the terms and conditions of the {{Eclipse Public License 1.0}} available at https://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_106.RULE b/src/licensedcode/data/rules/epl-1.0_106.RULE index 8fedaa331a..3eaf7d22c7 100644 --- a/src/licensedcode/data/rules/epl-1.0_106.RULE +++ b/src/licensedcode/data/rules/epl-1.0_106.RULE @@ -6,4 +6,4 @@ ignorable_urls: --- code is subject to the terms and conditions -of the Eclipse Public License Version 1.0, available at http://www.eclipse.org/legal/epl-v10.html. \ No newline at end of file +of the {{Eclipse Public License Version 1.0}}, available at http://www.eclipse.org/legal/epl-v10.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_108.RULE b/src/licensedcode/data/rules/epl-1.0_108.RULE index a576b069bc..133653bce2 100644 --- a/src/licensedcode/data/rules/epl-1.0_108.RULE +++ b/src/licensedcode/data/rules/epl-1.0_108.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- All rights reserved. This program and the accompanying materials -are made available under the terms of the Eclipse Public License v1.0 +are made available under the terms of the {{Eclipse Public License v1.0}} which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_109.RULE b/src/licensedcode/data/rules/epl-1.0_109.RULE index 0bb76408bf..219d9f2a7b 100644 --- a/src/licensedcode/data/rules/epl-1.0_109.RULE +++ b/src/licensedcode/data/rules/epl-1.0_109.RULE @@ -7,7 +7,7 @@ ignorable_urls: - The Eclipse Public License, Version 1.0 + The {{Eclipse Public License, Version 1.0}} https://www.eclipse.org/legal/epl-v10.html repo diff --git a/src/licensedcode/data/rules/epl-1.0_110.RULE b/src/licensedcode/data/rules/epl-1.0_110.RULE index 6ce02d9bca..12e7c5e869 100644 --- a/src/licensedcode/data/rules/epl-1.0_110.RULE +++ b/src/licensedcode/data/rules/epl-1.0_110.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- - The Eclipse Public License, Version 1.0 + The {{Eclipse Public License, Version 1.0}} https://www.eclipse.org/legal/epl-v10.html repo \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_111.RULE b/src/licensedcode/data/rules/epl-1.0_111.RULE index b0723974db..a42e0aeb8b 100644 --- a/src/licensedcode/data/rules/epl-1.0_111.RULE +++ b/src/licensedcode/data/rules/epl-1.0_111.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - The Eclipse Public License, Version 1.0 + The {{Eclipse Public License, Version 1.0}} https://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_112.RULE b/src/licensedcode/data/rules/epl-1.0_112.RULE index a4469c708e..4e9233242b 100644 --- a/src/licensedcode/data/rules/epl-1.0_112.RULE +++ b/src/licensedcode/data/rules/epl-1.0_112.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - The Eclipse Public License, Version 1.0 + The {{Eclipse Public License, Version 1.0}} https://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_113.RULE b/src/licensedcode/data/rules/epl-1.0_113.RULE index d58d1dd259..7724b1a1e9 100644 --- a/src/licensedcode/data/rules/epl-1.0_113.RULE +++ b/src/licensedcode/data/rules/epl-1.0_113.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.eclipse.org/legal/epl-v10.html --- -The Eclipse Public License, Version 1.0 +The {{Eclipse Public License, Version 1.0}} https://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_12.RULE b/src/licensedcode/data/rules/epl-1.0_12.RULE index cf85c1fa16..6fb3bb9bd9 100644 --- a/src/licensedcode/data/rules/epl-1.0_12.RULE +++ b/src/licensedcode/data/rules/epl-1.0_12.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- // This program and the accompanying materials -// are made available under the terms of the Eclipse Public License v1.0 \ No newline at end of file +// are made available under the terms of the {{Eclipse Public License v1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_13.RULE b/src/licensedcode/data/rules/epl-1.0_13.RULE index 8d1a5f430a..3a216bc420 100644 --- a/src/licensedcode/data/rules/epl-1.0_13.RULE +++ b/src/licensedcode/data/rules/epl-1.0_13.RULE @@ -8,6 +8,6 @@ ignorable_urls: --- This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 + * are made available under the terms of the {{Eclipse Public License v1.0}} * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v20.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_14.RULE b/src/licensedcode/data/rules/epl-1.0_14.RULE index 7f87e1ffa3..385156ab38 100644 --- a/src/licensedcode/data/rules/epl-1.0_14.RULE +++ b/src/licensedcode/data/rules/epl-1.0_14.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.eclipse.org/legal/epl-v10.html --- -https://www.eclipse.org/legal/epl-v10.html EPL-1.0 \ No newline at end of file +https://www.eclipse.org/legal/epl-v10.html {{EPL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_15.RULE b/src/licensedcode/data/rules/epl-1.0_15.RULE index 4c01b5ac67..1e0af9b5a1 100644 --- a/src/licensedcode/data/rules/epl-1.0_15.RULE +++ b/src/licensedcode/data/rules/epl-1.0_15.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://choosealicense.com/licenses/epl-1.0 --- -License: [`epl-1.0`](http://choosealicense.com/licenses/epl-1.0/) \ No newline at end of file +{{License: [`epl-1.0}}`](http://choosealicense.com/licenses/epl-1.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_17.RULE b/src/licensedcode/data/rules/epl-1.0_17.RULE index c7194bf7a0..33ac465024 100644 --- a/src/licensedcode/data/rules/epl-1.0_17.RULE +++ b/src/licensedcode/data/rules/epl-1.0_17.RULE @@ -3,7 +3,7 @@ license_expression: epl-1.0 is_license_text: yes --- -The complete text of the Eclipse Public License v1.0 is as follows: +The complete text of the {{Eclipse Public License v1.0}} is as follows: Eclipse Public License - v 1.0 diff --git a/src/licensedcode/data/rules/epl-1.0_18.RULE b/src/licensedcode/data/rules/epl-1.0_18.RULE index 026b723e1e..3e226fc1a6 100644 --- a/src/licensedcode/data/rules/epl-1.0_18.RULE +++ b/src/licensedcode/data/rules/epl-1.0_18.RULE @@ -1,6 +1,7 @@ --- license_expression: epl-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/epl-1.0_19.RULE b/src/licensedcode/data/rules/epl-1.0_19.RULE index cb66ade2c0..fe8e3ab7b0 100644 --- a/src/licensedcode/data/rules/epl-1.0_19.RULE +++ b/src/licensedcode/data/rules/epl-1.0_19.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.eclipse.org/legal/epl-v10.html --- -License: Eclipse Public License, Version 1.0 (http://www.eclipse.org/legal/epl-v10.html \ No newline at end of file +License: {{Eclipse Public License, Version 1.0}} (http://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_2.RULE b/src/licensedcode/data/rules/epl-1.0_2.RULE index 622fa4d847..d1218050a9 100644 --- a/src/licensedcode/data/rules/epl-1.0_2.RULE +++ b/src/licensedcode/data/rules/epl-1.0_2.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 + * are made available under the terms of the {{Eclipse Public License v1.0}} * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_20.RULE b/src/licensedcode/data/rules/epl-1.0_20.RULE index c07b8d7d6b..7b4e471f54 100644 --- a/src/licensedcode/data/rules/epl-1.0_20.RULE +++ b/src/licensedcode/data/rules/epl-1.0_20.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.eclipse.org/org/documents/epl-v10.php --- -License: Eclipse Public License - Version 1.0 (http://www.eclipse.org/org/documents/epl-v10.php \ No newline at end of file +License: {{Eclipse Public License - Version 1.0}} (http://www.eclipse.org/org/documents/epl-v10.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_21.RULE b/src/licensedcode/data/rules/epl-1.0_21.RULE index b9dc5a525c..c87ddab707 100644 --- a/src/licensedcode/data/rules/epl-1.0_21.RULE +++ b/src/licensedcode/data/rules/epl-1.0_21.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- The use and distribution terms for this software are covered by the -Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) +{{Eclipse Public License 1.0}} (http://opensource.org/licenses/eclipse-1.0.php) which can be found in the file epl-v10.html at the root of this distribution. By using this software in any fashion, you are agreeing to be bound by the terms of this license. diff --git a/src/licensedcode/data/rules/epl-1.0_23.RULE b/src/licensedcode/data/rules/epl-1.0_23.RULE index ceae3ce49d..84227a9cf5 100644 --- a/src/licensedcode/data/rules/epl-1.0_23.RULE +++ b/src/licensedcode/data/rules/epl-1.0_23.RULE @@ -1,6 +1,7 @@ --- license_expression: epl-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/epl-1.0_24.RULE b/src/licensedcode/data/rules/epl-1.0_24.RULE index 5ac7497fa5..27e5878742 100644 --- a/src/licensedcode/data/rules/epl-1.0_24.RULE +++ b/src/licensedcode/data/rules/epl-1.0_24.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.eclipse.org/org/documents/epl-v10.php --- -* Licensed under the Eclipse Public License, Version 1.0 (the "License"); +* Licensed under the {{Eclipse Public License, Version 1.0}} (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * diff --git a/src/licensedcode/data/rules/epl-1.0_25.RULE b/src/licensedcode/data/rules/epl-1.0_25.RULE index 1b0ed16dad..9cdd6ee094 100644 --- a/src/licensedcode/data/rules/epl-1.0_25.RULE +++ b/src/licensedcode/data/rules/epl-1.0_25.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.eclipse.org/legal/epl-v10.html --- -// This software is distributed under the terms of the Eclipse Public License v1.0. +// This software is distributed under the terms of the {{Eclipse Public License v1.0}}. // A copy of the license may be obtained at: http://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_26.RULE b/src/licensedcode/data/rules/epl-1.0_26.RULE index c0dcccf744..405c7830bf 100644 --- a/src/licensedcode/data/rules/epl-1.0_26.RULE +++ b/src/licensedcode/data/rules/epl-1.0_26.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -A copy of the Eclipse Public License version 1.0 is provided along +A copy of the {{Eclipse Public License version 1.0}} is provided along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_3.RULE b/src/licensedcode/data/rules/epl-1.0_3.RULE index 65220271b6..67127e3d4f 100644 --- a/src/licensedcode/data/rules/epl-1.0_3.RULE +++ b/src/licensedcode/data/rules/epl-1.0_3.RULE @@ -8,6 +8,6 @@ ignorable_urls: License -The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. +The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the {{Eclipse Public License Version 1.0}} ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. If you did not receive this Content directly from the Eclipse Foundation, the Content is being redistributed by another party ("Redistributor") and different terms and conditions may apply to your use of any object code in the Content. Check the Redistributor's license that was provided with the Content. If no such license exists, contact the Redistributor. Unless otherwise indicated below, the terms and conditions of the EPL still apply to any source code in the Content and such source code may be obtained at http://www.eclipse.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_32.RULE b/src/licensedcode/data/rules/epl-1.0_32.RULE index cbbd098347..8255850e15 100644 --- a/src/licensedcode/data/rules/epl-1.0_32.RULE +++ b/src/licensedcode/data/rules/epl-1.0_32.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/testdata/eclipse_license.txt --- -License: Eclipse Public License v1.0 ([license/third_party/testdata/eclipse_license.txt][eclipse]) \ No newline at end of file +License: {{Eclipse Public License v1.0}} ([license/third_party/testdata/eclipse_license.txt][eclipse]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_33.RULE b/src/licensedcode/data/rules/epl-1.0_33.RULE index d32dcdc09a..05fbc22f3f 100644 --- a/src/licensedcode/data/rules/epl-1.0_33.RULE +++ b/src/licensedcode/data/rules/epl-1.0_33.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/EPL-1.0 --- -Eclipse Public License 1.0 +{{Eclipse Public License 1.0}} https://opensource.org/licenses/EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_34.RULE b/src/licensedcode/data/rules/epl-1.0_34.RULE index 16ca81aef3..4e1488c8cc 100644 --- a/src/licensedcode/data/rules/epl-1.0_34.RULE +++ b/src/licensedcode/data/rules/epl-1.0_34.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opensource.org/licenses/EPL-1.0 --- -Eclipse Public License 1.0 +{{Eclipse Public License 1.0}} http://opensource.org/licenses/EPL-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_37.RULE b/src/licensedcode/data/rules/epl-1.0_37.RULE index a5c77050cc..e5bc54d4dc 100644 --- a/src/licensedcode/data/rules/epl-1.0_37.RULE +++ b/src/licensedcode/data/rules/epl-1.0_37.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -opensource.org/licenses/EPL-1.0 \ No newline at end of file +opensource.org/licenses/{{EPL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_38.RULE b/src/licensedcode/data/rules/epl-1.0_38.RULE index 00ae26d3e7..2cf8253a28 100644 --- a/src/licensedcode/data/rules/epl-1.0_38.RULE +++ b/src/licensedcode/data/rules/epl-1.0_38.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.eclipse.org/legal/epl-v10.html --- -`EPL-1.0` - [Eclipse Public License, Version 1.0](https://www.eclipse.org/legal/epl-v10.html) \ No newline at end of file +`{{EPL-1.0}}` - [{{Eclipse Public License, Version 1.0}}](https://www.eclipse.org/legal/epl-v10.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_43.RULE b/src/licensedcode/data/rules/epl-1.0_43.RULE index b9efe6900a..5ed3f89443 100644 --- a/src/licensedcode/data/rules/epl-1.0_43.RULE +++ b/src/licensedcode/data/rules/epl-1.0_43.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Eclipse Public License Version 1.0 (EPL). \ No newline at end of file +{{Eclipse Public License Version 1.0}} (EPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_44.RULE b/src/licensedcode/data/rules/epl-1.0_44.RULE index b7b4d0d6c2..88f9d29d77 100644 --- a/src/licensedcode/data/rules/epl-1.0_44.RULE +++ b/src/licensedcode/data/rules/epl-1.0_44.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The Eclipse Public License Version 1.0 (EPL). \ No newline at end of file +The {{Eclipse Public License Version 1.0}} (EPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_45.RULE b/src/licensedcode/data/rules/epl-1.0_45.RULE index b098cc1469..b22b5fa3b7 100644 --- a/src/licensedcode/data/rules/epl-1.0_45.RULE +++ b/src/licensedcode/data/rules/epl-1.0_45.RULE @@ -9,7 +9,7 @@ ignorable_urls: --- The SAT4J project makes available all content in this plug-in ("Content"). Your use of the Content is governed by -the terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available at +the terms and conditions of the {{Eclipse Public License Version 1.0}} ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. Alternatively, the Content may be obtained from the SAT4J project website at http://www.sat4j.org/ for use under the terms of either the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), in which case the diff --git a/src/licensedcode/data/rules/epl-1.0_46.RULE b/src/licensedcode/data/rules/epl-1.0_46.RULE index c905fee8a9..8017e2813e 100644 --- a/src/licensedcode/data/rules/epl-1.0_46.RULE +++ b/src/licensedcode/data/rules/epl-1.0_46.RULE @@ -1,7 +1,8 @@ --- license_expression: epl-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Eclipse Public License (EPL) 1.0 \ No newline at end of file +Eclipse Public License ({{EPL) 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_54.RULE b/src/licensedcode/data/rules/epl-1.0_54.RULE index ba19b105b0..f56e039105 100644 --- a/src/licensedcode/data/rules/epl-1.0_54.RULE +++ b/src/licensedcode/data/rules/epl-1.0_54.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- This program and the accompanying materials -are made available under the terms of the Eclipse Public License v1.0 +are made available under the terms of the {{Eclipse Public License v1.0}} which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_55.RULE b/src/licensedcode/data/rules/epl-1.0_55.RULE index 28f170e6a1..e44d128834 100644 --- a/src/licensedcode/data/rules/epl-1.0_55.RULE +++ b/src/licensedcode/data/rules/epl-1.0_55.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The following libraries are licensed under the Eclipse Public License, version 1.0: \ No newline at end of file +The following libraries are licensed under the {{Eclipse Public License, version 1.0}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_56.RULE b/src/licensedcode/data/rules/epl-1.0_56.RULE index f854e1fd93..263681bc40 100644 --- a/src/licensedcode/data/rules/epl-1.0_56.RULE +++ b/src/licensedcode/data/rules/epl-1.0_56.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -libraries are licensed under the Eclipse Public License, version 1.0: \ No newline at end of file +libraries are licensed under the {{Eclipse Public License, version 1.0}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_57.RULE b/src/licensedcode/data/rules/epl-1.0_57.RULE index 3f030aff4e..75951a575d 100644 --- a/src/licensedcode/data/rules/epl-1.0_57.RULE +++ b/src/licensedcode/data/rules/epl-1.0_57.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Eclipse Public License, version 1.0: \ No newline at end of file +licensed under the {{Eclipse Public License, version 1.0}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_58.RULE b/src/licensedcode/data/rules/epl-1.0_58.RULE index a1f8c79233..49ca3c8bbc 100644 --- a/src/licensedcode/data/rules/epl-1.0_58.RULE +++ b/src/licensedcode/data/rules/epl-1.0_58.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The following libraries are licenced under the Eclipse Public License, version 1.0: \ No newline at end of file +The following libraries are licenced under the {{Eclipse Public License, version 1.0}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_59.RULE b/src/licensedcode/data/rules/epl-1.0_59.RULE index 9ae2c95c4f..ab54a96696 100644 --- a/src/licensedcode/data/rules/epl-1.0_59.RULE +++ b/src/licensedcode/data/rules/epl-1.0_59.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -libraries are licenced under the Eclipse Public License, version 1.0: \ No newline at end of file +libraries are licenced under the {{Eclipse Public License, version 1.0}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_6.RULE b/src/licensedcode/data/rules/epl-1.0_6.RULE index 5ce485f498..ecdcdfde5f 100644 --- a/src/licensedcode/data/rules/epl-1.0_6.RULE +++ b/src/licensedcode/data/rules/epl-1.0_6.RULE @@ -1,7 +1,9 @@ --- license_expression: epl-1.0 is_license_reference: yes +is_required_phrase: yes +is_continuous: yes relevance: 100 --- -EPL-1.0 \ No newline at end of file +{{EPL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_60.RULE b/src/licensedcode/data/rules/epl-1.0_60.RULE index 29bdac4fc5..37f34f6392 100644 --- a/src/licensedcode/data/rules/epl-1.0_60.RULE +++ b/src/licensedcode/data/rules/epl-1.0_60.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licenced under the Eclipse Public License, version 1.0: \ No newline at end of file +licenced under the {{Eclipse Public License, version 1.0}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_65.RULE b/src/licensedcode/data/rules/epl-1.0_65.RULE index 8ebf5997e4..821e323061 100644 --- a/src/licensedcode/data/rules/epl-1.0_65.RULE +++ b/src/licensedcode/data/rules/epl-1.0_65.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under the terms of the Eclipse Public License v1.0 \ No newline at end of file +available under the terms of the {{Eclipse Public License v1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_67.RULE b/src/licensedcode/data/rules/epl-1.0_67.RULE index 27cc29a808..391d1e666b 100644 --- a/src/licensedcode/data/rules/epl-1.0_67.RULE +++ b/src/licensedcode/data/rules/epl-1.0_67.RULE @@ -8,6 +8,6 @@ ignorable_urls: The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the -terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy +terms and conditions of the {{Eclipse Public License Version 1.0}} ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_68.RULE b/src/licensedcode/data/rules/epl-1.0_68.RULE index d9310decdd..c7fe4899a1 100644 --- a/src/licensedcode/data/rules/epl-1.0_68.RULE +++ b/src/licensedcode/data/rules/epl-1.0_68.RULE @@ -8,6 +8,6 @@ ignorable_urls: The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the -terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy +terms and conditions of the {{Eclipse Public License Version 1.0}} ("EPL"). A copy of the EPL is available at https://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_69.RULE b/src/licensedcode/data/rules/epl-1.0_69.RULE index 64340874aa..73b024381e 100644 --- a/src/licensedcode/data/rules/epl-1.0_69.RULE +++ b/src/licensedcode/data/rules/epl-1.0_69.RULE @@ -9,7 +9,7 @@ ignorable_urls: The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the -terms and conditions of the Eclipse Public License Version 1.0 ("EPL"). A copy +terms and conditions of the {{Eclipse Public License Version 1.0}} ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. diff --git a/src/licensedcode/data/rules/epl-1.0_72.RULE b/src/licensedcode/data/rules/epl-1.0_72.RULE index ddc73f2709..d0bc422237 100644 --- a/src/licensedcode/data/rules/epl-1.0_72.RULE +++ b/src/licensedcode/data/rules/epl-1.0_72.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the Eclipse Public License. See Eclipse Public License version 1.0 \ No newline at end of file +licensed under the Eclipse Public License. See {{Eclipse Public License version 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_74.RULE b/src/licensedcode/data/rules/epl-1.0_74.RULE index da9fc73b10..8299239ba5 100644 --- a/src/licensedcode/data/rules/epl-1.0_74.RULE +++ b/src/licensedcode/data/rules/epl-1.0_74.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -EPL-1.0 Eclipse Public License 1.0 \ No newline at end of file +{{EPL-1.0}} {{Eclipse Public License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_75.RULE b/src/licensedcode/data/rules/epl-1.0_75.RULE index c8a296cf96..3c747e5bf0 100644 --- a/src/licensedcode/data/rules/epl-1.0_75.RULE +++ b/src/licensedcode/data/rules/epl-1.0_75.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: Eclipse Public License 1.0 \ No newline at end of file +name: {{Eclipse Public License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_76.RULE b/src/licensedcode/data/rules/epl-1.0_76.RULE index b6ee0d6c5d..bad95fe15d 100644 --- a/src/licensedcode/data/rules/epl-1.0_76.RULE +++ b/src/licensedcode/data/rules/epl-1.0_76.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Eclipse Public License 1.0 EPL-1.0 \ No newline at end of file +{{Eclipse Public License 1.0}} {{EPL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_77.RULE b/src/licensedcode/data/rules/epl-1.0_77.RULE index 96e30d7959..6f2c4b62fa 100644 --- a/src/licensedcode/data/rules/epl-1.0_77.RULE +++ b/src/licensedcode/data/rules/epl-1.0_77.RULE @@ -1,10 +1,11 @@ --- license_expression: epl-1.0 is_license_tag: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: EPL-1.0 \ No newline at end of file +license: {{EPL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_78.RULE b/src/licensedcode/data/rules/epl-1.0_78.RULE index 60639455a2..f19489098c 100644 --- a/src/licensedcode/data/rules/epl-1.0_78.RULE +++ b/src/licensedcode/data/rules/epl-1.0_78.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: Eclipse Public License 1.0 \ No newline at end of file +license: {{Eclipse Public License 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_79.RULE b/src/licensedcode/data/rules/epl-1.0_79.RULE index 4ae130199c..fc6a5674be 100644 --- a/src/licensedcode/data/rules/epl-1.0_79.RULE +++ b/src/licensedcode/data/rules/epl-1.0_79.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: EPL-1.0 \ No newline at end of file +licenseId: {{EPL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_80.RULE b/src/licensedcode/data/rules/epl-1.0_80.RULE index a1db0d8c10..2de387e3a0 100644 --- a/src/licensedcode/data/rules/epl-1.0_80.RULE +++ b/src/licensedcode/data/rules/epl-1.0_80.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -['ECLIPSE', 'EPL-1.0'], \ No newline at end of file +['ECLIPSE', '{{EPL-1.0}}'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_83.RULE b/src/licensedcode/data/rules/epl-1.0_83.RULE index 1da5221398..729d2a8a1f 100644 --- a/src/licensedcode/data/rules/epl-1.0_83.RULE +++ b/src/licensedcode/data/rules/epl-1.0_83.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/EPL-1.0 \ No newline at end of file +licenses.nuget.org/{{EPL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_84.RULE b/src/licensedcode/data/rules/epl-1.0_84.RULE index 04c3c8c8a7..a77cd12b0b 100644 --- a/src/licensedcode/data/rules/epl-1.0_84.RULE +++ b/src/licensedcode/data/rules/epl-1.0_84.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- This file and the accompanying materials -are made available under the terms of the Eclipse Public License v1.0 +are made available under the terms of the {{Eclipse Public License v1.0}} which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_85.RULE b/src/licensedcode/data/rules/epl-1.0_85.RULE index 3544666c26..10651b41d8 100644 --- a/src/licensedcode/data/rules/epl-1.0_85.RULE +++ b/src/licensedcode/data/rules/epl-1.0_85.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- This file and the accompanying materials -are made available under the terms of the Eclipse Public License v1.0 +are made available under the terms of the {{Eclipse Public License v1.0}} which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v10.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_90.RULE b/src/licensedcode/data/rules/epl-1.0_90.RULE index fa11b3f6ee..5d169d98f0 100644 --- a/src/licensedcode/data/rules/epl-1.0_90.RULE +++ b/src/licensedcode/data/rules/epl-1.0_90.RULE @@ -7,7 +7,7 @@ ignorable_urls: - Eclipse Public License v1.0 + {{Eclipse Public License v1.0}} http://www.eclipse.org/org/documents/epl-v10.php repo diff --git a/src/licensedcode/data/rules/epl-1.0_91.RULE b/src/licensedcode/data/rules/epl-1.0_91.RULE index fd97e62782..9888086f23 100644 --- a/src/licensedcode/data/rules/epl-1.0_91.RULE +++ b/src/licensedcode/data/rules/epl-1.0_91.RULE @@ -10,7 +10,7 @@ ignorable_urls:

The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the -Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available +{{Eclipse Public License Version 1.0}} ("EPL"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content.

diff --git a/src/licensedcode/data/rules/epl-1.0_92.RULE b/src/licensedcode/data/rules/epl-1.0_92.RULE index cdc26d7b3b..53da30fb3e 100644 --- a/src/licensedcode/data/rules/epl-1.0_92.RULE +++ b/src/licensedcode/data/rules/epl-1.0_92.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License Eclipse Public License, Version 1.0 \ No newline at end of file +License {{Eclipse Public License, Version 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_93.RULE b/src/licensedcode/data/rules/epl-1.0_93.RULE index 3e28941bef..fe495e028a 100644 --- a/src/licensedcode/data/rules/epl-1.0_93.RULE +++ b/src/licensedcode/data/rules/epl-1.0_93.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.eclipse.org/org/documents/epl-v10.html --- -License Eclipse Public License, Version 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) \ No newline at end of file +License {{Eclipse Public License, Version 1.0}} (http://www.eclipse.org/org/documents/epl-v10.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_94.RULE b/src/licensedcode/data/rules/epl-1.0_94.RULE index 68c83d88fa..22d34810a7 100644 --- a/src/licensedcode/data/rules/epl-1.0_94.RULE +++ b/src/licensedcode/data/rules/epl-1.0_94.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.eclipse.org/org/documents/epl-v10.html --- -Eclipse Public License, Version 1.0 (http://www.eclipse.org/org/documents/epl-v10.html) \ No newline at end of file +{{Eclipse Public License, Version 1.0}} (http://www.eclipse.org/org/documents/epl-v10.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_95.RULE b/src/licensedcode/data/rules/epl-1.0_95.RULE index d019ec2e77..275f2948f6 100644 --- a/src/licensedcode/data/rules/epl-1.0_95.RULE +++ b/src/licensedcode/data/rules/epl-1.0_95.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.eclipse.org/org/documents/epl-v10.php --- -Eclipse Public License, Version 1.0 (http://www.eclipse.org/org/documents/epl-v10.php) \ No newline at end of file +{{Eclipse Public License, Version 1.0}} (http://www.eclipse.org/org/documents/epl-v10.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_96.RULE b/src/licensedcode/data/rules/epl-1.0_96.RULE index 1141f6eddd..2980af48ac 100644 --- a/src/licensedcode/data/rules/epl-1.0_96.RULE +++ b/src/licensedcode/data/rules/epl-1.0_96.RULE @@ -5,4 +5,4 @@ relevance: 100 --- - Eclipse Public License, Version 1.0 \ No newline at end of file + {{Eclipse Public License, Version 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_97.RULE b/src/licensedcode/data/rules/epl-1.0_97.RULE index ceba346bdf..fbca609d07 100644 --- a/src/licensedcode/data/rules/epl-1.0_97.RULE +++ b/src/licensedcode/data/rules/epl-1.0_97.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - Eclipse Public License, Version 1.0 + {{Eclipse Public License, Version 1.0}} (http://www.eclipse.org/org/documents/epl-v10.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_98.RULE b/src/licensedcode/data/rules/epl-1.0_98.RULE index 912a02f4e9..55fd299fd2 100644 --- a/src/licensedcode/data/rules/epl-1.0_98.RULE +++ b/src/licensedcode/data/rules/epl-1.0_98.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - Eclipse Public License, Version 1.0 + {{Eclipse Public License, Version 1.0}} (http://www.eclipse.org/org/documents/epl-v10.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-1.0_99.RULE b/src/licensedcode/data/rules/epl-1.0_99.RULE index 08e59185b9..d68ee5a2b7 100644 --- a/src/licensedcode/data/rules/epl-1.0_99.RULE +++ b/src/licensedcode/data/rules/epl-1.0_99.RULE @@ -10,7 +10,7 @@ License The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content is provided to you under the terms and conditions of the -Eclipse Public License Version 1.0 ("EPL"). A copy of the EPL is available +{{Eclipse Public License Version 1.0}} ("EPL"). A copy of the EPL is available at https://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program" will mean the Content. diff --git a/src/licensedcode/data/rules/epl-1.0_markdown.RULE b/src/licensedcode/data/rules/epl-1.0_markdown.RULE index 29a7011447..2abd17f41a 100644 --- a/src/licensedcode/data/rules/epl-1.0_markdown.RULE +++ b/src/licensedcode/data/rules/epl-1.0_markdown.RULE @@ -3,8 +3,8 @@ license_expression: epl-1.0 is_license_text: yes --- -#Eclipse Public License 1.0 (EPL-1.0) -###Eclipse Public License, Version 1.0 (EPL-1.0) +#{{Eclipse Public License 1.0}} ({{EPL-1.0}}) +###{{Eclipse Public License, Version 1.0}} ({{EPL-1.0}}) THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. ###1. DEFINITIONS "Contribution" means: diff --git a/src/licensedcode/data/rules/epl-2.0_16.RULE b/src/licensedcode/data/rules/epl-2.0_16.RULE index 2ad3edcf5e..a36e222732 100644 --- a/src/licensedcode/data/rules/epl-2.0_16.RULE +++ b/src/licensedcode/data/rules/epl-2.0_16.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.eclipse.org/legal/epl-v20.html --- -license 'EPL-2.0', 'http://www.eclipse.org/legal/epl-v20.html' \ No newline at end of file +{{license 'EPL-2.0}}', 'http://www.eclipse.org/legal/epl-v20.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_17.RULE b/src/licensedcode/data/rules/epl-2.0_17.RULE index 4daa38bae7..23b090985f 100644 --- a/src/licensedcode/data/rules/epl-2.0_17.RULE +++ b/src/licensedcode/data/rules/epl-2.0_17.RULE @@ -1,7 +1,8 @@ --- license_expression: epl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -license 'EPL-2.0' \ No newline at end of file +license '{{EPL-2.0}}' \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_2.RULE b/src/licensedcode/data/rules/epl-2.0_2.RULE index c267103f0b..6209850e1c 100644 --- a/src/licensedcode/data/rules/epl-2.0_2.RULE +++ b/src/licensedcode/data/rules/epl-2.0_2.RULE @@ -1,6 +1,7 @@ --- license_expression: epl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - https://www.eclipse.org/legal/epl-2.0 diff --git a/src/licensedcode/data/rules/epl-2.0_27.RULE b/src/licensedcode/data/rules/epl-2.0_27.RULE index efe098c6ad..300acde196 100644 --- a/src/licensedcode/data/rules/epl-2.0_27.RULE +++ b/src/licensedcode/data/rules/epl-2.0_27.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This application is published under the EPL 2.0 license. \ No newline at end of file +This application is published under the {{EPL 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_29.RULE b/src/licensedcode/data/rules/epl-2.0_29.RULE index d3e946b4b0..510684e978 100644 --- a/src/licensedcode/data/rules/epl-2.0_29.RULE +++ b/src/licensedcode/data/rules/epl-2.0_29.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.eclipse.org/legal/epl-2.0/ --- -Eclipse Public License 2.0 +{{Eclipse Public License 2.0}} https://www.eclipse.org/legal/epl-2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_3.RULE b/src/licensedcode/data/rules/epl-2.0_3.RULE index ab32d45ed5..564b0455ce 100644 --- a/src/licensedcode/data/rules/epl-2.0_3.RULE +++ b/src/licensedcode/data/rules/epl-2.0_3.RULE @@ -7,7 +7,7 @@ ignorable_urls: Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the -Eclipse Public License Version 2.0 ("EPL"). A copy of the EPL is +{{Eclipse Public License Version 2.0 ("EPL}}"). A copy of the EPL is provided with this Content and is also available at https://www.eclipse.org/legal/epl-2.0. For purposes of the EPL, "Program" will mean the Content. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_30.RULE b/src/licensedcode/data/rules/epl-2.0_30.RULE index 06f80112cf..66a545d0ae 100644 --- a/src/licensedcode/data/rules/epl-2.0_30.RULE +++ b/src/licensedcode/data/rules/epl-2.0_30.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Eclipse Public License 2.0 \ No newline at end of file +{{Eclipse Public License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_31.RULE b/src/licensedcode/data/rules/epl-2.0_31.RULE index 6d3611dec9..40d794e93c 100644 --- a/src/licensedcode/data/rules/epl-2.0_31.RULE +++ b/src/licensedcode/data/rules/epl-2.0_31.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.eclipse.org/legal/epl-2.0/ --- -Eclipse Public License 2.0 +{{Eclipse Public License 2.0}} http://www.eclipse.org/legal/epl-2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_33.RULE b/src/licensedcode/data/rules/epl-2.0_33.RULE index 88152cdead..3a2d1db1df 100644 --- a/src/licensedcode/data/rules/epl-2.0_33.RULE +++ b/src/licensedcode/data/rules/epl-2.0_33.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -eclipse.org/legal/epl-2.0/ \ No newline at end of file +eclipse.org/legal/{{epl-2.0}}/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_34.RULE b/src/licensedcode/data/rules/epl-2.0_34.RULE index c85e847543..f37e8ed7c6 100644 --- a/src/licensedcode/data/rules/epl-2.0_34.RULE +++ b/src/licensedcode/data/rules/epl-2.0_34.RULE @@ -1,9 +1,10 @@ --- license_expression: epl-2.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 --- -Eclipse Public License (EPL) 2.0 \ No newline at end of file +Eclipse Public License ({{EPL) 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_4.RULE b/src/licensedcode/data/rules/epl-2.0_4.RULE index 383589ca73..0ef53cbccb 100644 --- a/src/licensedcode/data/rules/epl-2.0_4.RULE +++ b/src/licensedcode/data/rules/epl-2.0_4.RULE @@ -7,7 +7,7 @@ ignorable_urls: Unless otherwise indicated, all Content made available by the Eclipse Foundation is provided to you under the terms and conditions of the -Eclipse Public License Version 2.0 (EPL). A copy of the EPL is +{{Eclipse Public License Version 2.0 (EPL}}). A copy of the EPL is provided with this Content and is also available at https://www .eclipse.org/legal/epl-2.0 https://www.eclipse.org/legal/epl-2.0 . For purposes of the EPL, Program will mean the Content. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_46.RULE b/src/licensedcode/data/rules/epl-2.0_46.RULE index ea2b295274..2c367af0f2 100644 --- a/src/licensedcode/data/rules/epl-2.0_46.RULE +++ b/src/licensedcode/data/rules/epl-2.0_46.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: Eclipse Public License 2.0 \ No newline at end of file +name: {{Eclipse Public License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_47.RULE b/src/licensedcode/data/rules/epl-2.0_47.RULE index 483a0ec03f..b345e52b44 100644 --- a/src/licensedcode/data/rules/epl-2.0_47.RULE +++ b/src/licensedcode/data/rules/epl-2.0_47.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Eclipse Public License 2.0 EPL-2.0 \ No newline at end of file +{{Eclipse Public License 2.0}} {{EPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_48.RULE b/src/licensedcode/data/rules/epl-2.0_48.RULE index 8112987955..1bca7d2d93 100644 --- a/src/licensedcode/data/rules/epl-2.0_48.RULE +++ b/src/licensedcode/data/rules/epl-2.0_48.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: Eclipse Public License 2.0 \ No newline at end of file +license: {{Eclipse Public License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_49.RULE b/src/licensedcode/data/rules/epl-2.0_49.RULE index 165887d198..2cae673899 100644 --- a/src/licensedcode/data/rules/epl-2.0_49.RULE +++ b/src/licensedcode/data/rules/epl-2.0_49.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: EPL-2.0 \ No newline at end of file +licenseId: {{EPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_5.RULE b/src/licensedcode/data/rules/epl-2.0_5.RULE index 1d786b0012..dc7f243d3a 100644 --- a/src/licensedcode/data/rules/epl-2.0_5.RULE +++ b/src/licensedcode/data/rules/epl-2.0_5.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -EPL-2.0 Eclipse Public License 2.0 \ No newline at end of file +{{EPL-2.0}} {{Eclipse Public License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_52.RULE b/src/licensedcode/data/rules/epl-2.0_52.RULE index c3c5e3a84c..1f5eabfd84 100644 --- a/src/licensedcode/data/rules/epl-2.0_52.RULE +++ b/src/licensedcode/data/rules/epl-2.0_52.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under the Eclipse Public License 2.0. \ No newline at end of file +available under the {{Eclipse Public License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_53.RULE b/src/licensedcode/data/rules/epl-2.0_53.RULE index 8cbb0f5095..ec23e0191d 100644 --- a/src/licensedcode/data/rules/epl-2.0_53.RULE +++ b/src/licensedcode/data/rules/epl-2.0_53.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/EPL-2.0 \ No newline at end of file +licenses.nuget.org/{{EPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_56.RULE b/src/licensedcode/data/rules/epl-2.0_56.RULE index 75bfb751c4..e299e0561f 100644 --- a/src/licensedcode/data/rules/epl-2.0_56.RULE +++ b/src/licensedcode/data/rules/epl-2.0_56.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- * This program and the accompanying materials are made - * available under the terms of the Eclipse Public License 2.0 + * available under the terms of the {{Eclipse Public License 2.0}} * which is available at https://www.eclipse.org/legal/epl-2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_57.RULE b/src/licensedcode/data/rules/epl-2.0_57.RULE index 51d118b747..14b45afc3f 100644 --- a/src/licensedcode/data/rules/epl-2.0_57.RULE +++ b/src/licensedcode/data/rules/epl-2.0_57.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- * This program and the accompanying materials are made - * available under the terms of the Eclipse Public License 2.0 \ No newline at end of file + * available under the terms of the {{Eclipse Public License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_58.RULE b/src/licensedcode/data/rules/epl-2.0_58.RULE index baf88f96a8..4d374a64fa 100644 --- a/src/licensedcode/data/rules/epl-2.0_58.RULE +++ b/src/licensedcode/data/rules/epl-2.0_58.RULE @@ -7,5 +7,5 @@ ignorable_urls: - https://www.eclipse.org/legal/epl-2.0/ --- -Eclipse Public License 2.0. A copy of the license is contained +{{Eclipse Public License 2.0}}. A copy of the license is contained in the file LICENSE.md and is also available at https://www.eclipse.org/legal/epl-2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_59.RULE b/src/licensedcode/data/rules/epl-2.0_59.RULE index e0834a686f..84fae32db4 100644 --- a/src/licensedcode/data/rules/epl-2.0_59.RULE +++ b/src/licensedcode/data/rules/epl-2.0_59.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- This program and the accompanying materials - are made available under the terms of the Eclipse Public License 2.0 + are made available under the terms of the {{Eclipse Public License 2.0}} which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_61.RULE b/src/licensedcode/data/rules/epl-2.0_61.RULE index 672da7d6d9..a4436cca54 100644 --- a/src/licensedcode/data/rules/epl-2.0_61.RULE +++ b/src/licensedcode/data/rules/epl-2.0_61.RULE @@ -11,8 +11,8 @@ ignorable_urls:

The Eclipse Foundation makes available all content in this plug-in ("Content"). Unless otherwise indicated below, the Content - is provided to you under the terms and conditions of the Eclipse - Public License Version 2.0 ("EPL"). A copy of the EPL is + is provided to you under the terms and conditions of the {{Eclipse + Public License Version 2.0 ("EPL}}"). A copy of the EPL is available at http://www.eclipse.org/legal/epl-2.0. For purposes of the EPL, "Program" will mean the Content.

diff --git a/src/licensedcode/data/rules/epl-2.0_62.RULE b/src/licensedcode/data/rules/epl-2.0_62.RULE index 0f3c383ee7..504295b5b4 100644 --- a/src/licensedcode/data/rules/epl-2.0_62.RULE +++ b/src/licensedcode/data/rules/epl-2.0_62.RULE @@ -10,8 +10,8 @@ License The Eclipse Foundation makes available all content in this plug-in Content. Unless otherwise indicated below, the Content -is provided to you under the terms and conditions of the Eclipse -Public License Version 2.0 EPL. A copy of the EPL is +is provided to you under the terms and conditions of the {{Eclipse +Public License Version 2.0 EPL}}. A copy of the EPL is available at http://www.eclipse.org/legal/epl-2.0 For purposes of the EPL, Program will mean the Content. diff --git a/src/licensedcode/data/rules/epl-2.0_63.RULE b/src/licensedcode/data/rules/epl-2.0_63.RULE index 41d9351f37..8e02d0d9d7 100644 --- a/src/licensedcode/data/rules/epl-2.0_63.RULE +++ b/src/licensedcode/data/rules/epl-2.0_63.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.eclipse.org/legal/epl-2.0 --- -License EPL 2.0 (http://www.eclipse.org/legal/epl-2.0) \ No newline at end of file +{{License EPL 2.0}} (http://www.eclipse.org/legal/epl-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_64.RULE b/src/licensedcode/data/rules/epl-2.0_64.RULE index 517b836b24..11bcd58edc 100644 --- a/src/licensedcode/data/rules/epl-2.0_64.RULE +++ b/src/licensedcode/data/rules/epl-2.0_64.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.eclipse.org/legal/epl-2.0 --- -EPL 2.0 (http://www.eclipse.org/legal/epl-2.0) \ No newline at end of file +{{EPL 2.0}} (http://www.eclipse.org/legal/epl-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_65.RULE b/src/licensedcode/data/rules/epl-2.0_65.RULE index a23e29a94b..2fbd1c54a9 100644 --- a/src/licensedcode/data/rules/epl-2.0_65.RULE +++ b/src/licensedcode/data/rules/epl-2.0_65.RULE @@ -4,5 +4,5 @@ is_license_tag: yes relevance: 100 --- - - EPL 2.0 \ No newline at end of file +<{{license> + EPL 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_66.RULE b/src/licensedcode/data/rules/epl-2.0_66.RULE index dd26bd72f7..659fbbac89 100644 --- a/src/licensedcode/data/rules/epl-2.0_66.RULE +++ b/src/licensedcode/data/rules/epl-2.0_66.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://www.eclipse.org/legal/epl-2.0 --- - - EPL 2.0 +{{ + EPL 2.0}} (http://www.eclipse.org/legal/epl-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_67.RULE b/src/licensedcode/data/rules/epl-2.0_67.RULE index d7fad6f5f9..b4acffa216 100644 --- a/src/licensedcode/data/rules/epl-2.0_67.RULE +++ b/src/licensedcode/data/rules/epl-2.0_67.RULE @@ -7,6 +7,6 @@ ignorable_urls: - https://www.eclipse.org/legal/epl-2.0/ --- -code is subject to the terms and conditions of the Eclipse Public License 2.0. +code is subject to the terms and conditions of the {{Eclipse Public License 2.0}}. A copy of the license is contained in the file LICENSE.md and is also available at https://www.eclipse.org/legal/epl-2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_68.RULE b/src/licensedcode/data/rules/epl-2.0_68.RULE index 21e6153967..b724e40b65 100644 --- a/src/licensedcode/data/rules/epl-2.0_68.RULE +++ b/src/licensedcode/data/rules/epl-2.0_68.RULE @@ -6,4 +6,4 @@ referenced_filenames: - about_files/LICENSE.md --- -code is subject to the terms and conditions of the Eclipse Public License 2.0. \ No newline at end of file +code is subject to the terms and conditions of the {{Eclipse Public License 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_72.RULE b/src/licensedcode/data/rules/epl-2.0_72.RULE index 9809b95a36..fd3ea5e450 100644 --- a/src/licensedcode/data/rules/epl-2.0_72.RULE +++ b/src/licensedcode/data/rules/epl-2.0_72.RULE @@ -5,7 +5,7 @@ ignorable_urls: - https://opensource.org/licenses/EPL-2.0 --- - - EPL-2.0 +<{{license> + EPL-2.0}} https://opensource.org/licenses/EPL-2.0 Eclipse Public License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_73.RULE b/src/licensedcode/data/rules/epl-2.0_73.RULE index 337168fe1d..30dd721761 100644 --- a/src/licensedcode/data/rules/epl-2.0_73.RULE +++ b/src/licensedcode/data/rules/epl-2.0_73.RULE @@ -5,6 +5,6 @@ ignorable_urls: - https://opensource.org/licenses/EPL-2.0 --- -EPL-2.0 +{{EPL-2.0}} https://opensource.org/licenses/EPL-2.0 Eclipse Public License, Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_74.RULE b/src/licensedcode/data/rules/epl-2.0_74.RULE index c923749463..f1079a1c00 100644 --- a/src/licensedcode/data/rules/epl-2.0_74.RULE +++ b/src/licensedcode/data/rules/epl-2.0_74.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://opensource.org/licenses/EPL-2.0 --- - - EPL-2.0 +<{{license> + EPL-2.0}} https://opensource.org/licenses/EPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_75.RULE b/src/licensedcode/data/rules/epl-2.0_75.RULE index e4fa7d7e20..cb13094310 100644 --- a/src/licensedcode/data/rules/epl-2.0_75.RULE +++ b/src/licensedcode/data/rules/epl-2.0_75.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/EPL-2.0 --- -EPL-2.0 +{{EPL-2.0}} https://opensource.org/licenses/EPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_required_phrase_1.RULE b/src/licensedcode/data/rules/epl-2.0_required_phrase_1.RULE new file mode 100644 index 0000000000..36edb7bc69 --- /dev/null +++ b/src/licensedcode/data/rules/epl-2.0_required_phrase_1.RULE @@ -0,0 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_tag: yes +is_required_phrase: yes +--- + +eclipse public license version 2 0 epl \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_required_phrase_2.RULE b/src/licensedcode/data/rules/epl-2.0_required_phrase_2.RULE new file mode 100644 index 0000000000..b77bb17265 --- /dev/null +++ b/src/licensedcode/data/rules/epl-2.0_required_phrase_2.RULE @@ -0,0 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_tag: yes +is_required_phrase: yes +--- + +{{epl 2 0}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/epl-2.0_required_phrase_3.RULE b/src/licensedcode/data/rules/epl-2.0_required_phrase_3.RULE new file mode 100644 index 0000000000..e1087fe2a2 --- /dev/null +++ b/src/licensedcode/data/rules/epl-2.0_required_phrase_3.RULE @@ -0,0 +1,7 @@ +--- +license_expression: epl-2.0 +is_license_tag: yes +is_required_phrase: yes +--- + +license name {{epl 2 0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/etalab-2.0-fr_2.RULE b/src/licensedcode/data/rules/etalab-2.0-fr_2.RULE index 328685f493..fa74bf27a8 100644 --- a/src/licensedcode/data/rules/etalab-2.0-fr_2.RULE +++ b/src/licensedcode/data/rules/etalab-2.0-fr_2.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/{{etalab-2.0}} \ No newline at end of file +{{licenses.nuget.org/etalab-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gfdl-1.1_36.RULE b/src/licensedcode/data/rules/gfdl-1.1_36.RULE new file mode 100644 index 0000000000..4592d7e58f --- /dev/null +++ b/src/licensedcode/data/rules/gfdl-1.1_36.RULE @@ -0,0 +1,368 @@ +--- +license_expression: gfdl-1.1 +is_license_text: yes +minimum_coverage: 80 +ignorable_copyrights: + - Copyright (c) 2000 Free Software Foundation, Inc. +ignorable_holders: + - Free Software Foundation, Inc. +ignorable_urls: + - http://www.gnu.org/copyleft + - http://www.gnu.org/copyleft/gpl.html +--- + +GNU Free Documentation License + Version 1.1, March 2000 + + Copyright (C) 2000 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + +0. PREAMBLE + +The purpose of this License is to make a manual, textbook, or other +written document "free" in the sense of freedom: to assure everyone +the effective freedom to copy and redistribute it, with or without +modifying it, either commercially or noncommercially. Secondarily, +this License preserves for the author and publisher a way to get +credit for their work, while not being considered responsible for +modifications made by others. + +This License is a kind of "copyleft", which means that derivative +works of the document must themselves be free in the same sense. It +complements the GNU General Public License, which is a copyleft +license designed for free software. + +We have designed this License in order to use it for manuals for free +software, because free software needs free documentation: a free +program should come with manuals providing the same freedoms that the +software does. But this License is not limited to software manuals; +it can be used for any textual work, regardless of subject matter or +whether it is published as a printed book. We recommend this License +principally for works whose purpose is instruction or reference. + + +1. APPLICABILITY AND DEFINITIONS + +This License applies to any manual or other work that contains a +notice placed by the copyright holder saying it can be distributed +under the terms of this License. The "Document", below, refers to any +such manual or work. Any member of the public is a licensee, and is +addressed as "you". + +A "Modified Version" of the Document means any work containing the +Document or a portion of it, either copied verbatim, or with +modifications and/or translated into another language. + +A "Secondary Section" is a named appendix or a front-matter section of +the Document that deals exclusively with the relationship of the +publishers or authors of the Document to the Document's overall subject +(or to related matters) and contains nothing that could fall directly +within that overall subject. (For example, if the Document is in part a +textbook of mathematics, a Secondary Section may not explain any +mathematics.) The relationship could be a matter of historical +connection with the subject or with related matters, or of legal, +commercial, philosophical, ethical or political position regarding +them. + +The "Invariant Sections" are certain Secondary Sections whose titles +are designated, as being those of Invariant Sections, in the notice +that says that the Document is released under this License. + +The "Cover Texts" are certain short passages of text that are listed, +as Front-Cover Texts or Back-Cover Texts, in the notice that says that +the Document is released under this License. + +A "Transparent" copy of the Document means a machine-readable copy, +represented in a format whose specification is available to the +general public, whose contents can be viewed and edited directly and +straightforwardly with generic text editors or (for images composed of +pixels) generic paint programs or (for drawings) some widely available +drawing editor, and that is suitable for input to text formatters or +for automatic translation to a variety of formats suitable for input +to text formatters. A copy made in an otherwise Transparent file +format whose markup has been designed to thwart or discourage +subsequent modification by readers is not Transparent. A copy that is +not "Transparent" is called "Opaque". + +Examples of suitable formats for Transparent copies include plain +ASCII without markup, Texinfo input format, LaTeX input format, SGML +or XML using a publicly available DTD, and standard-conforming simple +HTML designed for human modification. Opaque formats include +PostScript, PDF, proprietary formats that can be read and edited only +by proprietary word processors, SGML or XML for which the DTD and/or +processing tools are not generally available, and the +machine-generated HTML produced by some word processors for output +purposes only. + +The "Title Page" means, for a printed book, the title page itself, +plus such following pages as are needed to hold, legibly, the material +this License requires to appear in the title page. For works in +formats which do not have any title page as such, "Title Page" means +the text near the most prominent appearance of the work's title, +preceding the beginning of the body of the text. + + +2. VERBATIM COPYING + +You may copy and distribute the Document in any medium, either +commercially or noncommercially, provided that this License, the +copyright notices, and the license notice saying this License applies +to the Document are reproduced in all copies, and that you add no other +conditions whatsoever to those of this License. You may not use +technical measures to obstruct or control the reading or further +copying of the copies you make or distribute. However, you may accept +compensation in exchange for copies. If you distribute a large enough +number of copies you must also follow the conditions in section 3. + +You may also lend copies, under the same conditions stated above, and +you may publicly display copies. + + +3. COPYING IN QUANTITY + +If you publish printed copies of the Document numbering more than 100, +and the Document's license notice requires Cover Texts, you must enclose +the copies in covers that carry, clearly and legibly, all these Cover +Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on +the back cover. Both covers must also clearly and legibly identify +you as the publisher of these copies. The front cover must present +the full title with all words of the title equally prominent and +visible. You may add other material on the covers in addition. +Copying with changes limited to the covers, as long as they preserve +the title of the Document and satisfy these conditions, can be treated +as verbatim copying in other respects. + +If the required texts for either cover are too voluminous to fit +legibly, you should put the first ones listed (as many as fit +reasonably) on the actual cover, and continue the rest onto adjacent +pages. + +If you publish or distribute Opaque copies of the Document numbering +more than 100, you must either include a machine-readable Transparent +copy along with each Opaque copy, or state in or with each Opaque copy +a publicly-accessible computer-network location containing a complete +Transparent copy of the Document, free of added material, which the +general network-using public has access to download anonymously at no +charge using public-standard network protocols. If you use the latter +option, you must take reasonably prudent steps, when you begin +distribution of Opaque copies in quantity, to ensure that this +Transparent copy will remain thus accessible at the stated location +until at least one year after the last time you distribute an Opaque +copy (directly or through your agents or retailers) of that edition to +the public. + +It is requested, but not required, that you contact the authors of the +Document well before redistributing any large number of copies, to give +them a chance to provide you with an updated version of the Document. + + +4. MODIFICATIONS + +You may copy and distribute a Modified Version of the Document under +the conditions of sections 2 and 3 above, provided that you release +the Modified Version under precisely this License, with the Modified +Version filling the role of the Document, thus licensing distribution +and modification of the Modified Version to whoever possesses a copy +of it. In addition, you must do these things in the Modified Version: + +A. Use in the Title Page (and on the covers, if any) a title distinct + from that of the Document, and from those of previous versions + (which should, if there were any, be listed in the History section + of the Document). You may use the same title as a previous version + if the original publisher of that version gives permission. +B. List on the Title Page, as authors, one or more persons or entities + responsible for authorship of the modifications in the Modified + Version, together with at least five of the principal authors of the + Document (all of its principal authors, if it has less than five). +C. State on the Title page the name of the publisher of the + Modified Version, as the publisher. +D. Preserve all the copyright notices of the Document. +E. Add an appropriate copyright notice for your modifications + adjacent to the other copyright notices. +F. Include, immediately after the copyright notices, a license notice + giving the public permission to use the Modified Version under the + terms of this License, in the form shown in the Addendum below. +G. Preserve in that license notice the full lists of Invariant Sections + and required Cover Texts given in the Document's license notice. +H. Include an unaltered copy of this License. +I. Preserve the section entitled "History", and its title, and add to + it an item stating at least the title, year, new authors, and + publisher of the Modified Version as given on the Title Page. If + there is no section entitled "History" in the Document, create one + stating the title, year, authors, and publisher of the Document as + given on its Title Page, then add an item describing the Modified + Version as stated in the previous sentence. +J. Preserve the network location, if any, given in the Document for + public access to a Transparent copy of the Document, and likewise + the network locations given in the Document for previous versions + it was based on. These may be placed in the "History" section. + You may omit a network location for a work that was published at + least four years before the Document itself, or if the original + publisher of the version it refers to gives permission. +K. In any section entitled "Acknowledgements" or "Dedications", + preserve the section's title, and preserve in the section all the + substance and tone of each of the contributor acknowledgements + and/or dedications given therein. +L. Preserve all the Invariant Sections of the Document, + unaltered in their text and in their titles. Section numbers + or the equivalent are not considered part of the section titles. +M. Delete any section entitled "Endorsements". Such a section + may not be included in the Modified Version. +N. Do not retitle any existing section as "Endorsements" + or to conflict in title with any Invariant Section. + +If the Modified Version includes new front-matter sections or +appendices that qualify as Secondary Sections and contain no material +copied from the Document, you may at your option designate some or all +of these sections as invariant. To do this, add their titles to the +list of Invariant Sections in the Modified Version's license notice. +These titles must be distinct from any other section titles. + +You may add a section entitled "Endorsements", provided it contains +nothing but endorsements of your Modified Version by various +parties--for example, statements of peer review or that the text has +been approved by an organization as the authoritative definition of a +standard. + +You may add a passage of up to five words as a Front-Cover Text, and a +passage of up to 25 words as a Back-Cover Text, to the end of the list +of Cover Texts in the Modified Version. Only one passage of +Front-Cover Text and one of Back-Cover Text may be added by (or +through arrangements made by) any one entity. If the Document already +includes a cover text for the same cover, previously added by you or +by arrangement made by the same entity you are acting on behalf of, +you may not add another; but you may replace the old one, on explicit +permission from the previous publisher that added the old one. + +The author(s) and publisher(s) of the Document do not by this License +give permission to use their names for publicity for or to assert or +imply endorsement of any Modified Version. + + +5. COMBINING DOCUMENTS + +You may combine the Document with other documents released under this +License, under the terms defined in section 4 above for modified +versions, provided that you include in the combination all of the +Invariant Sections of all of the original documents, unmodified, and +list them all as Invariant Sections of your combined work in its +license notice. + +The combined work need only contain one copy of this License, and +multiple identical Invariant Sections may be replaced with a single +copy. If there are multiple Invariant Sections with the same name but +different contents, make the title of each such section unique by +adding at the end of it, in parentheses, the name of the original +author or publisher of that section if known, or else a unique number. +Make the same adjustment to the section titles in the list of +Invariant Sections in the license notice of the combined work. + +In the combination, you must combine any sections entitled "History" +in the various original documents, forming one section entitled +"History"; likewise combine any sections entitled "Acknowledgements", +and any sections entitled "Dedications". You must delete all sections +entitled "Endorsements." + + +6. COLLECTIONS OF DOCUMENTS + +You may make a collection consisting of the Document and other documents +released under this License, and replace the individual copies of this +License in the various documents with a single copy that is included in +the collection, provided that you follow the rules of this License for +verbatim copying of each of the documents in all other respects. + +You may extract a single document from such a collection, and distribute +it individually under this License, provided you insert a copy of this +License into the extracted document, and follow this License in all +other respects regarding verbatim copying of that document. + + +7. AGGREGATION WITH INDEPENDENT WORKS + +A compilation of the Document or its derivatives with other separate +and independent documents or works, in or on a volume of a storage or +distribution medium, does not as a whole count as a Modified Version +of the Document, provided no compilation copyright is claimed for the +compilation. Such a compilation is called an "aggregate", and this +License does not apply to the other self-contained works thus compiled +with the Document, on account of their being thus compiled, if they +are not themselves derivative works of the Document. + +If the Cover Text requirement of section 3 is applicable to these +copies of the Document, then if the Document is less than one quarter +of the entire aggregate, the Document's Cover Texts may be placed on +covers that surround only the Document within the aggregate. +Otherwise they must appear on covers around the whole aggregate. + + +8. TRANSLATION + +Translation is considered a kind of modification, so you may +distribute translations of the Document under the terms of section 4. +Replacing Invariant Sections with translations requires special +permission from their copyright holders, but you may include +translations of some or all Invariant Sections in addition to the +original versions of these Invariant Sections. You may include a +translation of this License provided that you also include the +original English version of this License. In case of a disagreement +between the translation and the original English version of this +License, the original English version will prevail. + + +9. TERMINATION + +You may not copy, modify, sublicense, or distribute the Document except +as expressly provided for under this License. Any other attempt to +copy, modify, sublicense or distribute the Document is void, and will +automatically terminate your rights under this License. However, +parties who have received copies, or rights, from you under this +License will not have their licenses terminated so long as such +parties remain in full compliance. + + +10. FUTURE REVISIONS OF THIS LICENSE + +The Free Software Foundation may publish new, revised versions +of the GNU Free Documentation License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. See +http://www.gnu.org/copyleft/. + +Each version of the License is given a distinguishing version number. +If the Document specifies that a particular numbered version of this +License "or any later version" applies to it, you have the option of +following the terms and conditions either of that specified version or +of any later version that has been published (not as a draft) by the +Free Software Foundation. If the Document does not specify a version +number of this License, you may choose any version ever published (not +as a draft) by the Free Software Foundation. + + +ADDENDUM: How to use this License for your documents + +To use this License in a document you have written, include a copy of +the License in the document and put the following copyright and +license notices just after the title page: + + Copyright (c) YEAR YOUR NAME. + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.1 + or any later version published by the Free Software Foundation; + with the Invariant Sections being LIST THEIR TITLES, with the + Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. + A copy of the license is included in the section entitled "GNU + Free Documentation License". + +If you have no Invariant Sections, write "with no Invariant Sections" +instead of saying which ones are invariant. If you have no +Front-Cover Texts, write "no Front-Cover Texts" instead of +"Front-Cover Texts being LIST"; likewise for Back-Cover Texts. + +If your document contains nontrivial examples of program code, +we recommend releasing these examples in parallel under your +choice of free software license, such as the http://www.gnu.org/copyleft/gpl.html GNU General Public +License, to permit their use in free software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus.RULE b/src/licensedcode/data/rules/gpl-1.0-plus.RULE index e328766c82..8a24f8978c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus.RULE @@ -6,8 +6,8 @@ is_license_notice: yes Copyright (C) 19yy -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 1, or (at your option) any later version. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_1.RULE index d309f36f80..84a92b090d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_1.RULE @@ -5,8 +5,8 @@ is_license_notice: yes License: GPL-1+ This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 1, or (at your option) any later version. - On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL' \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General + Public License}} can be found in `{{/usr/share/common-licenses/GPL}}' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_10.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_10.RULE index 54b3ed08c4..717a16592f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_10.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_10.RULE @@ -3,5 +3,5 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_11.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_11.RULE index db6c4dfa9b..3de30227ac 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_11.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_11.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This software licenced under the GPL \ No newline at end of file +This software licenced {{under the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_110.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_110.RULE index ec8ed00754..30f8f9ca4c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_110.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_110.RULE @@ -5,10 +5,10 @@ relevance: 100 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_113.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_113.RULE index ec6b0a0d73..63f1b15308 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_113.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_113.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/gpl-license.php --- -The distribution is licensed under the terms of the GNU General Public License (http://www.opensource.org/licenses/gpl-license.php). \ No newline at end of file +The distribution is {{licensed under the terms of the GNU General Public License}} (http://www.opensource.org/licenses/gpl-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_114.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_114.RULE index 1acbebe9ad..19e28cc139 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_114.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_114.RULE @@ -12,6 +12,6 @@ I DISCLAIM ALL RESPONSIBILITY FOR ANY POSSIBLE BAD EFFECTS OF THIS CODE! LICENSE ===== - This software is covered by the GNU General Public License. + This software is covered by the {{GNU General Public License}}. See the file COPYING for the complete text of the license. Or the GNU website: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_115.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_115.RULE index 7422ca34be..d8d79aa904 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_115.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_115.RULE @@ -10,6 +10,6 @@ ignorable_urls: LICENSE ===== - This software is covered by the GNU General Public License. + This software is covered by the {{GNU General Public License}}. See the file COPYING for the complete text of the license. Or the GNU website: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_116.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_116.RULE index d324e8147d..5338e5ba51 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_116.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_116.RULE @@ -8,6 +8,6 @@ ignorable_urls: - http://www.gnu.org/licenses/licenses.html --- -This software is covered by the GNU General Public License. +This software is covered by the {{GNU General Public License}}. See the file COPYING for the complete text of the license. Or the GNU website: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_118.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_118.RULE index 396c2d82ac..894bbb0f65 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_118.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_118.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl --- -copyright: GNU GENERAL PUBLIC LICENSE | | GNU General Public License \ No newline at end of file +{{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_128.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_128.RULE index 7640e09ba8..2d0677e59d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_128.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_128.RULE @@ -8,4 +8,4 @@ ignorable_holders: - GNU General --- -Copyright: GNU General Public License / copyleft ('GNU GPL copyright'). \ No newline at end of file +Copyright: {{GNU General Public License}} / {{copyleft ('GNU GPL}} copyright'). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_129.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_129.RULE index 20e5b24ddc..a315206dff 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_129.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_129.RULE @@ -8,4 +8,4 @@ ignorable_holders: - GNU General --- -Copyright: GNU General Public Licence / copyleft ('GNU GPL copyright'). \ No newline at end of file +Copyright: GNU General Public Licence / {{copyleft ('GNU GPL}} copyright'). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_130.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_130.RULE index 613c0da8a3..a1e02465b4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_130.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_130.RULE @@ -10,4 +10,4 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.html --- -@copyright GNU General Public License, http://www.gnu.org/licenses/gpl.html \ No newline at end of file +@copyright {{GNU General Public License}}, http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_131.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_131.RULE index 7477e30902..57212bf86a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_131.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_131.RULE @@ -11,9 +11,9 @@ Original Copyright Notice: Written/copyright This software may be used and distributed according to the terms of -the GNU General Public License (GPL), incorporated herein by reference. -Drivers based on or derived from this code fall under the GPL and must +the {{GNU General Public License}} (GPL), incorporated herein by reference. +Drivers based on or derived from this code fall {{under the GPL}} and must retain the authorship, copyright and license notice. This file is not a complete program and may only be used when the entire operating -system is licensed under the GPL. License for under other terms may be +system is licensed {{under the GPL}}. License for under other terms may be available. Contact the original author for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_132.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_132.RULE index 3dbd2d061e..2fc17ee477 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_132.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_132.RULE @@ -7,9 +7,9 @@ This software may be used and distributed according to the terms of the GNU Public License (GPL), incorporated herein by reference. This software may be used and distributed according to the terms of -the GNU General Public License (GPL), incorporated herein by reference. -Drivers based on or derived from this code fall under the GPL and must +the {{GNU General Public License (GPL}}), incorporated herein by reference. +Drivers based on or derived from this code fall {{under the GPL}} and must retain the authorship, copyright and license notice. This file is not a complete program and may only be used when the entire operating -system is licensed under the GPL. License for under other terms may be +system is licensed {{under the GPL}}. License for under other terms may be available. Contact the original author for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_135.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_135.RULE index 3e37029896..4e01def1a5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_135.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_135.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It's 100% Open Source and licensed under the GNU General Public License. \ No newline at end of file +It's 100% Open Source and licensed under the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_136.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_136.RULE index 410e387095..aee461f4a2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_136.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_136.RULE @@ -8,5 +8,5 @@ referenced_filenames: *LICENSE* -The license of all of the files in the bundle is GNU General -Public License (GPL). See COPYRIGHT for details. \ No newline at end of file +The license of all of the files in the bundle is {{GNU General +Public License (GPL}}). See COPYRIGHT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_14.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_14.RULE index a64d9dfb72..8f09abbc4a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_14.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_14.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -is protected by the GNU -General Public License. \ No newline at end of file +is protected by the {{GNU +General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_140.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_140.RULE index f3613f47d7..3f6e363e8f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_140.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_140.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -open-source version under GPL licensing. \ No newline at end of file +open-source version {{under GPL}} licensing. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_141.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_141.RULE index a49c3b8935..053fa463ce 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_141.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_141.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released open-source under the GPL license. \ No newline at end of file +released open-source {{under the GPL}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_142.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_142.RULE index 4c26bc7eec..854fbcf7a2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_142.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_142.RULE @@ -7,6 +7,6 @@ relevance: 100 # This software may be freely redistributed under the terms of the GNU # public license. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the {{GNU General Public License}} # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_146.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_146.RULE index 8c7709e96e..464cba29cc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_146.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_146.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-1.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GPL, GNU General Public License \ No newline at end of file +GPL = Gnu General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_149.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_149.RULE index 8ec3679735..965b8e364b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_149.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_149.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This theme is licensed under the GPL. \ No newline at end of file +This theme is licensed {{under the GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_152.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_152.RULE index 9da5a630ec..faa1c8a634 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_152.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_152.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.plupload.com/license --- -Released under GPL License. +Released {{under GPL}} License. License: http://www.plupload.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_1587.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_1587.RULE new file mode 100644 index 0000000000..3834150bae --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_1587.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under terms of the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_16.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_16.RULE index e1b59e5f3a..c5e4662419 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_16.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_16.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -is hereby placed under the terms of the GNU General Public License. +is hereby placed under the terms of the {{GNU General Public License}}. Follows the GNU license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_17.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_17.RULE index 3e3d0b8eb8..d1a24615b9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_17.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_17.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is hereby placed under the terms of the GNU General Public License. \ No newline at end of file +is hereby placed under the terms of the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_173.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_173.RULE index 674d206d29..dc3f053cc8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_173.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_173.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Change from GNU CPIO General Public License to GNU General Public License. \ No newline at end of file +Change from GNU CPIO General Public License to {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_176.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_176.RULE index 11d79abb5b..75265c1e04 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_176.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_176.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -distributed under the terms of the GNU General Public -License. See the file COPYING for details. \ No newline at end of file +distributed under the terms of the {{GNU General Public +License}}. See the file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_178.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_178.RULE index 467e32493f..a83913d54a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_178.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_178.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -it is licensed under the GPL license \ No newline at end of file +it is licensed {{under the GPL}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_179.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_179.RULE index 8a27488a27..8e8134a325 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_179.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_179.RULE @@ -7,7 +7,7 @@ ignorable_authors: --- All code developed by the 3L project is released under -the GNU General Public License (GPL). This guarantees that users +the {{GNU General Public License (GPL}}). This guarantees that users of 3L will have the freedom to run, study, share, and modify 3L, forever. A core value of the 3L Project is user freedom and this means using a license that frees diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_18.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_18.RULE index 86ba116252..947a9ea235 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_18.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_18.RULE @@ -3,5 +3,5 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -is hereby placed under the GPL - Gnu Public License. You are free and +is hereby placed {{under the GPL}} - Gnu Public License. You are free and welcome to copy, view and modify the sources. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_180.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_180.RULE index 305a6607ff..4fa9b89f2b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_180.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_180.RULE @@ -8,5 +8,5 @@ ignorable_urls: --- You may redistribute copies of it under the terms of -the GNU General Public License . +the {{GNU General Public License}} . There is NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_181.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_181.RULE index ac2400ab0d..f4367f7bfb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_181.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_181.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- You may redistribute copies of it under the terms of -the GNU General Public License . \ No newline at end of file +the {{GNU General Public License}} . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_182.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_182.RULE index 384188efdd..c871ac3b6a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_182.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_182.RULE @@ -5,4 +5,4 @@ relevance: 100 --- You may redistribute copies of it under the terms of -the GNU General Public License \ No newline at end of file +the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_186.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_186.RULE index 59c5d776ec..458a17d932 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_186.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_186.RULE @@ -7,15 +7,15 @@ referenced_filenames: --- Bash is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by + under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 1, or (at your option) any later version. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public - License for more details. + or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public + License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with Bash; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_187.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_187.RULE index bb7c0352a8..a2f1ac8fd9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_187.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_187.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Published under the GNU General Public License \ No newline at end of file +Published under the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_188.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_188.RULE index 1e9a6ebcb8..7b40e9005c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_188.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_188.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under GPL \ No newline at end of file +Released {{under GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_19.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_19.RULE index 9bb95ba4ec..3d20e7085c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_19.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_19.RULE @@ -3,7 +3,7 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -is hereby placed under the GPL - Gnu Public License. You are free and +is hereby placed {{under the GPL}} - Gnu Public License. You are free and welcome to copy, view and modify the sources. My only wish is that my copyright presented above will be left and that a list of the bug fixes, added features, etc, will be provided. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_192.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_192.RULE index 4a42f45682..bedda86475 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_192.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_192.RULE @@ -6,4 +6,4 @@ relevance: 100 Common-sense licensing statement: Using any portion of this program in your own program means that you must give credit to the original author -and release the resulting code under the GPL. \ No newline at end of file +and release the resulting code {{under the GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_193.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_193.RULE index 06d938be40..642e6edab8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_193.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_193.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This software may be used and distributed according to the terms of -the GNU General Public License (GPL), incorporated herein by reference. +the {{GNU General Public License (GPL}}), incorporated herein by reference. Contact the author for use under other terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_194.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_194.RULE index ce91c349db..f7282a02a1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_194.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_194.RULE @@ -5,9 +5,9 @@ relevance: 100 --- This software may be used and distributed according to the terms of -the GNU General Public License (GPL), incorporated herein by reference. +the {{GNU General Public License (GPL}}), incorporated herein by reference. Contact the author for use under other terms. Common-sense licensing statement: Using any portion of this program in your own program means that you must give credit to the original author -and release the resulting code under the GPL. \ No newline at end of file +and release the resulting code {{under the GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_196.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_196.RULE index 0f698c71e9..cf93711138 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_196.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_196.RULE @@ -8,5 +8,5 @@ ignorable_urls: This emulator is normally available under a BSD license. It's available -in this form only under GPL. +in this form only {{under GPL}}. The GPL license can be found at http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_198.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_198.RULE index bab3ed13f4..04c195259f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_198.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_198.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -GDB is free software, covered by the GNU General Public License, and you are +GDB is free software, covered by the {{GNU General Public License}}, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_199.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_199.RULE index 9d3169298e..68ed274181 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_199.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_199.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under the GPL \ No newline at end of file +available {{under the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_2.RULE index 05efb8b117..d9accfc15a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_2.RULE @@ -5,6 +5,6 @@ notes: Short declaration --- * This program is free software. You can redistribute it and/or - * modify it under the terms of the GNU General Public License as + * modify it under the terms of the {{GNU General Public License}} as * published by the Free Software Foundation: either version 1 or * (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_20.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_20.RULE index 13003757f6..534d5484ce 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_20.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_20.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -* This file can be redistributed under the terms of the GNU General - * Public License \ No newline at end of file +* This file can be redistributed under the terms of the {{GNU General + * Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_200.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_200.RULE index cdb9672484..cf9d22d855 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_200.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_200.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-1.0-plus is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_201.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_201.RULE index b397307793..092354c200 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_201.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_201.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -My work is under the GPL license \ No newline at end of file +My work is {{under the GPL}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_202.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_202.RULE index ce29a316ab..ef6b9c74d7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_202.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_202.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GPL license \ No newline at end of file +{{under the GPL}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_21.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_21.RULE index 3bc0a27e8d..fe11e33892 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_21.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_21.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -It is included here under the GPL by permission \ No newline at end of file +It is included here {{under the GPL}} by permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_22.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_22.RULE index ee754966ed..904259dd74 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_22.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_22.RULE @@ -5,5 +5,5 @@ referenced_filenames: - LICENSE --- -Copy and use freely under the terms of the GNU General Public License +Copy and use freely under the terms of the {{GNU General Public License}} as stated in the LICENSE file in this same directory \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_234.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_234.RULE index 824786170f..081c807de3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_234.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_234.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The driver was originally released under the GPL and is currently hosted at: \ No newline at end of file +The driver was originally released {{under the GPL}} and is currently hosted at: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_25.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_25.RULE index 1db9fd05f0..c0f6dccab9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_25.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_25.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License. See ../COPYING for +it under the terms of the {{GNU General Public License}}. See ../COPYING for the full agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_26.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_26.RULE index 4cac8878a4..8656277174 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_26.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_26.RULE @@ -6,15 +6,15 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program (in ../COPYING); if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_27.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_27.RULE index abae2b2dea..d751f8f8ca 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_27.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_27.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- gnu-general-public-license.html -GNU General Public License \ No newline at end of file +{{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_290.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_290.RULE index aa2ae6340a..5984cba838 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_290.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_290.RULE @@ -10,11 +10,11 @@ This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or works at all, unless he says so in writing. Refer -to the GNU General Public License for full details. +to the {{GNU General Public License}} for full details. Everyone is granted permission to copy, modify and redistribute -this software, but only under the conditions described in the GNU -General Public License. A copy of this license is supposed to have been +this software, but only under the conditions described in the {{GNU +General Public License}}. A copy of this license is supposed to have been given to you along with this software so you can know your rights and responsibilities. It should be in a file named COPYING. Among other things, the copyright notice and this notice must be preserved on all diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_291.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_291.RULE index 028bd0c36b..36e849c5e0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_291.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_291.RULE @@ -10,11 +10,11 @@ referenced_filenames: Ghostscript is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose -or works at all, unless he says so in writing. Refer to the GNU General -Public License for full details. +or works at all, unless he says so in writing. Refer to the {{GNU General +Public License}} for full details. Everyone is granted permission to copy, modify and redistribute Ghostscript, -but only under the conditions described in the GNU General Public License. +but only under the conditions described in the {{GNU General Public License}}. A copy of this license is supposed to have been given to you along with Ghostscript so you can know your rights and responsibilities. It should be in a file named COPYING or COPYLEFT. Among other things, the copyright diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_292.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_292.RULE index 64a6168445..5eab4af090 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_292.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_292.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is subject to the GNU General Public License \ No newline at end of file +This code is subject to the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_293.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_293.RULE index 3979d6d745..33fc31f9a6 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_293.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_293.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This code is subject to the GNU general public license. See LICENSE file for more information. \ No newline at end of file +This code is subject to the {{GNU general public license}}. See LICENSE file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_3.RULE index e61b669ad2..b3140b43e4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_3.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-1.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_31.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_31.RULE index dede1e6dbd..13d7d91f1a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_31.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_31.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -covered by the Gnu General Public License. \ No newline at end of file +covered by the {{Gnu General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_32.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_32.RULE index b55fac6333..fee56f2ce2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_32.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_32.RULE @@ -7,8 +7,8 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -This program is free software, released under the GNU General Public License +This program is free software, released under the {{GNU General Public License}} and you are welcome to redistribute it under certain conditions. It comes with -ABSOLUTELY NO WARRANTY; for details read the GNU General Public License to be +ABSOLUTELY NO WARRANTY; for details read the {{GNU General Public License}} to be found in the file "COPYING" distributed with this program, or online at: http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE index 538f64d448..987f65c416 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GNU General Public License \ No newline at end of file +the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_334.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_334.RULE index d46dc158d3..de3cca8a0f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_334.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_334.RULE @@ -6,6 +6,6 @@ referenced_filenames: - COPYING --- -This microcode data is placed under the terms of the GNU General - Public License. The GPL is contained in /usr/doc/copyright/GPL on a +This microcode data is placed under the terms of the {{GNU General + Public License}}. The GPL is contained in /usr/doc/copyright/GPL on a Debian system and in the file COPYING in the Linux kernel source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_335.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_335.RULE index 321465bde2..98eebd598e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_335.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_335.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -This software falls under the GNU General Public License. +This software falls under the {{GNU General Public License}}. Please read the COPYING file for more information \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_336.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_336.RULE index 20f0b94042..a78d3ec80f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_336.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_336.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -* This file is released under the GNU General Public License. +* This file is released under the {{GNU General Public License}}. * Refer to the COPYING file distributed with this package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_337.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_337.RULE index a7a2785a0e..7d12526ab6 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_337.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_337.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -* This file is released under the GNU General Public License. \ No newline at end of file +* This file is released under the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_34.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_34.RULE index 7956c57fde..e6a5168261 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_34.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_34.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_341.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_341.RULE index 7f2864ce54..d22e056dda 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_341.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_341.RULE @@ -8,4 +8,4 @@ GNU Ghostscript is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or works at all, unless he says so in writing. Refer -to the GNU General Public License for full details. \ No newline at end of file +to the {{GNU General Public License}} for full details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_342.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_342.RULE index 2bc90f9183..b8949767ec 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_342.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_342.RULE @@ -10,11 +10,11 @@ GNU Ghostscript is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or works at all, unless he says so in writing. Refer to -the GNU General Public License for full details. +the {{GNU General Public License}} for full details. Everyone is granted permission to copy, modify and redistribute GNU -Ghostscript, but only under the conditions described in the GNU General -Public License. A copy of this license is supposed to have been given to +Ghostscript, but only under the conditions described in the {{GNU General +Public License}}. A copy of this license is supposed to have been given to you along with GNU Ghostscript so you can know your rights and responsibilities. It should be in a file named COPYING. Among other things, the copyright notice and this notice must be preserved on all diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_349.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_349.RULE index 305f2d4b11..776011733b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_349.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_349.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is released under the terms of the GNU General Public License (GPL) \ No newline at end of file +This software is released under the terms of the {{GNU General Public License (GPL}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_35.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_35.RULE index 223e025bfc..3d745983cf 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_35.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_35.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_352.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_352.RULE index f23f5b41ff..accfeae8d5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_352.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_352.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The source code is under the GNU General Public License. \ No newline at end of file +The source code is under the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_354.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_354.RULE index 940e967bbd..969a85e4e1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_354.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_354.RULE @@ -6,4 +6,4 @@ relevance: 100 * * This program is free software and may be modified and distributed - * under the terms and conditions of the GNU General Public License. \ No newline at end of file + * under the terms and conditions of the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_356.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_356.RULE index 865c24f700..754b50b79b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_356.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_356.RULE @@ -5,6 +5,6 @@ relevance: 100 --- It is open source and can be modified and distributed under the terms of -the GNU General Public License. We think you'll find it useful, but it is +the {{GNU General Public License}}. We think you'll find it useful, but it is distributed without any warranty and without even the implied warranty of merchantability (whatever that is) or fitness for purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_358.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_358.RULE index 1876cf2d0a..ceceb293d3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_358.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_358.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- /* This software may be modified and distributed under the terms */ -/* of the GNU General Public License. See the LICENSE file for details. */ \ No newline at end of file +/* of the {{GNU General Public License}}. See the LICENSE file for details. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_36.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_36.RULE index 740886969b..8e7d38145f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_36.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_36.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/ --- -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_364.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_364.RULE index 1e830d215d..f67b4763bc 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_364.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_364.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -license http://www.gnu.org/copyleft/gpl.html GNU General Public License \ No newline at end of file +license http://www.gnu.org/copyleft/gpl.html {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_365.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_365.RULE index 13d2633cd8..be0b74e1a4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_365.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_365.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -license https://www.gnu.org/copyleft/gpl.html GNU General Public License \ No newline at end of file +license https://www.gnu.org/copyleft/gpl.html {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_366.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_366.RULE index 16d44208eb..033aec961a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_366.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_366.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -https://www.gnu.org/copyleft/gpl.html GNU General Public License \ No newline at end of file +https://www.gnu.org/copyleft/gpl.html {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_367.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_367.RULE index bf5c2744ba..992882100f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_367.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_367.RULE @@ -6,4 +6,4 @@ relevance: 100 This is free software, and you are welcome to redistribute it under -the terms of the GNU General Public License \ No newline at end of file +the terms of the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_369.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_369.RULE index 103decc289..a75e90fd62 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_369.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_369.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -* You may distribute this file under the terms the GNU General Public - * License. See the file COPYING for more information. \ No newline at end of file +* You may distribute this file under the terms the {{GNU General Public + * License}}. See the file COPYING for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_37.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_37.RULE index 368dc490de..54e4c79ade 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_37.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_37.RULE @@ -5,4 +5,4 @@ relevance: 100 --- allowing the code to - * be released under the GPL. \ No newline at end of file + * be released {{under the GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_370.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_370.RULE index 4faa74e6d7..4b6014b44e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_370.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_370.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.html --- -GNU General Public License http://www.gnu.org/licenses/gpl.html \ No newline at end of file +{{GNU General Public License}} http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_371.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_371.RULE index 27f10b3795..21b69c6bac 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_371.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_371.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -GNU General Public License https://www.gnu.org/licenses/gpl.html \ No newline at end of file +{{GNU General Public License}} https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_372.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_372.RULE index f01b956090..a7786b864b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_372.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_372.RULE @@ -8,4 +8,4 @@ ignorable_urls: --- * Copyright notice -* GNU General Public License http://www.gnu.org/licenses/gpl.html \ No newline at end of file +* {{GNU General Public License}} http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_373.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_373.RULE index 85ad9215e7..1e97e03663 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_373.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_373.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -GNU General Public License www.gnu.org/copyleft/gpl.html \ No newline at end of file +{{GNU General Public License}} www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_374.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_374.RULE index f0fa9e6d37..9db7276a42 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_374.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_374.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU General Public License gnu.org/copyleft/gpl.html \ No newline at end of file +{{GNU General Public License}} gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_375.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_375.RULE index bbbe116ecb..99603c6135 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_375.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_375.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -GNU GENERAL PUBLIC LICENSE applies to the program, it's packages, extensions and source code as published or made available through any third party. \ No newline at end of file +{{GNU GENERAL PUBLIC LICENSE}} applies to the program, it's packages, extensions and source code as published or made available through any third party. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_376.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_376.RULE index 641976cc53..c8a9cb469a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_376.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_376.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This software is licensed under the GPL license. \ No newline at end of file +This software is licensed {{under the GPL}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_377.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_377.RULE index ac53a44373..a191ecce4b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_377.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_377.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the GPL license. \ No newline at end of file +This software is licensed {{under the GPL}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_378.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_378.RULE index 50b8cae778..c6d6a38a53 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_378.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_378.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -under GPL license \ No newline at end of file +{{under GPL}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_379.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_379.RULE index c82d3a5185..bd08d90640 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_379.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_379.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -fall under GPL \ No newline at end of file +fall {{under GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_380.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_380.RULE index 3f9813f08d..b17f048868 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_380.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_380.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Under the GPL licence \ No newline at end of file +{{Under the GPL}} licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_381.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_381.RULE index a7224f6577..d78b2c19f7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_381.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_381.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -GPL = Gnu General Public License, http://www.gnu.org/copyleft/gpl.html \ No newline at end of file +{{GPL = Gnu General Public License}}, http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_382.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_382.RULE index 6fb4f76fce..1c9afe55d1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_382.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_382.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -theme is licensed under the GPL. \ No newline at end of file +theme is licensed {{under the GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_384.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_384.RULE index c72e0769ea..c0cfe39c9c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_384.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_384.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This software is licenced under the GPL license. \ No newline at end of file +This software is licenced {{under the GPL}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_385.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_385.RULE index 27cf4a5db9..8f999ac116 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_385.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_385.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licenced under the GPL license. \ No newline at end of file +This software is licenced {{under the GPL}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_386.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_386.RULE index 3eae59bae3..fdd8e7c1e9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_386.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_386.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -theme is licenced under the GPL. \ No newline at end of file +theme is licenced {{under the GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_388.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_388.RULE index 8f2b805cd3..57305b03eb 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_388.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_388.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Some software comes under GPL \ No newline at end of file +Some software comes {{under GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_390.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_390.RULE index 7cedcb1aef..30b36a46d6 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_390.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_390.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- This is free software. You may redistribute copies of it under the terms of -the GNU General Public License . +the {{GNU General Public License}} . There is NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_391.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_391.RULE index 82b137cb75..da649c84d8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_391.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_391.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -A copy of the GNU General Public License (GPL) is appended to this file. \ No newline at end of file +A copy of the {{GNU General Public License (GPL}}) is appended to this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_392.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_392.RULE index 1d5f800534..2451302eaf 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_392.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_392.RULE @@ -5,13 +5,13 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free Software +the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_393.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_393.RULE index f00192a46b..e13d1dd22f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_393.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_393.RULE @@ -5,13 +5,13 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free Software +the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_394.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_394.RULE index 01b4b68597..3b293be4cf 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_394.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_394.RULE @@ -5,13 +5,13 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free Software +the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_397.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_397.RULE index e0d4cb386c..d27d1f85ff 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_397.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_397.RULE @@ -5,5 +5,5 @@ relevance: 100 --- License: GPL-1+ - On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-1'. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General + Public License}} can be found in `{{/usr/share/common-licenses/GPL}}-1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_398.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_398.RULE index 312174477f..329c17310b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_398.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_398.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU General Public License \ No newline at end of file +Licensed under the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_399.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_399.RULE index 0c35daa008..6a6a137ec7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_399.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_399.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License. You should have +it under the terms of the {{GNU General Public License}}. You should have received a copy of the GPL license along with this program; if you did not, you can find it at http://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_40.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_40.RULE index 8b74b0b7e5..2b4ac368f5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_40.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_40.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: see http://www.skybuilders.com/Products/dual_license/ --- -Our software is licensed under the GNU General Public License. \ No newline at end of file +Our software is licensed under the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_400.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_400.RULE index 2f4209f268..ba57f2ef01 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_400.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_400.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License. You should have +it under the terms of the {{GNU General Public License}}. You should have received a copy of the GPL license along with this program; if you did not, you can find it at https://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_405.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_405.RULE index 1d7b68fc40..217a53a7f0 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_405.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_405.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the GPL v1 or later \ No newline at end of file +licensed {{under the GPL}} v1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_411.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_411.RULE index f34f461e57..37fdf1e453 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_411.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_411.RULE @@ -5,5 +5,5 @@ relevance: 100 --- this program is free software. you can redistribute it and -modify it under the terms of the gnu general public license. +modify it under the terms of the {{gnu general public license}}. there is no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_412.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_412.RULE index 399395c73a..c0a2b1df56 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_412.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_412.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it would be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_413.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_413.RULE index c1a63b8047..79463b9741 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_413.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_413.RULE @@ -5,7 +5,7 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_414.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_414.RULE index 1418c33768..7645f65f55 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_414.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_414.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_416.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_416.RULE index 81433906b7..5ec01e40b5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_416.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_416.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -open source project distributed under the GPL \ No newline at end of file +open source project distributed {{under the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_417.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_417.RULE index 70cfb74fe0..c8d1336b9e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_417.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_417.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -sofware distributed under GPL. \ No newline at end of file +sofware distributed {{under GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_418.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_418.RULE index c9a01e5b21..93ff5ed9f4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_418.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_418.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It is distributed under GPL \ No newline at end of file +It is distributed {{under GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_419.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_419.RULE index 5509e9d320..dc8c7b44c8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_419.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_419.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under GPL \ No newline at end of file +distributed {{under GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_42.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_42.RULE index 835ebbb1d1..379312f56e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_42.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_42.RULE @@ -3,10 +3,10 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -The GNU General Public License, Version 1, February 1989 --- +The {{GNU General Public License}}, Version 1, February 1989 --- This software This is free software, licensed under: - The GNU General Public License, Version 1, February 1989 \ No newline at end of file + The {{GNU General Public License}}, Version 1, February 1989 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_420.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_420.RULE index bac1ee115f..b71a87e48f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_420.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_420.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -It is distributed under the GNU General Public License - see the +It is distributed under the {{GNU General Public License}} - see the accompanying COPYING file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_421.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_421.RULE index 6e0eff1e61..02f5252c67 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_421.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_421.RULE @@ -2,9 +2,10 @@ license_expression: gpl-1.0-plus is_license_notice: yes relevance: 100 +skip_for_required_phrase_generation: yes --- is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_422.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_422.RULE index 534a7d631b..a6be1a50c7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_422.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_422.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL --- -It is licensed under the GNU General Public License which can be +It is licensed under the {{GNU General Public License}} which can be found in /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_423.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_423.RULE index 586daafbe9..8321381684 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_423.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_423.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -It is licensed under the GNU General Public License \ No newline at end of file +It is licensed under the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_424.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_424.RULE index 8616652181..e11630bcee 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_424.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_424.RULE @@ -1,9 +1,10 @@ --- license_expression: gpl-1.0-plus is_license_notice: yes +is_required_phrase: yes relevance: 100 referenced_filenames: - /usr/share/common-licenses/GPL --- -/usr/share/common-licenses/GPL. \ No newline at end of file +/usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_425.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_425.RULE index ad85e29b0e..ad8d558942 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_425.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_425.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -Changed copyright header to conform with new GNU -General Public license. \ No newline at end of file +Changed copyright header to conform with new {{GNU +General Public license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_429.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_429.RULE index 711ee6db49..080c0d7d55 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_429.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_429.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Other files might be available under the GNU General Public License (GPL) \ No newline at end of file +Other files might be available under the {{GNU General Public License (GPL}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_430.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_430.RULE index 9171055dea..e12eabd7ab 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_430.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_430.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under the GNU General Public License (GPL) \ No newline at end of file +available under the {{GNU General Public License (GPL}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_431.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_431.RULE index cde5d19fa5..23e41338d8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_431.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_431.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU General Public License (GPL) \ No newline at end of file +under the {{GNU General Public License (GPL}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_432.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_432.RULE index acb52b14d4..1574dec340 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_432.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_432.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -The GNU General Public License is contained in the file COPYING. \ No newline at end of file +The {{GNU General Public License}} is contained in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_433.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_433.RULE index 41a760f69d..460b1a2269 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_433.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_433.RULE @@ -8,9 +8,9 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -A copy of the GNU General Public License is available in the COPYING.txt file +A copy of the {{GNU General Public License}} is available in the COPYING.txt file included with all NAnt distributions. -For more licensing information refer to the GNU General Public License on the +For more licensing information refer to the {{GNU General Public License}} on the GNU Project web site. http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_434.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_434.RULE index ed8ab9b53b..878530fb3f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_434.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_434.RULE @@ -7,8 +7,8 @@ relevance: 100 This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_437.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_437.RULE index 2ef3be8bc9..aa9575739f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_437.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_437.RULE @@ -9,7 +9,7 @@ ignorable_urls: This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_438.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_438.RULE index 2848548265..91765f0dae 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_438.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_438.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms and conditions of the GNU General Public License, \ No newline at end of file +licensed under the terms and conditions of the {{GNU General Public License}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_44.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_44.RULE index 1ed169ff91..770ea1b41d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_44.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_44.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License>GNU General Public License \ No newline at end of file +License>{{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_441.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_441.RULE index 2672edbdba..2e8213fe74 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_441.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_441.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of GNU General Public License \ No newline at end of file +licensed under the terms of {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_445.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_445.RULE index d31e9d4809..b0a828f0ad 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_445.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_445.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-1.0-plus is_license_text: yes -relevance: 100 referenced_filenames: - COPYING notes: an FSF-published minor text variant diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_446.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_446.RULE index b6c787abe1..ae15124823 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_446.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_446.RULE @@ -6,4 +6,4 @@ referenced_filenames: - /usr/share/common-licenses/GPL --- -On Debian systems, the complete text of the newest version of the GNU General Public License can be found in /usr/share/common-licenses/GPL. \ No newline at end of file +On Debian systems, the complete text of the newest version of the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_449.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_449.RULE index 95f6ca149b..58546ff8e4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_449.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_449.RULE @@ -10,7 +10,7 @@ ignorable_urls: On Debian GNU/Linux systems, the {{complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL}}'. - A copy of the {{GNU General Public License is also available}} at + A copy of the GNU General Public License is also available at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file + St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_45.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_45.RULE index 40e29a8e5e..04305d52ca 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_45.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_45.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_450.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_450.RULE index 80db9c6088..6a0f0f77c5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_450.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_450.RULE @@ -6,4 +6,4 @@ referenced_filenames: - /usr/share/common-licenses/GPL --- -The Debian packaging is and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. \ No newline at end of file +The Debian packaging is and is licensed {{under the GPL}}, see `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_451.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_451.RULE index 8ddbf0a01f..8776257d28 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_451.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_451.RULE @@ -7,5 +7,5 @@ referenced_filenames: The helper programs as well as the documentation are distributed under the terms of - the GNU General Public License (GPL); see the file COPYING for the + the {{GNU General Public License (GPL)}}; see the file COPYING for the actual terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_456.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_456.RULE index 5f702b7804..4ff6438819 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_456.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_456.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING.GPL --- -distributed under the GPL (see COPYING.GPL) \ No newline at end of file +distributed {{under the GPL}} (see COPYING.GPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_458.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_458.RULE index bfbfac3990..ddda8a2921 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_458.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_458.RULE @@ -3,7 +3,7 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_459.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_459.RULE index 723c628ff2..caf1e4f766 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_459.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_459.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-1 --- -On Debian systems, the complete text of the GNU General Public - License Version 1 can be found in "/usr/share/common-licenses/GPL-1". \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public + License}} Version 1 can be found in "/usr/share/common-licenses/GPL-1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_460.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_460.RULE index f5e04eeedb..297a825b68 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_460.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_460.RULE @@ -7,14 +7,14 @@ referenced_filenames: License: GPL-1+ This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 1, or (at your option) any later version. ․ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. ․ - On Debian systems, the complete text of the GNU General Public - License Version 1 can be found in "/usr/share/common-licenses/GPL-1". \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public + License}} Version 1 can be found in "/usr/share/common-licenses/GPL-1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_461.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_461.RULE index 48aaa76dd8..9c6e5f0332 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_461.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_461.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 1, or (at your option) any later version. ․ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. \ No newline at end of file + {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_462.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_462.RULE index cc8f00b5bf..75d86bd3d8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_462.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_462.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -system can be used under the terms of the GNU General Public License. \ No newline at end of file +system can be used under the terms of the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_463.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_463.RULE index c090944607..fba4ae305e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_463.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_463.RULE @@ -8,7 +8,7 @@ referenced_filenames: Everyone is granted permission to copy, modify and redistribute this software, but only under the conditions - described in the GNU General Public License. + described in the {{GNU General Public License}}. A copy of this license is supposed to have been given to you along with this software so you can know your rights and responsibilities. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_464.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_464.RULE index 8490930c9d..001ad54b57 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_464.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_464.RULE @@ -8,7 +8,7 @@ referenced_filenames: Everyone is granted permission to copy, modify and redistribute GNU Ghostscript, but only under the conditions - described in the GNU General Public License. + described in the {{GNU General Public License}}. A copy of this license is supposed to have been given to you along with this software so you can know your rights and responsibilities. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_465.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_465.RULE index bb525e1727..b45822fee3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_465.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_465.RULE @@ -5,8 +5,8 @@ referenced_filenames: - /usr/share/common-licenses/GPL --- -This program is released under the GNU General Public License (GPL). +This program is released under the {{GNU General Public License (GPL}}). . On Debian GNU/Linux systems, the complete text of the latest version - of the GNU General Public License version can be found in + of the {{GNU General Public License}} version can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_467.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_467.RULE index ca5a9dc088..a2eac9cad3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_467.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_467.RULE @@ -6,9 +6,9 @@ referenced_filenames: --- License: GPL - This program is released under the GNU General Public License (GPL). + This program is released under the {{GNU General Public License (GPL}}). . On Debian GNU/Linux systems, the complete text of the latest version - of the GNU General Public License version can be found in + of the {{GNU General Public License}} version can be found in `/usr/share/common-licenses/GPL'. Comment: No explicit version of the GPL has been specified. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_468.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_468.RULE index 332fbd8f74..1f2f03b3bd 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_468.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_468.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -released under the GPL, and therefore available +released {{under the GPL}}, and therefore available free of charge. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_469.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_469.RULE index 458c42c411..4db497fc95 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_469.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_469.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed under the terms of the GNU General Public License \ No newline at end of file +Distributed under the terms of the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_470.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_470.RULE index a07ff3f074..f3fbccb431 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_470.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_470.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -you may use this source under GPL terms! \ No newline at end of file +you may use this source {{under GPL}} terms! \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_471.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_471.RULE index 6053939a66..10794e60cd 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_471.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_471.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Licence GNU General Public License \ No newline at end of file +Licence {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_472.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_472.RULE index de424dedfd..5023815646 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_472.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_472.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -http://www.gnu.org/copyleft/gpl.html">Licence GNU General Public License \ No newline at end of file +http://www.gnu.org/copyleft/gpl.html">Licence {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_475.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_475.RULE index 974231e5c8..beca7d20ba 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_475.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_475.RULE @@ -7,5 +7,5 @@ referenced_filenames: . On Debian GNU/Linux systems, the complete text of the newest version - of the GNU General Public License can be found in + of the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_476.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_476.RULE index ea71983e7c..6bb42403d7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_476.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_476.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The documentation licensed under the GPL \ No newline at end of file +The documentation licensed {{under the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_478.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_478.RULE index b4a8529ab0..8f7a7c6c38 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_478.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_478.RULE @@ -6,4 +6,4 @@ referenced_filenames: - /usr/share/common-licenses/GPL --- -and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. \ No newline at end of file +and is licensed {{under the GPL}}, see `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_479.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_479.RULE index 81a828f65e..9b9173275a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_479.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_479.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL --- -On Debian GNU/Linux systems, the complete text of the GNU General - Public License is in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General + Public License}} is in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_480.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_480.RULE index ca2c785841..1385c6ea7b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_480.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_480.RULE @@ -6,6 +6,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL --- -On Debian GNU/Linux systems, the complete text of the GNU General Public License (the +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} (the "COPYING" file referred to above) can be found in the /usr/share/common-licenses/GPL file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_481.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_481.RULE index 37b84b8747..1b376a56f3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_481.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_481.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL file. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_482.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_482.RULE index aa2f352e63..a9cbcbf765 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_482.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_482.RULE @@ -8,14 +8,14 @@ referenced_filenames: License: GPL-1+ This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 1, or (at your option) any later version. ․ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. ․ - On Debian GNU/Linux systems, the complete text of the GNU General Public - License Version 1 can be found in "/usr/share/common-licenses/GPL-1". \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public + License}} Version 1 can be found in "/usr/share/common-licenses/GPL-1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_483.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_483.RULE index 1886fe47b7..dc1a492637 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_483.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_483.RULE @@ -6,7 +6,7 @@ relevance: 100 License: GPL-any # You may freely redistribute, use and modify this software under the terms - # of the GNU General Public License. + # of the {{GNU General Public License}}. . - On Debian GNU/Linux systems, the complete text of the GNU General Public License - can be found in file "/usr/share/common-licenses/GPL". \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} + can be found in file "{{/usr/share/common-licenses/GPL}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_484.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_484.RULE index 42fa660e97..fc2913e57f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_484.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_484.RULE @@ -6,5 +6,5 @@ relevance: 100 The C# Compiler is released under the terms of the GNU GPL. -On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL file. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_485.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_485.RULE index 8a32f353d1..559ed8c9b7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_485.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_485.RULE @@ -7,4 +7,4 @@ relevance: 100 You are free to distribute this software under the terms of the GNU General Public Licence. On Debian GNU/Linux systems, the complete text of the GNU General Public -Licence can be found in /usr/share/common-licenses/GPL. \ No newline at end of file +Licence can be found in {{/usr/share/common-licenses/GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_486.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_486.RULE index 0ee575621c..864d6ce038 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_486.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_486.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-1 --- -On Debian GNU/Linux systems, the complete text of the GNU General Public - License Version 1 can be found in "/usr/share/common-licenses/GPL-1". \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General Public + License}} Version 1 can be found in "/usr/share/common-licenses/GPL-1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_487.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_487.RULE index 80d8bf66d5..f4816736d1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_487.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_487.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl --- -copyright: GNU GENERAL PUBLIC LICENSE | | . \ No newline at end of file +the {{GNU General Public License}} . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_491.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_491.RULE index 400218d878..d80a9a678f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_491.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_491.RULE @@ -9,7 +9,7 @@ ignorable_urls: This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_493.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_493.RULE index 1b0014d2a8..686236b570 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_493.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_493.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -GPL = Gnu General Public License, https://www.gnu.org/copyleft/gpl.html \ No newline at end of file +{{GPL = Gnu General Public License}}, https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_496.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_496.RULE index c48a7bc2a5..e2da35cfaf 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_496.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_496.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-1.0-plus is_license_text: yes -relevance: 100 referenced_filenames: - COPYING ignorable_urls: diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_497.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_497.RULE index 4cc434bb64..4e96c749b3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_497.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_497.RULE @@ -9,6 +9,6 @@ ignorable_urls: - https://www.gnu.org/licenses/licenses.html --- -This software is covered by the GNU General Public License. +This software is covered by the {{GNU General Public License}}. See the file COPYING for the complete text of the license. Or the GNU website: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_498.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_498.RULE index 443bd9a2f3..109f02a27b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_498.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_498.RULE @@ -7,4 +7,4 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -Licensed under the https://www.gnu.org/copyleft/gpl.html GNU General Public License \ No newline at end of file +Licensed under the https://www.gnu.org/copyleft/gpl.html {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_5.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_5.RULE index 066bdb8ce0..01927b972b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_5.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_5.RULE @@ -4,6 +4,6 @@ is_license_notice: yes notes: Debian GPL 1.0 + --- -the GNU General Public License as published by the Free Software +the {{GNU General Public License}} as published by the Free Software Foundation; either version 1, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_500.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_500.RULE index 84a0a00d0c..ad95c96f9c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_500.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_500.RULE @@ -8,9 +8,9 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -A copy of the GNU General Public License is available in the COPYING.txt file +A copy of the {{GNU General Public License}} is available in the COPYING.txt file included with all NAnt distributions. -For more licensing information refer to the GNU General Public License on the +For more licensing information refer to the {{GNU General Public License}} on the GNU Project web site. https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_502.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_502.RULE index a27cf92d44..6428d5247a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_502.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_502.RULE @@ -11,6 +11,6 @@ ignorable_urls: LICENSE ===== - This software is covered by the GNU General Public License. + This software is covered by the {{GNU General Public License}}. See the file COPYING for the complete text of the license. Or the GNU website: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_503.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_503.RULE index d5105e53d3..dd6bd4e53c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_503.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_503.RULE @@ -8,8 +8,8 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -This program is free software, released under the GNU General Public License +This program is free software, released under the {{GNU General Public License}} and you are welcome to redistribute it under certain conditions. It comes with -ABSOLUTELY NO WARRANTY; for details read the GNU General Public License to be +ABSOLUTELY NO WARRANTY; for details read the {{GNU General Public License}} to be found in the file "COPYING" distributed with this program, or online at: https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_504.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_504.RULE index dcb83cfad4..e77a6c5696 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_504.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_504.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -https://www.gnu.org/copyleft/gpl.html">Licence GNU General Public License \ No newline at end of file +https://www.gnu.org/copyleft/gpl.html">Licence {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_506.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_506.RULE index 181d3e6b9c..03b83b81a6 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_506.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_506.RULE @@ -8,5 +8,5 @@ ignorable_urls: - https://www.gnu.org/licenses/ --- -* You should have received a copy of the GNU General Public License +* You should have received a copy of the {{GNU General Public License}} * (for example COPYING); If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_508.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_508.RULE index 2202aaef96..94fdd20627 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_508.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_508.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -Licensed under the GPL (https://www.gnu.org/licenses/gpl.html) license. \ No newline at end of file +Licensed {{under the GPL}} (https://www.gnu.org/licenses/gpl.html) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_509.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_509.RULE index 3b6e9dbd59..e0fa333f74 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_509.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_509.RULE @@ -13,6 +13,6 @@ I DISCLAIM ALL RESPONSIBILITY FOR ANY POSSIBLE BAD EFFECTS OF THIS CODE! LICENSE ===== - This software is covered by the GNU General Public License. + This software is covered by the {{GNU General Public License}}. See the file COPYING for the complete text of the license. Or the GNU website: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_510.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_510.RULE index 12c01dd167..402b5bc95f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_510.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_510.RULE @@ -8,4 +8,4 @@ ignorable_urls: --- * Copyright notice -* GNU General Public License https://www.gnu.org/licenses/gpl.html \ No newline at end of file +* {{GNU General Public License}} https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_512.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_512.RULE index 2a65a01091..f58ddc8288 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_512.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_512.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- You may redistribute copies of it under the terms of -the GNU General Public License . \ No newline at end of file +the {{GNU General Public License}} . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_513.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_513.RULE index d4d348a46d..5601ca866b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_513.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_513.RULE @@ -10,4 +10,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -@copyright GNU General Public License, https://www.gnu.org/licenses/gpl.html \ No newline at end of file +@copyright {{GNU General Public License}}, https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_514.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_514.RULE index aef5eb62e3..f5e510820a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_514.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_514.RULE @@ -11,7 +11,7 @@ ignorable_urls: On Debian GNU/Linux systems, the complete {{text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL'}}. - A copy of the {{GNU General Public License is also available}} at + A copy of the GNU General Public License is also available at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file + St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_517.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_517.RULE index d94ed776d7..d6134aa3d7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_517.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_517.RULE @@ -8,5 +8,5 @@ ignorable_urls: This emulator is normally available under a BSD license. It's available -in this form only under GPL. +in this form only {{under GPL}}. The GPL license can be found at https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_518.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_518.RULE index 7578402697..4cb0e386ab 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_518.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_518.RULE @@ -8,5 +8,5 @@ ignorable_urls: --- You may redistribute copies of it under the terms of -the GNU General Public License . +the {{GNU General Public License}} . There is NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_519.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_519.RULE index 8f21a4bfd4..87479f7ace 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_519.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_519.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- licensed under the -`GNU General Public License `_. \ No newline at end of file +`{{GNU General Public License}} `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_522.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_522.RULE index 5c1f074c2a..2e2ee3fb5f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_522.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_522.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -A copy of the GNU General Public License is available as -/usr/share/common-licenses/GPL in the Debian GNU/Linux distribution or on +A copy of the {{GNU General Public License}} is available as +{{/usr/share/common-licenses/GPL}} in the Debian GNU/Linux distribution or on the World Wide Web at https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_525.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_525.RULE index 84eec88f4e..34815a26bf 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_525.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_525.RULE @@ -9,14 +9,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, either version 1,2,3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_526.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_526.RULE index 9fd7fbf659..abb1627850 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_526.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_526.RULE @@ -4,8 +4,8 @@ is_license_notice: yes --- Permission to use, copy, modify, and distribute this software and its - documentation under the terms of the GNU General Public License is + documentation under the terms of the {{GNU General Public License}} is hereby granted. No representations are made about the suitability of this software for any purpose. It is provided "as is" without express - or implied warranty. See the GNU General Public License for more + or implied warranty. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_528.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_528.RULE index 056a77b4f0..9092368d05 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_528.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_528.RULE @@ -6,6 +6,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL --- -On Debian systems, the text of the GNU General Public License (the +On Debian systems, the text of the {{GNU General Public License}} (the "COPYING" file referred to above) can be found in the /usr/share/common-licenses/GPL file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_529.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_529.RULE index 26ed74f432..839710864e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_529.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_529.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -On Debian systems, the text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL file. \ No newline at end of file +On Debian systems, the text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_530.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_530.RULE index 52b53ee665..5c08b26030 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_530.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_530.RULE @@ -7,4 +7,4 @@ referenced_filenames: - /usr/share/common-licenses/GPL --- -On Debian systems, the text of the newest version of the GNU General Public License can be found in /usr/share/common-licenses/GPL. \ No newline at end of file +On Debian systems, the text of the newest version of the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_531.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_531.RULE index ae829f4d62..a42dd01452 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_531.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_531.RULE @@ -8,14 +8,14 @@ referenced_filenames: License: GPL-1+ This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 1, or (at your option) any later version. ․ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. ․ - On Debian systems, the text of the GNU General Public - License Version 1 can be found in "/usr/share/common-licenses/GPL-1". \ No newline at end of file + On Debian systems, the text of the {{GNU General Public + License}} Version 1 can be found in "/usr/share/common-licenses/GPL-1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_532.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_532.RULE index cf3bda578a..b326a3adb9 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_532.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_532.RULE @@ -7,7 +7,7 @@ minimum_coverage: 90 License: GPL-any # You may freely redistribute, use and modify this software under the terms - # of the GNU General Public License. + # of the {{GNU General Public License}}. . - On Debian systems, the text of the GNU General Public License - can be found in file "/usr/share/common-licenses/GPL". \ No newline at end of file + On Debian systems, the text of the {{GNU General Public License}} + can be found in file "{{/usr/share/common-licenses/GPL}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_533.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_533.RULE index dfe2ef1c93..02e68eee9f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_533.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_533.RULE @@ -6,5 +6,5 @@ relevance: 100 The C# Compiler is released under the terms of the GNU GPL. -On Debian systems, the text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL file. \ No newline at end of file +On Debian systems, the text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_534.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_534.RULE index 4ad7d286a7..7a1d28207a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_534.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_534.RULE @@ -7,4 +7,4 @@ relevance: 100 You are free to distribute this software under the terms of the GNU General Public Licence. On Debian systems, the text of the GNU General Public -Licence can be found in /usr/share/common-licenses/GPL. \ No newline at end of file +Licence can be found in {{/usr/share/common-licenses/GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_535.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_535.RULE index f7a3d0e1a4..b8d9cdf7a5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_535.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_535.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-1 --- -On Debian systems, the text of the GNU General Public - License Version 1 can be found in "/usr/share/common-licenses/GPL-1". \ No newline at end of file +On Debian systems, the text of the {{GNU General Public + License}} Version 1 can be found in "/usr/share/common-licenses/GPL-1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_536.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_536.RULE index 8fecd7aaef..781ccd293d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_536.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_536.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -On Debian systems, the text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL \ No newline at end of file +On Debian systems, the text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_537.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_537.RULE index c8bc8611ab..12d7df9401 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_537.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_537.RULE @@ -9,7 +9,7 @@ referenced_filenames: Everyone is granted permission to copy, modify and redistribute Ghostscript, but only under the conditions - described in the GNU General Public License. + described in the {{GNU General Public License}}. A copy of this license is supposed to have been given to you along with Ghostscript so you can know your rights and responsibilities. diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_539.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_539.RULE index 80daca6fc0..26f38a2bc7 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_539.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_539.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -See the file COPYING (GNU General Public License) for license conditions \ No newline at end of file +See the file COPYING ({{GNU General Public License}}) for license conditions \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_540.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_540.RULE index 5ebf5d569b..023588056b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_540.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_540.RULE @@ -5,5 +5,5 @@ is_license_notice: yes LICENSE_START(GPL_NOVERSION_ONELINE) Do not restrict distribution. -May be distributed under the GNU General Public License +May be distributed under the {{GNU General Public License}} LICENSE_END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_541.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_541.RULE index 3589ab6cdc..49781f2e2f 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_541.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_541.RULE @@ -5,4 +5,4 @@ relevance: 100 --- Do not restrict distribution. -May be distributed under the GNU General Public License \ No newline at end of file +May be distributed under the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_542.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_542.RULE index 96051cbb19..f39b2ffe67 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_542.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_542.RULE @@ -3,7 +3,7 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -The GNU General Public License's references to "object code" +The {{GNU General Public License}}'s references to "object code" and "executables" are to be interpreted as the output of any document formatting or typesetting system, including intermediate and printed output. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_546.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_546.RULE index d6d6de9f9f..be8d25ef8d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_546.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_546.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GPL-1.0+ GNU General Public License v1.0 or later \ No newline at end of file +{{GPL-1.0+}} {{GNU General Public License v1.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_547.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_547.RULE index 5e8d035c47..09ab85d85b 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_547.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_547.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GPL-1.0-or-later GNU General Public License v1.0 or later \ No newline at end of file +{{GPL-1.0-or-later}} {{GNU General Public License v1.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_548.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_548.RULE index 80d1b5f767..740968ab1e 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_548.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_548.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GNU General Public License v1.0 or later GPL-1.0+ \ No newline at end of file +{{GNU General Public License v1.0 or later}} {{GPL-1.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_549.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_549.RULE index a5864f60dc..d7f4b9593c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_549.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_549.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -license : GPL-1.0+ \ No newline at end of file +license : {{GPL-1.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_550.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_550.RULE index 0dcf9713b9..0ba4b18e3a 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_550.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_550.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : GPL-1.0+ \ No newline at end of file +licenseid : {{GPL-1.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_551.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_551.RULE index 7ba1e1dce5..2bf80d77fd 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_551.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_551.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : GNU General Public License v1.0 or later \ No newline at end of file +name : {{GNU General Public License v1.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_552.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_552.RULE index 2d097ce408..0d2b1b0709 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_552.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_552.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU General Public License v1.0 or later GPL-1.0-or-later \ No newline at end of file +{{GNU General Public License v1.0 or later}} {{GPL-1.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_553.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_553.RULE index 1223b89605..d57c6ca858 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_553.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_553.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GPL-1.0-or-later \ No newline at end of file +license: {{GPL-1.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_554.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_554.RULE index 33457fbcf5..7fb357d0f5 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_554.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_554.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GNU General Public License v1.0 or later \ No newline at end of file +license: {{GNU General Public License v1.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_555.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_555.RULE index 35ba82cc33..da2cf32229 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_555.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_555.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: GPL-1.0-or-later \ No newline at end of file +licenseId: {{GPL-1.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_556.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_556.RULE index bb3a0d7120..a38c0a8100 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_556.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_556.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- this subdirectory -includes code that is under -[GPL](https://en.wikipedia.org/wiki/GNU_General_Public_License). \ No newline at end of file +includes code that is {{under +[GPL}}](https://en.wikipedia.org/wiki/GNU_General_Public_License). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_557.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_557.RULE index 3f2ba44a5b..bfe2da8a09 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_557.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_557.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-1.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_558.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_558.RULE index 64f2aa9531..f2733960cd 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_558.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_558.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_559.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_559.RULE index 8a64f37c68..bb576359ce 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_559.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_559.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-1.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_565.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_565.RULE index ae14599efc..4c8847e886 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_565.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_565.RULE @@ -4,6 +4,7 @@ is_license_reference: yes is_continuous: yes relevance: 100 notes: Seen in ebpf in github.com/cilium/ebpf/ and may be accessing GPL-only kernel symbols +skip_for_required_phrase_generation: yes --- {{ License: internal.NewStringPointer("GPL")}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_566.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_566.RULE index 755ecc4e69..a0f6f19fd8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_566.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_566.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -* This file is placed under the GPL. Please see the +* This file is placed {{under the GPL}}. Please see the * file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_567.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_567.RULE index 6f71e8e477..e4b4a5fc60 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_567.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_567.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -* This file is placed under the GPL. \ No newline at end of file +* This file is placed {{under the GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_568.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_568.RULE index b4ea4459be..4df2d049bf 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_568.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_568.RULE @@ -6,4 +6,4 @@ ignorable_urls: --- License -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License; see www.gnu.org/copyleft/gpl.html \ No newline at end of file +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License}}; see www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_569.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_569.RULE index 9e016cfea2..567afea272 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_569.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_569.RULE @@ -5,4 +5,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License; see www.gnu.org/copyleft/gpl.html \ No newline at end of file +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License}}; see www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_570.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_570.RULE index 3207354206..de3b815b58 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_570.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_570.RULE @@ -5,4 +5,4 @@ is_license_notice: yes License This program is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License \ No newline at end of file +the terms of the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_571.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_571.RULE index 07693b8083..4e4c8b3e7d 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_571.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_571.RULE @@ -6,4 +6,4 @@ ignorable_urls: --- you can redistribute it and/or modify it under -the terms of the GNU General Public License;see www.gnu.org/copyleft/gpl.html. \ No newline at end of file +the terms of the {{GNU General Public License}};see www.gnu.org/copyleft/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_572.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_572.RULE index f4bc378a90..44c27142ad 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_572.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_572.RULE @@ -5,4 +5,4 @@ relevance: 100 --- you can redistribute it and/or modify it under -the terms of the GNU General Public License \ No newline at end of file +the terms of the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_573.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_573.RULE index 5d7e226469..56eb05efc2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_573.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_573.RULE @@ -3,18 +3,18 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -License: GNU General Public License +License: {{GNU General Public License}} This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_574.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_574.RULE index cc70e6151d..ceee8da143 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_574.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_574.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_575.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_575.RULE index 235e09f8a8..8011e3df77 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_575.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_575.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -under the GNU General Public License. No warranty. See COPYING for details. \ No newline at end of file +under the {{GNU General Public License}}. No warranty. See COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_576.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_576.RULE index 53f2a050d5..f52b275e20 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_576.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_576.RULE @@ -6,7 +6,7 @@ minimum_coverage: 99 {{GPL License Agreement}} -This Software may be used in accordance with GNU General Public License ({{GPL}}). Please read carefully the following GPL and click on "I Accept" button. If you cannot agre +This Software may be used in accordance with {{GNU General Public License}} ({{GPL}}). Please read carefully the following GPL and click on "I Accept" button. If you cannot agre e with the following terms, please click "I don't Accept" button. In case of your non-acceptance, you can not use this Software. Note: Please click on "I Accept" while holding down "Shift" or right click on "I Accept" and select "Save Target As,,," from the menu. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_577.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_577.RULE index 92ef338878..2086d048c6 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_577.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_577.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: Reuse of the file allowed under the GPL \ No newline at end of file +License: Reuse of the file allowed {{under the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_582.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_582.RULE index b0197738cc..834086eda1 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_582.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_582.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License \ No newline at end of file +released under the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_583.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_583.RULE index 48776c0c35..272c167e60 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_583.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_583.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Modified under GNU General Public License, with creators' permission \ No newline at end of file +Modified under {{GNU General Public License}}, with creators' permission \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_585.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_585.RULE index bde14876e8..9f66f45e4c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_585.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_585.RULE @@ -5,4 +5,4 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -freely available under the https://www.gnu.org/copyleft/gpl.html GNU General Public License General Public License GPL \ No newline at end of file +freely available under the https://www.gnu.org/copyleft/gpl.html {{GNU General Public License}} General Public License GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_586.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_586.RULE index 553482b319..bd53ffbcd3 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_586.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_586.RULE @@ -3,7 +3,7 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -This source code is distributed according to the terms of the GNU General -Public License. It is provided on an as-is basis and no responsibility is +This source code is distributed according to the terms of the {{GNU General +Public License}}. It is provided on an as-is basis and no responsibility is accepted for its failure to perform as expected. It is worth at least as much as you paid for it! \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_599.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_599.RULE new file mode 100644 index 0000000000..01c8826afa --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_599.RULE @@ -0,0 +1,15 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-1 +--- + +License: GPL-1+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 1, or (at your option) + any later version. + . + On Debian systems, the complete text of version 1 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-1' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_6.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_6.RULE index 6a3e5b09ca..6452471b0c 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_6.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_6.RULE @@ -7,15 +7,15 @@ referenced_filenames: --- GDB, GAS, and the GNU binutils are free software; you can redistribute -them and/or modify them under the terms of the GNU General Public -License as published by the Free Software Foundation; either version +them and/or modify them under the terms of the {{GNU General Public +License}} as published by the Free Software Foundation; either version 1, or (at your option) any later version. GDB, GAS, and the GNU binutils are distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See -the GNU General Public License for more details. +the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this file; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_600.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_600.RULE new file mode 100644 index 0000000000..b5793c5f99 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_600.RULE @@ -0,0 +1,14 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-1 +--- + +This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 1, or (at your option) + any later version. + . + On Debian systems, the complete text of version 1 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-1' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_601.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_601.RULE new file mode 100644 index 0000000000..32bf281201 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_601.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +--- + +License: GPL-1+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 1, or (at your option) + any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_68.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_68.RULE index e713051705..030f2e3d81 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_68.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_68.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- This is free software. You may redistribute copies of it under the terms of -the GNU General Public License . +the {{GNU General Public License}} . There is NO WARRANTY, to the extent permitted by law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_7.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_7.RULE index 48e40e5f38..5293f2abda 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_7.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_7.RULE @@ -8,7 +8,7 @@ referenced_filenames: This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -The full GNU General Public License is included in this distribution in the +The full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_8.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_8.RULE index 0bbdd4010c..28cd52f9df 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_8.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_8.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-1.0-plus -is_license_reference: yes +is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -{{licensed under the terms of the GNU General Public License.}} \ No newline at end of file +licensed under the terms of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_81.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_81.RULE index 24295ddf14..2783990094 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_81.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_81.RULE @@ -7,5 +7,5 @@ referenced_filenames: GNU Fortran comes with NO WARRANTY, to the extent permitted by law. You may redistribute copies of GNU Fortran -under the terms of the GNU General Public License. +under the terms of the {{GNU General Public License}}. For more information about these matters, see the file named COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_9.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_9.RULE index 2c689b5501..58889be6fd 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_9.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_9.RULE @@ -3,6 +3,6 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -This software is licensed under the terms of the GNU General Public -License, as published by the Free Software Foundation, and +This software is {{licensed under the terms of the GNU General Public +License}}, as published by the Free Software Foundation, and may be copied, distributed, and modified under those terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_debian3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_debian3.RULE index 635912d09d..6e41d7c1ee 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_debian3.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_debian3.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -All code generated for the Debian adaptions is under the GNU General Public License. \ No newline at end of file +All code generated for the Debian adaptions is under the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_linux_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_linux_1.RULE index 147558cb81..f46919f9e8 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_linux_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_linux_1.RULE @@ -7,6 +7,6 @@ notes: One of the many Linux GPL declaration. It should be treated as GPL-2.0 bu be done short of knowning what is the license in COPYING --- -* This file is subject to the terms and conditions of the GNU General Public - * License. See the file COPYING in the main directory of this archive +* This file is subject to the terms and conditions of the {{GNU General Public + * License}}. See the file COPYING in the main directory of this archive * for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_1.RULE index f0fccacd98..3ee6363aaf 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_1.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_1.RULE @@ -5,9 +5,9 @@ minimum_coverage: 90 --- This software may be used and distributed according to the terms of -the GNU General Public License (GPL), incorporated herein by reference. -Drivers based on or derived from this code fall under the GPL and must +the {{GNU General Public License (GPL}}), incorporated herein by reference. +Drivers based on or derived from this code fall {{under the GPL}} and must retain the authorship, copyright and license notice. This file is not a complete program and may only be used when the entire operating -system is licensed under the GPL. License for under other terms may be +system is licensed {{under the GPL}}. License for under other terms may be available. Contact the original author for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_2.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_2.RULE index 21749d56c4..83825c86e2 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_2.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_2.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This software may only be used and distributed according to the terms of -the GNU General Public License as modified by , incorporated herein +the {{GNU General Public License}} as modified by , incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_4.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_4.RULE index 41e0b5e593..f3f3cad823 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_4.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_4.RULE @@ -6,9 +6,9 @@ referenced_filenames: --- This software may be used and distributed according to the terms of -the GNU General Public License (GPL), incorporated herein by reference. -Drivers based on or derived from this code fall under the GPL and must +the {{GNU General Public License (GPL}}), incorporated herein by reference. +Drivers based on or derived from this code fall {{under the GPL}} and must retain the authorship, copyright and license notice. This file is not a complete program and may only be used when the entire operating -system is licensed under the GPL. +system is licensed {{under the GPL}}. See the file COPYING in this distribution for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_5.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_5.RULE index d19ac76f26..c09914cf61 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_no_version_5.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_no_version_5.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- This software may be used and distributed according to the terms of -the GNU General Public License (GPL), incorporated herein by reference. \ No newline at end of file +the {{GNU General Public License (GPL}}), incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_1.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_1.RULE new file mode 100644 index 0000000000..b61214f89d --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_1.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 99 +--- + +copyleft ('GNU GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_3.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_3.RULE new file mode 100644 index 0000000000..fd208f0f11 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_3.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GPL License Agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_4.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_4.RULE new file mode 100644 index 0000000000..dce99d056c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_4.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-1.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under terms of GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_7.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_7.RULE new file mode 100644 index 0000000000..9f77a4c5b7 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_7.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + +complete text of GNU General Public License can be found in `/usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_8.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_8.RULE new file mode 100644 index 0000000000..d4818c2556 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0-plus_required_phrase_8.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-1.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + +text of GNU General Public License can be found in `/usr/share/common-licenses/GPL' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0-plus_theme.RULE b/src/licensedcode/data/rules/gpl-1.0-plus_theme.RULE index f13fc171af..63cfde2dc4 100644 --- a/src/licensedcode/data/rules/gpl-1.0-plus_theme.RULE +++ b/src/licensedcode/data/rules/gpl-1.0-plus_theme.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- licensed under the -`GNU General Public License `_. \ No newline at end of file +`{{GNU General Public License}} `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0.RULE b/src/licensedcode/data/rules/gpl-1.0.RULE index de374f2b8d..7b57dfbda3 100644 --- a/src/licensedcode/data/rules/gpl-1.0.RULE +++ b/src/licensedcode/data/rules/gpl-1.0.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-1.0.SPDX.RULE b/src/licensedcode/data/rules/gpl-1.0.SPDX.RULE index fc81ec9a03..81cdd0a153 100644 --- a/src/licensedcode/data/rules/gpl-1.0.SPDX.RULE +++ b/src/licensedcode/data/rules/gpl-1.0.SPDX.RULE @@ -11,10 +11,10 @@ ignorable_holders: - the Free Software Foundation --- -GNU General Public License, version 1 +{{GNU General Public License, version 1}} - GNU GENERAL PUBLIC LICENSE - Version 1, February 1989 + {{GNU GENERAL PUBLIC LICENSE + Version 1}}, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/gpl-1.0_10.RULE b/src/licensedcode/data/rules/gpl-1.0_10.RULE index f69096262c..2b97d9d2e6 100644 --- a/src/licensedcode/data/rules/gpl-1.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_10.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The GNU General Public License, Version 1, February 1989 \ No newline at end of file +The {{GNU General Public License, Version 1}}, February 1989 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_11.RULE b/src/licensedcode/data/rules/gpl-1.0_11.RULE index 99b7bf76ad..78fd66c1bd 100644 --- a/src/licensedcode/data/rules/gpl-1.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_11.RULE @@ -11,9 +11,9 @@ ignorable_holders: - the Free Software Foundation --- -GNU GENERAL PUBLIC LICENSE +{{GNU GENERAL PUBLIC LICENSE -Version 1, February 1989 +Version 1}}, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/gpl-1.0_32.RULE b/src/licensedcode/data/rules/gpl-1.0_32.RULE index ec36464099..f247cc8ce6 100644 --- a/src/licensedcode/data/rules/gpl-1.0_32.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_32.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -gnu gpl 10 \ No newline at end of file +gnu {{gpl 10}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_35.RULE b/src/licensedcode/data/rules/gpl-1.0_35.RULE index 6f478d4417..642a3f23a9 100644 --- a/src/licensedcode/data/rules/gpl-1.0_35.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_35.RULE @@ -4,10 +4,10 @@ is_license_notice: yes relevance: 100 --- -The GNU General Public License, Version 1, February 1989 +The {{GNU General Public License, Version 1}}, February 1989 This software is Copyright This is free software, licensed under: - The GNU General Public License, Version 1, February 1989 \ No newline at end of file + The {{GNU General Public License, Version 1}}, February 1989 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_36.RULE b/src/licensedcode/data/rules/gpl-1.0_36.RULE index 106c41b3e1..e117a3a890 100644 --- a/src/licensedcode/data/rules/gpl-1.0_36.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_36.RULE @@ -8,4 +8,4 @@ This software is Copyright This is free software, licensed under: - The GNU General Public License, Version 1, February 1989 \ No newline at end of file + The {{GNU General Public License, Version 1}}, February 1989 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_37.RULE b/src/licensedcode/data/rules/gpl-1.0_37.RULE index 327631e683..a8609fae41 100644 --- a/src/licensedcode/data/rules/gpl-1.0_37.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_37.RULE @@ -6,4 +6,4 @@ relevance: 100 This is free software, licensed under: - The GNU General Public License, Version 1, February 1989 \ No newline at end of file + The {{GNU General Public License, Version 1}}, February 1989 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_39.RULE b/src/licensedcode/data/rules/gpl-1.0_39.RULE index deae4b5d39..5aab18ee39 100644 --- a/src/licensedcode/data/rules/gpl-1.0_39.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_39.RULE @@ -10,9 +10,9 @@ ignorable_holders: - the Free --- -GNU GENERAL PUBLIC LICENSE +{{GNU GENERAL PUBLIC LICENSE - Version 1, February 1989 + Version 1}}, February 1989 diff --git a/src/licensedcode/data/rules/gpl-1.0_41.RULE b/src/licensedcode/data/rules/gpl-1.0_41.RULE index 65dce5cce7..b8496baa1a 100644 --- a/src/licensedcode/data/rules/gpl-1.0_41.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_41.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-1.0_42.RULE b/src/licensedcode/data/rules/gpl-1.0_42.RULE index 3729cf61c8..012c6e189f 100644 --- a/src/licensedcode/data/rules/gpl-1.0_42.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_42.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-1.0_51.RULE b/src/licensedcode/data/rules/gpl-1.0_51.RULE index 880696aa3d..8d9b5c0c2d 100644 --- a/src/licensedcode/data/rules/gpl-1.0_51.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_51.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -THE GPL 1.0 LICENSE \ No newline at end of file +THE {{GPL 1.0 LICENSE}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_52.RULE b/src/licensedcode/data/rules/gpl-1.0_52.RULE index abd48e56de..40a2dbd87b 100644 --- a/src/licensedcode/data/rules/gpl-1.0_52.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_52.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -UNDER THE TERMS OF THE GPL 1.0 \ No newline at end of file +UNDER THE TERMS OF THE {{GPL 1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_53.RULE b/src/licensedcode/data/rules/gpl-1.0_53.RULE index 5f5ab9c68f..67f0b2c670 100644 --- a/src/licensedcode/data/rules/gpl-1.0_53.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_53.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -UNDER THE TERMS OF THE GPL 1.0 LICENSE. \ No newline at end of file +UNDER THE TERMS OF THE {{GPL 1.0 LICENSE}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_55.RULE b/src/licensedcode/data/rules/gpl-1.0_55.RULE index 0dab486645..01bc94d94d 100644 --- a/src/licensedcode/data/rules/gpl-1.0_55.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_55.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 1.0 LICENSE. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE GPL 1.0 LICENSE. ] \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{GPL 1.0 LICENSE}}. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE {{GPL 1.0 LICENSE}}. ] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_56.RULE b/src/licensedcode/data/rules/gpl-1.0_56.RULE index a6afb12a1c..4427821029 100644 --- a/src/licensedcode/data/rules/gpl-1.0_56.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_56.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 1.0 LICENSE. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE GPL 1.0 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{GPL 1.0 LICENSE}}. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE {{GPL 1.0 LICENSE}}. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_58.RULE b/src/licensedcode/data/rules/gpl-1.0_58.RULE index c3574ca92c..b69fd3a2ef 100644 --- a/src/licensedcode/data/rules/gpl-1.0_58.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_58.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GPL-1.0 GNU General Public License v1.0 only \ No newline at end of file +{{GPL-1.0}} {{GNU General Public License v1.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_59.RULE b/src/licensedcode/data/rules/gpl-1.0_59.RULE index 4ca6177eea..e5818b0181 100644 --- a/src/licensedcode/data/rules/gpl-1.0_59.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_59.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GPL-1.0-only GNU General Public License v1.0 only \ No newline at end of file +{{GPL-1.0-only}} {{GNU General Public License v1.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_60.RULE b/src/licensedcode/data/rules/gpl-1.0_60.RULE index 710c4cbc68..2ebf7b0958 100644 --- a/src/licensedcode/data/rules/gpl-1.0_60.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_60.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GNU General Public License v1.0 only GPL-1.0 \ No newline at end of file +{{GNU General Public License v1.0 only}} {{GPL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_61.RULE b/src/licensedcode/data/rules/gpl-1.0_61.RULE index 48192e8ef4..f4e00d3261 100644 --- a/src/licensedcode/data/rules/gpl-1.0_61.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_61.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -license : GPL-1.0 \ No newline at end of file +license : {{GPL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_62.RULE b/src/licensedcode/data/rules/gpl-1.0_62.RULE index beb590dfa1..243b1cea6a 100644 --- a/src/licensedcode/data/rules/gpl-1.0_62.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_62.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : GPL-1.0 \ No newline at end of file +licenseid : {{GPL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_63.RULE b/src/licensedcode/data/rules/gpl-1.0_63.RULE index dec56d0ad3..3e051ef3bc 100644 --- a/src/licensedcode/data/rules/gpl-1.0_63.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_63.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : GNU General Public License v1.0 only \ No newline at end of file +name : {{GNU General Public License v1.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_64.RULE b/src/licensedcode/data/rules/gpl-1.0_64.RULE index 9989636627..054f85c43b 100644 --- a/src/licensedcode/data/rules/gpl-1.0_64.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_64.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU General Public License v1.0 only GPL-1.0-only \ No newline at end of file +{{GNU General Public License v1.0 only}} {{GPL-1.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_65.RULE b/src/licensedcode/data/rules/gpl-1.0_65.RULE index 3981bf24e5..24c4f77770 100644 --- a/src/licensedcode/data/rules/gpl-1.0_65.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_65.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GPL-1.0-only \ No newline at end of file +license: {{GPL-1.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_66.RULE b/src/licensedcode/data/rules/gpl-1.0_66.RULE index b37596cf03..cd8957597b 100644 --- a/src/licensedcode/data/rules/gpl-1.0_66.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_66.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GNU General Public License v1.0 only \ No newline at end of file +license: {{GNU General Public License v1.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_67.RULE b/src/licensedcode/data/rules/gpl-1.0_67.RULE index 9cc79881ad..66f9f33563 100644 --- a/src/licensedcode/data/rules/gpl-1.0_67.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_67.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: GPL-1.0-only \ No newline at end of file +licenseId: {{GPL-1.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_68.RULE b/src/licensedcode/data/rules/gpl-1.0_68.RULE index d250bf48bc..d01b2df254 100644 --- a/src/licensedcode/data/rules/gpl-1.0_68.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_68.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -['GPLV1', 'GPL-1.0-only'], \ No newline at end of file +['GPLV1', '{{GPL-1.0-only}}'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_69.RULE b/src/licensedcode/data/rules/gpl-1.0_69.RULE index 7371aac593..6489157a60 100644 --- a/src/licensedcode/data/rules/gpl-1.0_69.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_69.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -wikipedia.org/wiki/GNU_General_Public_License#Version_1 \ No newline at end of file +wikipedia.org/wiki/{{GNU_General_Public_License#Version_1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_7.RULE b/src/licensedcode/data/rules/gpl-1.0_7.RULE index 56134f2059..c31e036e61 100644 --- a/src/licensedcode/data/rules/gpl-1.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_7.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-1.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GPL-1.0 \ No newline at end of file +{{GPL-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_71.RULE b/src/licensedcode/data/rules/gpl-1.0_71.RULE index b3c5cfd9e2..2afc51a8ed 100644 --- a/src/licensedcode/data/rules/gpl-1.0_71.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_71.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/GPL-1.0-only \ No newline at end of file +licenses.nuget.org/{{GPL-1.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_9.RULE b/src/licensedcode/data/rules/gpl-1.0_9.RULE index 77b3890dc7..1a716b8394 100644 --- a/src/licensedcode/data/rules/gpl-1.0_9.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_9.RULE @@ -9,8 +9,8 @@ ignorable_holders: - the Free Software Foundation --- -GNU GENERAL PUBLIC LICENSE - Version 1, February 1989 +{{GNU GENERAL PUBLIC LICENSE + Version 1}}, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA diff --git a/src/licensedcode/data/rules/gpl-1.0_gpl_10_bare_words.RULE b/src/licensedcode/data/rules/gpl-1.0_gpl_10_bare_words.RULE index b9bd1c96ca..ef5f853eb2 100644 --- a/src/licensedcode/data/rules/gpl-1.0_gpl_10_bare_words.RULE +++ b/src/licensedcode/data/rules/gpl-1.0_gpl_10_bare_words.RULE @@ -1,8 +1,9 @@ --- license_expression: gpl-1.0 is_license_tag: yes +is_required_phrase: yes is_continuous: yes relevance: 60 --- -{{gpl 10}} \ No newline at end of file +gpl 10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_required_phrase_1.RULE b/src/licensedcode/data/rules/gpl-1.0_required_phrase_1.RULE new file mode 100644 index 0000000000..bb3bdac2db --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0_required_phrase_1.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +is_required_phrase: yes +--- + +{{gpl 1 0}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-1.0_required_phrase_3.RULE b/src/licensedcode/data/rules/gpl-1.0_required_phrase_3.RULE new file mode 100644 index 0000000000..30d38edca0 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-1.0_required_phrase_3.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-1.0 +is_license_tag: yes +is_required_phrase: yes +--- + +gnu general public license version 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-clisp_1.RULE b/src/licensedcode/data/rules/gpl-2.0-clisp_1.RULE index 3e4c2a0ee0..7e119c7e60 100644 --- a/src/licensedcode/data/rules/gpl-2.0-clisp_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-clisp_1.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as + it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation; see file GNU-GPL. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus.RULE b/src/licensedcode/data/rules/gpl-2.0-plus.RULE index 4e4bca5440..ee468630da 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus.RULE @@ -6,15 +6,15 @@ is_license_notice: yes GPL2 OR LATER is free software; you can redistribute it and/or modify (it)? -under the terms of the GNU General Public License as +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2.* -.*or \(at your option\) any later version +.*or \(at your option\) any later version}} .* is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE See the -GNU General Public License for more details +{{GNU General Public License}} for more details -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with .* if not, write to the Free Software Foundation .* .*USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_0.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_0.RULE index 90b020a1a4..6ec112bde0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_0.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_0.RULE @@ -8,7 +8,7 @@ ignorable_urls: --- # This program is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by the +# under the terms of the {{GNU General Public License as published by the # Free Software Foundation; either version 2 of the License, or (at your -# option) any later version. See http://www.gnu.org/copyleft/gpl.html for +# option) any later version}}. See http://www.gnu.org/copyleft/gpl.html for # the full text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1.RULE index c4a1b6c0fc..76b44ecce7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1.RULE @@ -8,18 +8,18 @@ referenced_filenames: License: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General +Public License}} can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_10.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_10.RULE index 70208c399a..99356358d2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_10.RULE @@ -7,12 +7,12 @@ referenced_filenames: --- GPL: - The GPL version 2 (or any later version) applies to all files in the + The {{GPL version 2 (or any later version}}) applies to all files in the directories: This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. The GPL may be found in /usr/share/common-licenses/GPL on a Debian system. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_100.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_100.RULE index b4f77ec55e..9aaac4a34b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_100.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_100.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1000.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1000.RULE index 0bae941c18..47374c2462 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1000.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1000.RULE @@ -7,6 +7,6 @@ minimum_coverage: 90 Debian packaging (debian/*) is: Copyright: -License: GNU General Public License, version 2 or later (GPL-2+) - On Debian systems, the text of the GNU General Public License - version 2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file +License: {{GNU General Public License, version 2 or later}} (GPL-2+) + On Debian systems, the text of the {{GNU General Public License + version 2}} can be found in {{/usr/share/common-licenses/GPL}}-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1001.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1001.RULE index 992f0a6e0c..b1501de884 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1001.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1001.RULE @@ -4,20 +4,20 @@ is_license_notice: yes relevance: 100 --- -License: GPL-2+. +{{License: GPL-2+}}. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the text of the GNU General Public License -can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the text of the {{GNU General Public License}} +can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1002.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1002.RULE index 037c296cd8..38104ae182 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1002.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1002.RULE @@ -6,6 +6,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -License: GPL-2+ - On Debian systems, the text of the GPL-2 can be found in +{{License: GPL-2+}} + On Debian systems, the text of the {{GPL-2}} can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1003.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1003.RULE index a55a4d6888..2da780b529 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1003.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1003.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see - On Debian systems, the text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file + On Debian systems, the text of the {{GNU General + Public License version 2}} can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1004.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1004.RULE index ffac7127d6..82714dc858 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1004.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1004.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see <[http]://www.gnu.org/licenses/> - On Debian systems, the text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". \ No newline at end of file + On Debian systems, the text of the {{GNU General + Public License version 2}} can be found in "/usr/share/common-licenses/GPL-2". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1005.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1005.RULE index 7b93b3886b..1417dd3a86 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1005.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1005.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . -On Debian systems, the text of the GNU General Public License +On Debian systems, the text of the {{GNU General Public License}} can be found at '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1006.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1006.RULE index b665ccd303..643fd6c656 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1006.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1006.RULE @@ -4,21 +4,22 @@ is_license_notice: yes relevance: 100 referenced_filenames: - /usr/share/common-licenses/GPL-2 +is_deprecated: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the text of the GNU General Public License - version 3 can be found in ‘/usr/share/common-licenses/GPL-3’. \ No newline at end of file + On Debian systems, the text of the {{GNU General Public License + version 3}} can be found in ‘{{/usr/share/common-licenses/GPL-3’}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1007.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1007.RULE index 74dff9aa7e..4f675dfc0e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1007.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1007.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the text of the {{GNU General Public License +version 2}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1008.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1008.RULE index dd0c9b21e2..d20913a5a7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1008.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1008.RULE @@ -6,21 +6,21 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -License: GPL-2+ +{{License: GPL-2+}} | This program is free software; you can redistribute it and/or - | modify it under the terms of the GNU General Public License + | modify it under the terms of the {{GNU General Public License | as published by the Free Software Foundation; either version 2 - | of the License, or (at your option) any later version. + | of the License, or (at your option) any later version}}. | | This program is distributed in the hope that it will be useful, | but WITHOUT ANY WARRANTY; without even the implied warranty of | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - | GNU General Public License for more details. + | {{GNU General Public License}} for more details. | - | You should have received a copy of the GNU General Public License along + | You should have received a copy of the {{GNU General Public License}} along | with this program; if not, write to the Free Software Foundation, Inc., | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | | - | On Debian systems, the text of the GNU General Public License - | version 2 can be found in “/usr/share/common-licenses/GPL-2”. \ No newline at end of file + | On Debian systems, the text of the {{GNU General Public License + | version 2}} can be found in “/usr/share/common-licenses/GPL-2”. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1009.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1009.RULE index a8954f7531..e8f1435c78 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1009.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1009.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . -On Debian systems, the text of the GNU General Public License +On Debian systems, the text of the {{GNU General Public License}} can be found at '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_101.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_101.RULE index 8bddb79228..3091dedc95 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_101.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_101.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -Version 2 or later as published by the Free Software Foundation. \ No newline at end of file +modify it under the terms of the {{GNU General Public License +Version 2 or later}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1010.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1010.RULE index 3c5a140092..5d997d3143 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1010.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1010.RULE @@ -8,19 +8,19 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian systems, the text of the {{GNU General Public License +version 2}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. the +complete text of the {{GNU General Public License}} version 3 can be found +in `{{/usr/share/common-licenses/GPL}}-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1011.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1011.RULE index 9904206ff4..4f2b9b4958 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1011.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1011.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) - any later version. + any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the text of the GNU General Public License - version 2 can be found in ‘/usr/share/common-licenses/GPL-2’. \ No newline at end of file + On Debian systems, the text of the {{GNU General Public License + version 2}} can be found in ‘/usr/share/common-licenses/GPL-2’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1012.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1012.RULE index 5c87da773a..7ef9607c08 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1012.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1012.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the text of the {{GNU General Public License +version 2}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1013.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1013.RULE index 20beb6027b..fab5f4500f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1013.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1013.RULE @@ -7,18 +7,18 @@ relevance: 100 License: GPL v2 or later This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1014.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1014.RULE index 9b4940ac8a..e6ab4581ce 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1014.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1014.RULE @@ -9,18 +9,18 @@ referenced_filenames: License: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian systems, the text of the {{GNU General +Public License}} can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1015.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1015.RULE index 7881a7f571..338c145fe1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1015.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1015.RULE @@ -7,18 +7,18 @@ notes: GPL 2 or later notice, with debian line --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian systems, the text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1016.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1016.RULE index 568ee3ae3c..c50aebbeb5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1016.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1016.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- Bash is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later -version. +version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Bash. If not, see . -On Debian systems, the text of the GNU General Public License +On Debian systems, the text of the {{GNU General Public License}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1017.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1017.RULE index fd86382c82..3b7ebf396b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1017.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1017.RULE @@ -7,18 +7,18 @@ relevance: 100 License: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1018.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1018.RULE index 532c6f714c..3784a34695 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1018.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1018.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it under - the terms of the GNU General Public License as published by the Free Software + the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later - version. + version}}. . - On Debian systems, the text of the GNU General Public License version 2 + On Debian systems, the text of the {{GNU General Public License version 2}} can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1019.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1019.RULE index 378dead86e..91a3d0c67c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1019.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1019.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; version 2 dated June, 1991, or (at your option) any later version. . - On Debian systems, the text of version 2 of the GNU General - Public License can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the text of version 2 of the {{GNU General + Public License}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_102.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_102.RULE index cf00e42a21..2d89600c64 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_102.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_102.RULE @@ -7,8 +7,8 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. +This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version}}. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this program. If not, see {\field{\*\{HYPERLINK "http://www.gnu.org/licenses/ http://www.gnu.org/licenses/ \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see {\field{\*\{HYPERLINK "http://www.gnu.org/licenses/ http://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1020.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1020.RULE index a91f15b3d8..408a723703 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1020.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1020.RULE @@ -8,19 +8,19 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian systems, the text of the {{GNU General Public License +version 2}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. the +complete text of the {{GNU General Public License}} version 3 can be found +in `{{/usr/share/common-licenses/GPL}}-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1021.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1021.RULE index af0c8ffe4a..6df1599ad1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1021.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1021.RULE @@ -6,9 +6,9 @@ minimum_coverage: 95 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. -On Debian systems, the text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file +On Debian systems, the text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL}}-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1022.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1022.RULE index 2f6a68f3ed..59bc1d030f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1022.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1022.RULE @@ -4,10 +4,10 @@ is_license_notice: yes relevance: 100 --- -License: GPL-2+ +{{License: GPL-2+}} # This is free software; you may copy, modify and/or distribute this work - # under the terms of the GNU General Public License, version 2 or later. + # under the terms of the {{GNU General Public License, version 2 or later}}. # No warranty expressed or implied. See the file LICENSE for details. . - On Debian systems, the text of the GNU General Public License - can be found in file "/usr/share/common-licenses/GPL-2". \ No newline at end of file + On Debian systems, the text of the {{GNU General Public License}} + can be found in file "{{/usr/share/common-licenses/GPL}}-2". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1023.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1023.RULE index 101b32e893..0fe6c5abca 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1023.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1023.RULE @@ -6,18 +6,18 @@ notes: there are some ambiguity wrt the lesser vs. GPL --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. On Debian systems, the text of the GNU Library - General Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + General Public License can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1024.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1024.RULE index 921cbf89a2..73feacecc9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1024.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1024.RULE @@ -7,21 +7,21 @@ relevance: 100 Main License (everything except docs): This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. +On Debian systems, the text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}'. The Debian packaging is Copyright . It is licensed under the same conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1025.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1025.RULE index a527abc1d1..9f81685d98 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1025.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1025.RULE @@ -5,20 +5,20 @@ relevance: 100 minimum_coverage: 90 --- -License: GPL-2+ +{{License: GPL-2+}} This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the text of the GNU General Public - License v2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the text of the {{GNU General Public + License}} v2 can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1026.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1026.RULE index 7ddd295096..26dc44e627 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1026.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1026.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- Bash is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later -version. +version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Bash. If not, see . -On Debian systems, the text of the GNU General Public License +On Debian systems, the text of the {{GNU General Public License}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1027.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1027.RULE index 4b44df361b..3681bad7df 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1027.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1027.RULE @@ -8,9 +8,9 @@ minimum_coverage: 85 However, many parts of this library are licensed differently: This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. -On Debian systems, the text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file +On Debian systems, the text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL}}-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1028.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1028.RULE index bd0f37064f..5aa883fa0f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1028.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1028.RULE @@ -5,26 +5,26 @@ relevance: 100 minimum_coverage: 90 --- -License: GPL-2+ +{{License: GPL-2+}} -License: GPL-2+ +{{License: GPL-2+}} This program is free software; you can redistribute it - and/or modify it under the terms of the GNU General Public + and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later - version. + version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the GNU General Public License for more + PURPOSE. See the {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public - License along with this package; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the text of the GNU General Public - License version 2 can be found in the file - `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the text of the {{GNU General Public + License version 2}} can be found in the file + `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1029.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1029.RULE index 95beae069d..5e64a7eb3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1029.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1029.RULE @@ -6,21 +6,21 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -License: GPL-2+ +{{License: GPL-2+}} This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . -On Debian systems, the text of the GNU General Public -License version 2 can be found in the file +On Debian systems, the text of the {{GNU General Public +License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_103.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_103.RULE index 7d2011e5ef..d1fb94be91 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_103.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_103.RULE @@ -5,4 +5,4 @@ relevance: 100 --- GPL'd. - * SPDX-License-Identifier: GPL-2.0+ \ No newline at end of file + * SPDX-License-Identifier: {{GPL-2.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1030.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1030.RULE index 2493f8af7b..0a76c48980 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1030.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1030.RULE @@ -7,22 +7,22 @@ referenced_filenames: --- This program is free software; you can redistribute it - and/or modify it under the terms of the GNU General Public + and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later - version. + version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the GNU General Public License for more + PURPOSE. See the {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public - License along with this package; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the text of the GNU General Public - License version 2 can be found in the file + On Debian systems, the text of the {{GNU General Public + License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1031.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1031.RULE index a800661e88..459a62d039 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1031.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1031.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - On Debian systems, the text of the GNU General Public - License version 2 can be found in the file - `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the text of the {{GNU General Public + License version 2}} can be found in the file + `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1032.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1032.RULE index 9a9c2bfed5..e1e7f3446c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1032.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1032.RULE @@ -7,19 +7,19 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . -On Debian systems, the text of the GNU General Public -License version 2 can be found in the file +On Debian systems, the text of the {{GNU General Public +License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1033.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1033.RULE index b13574aa84..f2b33150ff 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1033.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1033.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by + under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . - On Debian systems, the text of the GNU General Public License + On Debian systems, the text of the {{GNU General Public License}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1034.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1034.RULE index 7b1dbf0127..a30ec3511e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1034.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1034.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by + under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . - On Debian systems, the text of the GNU General Public License + On Debian systems, the text of the {{GNU General Public License}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1035.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1035.RULE index c63fe6dad6..1025eb0fcb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1035.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1035.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- eCos is free software; you can redistribute it and/or modify it under - the terms of the GNU General Public License as published by the Free - Software Foundation; either version 2 or (at your option) any later version. \ No newline at end of file + the terms of the {{GNU General Public License as published by the Free + Software Foundation; either version 2 or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1036.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1036.RULE index 78115f7b0e..3536b89ed9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1036.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1036.RULE @@ -8,18 +8,18 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - On Debian and systems the full text of the GNU General Public - License version 2 can be found in the file + On Debian and systems the full text of the {{GNU General Public + License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2` - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1037.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1037.RULE index d69472e189..ed54332507 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1037.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1037.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program may be distributed and/or modified - under the terms of the GNU General Public License + under the terms of the {{GNU General Public License}} as published by the Free Software Foundation (the "GPL"); either version 2 of the GPL, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1038.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1038.RULE index 52efd5f51f..e978484f80 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1038.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1038.RULE @@ -6,18 +6,18 @@ referenced_filenames: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - On Debian systems, the complete text of the GNU General - Public License 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the complete text of the {{GNU General + Public License}} 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1039.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1039.RULE index 7556d56b61..3978d417d3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1039.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1039.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. \ No newline at end of file + (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_104.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_104.RULE index cfe91c113b..7d7b92731f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_104.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_104.RULE @@ -6,4 +6,4 @@ relevance: 100 is a free GPL - * SPDX-License-Identifier: GPL-2.0+ \ No newline at end of file + * SPDX-License-Identifier: {{GPL-2.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1040.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1040.RULE index 8aca414cc2..97e670daac 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1040.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1040.RULE @@ -6,9 +6,9 @@ referenced_filenames: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in "/usr/share/common-licenses/GPL-2". \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public + License version 2}} can be found in "/usr/share/common-licenses/GPL-2". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1042.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1042.RULE index 8d7d4c225e..b6b1bf901e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1042.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1042.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1043.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1043.RULE index 080f44f986..e7b2884e19 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1043.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1043.RULE @@ -7,16 +7,16 @@ ignorable_urls: %%%LICENSE_START(GPLv2+_DOC_FULL) This is free documentation; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. This manual is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with this manual; if not, see + You should have received a copy of the {{GNU General Public + License}} along with this manual; if not, see . %%%LICENSE_END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1044.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1044.RULE index 1fa78a1e7f..7d6816cdfe 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1044.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1044.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- This is free documentation; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. This manual is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with this manual; if not, see + You should have received a copy of the {{GNU General Public + License}} along with this manual; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1045.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1045.RULE index 54a5e53522..57d8a648a9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1045.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1045.RULE @@ -8,4 +8,4 @@ ignorable_urls: - https://wordpress.org/about/gpl/ --- -@license https://wordpress.org/about/gpl/ GNU General Public License \ No newline at end of file +@license https://wordpress.org/about/gpl/ {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1046.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1046.RULE index bcbe524a28..0a26315305 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1046.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1046.RULE @@ -8,4 +8,4 @@ ignorable_urls: - https://wordpress.org/about/gpl/ --- -https://wordpress.org/about/gpl/ GNU General Public License \ No newline at end of file +https://wordpress.org/about/gpl/ {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1049.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1049.RULE index d504b8fdb9..cfaafc54b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1049.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1049.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- # This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# {{GNU General Public License}} for more details. # -# A copy of the GNU General Public License is available at +# A copy of the {{GNU General Public License}} is available at # https://www.R-project.org/Licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_105.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_105.RULE index a693aa84e0..92e09c15fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_105.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_105.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0-plus is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -Licensed under GPLv2 or later. \ No newline at end of file +licensed under GPLv2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1050.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1050.RULE index 5bc230344a..28c29ff0e9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1050.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1050.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GPL-2.0+ GNU General Public License v2.0 or later \ No newline at end of file +{{GPL-2.0+}} {{GNU General Public License v2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1051.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1051.RULE index 4bd59af034..072cfbc5ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1051.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1051.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GNU General Public License v2.0 or later GPL-2.0+ \ No newline at end of file +{{GNU General Public License v2.0 or later}} {{GPL-2.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1052.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1052.RULE index fac543d37d..7ff5f78615 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1052.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1052.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : GPL-2.0+ \ No newline at end of file +licenseid : {{GPL-2.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1053.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1053.RULE index 377df9e0b0..7222762cc3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1053.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1053.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : GNU General Public License v2.0 or later \ No newline at end of file +name : {{GNU General Public License v2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1054.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1054.RULE index a6dc08ddc1..ce5b5ce37b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1054.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1054.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GPL-2.0-or-later GNU General Public License v2.0 or later \ No newline at end of file +{{GPL-2.0-or-later}} {{GNU General Public License v2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1055.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1055.RULE index f75fbb6191..0566a631c7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1055.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1055.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU General Public License v2.0 or later GPL-2.0-or-later \ No newline at end of file +{{GNU General Public License v2.0 or later}} {{GPL-2.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1056.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1056.RULE index d03d69be9b..d051ebd45c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1056.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1056.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GPL-2.0-or-later \ No newline at end of file +license: {{GPL-2.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1057.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1057.RULE index e9db4870cf..4118ca3045 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1057.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1057.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GNU General Public License v2.0 or later \ No newline at end of file +license: {{GNU General Public License v2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1058.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1058.RULE index 17d8265288..f72169ed65 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1058.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1058.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: GPL-2.0-or-later \ No newline at end of file +licenseId: {{GPL-2.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1059.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1059.RULE index da5dbf38d6..72ecfbc5e9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1059.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1059.RULE @@ -6,9 +6,9 @@ referenced_filenames: --- These scripts are free software; you can redistribute it and/or modify it - under the terms of the GNU {{General Public License}} as published by the - Free Software Foundation; {{either version 2}}, or (at your option) {{any + under the terms of the GNU {{General Public License as published by the + Free Software Foundation; either version 2, or (at your option) any later version}}. - Please refer to /usr/share/common-licenses/{{GPL-2}} about detail of + Please refer to {{/usr/share/common-licenses/GPL-2}} about detail of {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_106.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_106.RULE index 681689b610..5732e9f68d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_106.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_106.RULE @@ -9,14 +9,14 @@ License 1: GPLv2 This file is free software; you may copy, redistribute and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at -your option) any later version. +your option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1061.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1061.RULE index e61b186347..efe89fec41 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1061.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1061.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1062.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1062.RULE index a1bf8879ce..b93e8928d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1062.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1062.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: GPL-2.0-or-later \ No newline at end of file +licenses: {{GPL-2.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1069.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1069.RULE index 15c6d36d94..c32ff6f999 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1069.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1069.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -# This script is distributed under the terms and conditions of the GNU General -# Public License, Version 2 or later. See http://www.gnu.org/copyleft/gpl.html +# This script is distributed under the terms and conditions of the {{GNU General +# Public License, Version 2 or later}}. See http://www.gnu.org/copyleft/gpl.html # for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_107.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_107.RULE index e2095b390d..d8b6aaa93c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_107.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_107.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public Licence as published by +it under the terms of the {{GNU General Public Licence as published by the Free Software Foundation; either version 2 of the Licence, or -(at your option) any later version. +(at your option) any later version}}. You should have received a copy of the GNU General Public Licence along with ; if not, write to the Free Software Foundation, Inc., -51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file +51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1070.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1070.RULE index 9d060bc1c0..61b0dcb279 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1070.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1070.RULE @@ -7,11 +7,11 @@ ignorable_urls: %%%LICENSE_START(GPLv2+_DOC_FULL) This is free documentation; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. -The GNU General Public License's references to "object code" +The {{GNU General Public License}}'s references to "object code" and "executables" are to be interpreted as the output of any document formatting or typesetting system, including intermediate and printed output. @@ -19,8 +19,8 @@ intermediate and printed output. This manual is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with this manual; if not, see +You should have received a copy of the {{GNU General Public +License}} along with this manual; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1073.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1073.RULE index 02c93fa3b9..b27a284afb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1073.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1073.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- * MPlayer is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * MPlayer is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License along + * You should have received a copy of the {{GNU General Public License}} along * with MPlayer; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1074.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1074.RULE index b1ab2f33fa..8bfd3074ff 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1074.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1074.RULE @@ -7,16 +7,16 @@ notes: seen in FFmpeg CONFIG_GPL printf( "%s is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" + "it under the terms of the {{GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" - "(at your option) any later version.\n" + "(at your option) any later version}}.\n" "\n" "%s is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" + "{{GNU General Public License}} for more details.\n" "\n" - "You should have received a copy of the GNU General Public License\n" + "You should have received a copy of the {{GNU General Public License}}\n" "along with %s; if not, write to the Free Software\n" "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n", program_name, program_name, program_name ); \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1075.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1075.RULE index 1849df8def..ce20544ebf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1075.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1075.RULE @@ -5,16 +5,16 @@ notes: seen in FFmpeg --- "%s is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" + "it under the terms of the {{GNU General Public License}} as published by\n" "the Free Software Foundation; either version 2 of the License, or\n" "(at your option) any later version.\n" "\n" "%s is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" + "{{GNU General Public License}} for more details.\n" "\n" - "You should have received a copy of the GNU General Public License\n" + "You should have received a copy of the {{GNU General Public License}}\n" "along with %s; if not, write to the Free Software\n" "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n", program_name, program_name, program_name ); \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1076.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1076.RULE index 46f08b8d08..7667c85add 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1076.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1076.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- FFmpeg is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. FFmpeg is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with FFmpeg; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1077.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1077.RULE index 243127a7fa..7ae56309cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1077.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1077.RULE @@ -5,15 +5,15 @@ notes: typo in OUT rather than WITHOUT --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version}}. This program is distributed in the hope that it will be useful, but OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public -License for more details. +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public +License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1078.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1078.RULE index 2c25f7ccad..704895285e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1078.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1078.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with ; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1079.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1079.RULE index 622743e2d3..0262505b4f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1079.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1079.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- GNU CC is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_108.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_108.RULE index 2fb1be0f7c..52c29fc789 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_108.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_108.RULE @@ -4,19 +4,19 @@ is_license_notice: yes --- agreed to publish this driver -under the GNU General Public License. +under the {{GNU General Public License}}. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1080.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1080.RULE index d4a65d2196..0a2bef7713 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1080.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1080.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html --- -licensed under the GNU General Public License Version 2 or later +licensed under the {{GNU General Public License Version 2 or later}} (see @url{http://www.gnu.org/licenses/old-licenses/gpl-2.0.html} for details), you must upgrade FFmpeg's license to GPL in order to use it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1081.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1081.RULE index 572a29acab..6321b40d66 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1081.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1081.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html --- -licensed under the GNU General Public License Version 2 or later +licensed under the {{GNU General Public License Version 2 or later}} (see @url{http://www.gnu.org/licenses/old-licenses/gpl-2.0.html} for details), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1082.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1082.RULE index 3447f72c0e..7a3ae1d56e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1082.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1082.RULE @@ -6,15 +6,15 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Perl; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1083.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1083.RULE index a2a5d00a90..514f6575c8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1083.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1083.RULE @@ -5,14 +5,14 @@ is_license_notice: yes LICENSE - distributed under the terms of the GNU General Public + distributed under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version -2, or (at your option) any later version. +2, or (at your option) any later version}}. This means it is distributed in the hope that it will be useful, but I; without even the implied warranty of I or I. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. Since Perl scripts are only compiled at runtime, and simply calling does I bring your program under the GPL, the only diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1084.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1084.RULE index b0e52b243c..5f5066ddb2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1084.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1084.RULE @@ -3,14 +3,14 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -distributed under the terms of the GNU General Public +distributed under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version -2, or (at your option) any later version. +2, or (at your option) any later version}}. This means it is distributed in the hope that it will be useful, but I; without even the implied warranty of I or I. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. Since Perl scripts are only compiled at runtime, and simply calling does I bring your program under the GPL, the only diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1085.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1085.RULE index fd069b8dc4..2409e3db9b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1085.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1085.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -Licensed under the GNU General Public License version 2 or later. +Licensed under the {{GNU General Public License version 2 or later}}. See http://www.gnu.org/licenses/ for a copy of the license text \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1086.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1086.RULE index 4c5e7fa644..58b68d04b2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1086.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1086.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU General Public License, - * version 2 or later, as published by the Free Software Foundation. + * under the terms and conditions of the {{GNU General Public License, + * version 2 or later}}, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for * more details. * - * You should have received a copy of the GNU General Public License along with + * You should have received a copy of the {{GNU General Public License}} along with * this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1087.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1087.RULE index 102b929aa3..e13c746ab7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1087.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1087.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -All the files copied carry SPDX license identifiers of `GPL-2.0+` or -`GPL-2.0-or-later`. \ No newline at end of file +All the files copied carry SPDX license identifiers of `{{GPL-2.0+}}` or +`{{GPL-2.0-or-later}}`. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1088.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1088.RULE index 89c584baf8..0de7ceec07 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1088.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1088.RULE @@ -5,4 +5,4 @@ referenced_filenames: - COPYING --- -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License, included in this distribution in the file COPYING, for more details. \ No newline at end of file +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}}, included in this distribution in the file COPYING, for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1089.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1089.RULE index c368b8b4fe..a5cf8b6707 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1089.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1089.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -A GNU GPL 2.0 (or later) WordPress Plugin \ No newline at end of file +A {{GNU GPL 2.0 (or later}}) WordPress Plugin \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_109.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_109.RULE index 91768ee7fc..34d6954cc0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_109.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_109.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . - The full GNU General Public License is included in this distribution in the + The full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1090.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1090.RULE index 6b6ea1c429..76e08b1b84 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1090.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1090.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -A GNU GPL 2.0 (or later) Plugin \ No newline at end of file +A {{GNU GPL 2.0 (or later}}) Plugin \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1091.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1091.RULE index 244ee89c16..158af4ae45 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1091.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1091.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -A GPL-2.0+ WordPress Plugin \ No newline at end of file +A {{GPL-2.0+}} WordPress Plugin \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1092.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1092.RULE index b735a7f176..2d4002f8ac 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1092.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1092.RULE @@ -5,4 +5,4 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html --- -@license https://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU General Public License v2.0 or later \ No newline at end of file +@license https://www.gnu.org/licenses/old-licenses/gpl-2.0.html {{GNU General Public License v2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1093.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1093.RULE index 21e24bfdc5..41f4ec7d4a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1093.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1093.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html --- -License: GPL-2.0+ +{{License: GPL-2.0+}} License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1094.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1094.RULE index 6b68d0f4eb..6e6186289b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1094.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1094.RULE @@ -3,6 +3,6 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -This program is licensed under the terms of the {{ GNU General Public License}} -as published by the Free Software Foundation; either {{version 2}} of the License, -or (at your option) any {{later version}}. \ No newline at end of file +This program is licensed under the terms of the {{GNU General Public License +as published by the Free Software Foundation; either version 2 of the License, +or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1095.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1095.RULE index e54fa0ceb6..bffd1a93ab 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1095.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1095.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- package is licensed under the terms of the -GNU General Public License as published by the Free Software -Foundation; either {{version 2}} of the License, or (at your option) any -{{later version}}. \ No newline at end of file +{{GNU General Public License as published by the Free Software +Foundation; either version 2 of the License, or (at your option) any +later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1096.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1096.RULE index 9c36421308..eb8a80eae1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1096.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1096.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- is licensed under the terms of the -GNU General Public License as published by the Free Software -Foundation; either {{version 2}} of the License, or (at your -option) any {{later version}} (http://www.gnu.org/licenses/gpl.txt). \ No newline at end of file +{{GNU General Public License as published by the Free Software +Foundation; either version 2 of the License, or (at your +option) any later version}} (http://www.gnu.org/licenses/gpl.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1097.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1097.RULE index 58de92c003..c8152872e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1097.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1097.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- This program is licensed under the terms of the -GNU General Public License as published by the Free Software -Foundation; either {{version 2}} of the License, or (at your -option) any {{later version}} (http://www.gnu.org/licenses/gpl.txt). \ No newline at end of file +{{GNU General Public License as published by the Free Software +Foundation; either version 2 of the License, or (at your +option) any later version}} (http://www.gnu.org/licenses/gpl.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1098.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1098.RULE index 82529b6500..0670e59afb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1098.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1098.RULE @@ -3,6 +3,6 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -The software is licensed under the terms of the GNU General +The software is licensed under the terms of the {{GNU General Public License as published by the Free Software Foundation, either -{{version 2}} of the license, or (at your option) any {{later version}}. \ No newline at end of file +version 2 of the license, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1099.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1099.RULE index 9a7dd69e07..fe925f71e9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1099.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1099.RULE @@ -7,9 +7,9 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -The source code of libosmocore is licensed under the terms of the GNU +The source code of libosmocore is licensed under the terms of the {{GNU General Public License as published by the Free Software Foundation; -either {{version 2}} of the License, or (at your option) any {{later version}}. +either version 2 of the License, or (at your option) any later version}}. See or COPYING included in the source code package istelf. The information detailed here is provided AS IS with NO WARRANTY OF diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_11.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_11.RULE index 559cf052ba..8549801e58 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_11.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. \ No newline at end of file +of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_110.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_110.RULE index 5bb2002214..2a9e8267f0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_110.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_110.RULE @@ -5,9 +5,9 @@ minimum_coverage: 80 --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version}}. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF @@ -20,6 +20,6 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1100.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1100.RULE index db94bbef28..e52f9f0978 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1100.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1100.RULE @@ -3,6 +3,6 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -This file is distributed under the terms of the GNU General Public License as +This file is distributed under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or -(at your option) any later version. \ No newline at end of file +(at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1102.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1102.RULE index d46963ffce..faa9eb08ec 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1102.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1102.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License version 2.0 or later \ No newline at end of file +released under the {{GNU General Public License version 2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1103.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1103.RULE index f3ddf8384c..f82d5ff294 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1103.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1103.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License 2.0 or later \ No newline at end of file +released under the {{GNU General Public License 2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1104.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1104.RULE index 9b56178a49..466a7c0f4b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1104.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1104.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License v2.0 or later \ No newline at end of file +released under the {{GNU General Public License v2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1105.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1105.RULE index 37623cb87a..a0cccf9cb6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1105.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1105.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License v2 or later \ No newline at end of file +released under the {{GNU General Public License v2 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1106.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1106.RULE index d8d44776e7..951112843a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1106.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1106.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License version 2.0 or any later version \ No newline at end of file +released under the {{GNU General Public License version 2.0 or any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1107.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1107.RULE index 71f377c598..32768605db 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1107.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1107.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License 2.0 or any later version \ No newline at end of file +released under the {{GNU General Public License 2.0 or any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1108.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1108.RULE index a6ef1d3c5c..63b7a911d7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1108.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1108.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License v2.0 or any later version \ No newline at end of file +released under the {{GNU General Public License v2.0 or any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1109.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1109.RULE index f09c53bd4b..635c14efaf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1109.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1109.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License v2 or any later version \ No newline at end of file +released under the {{GNU General Public License v2 or any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_111.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_111.RULE index 51fbeba481..956f7713f4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_111.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_111.RULE @@ -9,15 +9,15 @@ This code was developed from version of the drivers, released by corp. under the GPL This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with the drivers; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1110.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1110.RULE index 7176c1736a..e7201c1634 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1110.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1110.RULE @@ -6,15 +6,15 @@ is_license_notice: yes License: This font is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your - option) any later version. + option) any later version}}. This font is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this font; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1111.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1111.RULE index 4e04e2e411..60e99e49d8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1111.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1111.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This font is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your - option) any later version. + option) any later version}}. This font is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this font; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1112.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1112.RULE index 85eef2b80d..1c1af4834e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1112.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1112.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- # This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# {{GNU General Public License}} for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the {{GNU General Public License}} # along with this program; if not, contact \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1114.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1114.RULE index 5693456c74..e854072420 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1114.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1114.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The GNU General Public License v2+ \ No newline at end of file +The {{GNU General Public License v2+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1116.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1116.RULE index 3c884a6fac..3b1428b17c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1116.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1116.RULE @@ -8,8 +8,8 @@ ignorable_urls: License This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public - License as published by the Free Software Foundation; + modify it under the terms of the {{GNU General Public + License}} as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. @@ -17,13 +17,13 @@ ignorable_urls: This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - A copy of the GNU General Public License is + A copy of the {{GNU General Public License}} is included as an appendix to the GNOME Users Guide. You may also obtain a copy of the - GNU General Public License from the Free + {{GNU General Public License}} from the Free Software Foundation by visiting their Web site or by writing to
diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1117.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1117.RULE index 25ac582959..49890c51b9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1117.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1117.RULE @@ -4,18 +4,18 @@ is_license_notice: yes minimum_coverage: 80 --- -* GNU General Public License v2.0 or later: +* {{GNU General Public License v2.0 or later}}: * * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License along + * You should have received a copy of the {{GNU General Public License}} along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1118.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1118.RULE index 81f1d564d2..05fa7fd5b4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1118.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1118.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- The program is free software: you can redistribute -it and/or modify it under the terms of the GNU General Public License +it and/or modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, either version 2 of the License, or any newer version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see https://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_112.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_112.RULE index a0e6355e81..110533f958 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_112.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_112.RULE @@ -6,14 +6,14 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the Free +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -The full GNU General Public License is included in this distribution in the +The full {{GNU General Public License}} is included in this distribution in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1121.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1121.RULE index 85eafca5c4..87ef4c4a50 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1121.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1121.RULE @@ -2,6 +2,7 @@ license_expression: gpl-2.0-plus is_license_notice: yes relevance: 100 +is_required_phrase: yes --- -licensed under the {{TYPO3 GPL}}. \ No newline at end of file +{{licensed under the TYPO3 GPL}}. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1122.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1122.RULE index e41e2d9de7..abba220562 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1122.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1122.RULE @@ -13,9 +13,9 @@ any later version.}} is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GNU ; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1123.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1123.RULE index 62585a21f0..9993ea954a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1123.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1123.RULE @@ -3,6 +3,6 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -License: GPL-2+ +{{License: GPL-2+}} On Debian systems, the complete text of the GPL version 2 license can be - found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + found in `{{/usr/share/common-licenses/GPL-2}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1124.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1124.RULE index fb22396c53..fd69be2b8d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1124.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1124.RULE @@ -13,9 +13,9 @@ the Free Software Foundation, either version 2 of the License, or This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . {{ GNU General Public License, version 2 }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1125.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1125.RULE index 1f5c8c26b5..1c2be48f4d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1125.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1125.RULE @@ -5,19 +5,19 @@ is_license_notice: yes Licenses: This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Licenses: -The complete text of the GNU General Public License version 2 can be found -in /common-licenses/GPL-2. \ No newline at end of file +The complete text of the {{GNU General Public License version 2}} can be found +in {{ /common-licenses/GPL-2 }}. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1126.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1126.RULE index eb6beb8fae..3b96944823 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1126.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1126.RULE @@ -4,19 +4,19 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Licenses: -The complete text of the GNU General Public License version 2 can be found -in /common-licenses/GPL-2. \ No newline at end of file +The complete text of the {{GNU General Public License version 2}} can be found +in {{ /common-licenses/GPL-2}}. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1127.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1127.RULE index aee04d5864..98ca51076e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1127.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1127.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify it under -the terms of the {{GNU General Public License}} as published by the Free Software -Foundation; either {{version 2 of the License, or (at your option) any later +the terms of the {{GNU General Public License as published by the Free Software +Foundation; either version 2 of the License, or (at your option) any later version.}} This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this library; if not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1128.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1128.RULE index 37a5265cfc..b07d989c40 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1128.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1128.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify -it under the terms of the {{GNU General Public License}} as published by -the Free Software Foundation; {{either version 2 of the License, or (at +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or (at your option) any later version.}} is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -You should have received a copy of the GNU General Public License +{{GNU General Public License}} for more details. +You should have received a copy of the {{GNU General Public License}} along with ; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA or see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1129.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1129.RULE index ed98d62b99..e8e47e1f5e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_1129.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1129.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0-plus is_license_notice: yes +skip_for_required_phrase_generation: yes --- Some of the code in this project {{was originally LGPL v2.1 (or later) -but is used as GPL v2 (or later) }} \ No newline at end of file +but is used as GPL v2 (or later) }} diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_113.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_113.RULE index 8b550e2456..4c1b4e6533 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_113.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_113.RULE @@ -8,16 +8,16 @@ notes: the disclaimer is likely derived from s BSD --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_114.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_114.RULE index 11e03be901..7a991b3a4a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_114.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_114.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, you can access it online at http://www.gnu.org/licenses/gpl-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1143.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1143.RULE new file mode 100644 index 0000000000..9ea69eeede --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1143.RULE @@ -0,0 +1,15 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + +License: GPL-2+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + . + On Debian systems, the complete text of version 2 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-2' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1144.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1144.RULE new file mode 100644 index 0000000000..6acd6c23de --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1144.RULE @@ -0,0 +1,14 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + +This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + . + On Debian systems, the complete text of version 2 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-2' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_1145.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_1145.RULE new file mode 100644 index 0000000000..7787daed04 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_1145.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +--- + +License: GPL-2+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_116.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_116.RULE index 0bd3021f94..bb24b1bec2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_116.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_116.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This is free software; you can distribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version - 2 of the License, or (at your option) any later version. \ No newline at end of file + 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_117.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_117.RULE index 7bdd45881e..1266246c84 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_117.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_117.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program is free software; you can distribute it and/or modify -it under the terms of the GNU General Public License as published +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, -or (at your option) any later version. \ No newline at end of file +or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_118.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_118.RULE index 6f7460424a..078a83d438 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_118.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_118.RULE @@ -4,12 +4,12 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at -your option) any later version. +your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or -NON INFRINGEMENT. See the GNU General Public License for more +NON INFRINGEMENT. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_119.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_119.RULE index 44748a7d7c..887f520a81 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_119.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_119.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_12.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_12.RULE index f554ded372..60bda19e42 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_12.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_12.RULE @@ -7,16 +7,16 @@ notes: GCC GPL only notice --- GNU CC is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_120.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_120.RULE index 3323732d4b..b92b52f4c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_120.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_120.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . -The full GNU General Public License is included in this distribution +The full {{GNU General Public License}} is included in this distribution in the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_121.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_121.RULE index d776a80d06..596316ae3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_121.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_121.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see http://www.gnu.org/licenses/gpl.html THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_121_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_121_1.RULE index 0ec8bd8d7b..1825e3fd3a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_121_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_121_1.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307. You can also get it at http://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_122.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_122.RULE index 894fc1194b..459d03801d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_122.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_122.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This file is free software: you may copy, redistribute and/or modify it - under the terms of the GNU General Public License as published by the + under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your - option) any later version. + option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_123.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_123.RULE index d3ee46a0a5..507b378e48 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_123.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_123.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_124.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_124.RULE index 5776f0cd53..54a5fc9829 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_124.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_124.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any -later version. +later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_125.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_125.RULE index 8002a96196..4cd8b34655 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_125.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_125.RULE @@ -6,15 +6,15 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_126.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_126.RULE index 3bddeca12b..f73757bd97 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_126.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_126.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free Software -Foundation; either version 2, or (at your option) any later version. +the terms of the {{GNU General Public License as published by the Free Software +Foundation; either version 2, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTIES OR REPRESENTATIONS; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_127.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_127.RULE index ab12eeb5bb..2043c9957c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_127.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_127.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_128.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_128.RULE index ba28daed6b..bfbf15d35a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_128.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_128.RULE @@ -5,15 +5,15 @@ minimum_coverage: 10 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_129.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_129.RULE index 32557a2b90..185f10faa6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_129.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_129.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_13.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_13.RULE index af5ba80035..945accd85d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_13.RULE @@ -5,15 +5,15 @@ notes: GPL 2 or later notice variant --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program. If not, write to the Free Software * Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_131.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_131.RULE index 1920fb4e4e..ba735a9984 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_131.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_131.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This software may be redistributed and/or modified under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 2 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_132.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_132.RULE index d1157b3af6..2971e44443 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_132.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_132.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -The product is under the GNU General Public License, version 2 or later. +The product is under the {{GNU General Public License, version 2 or later}}. As such, this file is also under that license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_133.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_133.RULE index b4b4a74974..7667136764 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_133.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_133.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 2 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_134.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_134.RULE index bb8dc8d098..2f222145cf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_134.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_134.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -The GNU General Public License is available at +The {{GNU General Public License}} is available at http://www.gnu.org/copyleft/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_135.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_135.RULE index 93b40e0192..e7779bdc93 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_135.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_135.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it would be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See -the GNU General Public License for more details. \ No newline at end of file +the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_136.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_136.RULE index d99dc9e305..dc52baeda7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_136.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_136.RULE @@ -5,16 +5,16 @@ minimum_coverage: 90 --- GnuPG is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. GnuPG is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_137.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_137.RULE index 083d9c23bb..3f8f99172d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_137.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_137.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 2 of the named License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_138.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_138.RULE index 58ea1c69b6..5281786106 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_138.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_138.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the term of the GNU General Public License as published by +it under the term of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_139.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_139.RULE index 843985c960..316f6f1b1d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_139.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_139.RULE @@ -5,7 +5,7 @@ is_license_notice: yes .\" % % %LICENSE_START(GPLv2+_SW_ONEPARA) .\" This program is free software; you can redistribute it and/or -.\" modify it under the terms of the GNU General Public License +.\" modify it under the terms of the {{GNU General Public License .\" as published by the Free Software Foundation; either version -.\" 2 of the License, or (at your option) any later version. +.\" 2 of the License, or (at your option) any later version}}. .\" % % %LICENSE_END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_14.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_14.RULE index 8751346c07..1f2fdc0bf9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_14.RULE @@ -1,13 +1,13 @@ --- -license_expression: gpl-2.0-plus +license_expression: gpl-2.0-plus AND gpl-3.0-plus is_license_notice: yes -notes: Pychess german notice text +notes: Pychess german notice text. Note the combo of 2 and 3 versions. Maybe a translation typo? --- PyChess is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +it under the terms of the {{GNU General Public License}} as published by +the Free Software Foundation; {{either version 2}} of the License, or +{{(at your option) any later version}}. PyChess is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -22,7 +22,7 @@ PyChess ist freie Software. Sie können es unter den Bedingungen der GNU General Public License, wie von der Free Software Foundation veröffentlicht, weitergeben und/oder -modifizieren, entweder gemass Version 3 der Lizenz oder (nach Ihrer Option) +modifizieren, {{entweder gemass Version 3 der Lizenz}} oder {{(nach Ihrer Option)}} jeder späteren Version. @@ -38,4 +38,4 @@ Sie sollten ein Exemplar der GNU General Public License zusammen mit PyChess erhalten haben. Falls nicht, schreiben Sie an die Free Software Foundation, -Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA. \ No newline at end of file +Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_140.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_140.RULE index 30530a089c..0ec400d96c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_140.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_140.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_141.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_141.RULE index 35c610e596..37c2c6fa8e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_141.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_141.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_142.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_142.RULE index f697026723..f0a8408f08 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_142.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_142.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This module is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This module is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this module; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_143.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_143.RULE index cc8a22d2f1..3f5b350899 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_143.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_143.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free warftware; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_144.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_144.RULE index 7f291f27f6..f3d1d556b7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_144.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_144.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This driver is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_145.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_145.RULE index 2ef0990b8d..b440f7fcf4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_145.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_145.RULE @@ -6,18 +6,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the Free +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -The full GNU General Public License is included in this distribution in the +The full {{GNU General Public License}} is included in this distribution in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_146.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_146.RULE index e48f2306cd..a42f057d59 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_146.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_146.RULE @@ -6,18 +6,18 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Or, point your browser to http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_147.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_147.RULE index 6254707f14..e1e3e177d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_147.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_147.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, Inc., 675 Mass Ave, Cambridge MA 02139, USA; either version 2 of the License, or (at your option) any later version. @@ -12,8 +12,8 @@ version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_148.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_148.RULE index 4d3a92a7ba..af97934742 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_148.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_148.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms of GNU General Public License as published by the Free +under the terms of {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) -any later version. +any later version}}. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_149.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_149.RULE index c3c9d11cd3..ce41c3c621 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_149.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_149.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, -or (at your option) any later version. +or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_15.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_15.RULE index cffef8a9c9..0ce4d7017f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_15.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_15.RULE @@ -6,18 +6,18 @@ notes: there are some ambiguity wrt the lesser vs. GPL --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. On Debian systems, the complete text of the GNU Library - General Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + General Public License can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_150.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_150.RULE index d609a75649..40a658de87 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_150.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_150.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the GNU General Public License for more details. +PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_152.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_152.RULE index 0587ab5a26..db53f2fef9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_152.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_152.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY OF ANY KIND WHATSOEVER INCLUDING ANY implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. * -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_153.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_153.RULE index ed6e575c6b..d3f784f74a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_153.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_153.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version - 2 of the License, or (at your option) any later version. + 2 of the License, or (at your option) any later version}}. Authors: Contributors: diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_155.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_155.RULE index 8a817d7489..b5b9e5704d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_155.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_155.RULE @@ -6,18 +6,18 @@ referenced_filenames: --- This documentation is free software; you can redistribute - it and/or modify it under the terms of the GNU General Public + it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later - version. + version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU General Public License for more details. + See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with this program; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_156.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_156.RULE index 912a2e1636..997380d05f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_156.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_156.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_157.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_157.RULE index a281fa652d..66f1e430f4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_157.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_157.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -License Terms: GNU General Public License v2 or later \ No newline at end of file +License Terms: {{GNU General Public License v2 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_159.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_159.RULE index 06414776f4..2b36f41a73 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_159.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_159.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License version 2 as published by the +the terms of the {{GNU General Public License version 2}} as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_160.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_160.RULE index fced3595d0..74c27ebd6a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_160.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_160.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. \ No newline at end of file +(at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_161.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_161.RULE index 8402f83f47..4eadd79556 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_161.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_161.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This module is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version - 2 of the License, or (at your option) any later version. \ No newline at end of file + 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_162.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_162.RULE index 1684518976..bae4751418 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_162.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_162.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 2 of the License, or (at your any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_163.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_163.RULE index 5d78e222f2..1266dd2015 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_163.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_163.RULE @@ -4,8 +4,8 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms of the {{GNU General Public License}} as published by the Free -Software Foundation; {{either version 2 of the License, or (at your option) +under the terms of the {{GNU General Public License as published by the Free +Software Foundation; either version 2 of the License, or (at your option) any later version}}:. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_164.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_164.RULE index cb57d2708e..8228d5f277 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_164.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_164.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms of GNU General Public License as published by the Free +under the terms of {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) -any later version. \ No newline at end of file +any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_165.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_165.RULE index ab7cab61ab..7eeeb1d2eb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_165.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_165.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. \ No newline at end of file +any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_166.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_166.RULE index 296f3e5cf5..0c6ee717c4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_166.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_166.RULE @@ -5,7 +5,7 @@ is_license_notice: yes * * This driver is free software; you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by +* it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or -* (at your option) any later version. +* (at your option) any later version}}. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_167.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_167.RULE index fec08d6734..b7db9a13c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_167.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_167.RULE @@ -6,10 +6,10 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) - any later version. + any later version}}. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} (for example /usr/src/linux/COPYING); if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_168.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_168.RULE index 9d32e261dc..71c195dd59 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_168.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_168.RULE @@ -5,16 +5,16 @@ minimum_coverage: 80 --- X * This program is free software; you can redistribute it and/or modify -X * it under the terms of the GNU General Public License as published by +X * it under the terms of the {{GNU General Public License}} as published by X * the Free Software Foundation; either version 2 of the License, or X * (at your option) any later version. X * X * This program is distributed in the hope that it will be useful, X * but WITHOUT ANY WARRANTY; without even the implied warranty of X * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -X * GNU General Public License for more details. +X * {{GNU General Public License}} for more details. X * -X * You should have received a copy of the GNU General Public License +X * You should have received a copy of the {{GNU General Public License}} X * along with this program; if not, write to the Free Software X * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. X * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_169.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_169.RULE index b381e6ae86..c78666ec8e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_169.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_169.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, Inc., 53 Temple Place Ste 330, Boston MA 02111-1307, USA; either version 2 of the License, or (at your option) any later version; incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_17.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_17.RULE index 5d184a9551..5a40170e6c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_17.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_17.RULE @@ -5,15 +5,15 @@ notes: GPL 2 or later notice --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program(see GPL.txt); if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_170.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_170.RULE index c1d603294e..7e0bf9909c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_170.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_170.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This file is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 or (at your option) any -later version. +later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this file; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_171.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_171.RULE index b87d851f02..199d1ab4e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_171.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_171.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the GNU General Public License for more details. +PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 * Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_172.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_172.RULE index 9d3fa34773..2de07f5f01 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_172.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_172.RULE @@ -4,17 +4,17 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; -either version 2, or (at your option) any later version. +either version 2, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTIES OR REPRESENTATIONS; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE.See the GNU General Public License +A PARTICULAR PURPOSE.See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_173.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_173.RULE index 7eb2c095f3..8493580c10 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_173.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_173.RULE @@ -6,8 +6,8 @@ is_license_notice: yes This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 or - later as publishhed by the Free Software Foundation. \ No newline at end of file + it under the terms of the {{GNU General Public License version 2 or + later}} as publishhed by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_178.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_178.RULE index 5d409bd43e..d4a6605fbd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_178.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_178.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. Neither nor University admit liability nor provide warranty for any of this software. This material is diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_179.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_179.RULE index ec13d87ae9..721222dee9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_179.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_179.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program is a part of the Linux kernel, and may be freely - copied under the terms of the GNU General Public License (GPL), - version 2, or at your option any later version. + copied under the terms of the {{GNU General Public License (GPL), + version 2, or at your option any later version}}. / \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_18.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_18.RULE index ca64f31ab0..4751bc93cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_18.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_18.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- This software is subject to, and may be distributed under, the - GNU General Public License, either Version 2 of the license, - or (at your option) any later version. The license should have + {{GNU General Public License, either Version 2 of the license, + or (at your option) any later version}}. The license should have accompanied the software or you may obtain a copy of the license from the Free Software Foundation at http://www.fsf.org . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. \ No newline at end of file + {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_180.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_180.RULE index 99e8ecaa3b..206655e310 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_180.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_180.RULE @@ -4,6 +4,6 @@ is_license_notice: yes minimum_coverage: 80 --- -This software is distributed under the terms of the GNU General -Public License ("GPL") as published by the Free Software Foundation, +This software is distributed under the terms of the {{GNU General +Public License}} ("GPL") as published by the Free Software Foundation, either version 2 of that License or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_181.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_181.RULE index ac0466cfb4..3c645a53df 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_181.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_181.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- This program is free software; you can redistribute it -and/or modify it under the terms of the GNU General -Public License as published by the Free Software +and/or modify it under the terms of the {{GNU General +Public License}} as published by the Free Software Foundation; either version of 2 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_182.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_182.RULE index 1a77431bba..f8a2750ba9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_182.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_182.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This driver is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License; either -version 2 of the License, or (at your option) any later version. +modify it under the terms of the {{GNU General Public License; either +version 2 of the License, or (at your option) any later version}}. This driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this driver; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_183.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_183.RULE index f153da1068..d9b0a75243 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_183.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_183.RULE @@ -9,16 +9,16 @@ ignorable_urls: This implementation is free software; you can redistribute it and/or modify it under the terms of -the GNU General Public License as published by +the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This implementation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied ************************ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with ; see the file COPYING. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_184.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_184.RULE index 1922d06fae..b04bf33423 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_184.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_184.RULE @@ -8,15 +8,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_186.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_186.RULE index e99da94592..5b21cead53 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_186.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_186.RULE @@ -5,14 +5,14 @@ minimum_coverage: 65 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. NO WARRANTY THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR @@ -34,6 +34,6 @@ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_187.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_187.RULE index 98f92d60cf..3f58109645 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_187.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_187.RULE @@ -6,16 +6,16 @@ is_license_notice: yes This file is licensed under GPLv2. This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_189.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_189.RULE index d402cd9bfc..72c900a48e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_189.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_189.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released according to the GNU GPL, version 2 or any later version. \ No newline at end of file +Released according to the GNU {{GPL, version 2 or any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_19.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_19.RULE index d560fe20d9..9b6d9693d6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_19.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_19.RULE @@ -5,15 +5,15 @@ notes: GPL 2 or later notice --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_191.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_191.RULE index 9321d990d0..6761fb2768 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_191.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_191.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 2 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_192.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_192.RULE index 250cf19195..f2a184226d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_192.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_192.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the GNU General Public License for more details. \ No newline at end of file +PURPOSE. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_193.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_193.RULE index 2ab1065ebb..4a247dc8dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_193.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_193.RULE @@ -6,16 +6,16 @@ minimum_coverage: 10 The driver is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. The driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this driver; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_194.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_194.RULE index d0bff6a1ac..2db8027674 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_194.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_194.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see the file COPYING, or write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_195.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_195.RULE index a6bfd089ac..f6bf8e25ce 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_195.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_195.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -any later version. +any later version.}} This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License -along with this program. If not, see . \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} +along with this program. If not, see . diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_196.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_196.RULE index 29c2ee4f77..01c97b3be2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_196.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_196.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with wireless lan drivers; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_197.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_197.RULE index 63cd48151c..f0c2e739e0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_197.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_197.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at -your option) any later version. +your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or -NON INFRINGEMENT. See the GNU General Public License for more +NON INFRINGEMENT. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_198.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_198.RULE index b91b5f92b6..d2adcb4112 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_198.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_198.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_199.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_199.RULE index 71af5239f1..6caac82009 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_199.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_199.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This code is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_20.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_20.RULE index 9ddccd7808..896ad99ae1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_20.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_20.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_200.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_200.RULE index 6b4d070475..6ea6830f64 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_200.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_200.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License vs published by +it under the terms of the {{GNU General Public License}} vs published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mvss Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_202.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_202.RULE index 7b02a13b56..4e031389db 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_202.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_202.RULE @@ -8,16 +8,16 @@ notes: this contains an extra comment about radio frequencies laws which does no --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_203.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_203.RULE index 4579dc89f6..568de2d848 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_203.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_203.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software ; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation ; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY ; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with the program ; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_205.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_205.RULE index 4f898db34b..6f12861791 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_205.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_205.RULE @@ -18,15 +18,15 @@ This code was developed from version of the drivers, of the GPL, in source form. The source is located at the end of the file. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with Atmel wireless lan drivers; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_206.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_206.RULE index 5f6f5d5a68..1213aa81f8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_206.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_206.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0-plus is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -Licensed under the GPLv2 or later. \ No newline at end of file +licensed under the GPLv2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_207.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_207.RULE index 9a0d6135d1..8d867ec380 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_207.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_207.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 (or any +it under the terms of the {{GNU General Public License version 2}} (or any later at your option) as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_208.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_208.RULE index df257e3169..cd3e7ca17e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_208.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_208.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License version -2 or any later version as published by the Free Software Foundation. \ No newline at end of file +modify it under the terms of the {{GNU General Public License version +2}} or any later version as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_209.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_209.RULE index db4648397d..3d94913158 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_209.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_209.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -licensed under the GNU General Public License version 2 or above +licensed under the {{GNU General Public License version 2}} or above See `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_21.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_21.RULE index e9d55e3151..977d18b5e8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_21.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_21.RULE @@ -6,5 +6,5 @@ notes: GPL 2.0 short notice --- You may copy, modify, and redistribute this file under the terms of - the GNU General Public License, version 2, or any later version, at + the {{GNU General Public License, version 2}}, or any later version, at your convenience. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_210.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_210.RULE index 139813c9de..a89cda4ab7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_210.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_210.RULE @@ -6,6 +6,6 @@ is_license_notice: yes Derived from GPLv2+ licensed source: This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2, or +it under the terms of the {{GNU General Public License version 2}}, or (at your option) any later version. as published by the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_211.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_211.RULE index cba4724519..b6573cdd1f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_211.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_211.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2, or +it under the terms of the {{GNU General Public License version 2}}, or (at your option) any later version. as published by the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_212.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_212.RULE index 7b2903bca4..a656a5f38c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_212.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_212.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- GDB, GAS, and the GNU binutils are free software; you can redistribute -them and/or modify them under the terms of the GNU General Public +them and/or modify them under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version -2, or (at your option) any later version. +2, or (at your option) any later version}}. GDB, GAS, and the GNU binutils are distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See -the GNU General Public License for more details. +the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this file; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_213.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_213.RULE index 1a9752f9ca..dfd837dbf3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_213.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_213.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it under the terms of the {{GNU General Public License version 2}} as published by the Free Software Foundation (or any later at your option). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_214.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_214.RULE index d368a983b2..26707796e9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_214.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_214.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published + it under the terms of the {{GNU General Public License as published by the Free Software Foundiation. either version 2 of the License, - or (at your option) any later version \ No newline at end of file + or (at your option) any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_217.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_217.RULE index 47c58f302a..a86080cf8b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_217.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_217.RULE @@ -3,6 +3,6 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -This file is licensed under the terms of the GNU General Public -License version 2 or later. This program is licensed "as is" without any +This file is licensed under the terms of the {{GNU General Public +License version 2 or later}}. This program is licensed "as is" without any warranty of any kind, whether express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_218.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_218.RULE index 0ddf6ac61b..41dd55ebe7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_218.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_218.RULE @@ -5,5 +5,5 @@ referenced_filenames: - COPYING --- -This source code is licensed under the GNU General Public License, -Version 2 or later. See the file COPYING for more details. \ No newline at end of file +This source code is licensed under the {{GNU General Public License, +Version 2 or later}}. See the file COPYING for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_219.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_219.RULE index f6595f169a..5d7f23e2d2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_219.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_219.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This code is released under the GNU General Public License version 2 or -later. \ No newline at end of file +This code is released under the {{GNU General Public License version 2 or +later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE index 094a1bfc61..d457dd5877 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_22.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0-plus is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_220.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_220.RULE index ea4ab10f26..f0b69804b4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_220.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_220.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This file is part of the Linux kernel, and is made available under -the terms of the GNU General Public License version 2 or (at your +the terms of the {{GNU General Public License version 2}} or (at your option) any later version; incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_221.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_221.RULE index cdeff282a5..93e96536d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_221.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_221.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version - 2 of the License, or (at your option) any later version. + 2 of the License, or (at your option) any later version}}. Author: @@ -17,6 +17,6 @@ A generic video device interface for the LINUX operating system using a set of device structures/vectors for low level operations. This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version - 2 of the License, or (at your option) any later version. \ No newline at end of file + 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_222.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_222.RULE index 05b5055cfe..6c61e571d0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_222.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_222.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- You may modify and redistribute the device driver code under the -GNU General Public License as published by the Free Software -Foundation (version 2 or a later version). \ No newline at end of file +{{GNU General Public License as published by the Free Software +Foundation (version 2 or a later version)}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_223.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_223.RULE index 7bd4d4abf8..fcdef49ba1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_223.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_223.RULE @@ -4,17 +4,17 @@ is_license_notice: yes --- This document is free; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This document is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU General Public License +PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with this program; if not, write to the Free +You should have received a copy of the {{GNU General Public +License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_224.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_224.RULE index c2268659a9..57abbfedae 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_224.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_224.RULE @@ -4,18 +4,18 @@ is_license_notice: yes --- under the -GNU General Public License. +{{GNU General Public License}}. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_227.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_227.RULE index d41edd0af6..c040c8611d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_227.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_227.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. NO WARRANTY THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR @@ -33,7 +33,7 @@ This program is free software; you can redistribute it and/or USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_228.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_228.RULE index 30d6ac133c..d3672152be 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_228.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_228.RULE @@ -5,6 +5,6 @@ notes: the version is written using words (two) not digits --- This source/code is public free; you can distribute it and/or modify -it under terms of the GNU General Public License (published by the +it under terms of the {{GNU General Public License}} (published by the Free Software Foundation) either version two of this License, or any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_23.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_23.RULE index f618b3ec8c..9f908f1a4c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_23.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_23.RULE @@ -6,21 +6,21 @@ is_license_notice: yes Main License (everything except docs): This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. +On Debian systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}'. The Debian packaging is Copyright . It is licensed under the same conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_230.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_230.RULE index 0f966ae3a3..167e172431 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_230.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_230.RULE @@ -8,16 +8,16 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. See the COPYING file in the top-level directory or visit This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. This program is provided "AS IS" and "WITH ALL FAULTS" and without warranty of any kind. You are solely responsible for diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_232.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_232.RULE index 6f103e8a4a..61903e1b9f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_232.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_232.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License version -2 or later as published by the Free Software Foundation. +modify it under the terms of the {{GNU General Public License version +2 or later}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_233.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_233.RULE index 8c3ef652e1..f2d8d1e217 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_233.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_233.RULE @@ -4,18 +4,18 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the Free +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -The full GNU General Public License is included in this distribution in the +The full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_234.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_234.RULE index c62c3552b7..982ceab16c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_234.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_234.RULE @@ -6,15 +6,15 @@ referenced_filenames: --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with ; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_235.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_235.RULE index edaf3caab3..a53ce4f83c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_235.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_235.RULE @@ -3,9 +3,9 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version}}. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF @@ -18,6 +18,6 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_236.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_236.RULE index 5f7178fdb8..2e276beca5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_236.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_236.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This code is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_237.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_237.RULE index b97d4fe3eb..4debe282a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_237.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_237.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the smems of the GNU General Public License as published by +it under the smems of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_238.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_238.RULE index 57e9bff2cc..038b34b6bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_238.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_238.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- library are free software; you can redistribute them -and/or modify them under the terms of the GNU General Public License as +and/or modify them under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_239.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_239.RULE index 85cbd71219..aa50bea4f7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_239.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_239.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- this program is free software; you can redistribute it and/or modify -it under the terms of the gnu general public license as published by +it under the terms of the {{gnu general public license as published by the free software foundation; either version 2, or (at your option) -any later version. +any later version}}. this program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. see the -gnu general public license for more details. +{{gnu general public license}} for more details. -you should have received a copy of the gnu general public license +you should have received a copy of the {{gnu general public license}} along with this program; see the file copying. if not, write to the free software foundation, 59 temple place - suite 330, boston, ma 02111-1307, usa. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_24.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_24.RULE index 222a0c7960..1e4392282b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_24.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_24.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_240.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_240.RULE index 045b340c31..93a82e99bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_240.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_240.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This program/include file is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as published +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program/include file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program (in the main directory of the Linux distribution in the file COPYING); if not, write to the Free Software Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_241.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_241.RULE index 13aab28094..b6a80c559d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_241.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_241.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free Software +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later -version. +version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program (in the main directory of the source in the file COPYING); if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_242.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_242.RULE index 2d450722cf..3f6332cd8e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_242.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_242.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the Free +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program (in the main directory of the Linux source in the file COPYING); if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_243.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_243.RULE index 87c6e89f82..0c1473f701 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_243.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_243.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_244.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_244.RULE index ee63289f85..a4c112d255 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_244.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_244.RULE @@ -4,8 +4,8 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the {{GNU General Public License}} -as published by the Free Software Foundation; {{either version +modify it under the terms of the {{GNU General Public License +as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. Authors: diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_245.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_245.RULE index eeb5c096e3..9c82396bad 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_245.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_245.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This include file is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. \ No newline at end of file +the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_246.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_246.RULE index 18b8e6bc4e..319b51fb87 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_246.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_246.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 2 of the License or (at your optional) any later version of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_247.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_247.RULE index 0944c18f64..0ae7d0dc77 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_247.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_247.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version -2 of the License, or (at your option) any later version. +2 of the License, or (at your option) any later version}}. Neither nor admit liability nor provide warranty for any of this software. This material is provided diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_248.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_248.RULE index 14a5fba0a8..657236360d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_248.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_248.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version -2 of the License, or (at your option) any later version. +2 of the License, or (at your option) any later version}}. Neither admit liability nor provide warranty for any of this software. This material is provided diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_249.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_249.RULE index 1b8f916791..2975813156 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_249.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_249.RULE @@ -10,16 +10,16 @@ ignorable_urls: The SCTP reference implementation is free software; you can redistribute it and/or modify it under the terms of -the GNU General Public License as published by +the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. The SCTP reference implementation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied ************************ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GNU CC; see the file COPYING. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_25.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_25.RULE index eabc26a258..b83f6da5c4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_25.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_25.RULE @@ -5,15 +5,15 @@ notes: GPL 2 or later notice, debian style --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_250.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_250.RULE index 36380a5858..000e949362 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_250.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_250.RULE @@ -10,16 +10,16 @@ ignorable_urls: The SCTP implementation is free software; you can redistribute it and/or modify it under the terms of -the GNU General Public License as published by +the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. The SCTP implementation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied ************************ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GNU CC; see the file COPYING. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_251.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_251.RULE index 36189d0422..8a0bfe4949 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_251.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_251.RULE @@ -10,16 +10,16 @@ ignorable_urls: This SCTP implementation is free software; you can redistribute it and/or modify it under the terms of -the GNU General Public License as published by +the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This SCTP implementation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied ************************ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GNU CC; see the file COPYING. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_252.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_252.RULE index 8e63456d7b..07a5602d19 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_252.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_252.RULE @@ -4,17 +4,17 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. Author: This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_253.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_253.RULE index 4b8e575fea..ed852a333b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_253.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_253.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with drivers; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_254.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_254.RULE index 8dee599a88..2b24184e2c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_254.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_254.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with Atmel wireless lan drivers; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_255.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_255.RULE index 6d1231cd45..575b254015 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_255.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_255.RULE @@ -6,15 +6,15 @@ is_license_notice: yes License ========== This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_256.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_256.RULE index cb72eb6d57..44cc1d4e50 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_256.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_256.RULE @@ -10,16 +10,16 @@ License This driver is distributed under the terms of the General Public License. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_257.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_257.RULE index 3999cd703b..84fc31cb7c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_257.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_257.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or - NON INFRINGEMENT. See the GNU General Public License for more + NON INFRINGEMENT. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_258.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_258.RULE index 75de166bcf..2f7cd11b93 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_258.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_258.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- GnuPG is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. GnuPG is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_259.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_259.RULE index 5ef59c7a9d..4faf5a0123 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_259.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_259.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation's version 2 and any later version the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_26.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_26.RULE index 7cc5f931cb..bfef893834 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_26.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_26.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU General Public License Version 2 or later (the "GPL") \ No newline at end of file +{{GNU General Public License Version 2 or later}} (the "GPL") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_260.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_260.RULE index 4147eaa990..f75e69fcf8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_260.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_260.RULE @@ -6,18 +6,18 @@ referenced_filenames: --- This documentation is free software; you can redistribute - it and/or modify it under the terms of the GNU General Public + it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later - version. + version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU General Public License for more details. + See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with this program; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_265_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_265_1.RULE index 00e0c033fc..ff22144ef5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_265_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_265_1.RULE @@ -6,14 +6,14 @@ notes: the warranty and disclaimer sections are funky --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. NO WARRANTY THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR @@ -35,5 +35,5 @@ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_265_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_265_2.RULE index 9dc803aa92..7f825001cf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_265_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_265_2.RULE @@ -7,14 +7,14 @@ notes: the warranty and disclaimer sections are funky --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. NO WARRANTY THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_268.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_268.RULE index 7fa193cf47..984a7b5de8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_268.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_268.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -// Licensed under the GNU General Public License (GPL) version 2. \ No newline at end of file +// Licensed under the {{GNU General Public License (GPL) version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_27.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_27.RULE index 2446eb4124..0dfb2aa987 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_27.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_27.RULE @@ -6,18 +6,18 @@ notes: GPL 2 or later notice, with debian line --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_271.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_271.RULE index f163737a1c..7a18060197 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_271.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_271.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -license GNU General Public License 2.0 or later \ No newline at end of file +license {{GNU General Public License 2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_279.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_279.RULE index 0ebc74fe2e..c998ad8a15 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_279.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_279.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This file is free software; you can redistribute it and/or -* modify it under the terms of the GNU General Public License as +* modify it under the terms of the {{GNU General Public License as * published by the Free Software Foundation; either version 2 of the -* License, or (at your option) any later version. +* License, or (at your option) any later version}}. * * This file is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. \ No newline at end of file +* {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_28.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_28.RULE index b09cd5a2e6..11efe6762c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_28.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_28.RULE @@ -5,18 +5,18 @@ notes: GPL 2 or later notice, debian style --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_280.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_280.RULE index 7ee3b9a27d..749ae37d2d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_280.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_280.RULE @@ -5,8 +5,8 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.html --- -Licensed under the terms of the GNU General Public License, -version 2 or later. Derivative works and later versions of the code must be +Licensed under the terms of the {{GNU General Public License, +version 2 or later}}. Derivative works and later versions of the code must be free software licensed under the same or a compatible license. For the full text of version 2 of the license, see diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_281.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_281.RULE index a370f2f1bc..9fa2ed7c87 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_281.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_281.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify i t -under the terms of the GNU General Public License as published by th e +under the terms of the {{GNU General Public License}} as published by th e Free Software Foundation; either version 2 of the License, or (at you r option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_282.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_282.RULE index 58e18e696b..eaf0fa8797 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_282.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_282.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 2 of the License, or later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_283.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_283.RULE index 8de5151ce1..94fc416a82 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_283.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_283.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_284.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_284.RULE index 8e61b3c9c0..be61fcf78b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_284.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_284.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. To obtain the license, point your browser to http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_285.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_285.RULE index bb33a05bee..bf8b54a587 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_285.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_285.RULE @@ -6,7 +6,7 @@ referenced_filenames: - COPYING --- -The software is licensed under the terms of the GNU General +The software is licensed under the terms of the {{GNU General Public License as published by the Free Software Foundation, either -version 2 of the license, or (at your option) any later version. A +version 2 of the license, or (at your option) any later version}}. A copy of the GPL version 2 license can be found in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_286.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_286.RULE index c4e9e99783..fcf5a77c5c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_286.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_286.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_287.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_287.RULE index ef75d4b509..7f1bf9c0a6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_287.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_287.RULE @@ -5,11 +5,11 @@ minimum_coverage: 30 --- GNU CC is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. */ \ No newline at end of file +{{GNU General Public License}} for more details. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_288.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_288.RULE index fd0dba70b3..501e5ee1f4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_288.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_288.RULE @@ -5,7 +5,7 @@ referenced_filenames: - COPYING --- -is licensed under the terms of the GNU General +is licensed under the terms of the {{GNU General Public License as published by the Free Software Foundation, either -version 2 of the license, or (at your option) any later version. A +version 2 of the license, or (at your option) any later version}}. A copy of the GPL version 2 license can be found in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_289.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_289.RULE index 7fa51e6a60..5fb2e02679 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_289.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_289.RULE @@ -5,15 +5,15 @@ is_license_notice: yes GPL LICENSE This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_29.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_29.RULE index ad140118b4..7226fbdb24 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_29.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_29.RULE @@ -7,19 +7,19 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the complete text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public License +version 2}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. the +complete text of the {{GNU General Public License}} version 3 can be found +in `{{/usr/share/common-licenses/GPL}}-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_290.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_290.RULE index 6e421b6973..9076b025b4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_290.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_290.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. Due to this file being licensed under the GPL there is controversy over whether this permits you to write a module that #includes this file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_291.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_291.RULE index 4cd5f8be98..c576aad589 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_291.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_291.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -product is under the GNU General Public License, version 2 or later. +product is under the {{GNU General Public License, version 2 or later}}. As such, this file is also under that license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_292.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_292.RULE index 658389e3b0..c2d02221be 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_292.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_292.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -product is under the GNU General Public License, version 2 or later. \ No newline at end of file +product is under the {{GNU General Public License, version 2 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_293.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_293.RULE index 374a0d5a22..dd18c94a4f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_293.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_293.RULE @@ -5,11 +5,11 @@ is_license_notice: yes This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions of -the GNU General Public License v.2, or (at your option) any later version. +the {{GNU General Public License}} v.2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the implied warranties of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -Public License for more details. You should have received a copy of the -GNU General Public License along with this program; if not, write to the +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General +Public License}} for more details. You should have received a copy of the +{{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_294.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_294.RULE index 9f74848a02..fc25b56aae 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_294.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_294.RULE @@ -6,16 +6,16 @@ is_license_notice: yes '(("GPL2" t "This program is free software; you can redistribute it and/or" - "modify it under the terms of the GNU General Public License" + "modify it under the terms of the {{GNU General Public License" "as published by the Free Software Foundation; either version" - "2 of the License, or (at your option) any later version." + "2 of the License, or (at your option) any later version}}." "" "This program is distributed in the hope that it will be" "useful, but WITHOUT ANY WARRANTY; without even the implied" "warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR" - "PURPOSE. See the GNU General Public License for more details." + "PURPOSE. See the {{GNU General Public License}} for more details." "" - "You should have received a copy of the GNU General Public" - "License along with this program; if not, write to the Free" + "You should have received a copy of the {{GNU General Public" + "License}} along with this program; if not, write to the Free" "Software Foundation, Inc., 59 Temple Place, Suite 330," "Boston, MA 02111-1307 USA") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_295.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_295.RULE index fd282d041e..ea4a9ba812 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_295.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_295.RULE @@ -8,9 +8,9 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) - * any later version. + * any later version}}. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * (for example COPYING); If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_296.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_296.RULE index 9c9f12b424..d9ae44029b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_296.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_296.RULE @@ -6,10 +6,10 @@ referenced_filenames: --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) - * any later version. + * any later version}}. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * (for example COPYING); if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_297.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_297.RULE index 88ba05b664..afd4555a72 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_297.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_297.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) - * any later version. + * any later version}}. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with smartmontools. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_298.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_298.RULE index 2ec99bd04e..daa10f3a8c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_298.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_298.RULE @@ -8,6 +8,6 @@ ignorable_urls: comes with ABSOLUTELY NO WARRANTY. This is free " "software, and you are welcome to redistribute it under " - "the terms of the GNU General Public License; either " - "version 2, or (at your option) any later version. " + "the terms of the {{GNU General Public License; either " + "version 2, or (at your option) any later version}}. " "See http://www.gnu.org for further details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_299.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_299.RULE index b086ceef4e..541737ec94 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_299.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_299.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- // eCos is free software; you can redistribute it and/or modify it under -// the terms of the GNU General Public License as published by the Free +// the terms of the {{GNU General Public License as published by the Free // Software Foundation; either version 2 or (at your option) any later -// version. +// version}}. // // eCos is distributed in the hope that it will be useful, but WITHOUT // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +// FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} // for more details. // -// You should have received a copy of the GNU General Public License +// You should have received a copy of the {{GNU General Public License}} // along with eCos; if not, write to the Free Software Foundation, Inc., // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_3.RULE index 6ccab1b21a..9b0544a716 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_3.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) - * any later version. + * any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. \ No newline at end of file + * {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_30.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_30.RULE index 2e921f0fff..6c2125335b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_30.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_30.RULE @@ -6,18 +6,18 @@ is_license_notice: yes License: GPL v2 or later This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_301.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_301.RULE index 5c6a053ae7..59f20c379c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_301.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_301.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- # This file is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by +# under the terms of the {{GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +# General Public License}} for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the {{GNU General Public License}} # along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_302.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_302.RULE index 3b6f35d1bc..f2e30f0d8f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_302.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_302.RULE @@ -6,11 +6,11 @@ is_license_notice: yes , released under the GPL. * * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. \ No newline at end of file + * {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_306.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_306.RULE index 1176f538ff..f5b23d29b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_306.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_306.RULE @@ -10,17 +10,17 @@ The keys in the keyrings don't fall under any copyright. Everything else in the package is covered by the GNU GPL. Debian support files for debian-archive-keyring are free software; you -can redistribute them and/or modify them under the terms of the GNU +can redistribute them and/or modify them under the terms of the {{GNU General Public License as published by the Free Software Foundation; -either version 2, or (at your option) any later version. +either version 2, or (at your option) any later version}}. Debian support files for debian-archive-keyring are distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the GNU General Public License for more details. +PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License with -your Debian system, in /usr/share/common-licenses/GPL, or with the +You should have received a copy of the {{GNU General Public License}} with +your Debian system, in {{/usr/share/common-licenses/GPL}}, or with the Debian GNU debian-archive-keyring source package as the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_307.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_307.RULE index 35efcec31a..b11b982a9a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_307.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_307.RULE @@ -4,8 +4,8 @@ is_license_notice: yes minimum_coverage: 70 --- -eCos is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 or (at your option) any later version. +eCos is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 or (at your option) any later version}}. -eCos is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +eCos is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with eCos; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} along with eCos; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_308.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_308.RULE index 11e9427775..0162798f7c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_308.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_308.RULE @@ -4,14 +4,14 @@ is_license_notice: yes minimum_coverage: 70 --- -the terms of the GNU General Public License as published by the Free -Software Foundation; either version 2 or (at your option) any later version. +the terms of the {{GNU General Public License as published by the Free +Software Foundation; either version 2 or (at your option) any later version}}.

eCos is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details.

-You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with eCos; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_309.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_309.RULE index 8f3c044a17..5b0b1bd4fa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_309.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_309.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -License: GNU General Public License v2 or later \ No newline at end of file +License: {{GNU General Public License v2 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_31.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_31.RULE index 53855b2fea..d9586e2fda 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_31.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_31.RULE @@ -1,6 +1,6 @@ --- license_expression: gpl-2.0-plus -is_license_reference: yes +is_license_notice: yes relevance: 80 minimum_coverage: 100 referenced_filenames: @@ -8,4 +8,4 @@ referenced_filenames: notes: In 2006 Pychess used the GPL 2.0. It became GPL 3.0 in 2011 --- -This file is distributed under the same license as the {{Pychess}} package. \ No newline at end of file +This file is {{distributed under the same license as the Pychess}} package. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_311.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_311.RULE index 92680d477b..164216cde9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_311.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_311.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This texinfo.tex file is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at - your option) any later version. + your option) any later version}}. This texinfo.tex file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty - of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this texinfo.tex file; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_312.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_312.RULE index f3db37b023..6ae96a06f6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_312.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_312.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This file is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at - your option) any later version. + your option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty - of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this file; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_313.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_313.RULE index 6388210f06..1a88bc1306 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_313.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_313.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This file may be redistributed under the terms of the -GNU General Public License version 2 or at your discretion -any later version. \ No newline at end of file +{{GNU General Public License version 2 or at your discretion +any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_314.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_314.RULE index 60d23b8f2e..b22e57bfbd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_314.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_314.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License + * modify it under the terms of the {{GNU General Public License * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. + * of the License, or (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_315.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_315.RULE index 79c60c741f..bbeca72458 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_315.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_315.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_316.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_316.RULE index 4c0957e549..c6bc76a4cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_316.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_316.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received copies of the GNU General Public License + You should have received copies of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_318.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_318.RULE index 3f38c9de2a..eef5710598 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_318.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_318.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU-GPL-2.0-or-later \ No newline at end of file +GNU GPL 2.0 (or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_319.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_319.RULE index 1d5d273faa..1855a170c7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_319.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_319.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GPL-2.0-plus \ No newline at end of file +gpl 2.0 plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_32.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_32.RULE index 11e88e1685..9ea02c3bf8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_32.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_32.RULE @@ -10,17 +10,17 @@ Everything else in the package is covered by the GNU GPL. Debian support files for are free software; you -can redistribute them and/or modify them under the terms of the GNU +can redistribute them and/or modify them under the terms of the {{GNU General Public License as published by the Free Software Foundation; -either version 2, or (at your option) any later version. +either version 2, or (at your option) any later version}}. Debian support files for are distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the GNU General Public License for more details. +PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License with -your Debian system, in /usr/share/common-licenses/GPL, or with the +You should have received a copy of the {{GNU General Public License}} with +your Debian system, in {{/usr/share/common-licenses/GPL}}, or with the Debian GNU debian-archive-keyring source package as the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_320.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_320.RULE index bead2f38f9..f10974767b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_320.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_320.RULE @@ -6,15 +6,15 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -Public License for more details (LICENSE.txt). +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General +Public License}} for more details (LICENSE.txt). -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_321.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_321.RULE index 07229330f5..4aacdd6a84 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_321.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_321.RULE @@ -5,19 +5,19 @@ referenced_filenames: - LICENSE.txt --- -For the full software distribution and modifications made under the GNU General -Public License version 2: +For the full software distribution and modifications made under the {{GNU General +Public License version 2}}: This program is free software; you can redistribute it and/or modify it under - the terms of the GNU General Public License as published by the Free Software + the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later - version. + version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received (README.license.GPL) a copy of the GNU General Public - License along with this program; if not, write to the Free Software + You should have received (README.license.GPL) a copy of the {{GNU General Public + License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_322.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_322.RULE index fa7ede78dd..7dea117268 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_322.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_322.RULE @@ -7,8 +7,8 @@ ignorable_urls: - https://www.gnu.org/ --- -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version}}. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this software; see the file COPYING.txt. If not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA (or visit the web site https://www.gnu.org/). \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} along with this software; see the file COPYING.txt. If not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA (or visit the web site https://www.gnu.org/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_323.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_323.RULE index e3403af0d6..5651789e4d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_323.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_323.RULE @@ -7,14 +7,14 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - You should have received a copy of the GNU General Public License along + {{GNU General Public License}} for more details. + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_324.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_324.RULE index 637fac267e..1ee7ccba1a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_324.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_324.RULE @@ -6,8 +6,8 @@ is_license_notice: yes GPL: - This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. + This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. - This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_325.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_325.RULE index 6ba84def67..71882eeed2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_325.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_325.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you may redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_326.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_326.RULE index 5af4ebdc0a..0061fdcae0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_326.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_326.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this software; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_328.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_328.RULE index 40b49f2796..207553a5f1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_328.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_328.RULE @@ -7,16 +7,16 @@ ignorable_urls: --- // This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by +// it under the terms of the {{GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. +// (at your option) any later version}}. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. +// {{GNU General Public License}} for more details. // -// You should have received a copy of the GNU General Public License +// You should have received a copy of the {{GNU General Public License}} // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, // MA 02110-1301 USA, or visit diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_329.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_329.RULE index e51087d141..be70ac86d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_329.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_329.RULE @@ -6,11 +6,11 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the + * under the terms of the {{GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your - * option) any later version. See . + * option) any later version}}. See . * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} * for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_330.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_330.RULE index e5a2de2612..7c0a8ab7a4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_330.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_330.RULE @@ -6,11 +6,11 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 2 of the Licenseor (at your option) any later version. See . This program is distributed in the hope that it will be usefulbut WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_331.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_331.RULE index 2295a0db08..dd3694fce0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_331.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_331.RULE @@ -8,11 +8,11 @@ ignorable_urls: --- "This program is free software; you can redistribute it and/or modify it", -"under the terms of the GNU General Public License as published by the", +"under the terms of the {{GNU General Public License as published by the", "Free Software Foundation; either version 2 of the License, or (at your", -"option) any later version. See .", +"option) any later version}}. See .", "", "This program is distributed in the hope that it will be useful, but", "WITHOUT ANY WARRANTY; without even the implied warranty of", -"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General", -"Public License (file COPYING in the distribution) for more details.", \ No newline at end of file +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General", +"Public License}} (file COPYING in the distribution) for more details.", \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_332.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_332.RULE index 6d04a2bba2..58c3794579 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_332.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_332.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- This is free documentation; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. - The GNU General Public License's references to "object code" + The {{GNU General Public License}}'s references to "object code" and "executables" are to be interpreted as the output of any document formatting or typesetting system, including intermediate and printed output. @@ -19,8 +19,8 @@ This is free documentation; you can redistribute it and/or This manual is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with this manual. If not, see + You should have received a copy of the {{GNU General Public + License}} along with this manual. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_333.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_333.RULE index 66ab85f6bb..8427e07d75 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_333.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_333.RULE @@ -6,15 +6,15 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . This is free documentation; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. -The GNU General Public License's references to "object code" +The {{GNU General Public License}}'s references to "object code" and "executables" are to be interpreted as the output of any document formatting or typesetting system, including intermediate and printed output. @@ -22,8 +22,8 @@ intermediate and printed output. This manual is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with this manual. If not, see +You should have received a copy of the {{GNU General Public +License}} along with this manual. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_334.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_334.RULE index 0d253e935e..2db81a7298 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_334.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_334.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_335.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_335.RULE index 0463ac179c..f55bdc9dd5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_335.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_335.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- GNU Autoconf is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. GNU Autoconf is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with autoconf; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_336.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_336.RULE index 34f752fb73..24d1eac6d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_336.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_336.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- GNU is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. GNU is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with ; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_337.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_337.RULE index f4000dce23..0d24f3095a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_337.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_337.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with ; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_338.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_338.RULE index eee21a5ba4..27c4b50db4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_338.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_338.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- GNU Autoconf is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. GNU Autoconf is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GNU Autoconf; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_339.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_339.RULE index a3a552b776..bf3b44cc16 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_339.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_339.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program (in the main directory of the * distribution in the file COPYING); if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_34.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_34.RULE index 1f28a852be..ab3f6fb185 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_34.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_34.RULE @@ -7,8 +7,8 @@ ignorable_urls: --- | This software is subject to, and may be distributed under, the - | GNU General Public License, either Version 2 of the license, - | or (at your option) any later version. The license should have + | {{GNU General Public License, either Version 2 of the license, + | or (at your option) any later version}}. The license should have | accompanied the software or you may obtain a copy of the license | from the Free Software Foundation at http://www.fsf.org . | @@ -18,8 +18,8 @@ ignorable_urls: | claims, LizardTech grants recipient a worldwide, royalty-free, | non-exclusive license to make, use, sell, or otherwise dispose of | the LIZARDTECH ORIGINAL CODE or of programs derived from the - | LIZARDTECH ORIGINAL CODE in compliance with the terms of the GNU - | General Public License. This grant only confers the right to + | LIZARDTECH ORIGINAL CODE in compliance with the terms of the {{GNU + | General Public License}}. This grant only confers the right to | infringe patent claims underlying the LIZARDTECH ORIGINAL CODE to | the extent such infringement is reasonably necessary to enable | recipient to make, have made, practice, sell, or otherwise dispose diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_340.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_340.RULE index bf985e4c3d..0499c17283 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_340.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_340.RULE @@ -6,15 +6,15 @@ referenced_filenames: --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, see the file COPYING, or write * to the Free Software Foundation, Inc., \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_342.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_342.RULE index eec604f1c1..cf0591d824 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_342.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_342.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2, or +it under the terms of the {{GNU General Public License version 2}}, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_343.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_343.RULE index 9d50ca1c04..c62c278cda 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_343.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_343.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms and conditions of the GNU General Public License, - version 2 or later, as published by the Free Software Foundation. + under the terms and conditions of the {{GNU General Public License, + version 2 or later}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_344.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_344.RULE index 125fcdc58c..fcd5e95b55 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_344.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_344.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. This program is distributed "as is" WITHOUT ANY WARRANTY of any kind, whether express or implied; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_345.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_345.RULE index ed5d5b196b..1d479757fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_345.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_345.RULE @@ -9,15 +9,15 @@ referenced_filenames: This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_346.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_346.RULE index 0a6b3ac7f5..4a1ab421ec 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_346.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_346.RULE @@ -7,11 +7,11 @@ minimum_coverage: 96 GPL/Linux driver written by This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_348.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_348.RULE index 88bed38832..089823baf6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_348.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_348.RULE @@ -8,6 +8,6 @@ allowing the code to * be released under the GPL. * * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. \ No newline at end of file + * (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_349.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_349.RULE index 800b15a8e1..1e433ec849 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_349.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_349.RULE @@ -12,11 +12,11 @@ This code is covered by the GNU GPL and you are free to make any This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any - later version. + later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_35.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_35.RULE index 062b03e7fa..1fdb1d728f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_35.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_35.RULE @@ -5,7 +5,7 @@ relevance: 100 --- Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any -later version. A copy of the license is included in the -section entitled ``GNU General Public License''. \ No newline at end of file +later version}}. A copy of the license is included in the +section entitled ``{{GNU General Public License}}''. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_350.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_350.RULE index e90de08a31..81550b8e28 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_350.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_350.RULE @@ -6,15 +6,15 @@ is_license_notice: yes GPL/Linux driver written by This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the Free +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_351.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_351.RULE index 8ef86673c1..b82f5ab9ec 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_351.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_351.RULE @@ -7,11 +7,11 @@ minimum_coverage: 95 GPL Linux driver by This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 2 of the License, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_352.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_352.RULE index 409bb67657..373b475d23 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_352.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_352.RULE @@ -7,15 +7,15 @@ This code also uses code from University, rereleased as GPL by its authors: This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_353.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_353.RULE index 14b79006da..c8cd576479 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_353.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_353.RULE @@ -6,14 +6,14 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the Free + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - The full GNU General Public License is in this distribution in the file + The full {{GNU General Public License}} is in this distribution in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_354.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_354.RULE index bd60bc4ff1..f018955288 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_354.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_354.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version}}. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF @@ -17,6 +17,6 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_355.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_355.RULE index d9c360d243..c44c70d0e9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_355.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_355.RULE @@ -5,6 +5,6 @@ relevance: 100 --- This source code is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. \ No newline at end of file +License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_356.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_356.RULE index e23c69eb79..9503321067 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_356.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_356.RULE @@ -5,7 +5,7 @@ relevance: 100 --- This documentation is free software; you can redistribute -it and/or modify it under the terms of the GNU General Public +it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later -version. \ No newline at end of file +version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_359.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_359.RULE index 3d74e6b57b..8b30190229 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_359.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_359.RULE @@ -7,6 +7,6 @@ relevance: 100 and is available under the GPL v2 or later. This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version -2 of the License, or (at your option) any later version. \ No newline at end of file +2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_36.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_36.RULE index db9a772299..d198ab1565 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_36.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_36.RULE @@ -6,8 +6,8 @@ notes: gpl 2 dedian notice --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. - The GPL may be found in /usr/share/common-licenses/GPL on a Debian system. \ No newline at end of file + The GPL may be found in {{/usr/share/common-licenses/GPL}} on a Debian system. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_362.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_362.RULE index 4e211ae67b..70453e91aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_362.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_362.RULE @@ -5,6 +5,6 @@ relevance: 100 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 2 of the License, or any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_363.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_363.RULE index 62270484b7..50e0733d75 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_363.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_363.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This code is free software. You may copy, modify, and distribute -it subject to the terms and conditions of the GNU General Public -License, version 2, or any later version, at your convenience. \ No newline at end of file +it subject to the terms and conditions of the {{GNU General Public +License, version 2}}, or any later version, at your convenience. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_364.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_364.RULE index c17fa074c4..87ed234713 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_364.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_364.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms of GNU General Public License as published by the Free + under the terms of {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) - any later version. + any later version}}. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_365.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_365.RULE index 7c786683d2..e464cbb7a4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_365.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_365.RULE @@ -5,9 +5,9 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify it -under the terms of the {{GNU General Public License}} as published by the -Free Software Foundation; either {{version 2}} of the License, or (at your -option) {{any later version}}. +under the terms of the {{GNU General Public License as published by the +Free Software Foundation; either version 2 of the License, or (at your +option) any later version}}. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_366.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_366.RULE index f00bd508d5..e91cf879b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_366.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_366.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, Inc., 675 Mass Ave, Cambridge MA 02139, USA; either version 2 of the License, or (at your option) any later version; incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_367.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_367.RULE index d5cdae6494..fbcd4e1d50 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_367.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_367.RULE @@ -5,11 +5,11 @@ relevance: 100 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License version -2 as published by the Free Software Foundation, or (at your option) +modify it under the terms of the {{GNU General Public License version +2}} as published by the Free Software Foundation, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_368.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_368.RULE index 9a728ab2fe..fb69298e7a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_368.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_368.RULE @@ -5,11 +5,11 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the therms of the GNU General Public License as published by +it under the therms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_369.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_369.RULE index 3a7cc829e6..d758e56966 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_369.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_369.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with this program; if not, write to the +You should have received a copy of the {{GNU General Public +License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 021110-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_37.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_37.RULE index 6fd1c09de9..92a579279a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_37.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_37.RULE @@ -5,9 +5,9 @@ minimum_coverage: 80 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. THIS PROGRAM IS PROVIDED "AS IS" AND BOTH THE COPYRIGHT HOLDER AND @@ -19,4 +19,4 @@ DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS PROGRAM. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_370.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_370.RULE index 048a204fd9..c5003de54b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_370.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_370.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the of the GNU General Public License as published by +it under the of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_371.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_371.RULE index 6ca31a9435..6e4696ef32 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_371.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_371.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- * This software may be freely redistributed and/or modified under the - * terms of the GNU General Public License as published by the Free + * terms of the {{GNU General Public License as published by the Free * Software Foundation; either version 2, or (at your option) any - * later version. + * later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; see the file COPYING. If not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor * Boston, MA 02110-1335, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_372.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_372.RULE index fdcccffb61..0ac9e1ddeb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_372.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_372.RULE @@ -7,16 +7,16 @@ is_license_notice: yes * project. * * This program is free software; you can redistribute it and/or -* modify it under the terms of the GNU General Public License as +* modify it under the terms of the {{GNU General Public License}} as * published by the Free Software Foundation's version 2 and any * later version the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. +* {{GNU General Public License}} for more details. * -* You should have received a copy of the GNU General Public License +* You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_373.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_373.RULE index 233daa2b20..bb1232f159 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_373.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_373.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -This software is supplied under the terms of the GNU General Public -License version 2 or later. The full text of the license can be found +This software is supplied under the terms of the {{GNU General Public +License version 2 or later}}. The full text of the license can be found at: http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_375.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_375.RULE index eaf17f9381..3f85ab5677 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_375.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_375.RULE @@ -5,4 +5,4 @@ referenced_filenames: - COPYING --- -is distributed under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. A copy of this license can be found in the file COPYING included with the source code of this program. \ No newline at end of file +is distributed under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. A copy of this license can be found in the file COPYING included with the source code of this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_376.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_376.RULE index 0dc49ad173..864a454984 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_376.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_376.RULE @@ -5,16 +5,16 @@ is_license_notice: yes This library is free software; you can redistribute it and/or modify it under the -terms of the GNU General Public License as published by the +terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this library; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_377.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_377.RULE index f323039524..77a5bc17b2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_377.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_377.RULE @@ -5,7 +5,7 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -License: GPL-2+ - On Debian systems the full text of the GNU General Public - License can be found in the `/usr/share/common-licenses/GPL-2' +{{License: GPL-2+}} + On Debian systems the full text of the {{GNU General Public + License}} can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_378.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_378.RULE index 2fc643f81d..424f9171bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_378.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_378.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- is free software. You can - redistribute it and/or modify it under the terms of the GNU General + redistribute it and/or modify it under the terms of the {{GNU General Public License (GPL); either version 2, or (at your option) any - later version. \ No newline at end of file + later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_379.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_379.RULE index 0f590fc243..464ef4fc97 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_379.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_379.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- You can - redistribute it and/or modify it under the terms of the GNU General - Public License (GPL); either version 2, or (at your option) any + redistribute it and/or modify it under the terms of the {{GNU General + Public License}} (GPL); either version 2, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_38.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_38.RULE index 5c382a7c44..a1697686eb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_38.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_38.RULE @@ -6,17 +6,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the complete text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public License +version 2}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_381.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_381.RULE index f37c947d99..491dc8148e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_381.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_381.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- is free software. You can -redistribute it and/or modify it under the terms of the GNU General Public +redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_382.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_382.RULE index 20e83fdea9..3451163fa0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_382.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_382.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This is free software,GNU General Public License (GPL); -either version 2, or (at your option) any later version. \ No newline at end of file +This is free software,{{GNU General Public License (GPL); +either version 2, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_383.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_383.RULE index 901a94285a..1bb09b5905 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_383.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_383.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -This file is free software and is distributed under the terms of the GNU +This file is free software and is distributed under the terms of the {{GNU General Public License (GPL); either version 2, or (at your option) any -later version. \ No newline at end of file +later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_384.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_384.RULE index 2058dad32e..62ec079d17 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_384.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_384.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- * Alternatively, this software may be distributed under the terms of the - * GNU General Public License as published by the Free Software Foundation; - * either version 2 of the License, or (at your option) any later version. \ No newline at end of file + * {{GNU General Public License as published by the Free Software Foundation; + * either version 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_385.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_385.RULE index b1dace966b..68edf396ba 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_385.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_385.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- this software may be distributed under the terms of the -GNU General Public License as published by the Free Software Foundation; -either version 2 of the License, or (at your option) any later version. \ No newline at end of file +{{GNU General Public License as published by the Free Software Foundation; +either version 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_386.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_386.RULE index da013a018d..dce245e13e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_386.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_386.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0-plus is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -license GPL-2.0+ \ No newline at end of file +License: GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_389.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_389.RULE index 5f3fef866e..b72e7d2ae5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_389.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_389.RULE @@ -5,16 +5,16 @@ relevance: 100 --- * is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_39.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_39.RULE index 84dc67f84e..f207812ab9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_39.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_39.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -The GNU General Public License, version 2 or (at your - option) higher. \ No newline at end of file +The {{GNU General Public License, version 2 or (at your + option) higher}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_390.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_390.RULE index 8b40bb5a2a..eed578d3e9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_390.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_390.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- GCC is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. GCC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_391.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_391.RULE index ee72b0d8fc..b5dc5d946c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_391.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_391.RULE @@ -5,16 +5,16 @@ minimum_coverage: 90 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2, -or (at your option) any later version, as published by the Free +it under the terms of the {{GNU General Public License version 2, +or (at your option) any later version}}, as published by the Free Software Foundation This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details +{{GNU General Public License}} for more details -You should have received a copy of the GNU General Public -License along with this program; if not, write to the +You should have received a copy of the {{GNU General Public +License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_393.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_393.RULE index 2df83caf08..5a72c9f51f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_393.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_393.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- GCC is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later -version. +version}}. GCC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_396.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_396.RULE index e11cc02921..db70e99482 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_396.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_396.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -* This plugin may be distributed according to the terms of the GNU -* General Public License, version 2 or (at your option) any later version. \ No newline at end of file +* This plugin may be distributed according to the terms of the {{GNU +* General Public License, version 2}} or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_4.RULE index 3cd0bae0a2..a409904ea0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_4.RULE @@ -4,13 +4,13 @@ is_license_notice: yes --- is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public Licence + modify it under the terms of the {{GNU General Public Licence as published by the Free Software Foundation; either version 2 - of the Licence, or (at your option) any later version. + of the Licence, or (at your option) any later version.}} is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public Licence for more details. You should have received a copy of the GNU General Public Licence along with ; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_400.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_400.RULE index 3c71972709..02ea565d2f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_400.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_400.RULE @@ -5,21 +5,21 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -License: GPL-2+ +{{License: GPL-2+}} | This program is free software; you can redistribute it and/or - | modify it under the terms of the GNU General Public License + | modify it under the terms of the {{GNU General Public License | as published by the Free Software Foundation; either version 2 - | of the License, or (at your option) any later version. + | of the License, or (at your option) any later version}}. | | This program is distributed in the hope that it will be useful, | but WITHOUT ANY WARRANTY; without even the implied warranty of | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - | GNU General Public License for more details. + | {{GNU General Public License}} for more details. | - | You should have received a copy of the GNU General Public License along + | You should have received a copy of the {{GNU General Public License}} along | with this program; if not, write to the Free Software Foundation, Inc., | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | | - | On Debian systems, the complete text of the GNU General Public License - | version 2 can be found in “/usr/share/common-licenses/GPL-2”. \ No newline at end of file + | On Debian systems, the complete text of the {{GNU General Public License + | version 2}} can be found in “/usr/share/common-licenses/GPL-2”. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_401.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_401.RULE index 7c4b88e760..9fe3f75eb8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_401.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_401.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. = \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_402.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_402.RULE index 07dd81be03..c436fc0400 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_402.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_402.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_403.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_403.RULE index e294227949..d844d6dfbf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_403.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_403.RULE @@ -5,7 +5,7 @@ relevance: 100 --- * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the + * under the terms of the {{GNU General Public License}} as published by the * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA - * 02110-1301 USA; either version 2 of the License, or (at your option) any - * later version; \ No newline at end of file + * 02110-1301 USA; {{either version 2 of the License, or (at your option) any + * later version;}} diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_404.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_404.RULE index 85492f5fbd..9e0b19ca11 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_404.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_404.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_406.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_406.RULE index eb3014281c..1983c5e806 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_406.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_406.RULE @@ -5,16 +5,16 @@ relevance: 100 --- ;; is free software; you can redistribute it and/or modify it under -;; the terms of the GNU General Public License as published by the Free +;; the terms of the {{GNU General Public License as published by the Free ;; Software Foundation; either version 2, or (at your option) any later -;; version. +;; version}}. ;; ;; is distributed in the hope that it will be useful, but WITHOUT ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +;; FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} ;; for more details. ;; -;; You should have received a copy of the GNU General Public License +;; You should have received a copy of the {{GNU General Public License}} ;; along with ; see the file COPYING. If not, write to the Free ;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, ;; MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_407.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_407.RULE index 1ab2508e39..93454bba00 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_407.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_407.RULE @@ -5,13 +5,13 @@ relevance: 100 --- # is free software; you can redistribute it and/or modify it under the -# terms of the GNU General Public License as published by the Free +# terms of the {{GNU General Public License as published by the Free # Software Foundation; either version 2 of the License, or (at your option) -# any later version. +# any later version}}. # # is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU General Public License for more +# A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more # details. # # You should have received a copy of the GNU Lesser General Public License diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_408.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_408.RULE index 1fc51e0920..a1ef3177d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_408.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_408.RULE @@ -5,15 +5,15 @@ relevance: 100 --- * is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with ; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_409.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_409.RULE index 59831dc32b..ca658e0f3d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_409.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_409.RULE @@ -5,6 +5,6 @@ relevance: 100 --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. \ No newline at end of file +any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_41.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_41.RULE index 9b971767bb..0d243fe86d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_41.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_41.RULE @@ -5,15 +5,15 @@ notes: Pychess template --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +it under the terms of the {{GNU General Public License}} as published by +the Free Software Foundation; {{either version 2 of the License,}} or +{{(at your option) any later version}}. PyChess is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with PyChess; if not, write to the Free Software Foundation, Inc. -51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file +51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_411.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_411.RULE index 7024aba01d..27ad92b381 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_411.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_411.RULE @@ -8,18 +8,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -The GNU General Public License is contained in the file COPYING. \ No newline at end of file +The {{GNU General Public License}} is contained in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_413.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_413.RULE index 96a9626c53..e510b3c498 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_413.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_413.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_414.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_414.RULE index 1c9fefc3b9..6a26989eb6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_414.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_414.RULE @@ -8,15 +8,15 @@ minimum_coverage: 99 # GPL v2 License # # This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# {{GNU General Public License}} for more details. # -# You should have received a copy of the GNU General Public License along +# You should have received a copy of the {{GNU General Public License}} along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_415.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_415.RULE index eb80b9bfdb..5d34f4fe5b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_415.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_415.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_417.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_417.RULE index 6b1be4c2dd..7d73139132 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_417.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_417.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -and licensed under the GNU General Public License, version 2. \ No newline at end of file +and licensed under the {{GNU General Public License, version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_418.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_418.RULE index 943b3d7c5d..1eb673f527 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_418.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_418.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed under the license.gpl.html The GNU General Public License"> The GNU General Public License -version 2. \ No newline at end of file +licensed under the license.gpl.html The {{GNU General Public License}}"> The {{GNU General Public License +version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_42.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_42.RULE index 2033b9e9bf..58db1c9fc7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_42.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_42.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program. If not, write to the Free Software * Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_420.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_420.RULE index 537750f571..0055cee076 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_420.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_420.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_421.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_421.RULE index a9d0d0e1f1..540666ea65 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_421.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_421.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU General Public -License version 2 or later. \ No newline at end of file +licensed under the {{GNU General Public +License version 2 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_422.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_422.RULE index a67b65fc59..48bf4b4d63 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_422.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_422.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -naturally licensed under the GNU General Public -License version 2 or later. \ No newline at end of file +naturally licensed under the {{GNU General Public +License version 2 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_423.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_423.RULE index 861f195f49..d07af2c4bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_423.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_423.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -and naturally licensed under the GNU General Public -License version 2 or later. \ No newline at end of file +and naturally licensed under the {{GNU General Public +License version 2 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_424.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_424.RULE index d5e90c8aeb..0bade85985 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_424.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_424.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GPL-2-or-later. \ No newline at end of file +GPL-2-or-later diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_425.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_425.RULE index 1354d6ddb7..0e94298438 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_425.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_425.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -and is also GPL-2-or-later. \ No newline at end of file +and is also {{GPL-2-or-later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_426.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_426.RULE index 67396dade3..bcc98a1859 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_426.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_426.RULE @@ -5,16 +5,16 @@ relevance: 100 --- The LZO library is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. The LZO library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with the LZO library; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_427.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_427.RULE index fe4e63ce03..b51b04bf2c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_427.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_427.RULE @@ -9,18 +9,18 @@ referenced_filenames: Released under {{GNU General Public License (GPL) version 2}} This program is free software; you can redistribute it and/or -modify it under the terms of the{{ GNU General Public License}} as -published by the Free Software Foundation; {{either version 2 of the +modify it under the terms of the {{GNU General Public License as +published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.}} This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. -The GNU General Public License is contained in the file COPYING. \ No newline at end of file +The {{GNU General Public License}} is contained in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_428.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_428.RULE index 47f0a6c66c..6fb8573ac4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_428.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_428.RULE @@ -5,25 +5,25 @@ relevance: 100 --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. [...] This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. - The GNU General Public License is contained in the file COPYING. \ No newline at end of file + The {{GNU General Public License}} is contained in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_43.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_43.RULE index 4559024411..72bb132060 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_43.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_43.RULE @@ -6,15 +6,15 @@ is_license_notice: yes # Distributed under the terms of the GPL (GNU Public License) # # DrPython is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# {{GNU General Public License}} for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the {{GNU General Public License}} # along with this program; if not, write to the Free Software # Foundation, Inc., \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_431.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_431.RULE index 0b3c4d5289..a9dd842285 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_431.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_431.RULE @@ -6,18 +6,18 @@ minimum_coverage: 90 --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - The GNU General Public License is contained in the file COPYING. \ No newline at end of file + The {{GNU General Public License}} is contained in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_432.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_432.RULE index f9946c9764..b59029906f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_432.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_432.RULE @@ -6,21 +6,21 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - The GNU General Public License is contained in the file LICENSE.GPL. + The {{GNU General Public License}} is contained in the file LICENSE.GPL. If you want to contribute code , please ensure it is licensed as "GPL v2 or later". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_433.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_433.RULE index 52721ee562..3fe8924171 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_433.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_433.RULE @@ -6,21 +6,21 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - The GNU General Public License is contained in the file LICENSE.GPL. + The {{GNU General Public License}} is contained in the file LICENSE.GPL. If you want to contribute code to LibVEX, please ensure it is licensed as "GPL v2 or later". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_434.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_434.RULE index 0f1cc483bb..67dff698b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_434.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_434.RULE @@ -6,6 +6,6 @@ relevance: 100 License: This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version - 2 of the License, or (at your option) any later version. \ No newline at end of file + 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_436.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_436.RULE index bf362b4490..ae2aefbbf8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_436.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_436.RULE @@ -8,6 +8,6 @@ referenced_filenames: See Documentation/scsi/dpti.txt for history, notes, license info and credits * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * + * it under the terms of the {{GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * \ No newline at end of file + * (at your option) any later version}}. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_437.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_437.RULE index f3b571ac27..cda1c4971c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_437.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_437.RULE @@ -4,18 +4,19 @@ is_license_notice: yes relevance: 100 ignorable_urls: - http://www.gnu.org/licenses/ +is_deprecated: yes --- lustre is free software: you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the + under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. lustre is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU General Public License for more details. + See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . / \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_438.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_438.RULE index fa126e66a6..dbdd91efd8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_438.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_438.RULE @@ -8,18 +8,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the Free +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -The full GNU General Public License is in this distribution in the file +The full {{GNU General Public License}} is in this distribution in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_439.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_439.RULE index ba5212dcfc..d4b89adda7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_439.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_439.RULE @@ -7,16 +7,16 @@ See file CREDITS for list of people who contributed to this project. This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_44.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_44.RULE index 4d3fd91035..96b28b7e6b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_44.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_44.RULE @@ -4,18 +4,18 @@ is_license_notice: yes --- * This program is free software; you can redistribute it * - * and/or modify it under the terms of the GNU General * + * and/or modify it under the terms of the {{GNU General * * Public License as published by the Free Software * * Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) any later version}}. * * * * This program is distributed in the hope that it will be * * useful, but WITHOUT ANY WARRANTY; without even the * * implied warranty of MERCHANTABILITY or FITNESS FOR A * - * PARTICULAR PURPOSE. See the GNU General Public License * + * PARTICULAR PURPOSE. See the {{GNU General Public License}} * * for more details. * * * - * You should have received a copy of the GNU General * - * Public License along with this kernel; if not, write to * + * You should have received a copy of the {{GNU General * + * Public License}} along with this kernel; if not, write to * * the Free Software Foundation, Inc., 675 Mass Ave, * * Cambridge, MA 02139, USA. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_440.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_440.RULE index c72b5a4cc3..be5036e3da 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_440.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_440.RULE @@ -5,6 +5,6 @@ is_license_notice: yes Original taken from the GNU Project This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version -2 of the License, or (at your option) any later version. \ No newline at end of file +2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_441.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_441.RULE index 536c2f46ac..8172f0a1e1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_441.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_441.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_442.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_442.RULE index e09a0a3600..66f88938a3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_442.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_442.RULE @@ -5,15 +5,15 @@ is_license_notice: yes This file may be distributed under the terms of the GNU General This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_443.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_443.RULE index 9bf328af78..9becb49eb5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_443.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_443.RULE @@ -6,15 +6,15 @@ minimum_coverage: 50 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_444.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_444.RULE index faf86ed2f2..3b9fe0f5cd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_444.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_444.RULE @@ -6,15 +6,15 @@ is_license_notice: yes GPL driver made by This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_445.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_445.RULE index 85e8d29401..7054f19a91 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_445.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_445.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. Neither nor University of admit liability nor provide warranty for any of this software. This material is diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_446.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_446.RULE index 1acceb597c..f3212164d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_446.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_446.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. Neither University admit liability nor provide warranty for any of this software. This material is diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_447.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_447.RULE index 3c7dc247db..3bcf6a4ed0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_447.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_447.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. I provide no warranty for any of this software. This material is provided "AS-IS" and at no charge. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_448.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_448.RULE index 1a510a0033..e433ff9ef1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_448.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_448.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version -2 of the License, or (at your option) any later version. +2 of the License, or (at your option) any later version}}. The authors do NOT admit liability nor provide warranty for any of this software. This material is provided "AS-IS" in diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_449.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_449.RULE index dd2f7ef1d9..4fe26aac09 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_449.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_449.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version -2 of the License, or (at your option) any later version. +2 of the License, or (at your option) any later version}}. The author does NOT admit liability nor provide warranty for any of this software. This material is provided "AS-IS" in diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_45.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_45.RULE index 977df5ed69..0f2bc689b2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_45.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_45.RULE @@ -3,7 +3,7 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -/// GPL license users are subject to the GNU General Public +/// GPL license users are subject to the {{GNU General Public /// License as published by the Free /// Software Foundation; either version 2 of the License, or (at your -/// option) any later version. \ No newline at end of file +/// option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_459.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_459.RULE index 99f6b40614..8efafd1df0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_459.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_459.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0-plus is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_46.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_46.RULE index 2654a0da49..da7dc0d442 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_46.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_46.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -' it under the terms of the GNU General Public License as published by +' it under the terms of the {{GNU General Public License}} as published by ' the Free Software Foundation (www.fsf.org); either version 2 of the ' License, or (at your option) any later version. ' ' This program is distributed in the hope that it will be useful, ' but WITHOUT ANY WARRANTY; without even the implied warranty of ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -' GNU General Public License for more details. +' {{GNU General Public License}} for more details. ' -' A copy of the GNU General Public License is available at +' A copy of the {{GNU General Public License}} is available at ' http://www.fsf.org/licensing/licenses \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_47.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_47.RULE index 820de0f9b3..c84dea2e89 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_47.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_47.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GPL-2 or later. \ No newline at end of file +Licensed under the {{GPL-2 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_49.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_49.RULE index 551b340931..7edcbc5cd4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_49.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_49.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- # This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) -# any later version. +# any later version}}. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# {{GNU General Public License}} for more details. -# You should have received a copy of the GNU General Public License +# You should have received a copy of the {{GNU General Public License}} # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_496.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_496.RULE index e8f3d6f8ef..47cf8f5020 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_496.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_496.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0-plus -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gnu gpl 2.0+ \ No newline at end of file +GNU GPL 2.0+ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_498.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_498.RULE index f4fa73594c..401b95a12a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_498.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_498.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -gnu gpl 2.0plus \ No newline at end of file +gnu {{gpl 2.0plus}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_499.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_499.RULE index bdd581bb90..0d3ab45e5f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_499.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_499.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -gnu gpl 2 plus \ No newline at end of file +gnu {{gpl 2 plus}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_5.RULE index 21e3520703..a31c449270 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_5.RULE @@ -5,7 +5,7 @@ notes: gpl 2 debian notice --- * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the + * under the terms of the {{GNU General Public License}} as published by the * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA; either version 2 of the License, or (at your option) any * later version; incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_500.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_500.RULE index 714dd6b1d8..d41b13414d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_500.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_500.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -gnu gpl 2.0 plus \ No newline at end of file +gnu {{gpl 2.0 plus}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_503.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_503.RULE index 91d827563c..5bed712bcd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_503.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_503.RULE @@ -5,12 +5,12 @@ minimum_coverage: 90 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. @@ -23,4 +23,4 @@ DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS PROGRAM. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_505.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_505.RULE index 1f270b71f6..cbe8134d20 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_505.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_505.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -A copy of the GNU General Public License version 2 is provided along +A copy of the {{GNU General Public License version 2}} is provided along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_506.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_506.RULE index e932f3eea4..7d949d3ece 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_506.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_506.RULE @@ -8,16 +8,16 @@ referenced_filenames: --- This texinfo.tex file is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at -your option) any later version. +your option) any later version}}. This texinfo.tex file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty -of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this texinfo.tex file; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_507.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_507.RULE index 9f1b819785..b5602a0474 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_507.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_507.RULE @@ -8,16 +8,16 @@ referenced_filenames: --- This texinfo.tex file is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at -your option) any later version. +your option) any later version}}. This texinfo.tex file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty -of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this texinfo.tex file; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_51.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_51.RULE index 465381fed6..175c2c26db 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_51.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_51.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is licensed under the GPLv2 or later \ No newline at end of file +is {{licensed under the GPLv2 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_511.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_511.RULE index 84a0ecfe4a..fd348eb8aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_511.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_511.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU General Public License v.2+ \ No newline at end of file +{{GNU General Public License}} v.2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_512.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_512.RULE index 6cd8b5d960..f6099c2c26 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_512.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_512.RULE @@ -7,8 +7,8 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. For the licensing details refer to the License.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_513.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_513.RULE index a6d0d97630..5645c821f1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_513.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_513.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 as published + * under the terms of the {{GNU General Public License version 2}} as published * by the Free Software Foundation. See http://www.gnu.org/ for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_514.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_514.RULE index 4ef25b8a84..7f76eef0a9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_514.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_514.RULE @@ -8,4 +8,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.txt --- -GNU General Public License v2.0+ (see COPYING or https://www.gnu.org/licenses/gpl-2.0.txt) \ No newline at end of file +{{GNU General Public License v2.0+}} (see COPYING or https://www.gnu.org/licenses/gpl-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_515.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_515.RULE index e430c9bb53..8eefb032fd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_515.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_515.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_516.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_516.RULE index cfe6360536..d2cc089d86 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_516.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_516.RULE @@ -9,7 +9,7 @@ referenced_filenames: * @license GNU/GPL, see LICENSE.php * is free software. This version may have been modified pursuant - * to the GNU General Public License, and as distributed it includes or - * is derivative of works licensed under the GNU General Public License or + * to the {{GNU General Public License}}, and as distributed it includes or + * is derivative of works licensed under the {{GNU General Public License}} or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_518.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_518.RULE index 889f6b320c..c418188ec6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_518.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_518.RULE @@ -4,8 +4,8 @@ is_license_notice: yes relevance: 100 --- -is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. -The fonts are distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +The fonts are distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_519.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_519.RULE index 022244cfd6..b1e75e16da 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_519.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_519.RULE @@ -7,13 +7,13 @@ relevance: 100 * * The "Artistic Style" project, including all files needed to compile it, * is free software; you can redistribute it and/or use it and/or modify it - * under the terms of the GNU General Public License as published + * under the terms of the {{GNU General Public License as published * by the Free Software Foundation; either version 2 of the License, - * or (at your option) any later version. + * or (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * - * You should have received a copy of the GNU General Public - * License along with this program. \ No newline at end of file + * You should have received a copy of the {{GNU General Public + * License}} along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_52.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_52.RULE index caf1196fc3..69a93a744d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_52.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_52.RULE @@ -7,9 +7,9 @@ minimum_coverage: 85 However, many parts of this library are licensed differently: This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. -On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL}}-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_520.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_520.RULE index 2589bf5433..e1a965ad96 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_520.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_520.RULE @@ -8,5 +8,5 @@ referenced_filenames: License -WordPress is free software, and is released under the terms of the GPL version 2 or (at your option) any later +WordPress is free software, and is released under the terms of the GPL version 2}} or (at your option) any later version. See ="license.txt">license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_521.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_521.RULE index 1f537c1c52..8eab0e33e2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_521.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_521.RULE @@ -6,5 +6,5 @@ referenced_filenames: - license.txt --- -WordPress is free software, and is released under the terms of the GPL version 2 or (at your option) any later +WordPress is free software, and is released under the terms of the GPL version 2}} or (at your option) any later version. See ="license.txt">license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_525.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_525.RULE index 60a1ccebd5..e07d1f34ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_525.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_525.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The GPL v2.0 or later license. :) \ No newline at end of file +The {{GPL v2.0 or later}} license. :) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_526.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_526.RULE index 64089b0c9a..5b80e9937d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_526.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_526.RULE @@ -7,11 +7,11 @@ relevance: 100 is distributed under the terms of the GNU GPL This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_527.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_527.RULE index ca408b913a..875fa74467 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_527.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_527.RULE @@ -7,11 +7,11 @@ relevance: 100 distributed under the terms of the GNU GPL This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_529.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_529.RULE index a45f824f31..e48eeb3367 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_529.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_529.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.html --- -License: GNU General Public License v2 or later +License: {{GNU General Public License}} v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_531.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_531.RULE index e345717721..b98393b70d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_531.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_531.RULE @@ -7,16 +7,16 @@ ignorable_urls: --- This program is free software and open source software; you can redistribute -it and/or modify it under the terms of the GNU General Public License as +it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, -or (at your option) any later version. +or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_532.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_532.RULE index 5f3c30e1d3..877b86e7a7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_532.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_532.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This program is free software and open source software; you can redistribute -it and/or modify it under the terms of the GNU General Public License as +it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, -or (at your option) any later version. +or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_533.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_533.RULE index c03021d4ae..6addc3ff13 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_533.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_533.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -GNU General Public License v2 or later (GPLv2+) \ No newline at end of file +{{GNU General Public License}} v2 or later (GPLv2+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_537.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_537.RULE index b4223b5918..8ddcb06dc5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_537.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_537.RULE @@ -5,26 +5,26 @@ relevance: 100 minimum_coverage: 90 --- -License: GPL-2+ +{{License: GPL-2+}} -License: GPL-2+ +{{License: GPL-2+}} This program is free software; you can redistribute it - and/or modify it under the terms of the GNU General Public + and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later - version. + version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the GNU General Public License for more + PURPOSE. See the {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public - License along with this package; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the full text of the GNU General Public - License version 2 can be found in the file - `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the full text of the {{GNU General Public + License version 2}} can be found in the file + `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_541.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_541.RULE index 7ed3bb4691..82905b3e12 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_541.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_541.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_542.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_542.RULE index 2cc084fa28..5da113dc33 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_542.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_542.RULE @@ -6,6 +6,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -License: GPL-2+ - The complete text of the GNU General Public License version 2 can be found in +{{License: GPL-2+}} + The complete text of the {{GNU General Public License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_543.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_543.RULE index 125b042dcf..684a09500f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_543.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_543.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU General Public License, version 2, or (at your option) any later version. \ No newline at end of file +licensed under the {{GNU General Public License, version 2}}, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_544.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_544.RULE index d32cb011fb..ccd139516f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_544.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_544.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Licensed under GPLv2 or later, see file LICENSE in this source tree. \ No newline at end of file +{{Licensed under GPLv2 or later}}, see file LICENSE in this source tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_545.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_545.RULE index 22846f4b2f..9db457a220 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_545.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_545.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, - or (at your option) any later version. + or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems a full copy of the GNU General Public License, GPL, can be +On Debian systems a full copy of the {{GNU General Public License}}, GPL, can be found in the file /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_546.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_546.RULE index cefcd9f021..16f3fceac4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_546.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_546.RULE @@ -5,16 +5,16 @@ relevance: 100 --- GDB, GAS, and the GNU binutils are free software; you can redistribute -them and/or modify them under the terms of the GNU General Public +them and/or modify them under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version -2, or (at your option) any later version. +2, or (at your option) any later version}}. GDB, GAS, and the GNU binutils are distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See -the GNU General Public License for more details. +the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this file; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_547.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_547.RULE index 41e3503972..d6738d48f1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_547.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_547.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.txt --- -- GNU GPL 2 or later +- {{GNU GPL 2 or later}} http://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_548.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_548.RULE index 76c2256710..5de7dda333 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_548.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_548.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_549.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_549.RULE index b43bdb628e..f0302dfdf1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_549.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_549.RULE @@ -5,5 +5,5 @@ relevance: 100 --- under the - terms of the GNU General Public License ("GPL") version 2 or any + terms of the {{GNU General Public License ("GPL") version 2}} or any later version, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_55.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_55.RULE index ca022bddc0..50ef023038 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_55.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_55.RULE @@ -5,9 +5,9 @@ minimum_coverage: 90 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. -On Debian GNU/Linux systems , the complete text of the GNU General -Public License can be found in '/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian GNU/Linux systems , the complete text of the {{GNU General +Public License}} can be found in '{{/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_550.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_550.RULE index f5d9caae54..6c9327f02a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_550.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_550.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -GNU General Public License ("GPL") version 2 or any +{{GNU General Public License ("GPL") version 2}} or any later version, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_551.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_551.RULE index 601c510f25..849bb39351 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_551.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_551.RULE @@ -5,5 +5,5 @@ relevance: 100 --- License -This software is licensed under the GNU General Public License (GPL), version -2 or later. \ No newline at end of file +This software is licensed under the {{GNU General Public License (GPL), version +2}} or later. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_552.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_552.RULE index 547c143d06..c75f9dfc29 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_552.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_552.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the GNU General Public License (GPL), version -2 or later. \ No newline at end of file +This software is licensed under the {{GNU General Public License (GPL), version +2 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_553.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_553.RULE index e68929468e..c5859a7251 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_553.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_553.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -software is licensed under the GNU General Public License (GPL), version -2 or later. \ No newline at end of file +software is licensed under the {{GNU General Public License (GPL), version +2 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_554.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_554.RULE index 7ee213c02f..99ee5be326 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_554.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_554.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the GNU General Public License, version 2 or later. \ No newline at end of file +distributed under the {{GNU General Public License, version 2 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_555.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_555.RULE index 59ba38c6a3..f6183d80fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_555.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_555.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU General Public License, version 2 or later. \ No newline at end of file +under the {{GNU General Public License, version 2 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_556.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_556.RULE index 64bb91f652..d4f3487635 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_556.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_556.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GNU General Public License, version 2 or later. \ No newline at end of file +the {{GNU General Public License, version 2 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_557.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_557.RULE index e9c112526c..e01127dac4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_557.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_557.RULE @@ -6,10 +6,10 @@ relevance: 100 GPL notice: -This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +This program is free software; you can redistribute it and/or modifyit under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA -note: For a copy of the GNU General Public License, please refer to the Free Software Foundation attribution, where a copy of the GPL is included] \ No newline at end of file +note: For a copy of the {{GNU General Public License}}, please refer to the Free Software Foundation attribution, where a copy of the GPL is included] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_558.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_558.RULE index e1f9347330..6fe5ed847a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_558.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_558.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -# Distributed under the terms of the GNU General Public License (GPL) +# Distributed under the terms of the {{GNU General Public License}} (GPL) # as published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # http://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_559.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_559.RULE index 5449c6152b..c386640fe0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_559.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_559.RULE @@ -9,6 +9,6 @@ referenced_filenames: License is free software; you can redistribute it and/or modify it under the terms of -the GNU General Public License as published by the Free Software Foundation; +the {{GNU General Public License}} as published by the Free Software Foundation; either version 2 of the License, a copy of which is provided under the name COPYING, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_56.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_56.RULE index 1568d981cc..ea6e165621 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_56.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_56.RULE @@ -5,19 +5,19 @@ minimum_coverage: 90 --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - On Debian systems, a copy of the GNU General Public License (GPL) is available - in the file /usr/share/common-licenses/GPL. \ No newline at end of file + On Debian systems, a copy of the {{GNU General Public License}} (GPL) is available + in the file {{/usr/share/common-licenses/GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_560.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_560.RULE index 8abad5cd7e..0d5f977621 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_560.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_560.RULE @@ -7,6 +7,6 @@ referenced_filenames: --- is free software; you can redistribute it and/or modify it under the terms of -the GNU General Public License as published by the Free Software Foundation; +the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, a copy of which is provided under the name -COPYING, or (at your option) any later version. \ No newline at end of file +COPYING, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_561.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_561.RULE index 4a34fc3603..42988bb0b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_561.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_561.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0-plus -is_license_notice: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -- GNU GPL 2 or later \ No newline at end of file +GNU GPL 2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_562.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_562.RULE index 4562bb82be..977faca656 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_562.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_562.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.txt --- -- GNU GPL 2 or later +- GNU {{GPL 2 or later}} https://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_563.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_563.RULE index e151e19ea4..8573c19369 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_563.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_563.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license GNU General Public License, version 2 or later \ No newline at end of file +license {{GNU General Public License, version 2 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_564.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_564.RULE index 815d239202..9712e1f0c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_564.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_564.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_565.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_565.RULE index 9c849fb1b4..c7fb5bd007 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_565.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_565.RULE @@ -5,15 +5,15 @@ relevance: 100 --- # This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) -# any later version. +# any later version}}. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# {{GNU General Public License}} for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the {{GNU General Public License}} # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_566.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_566.RULE index 687a2749c8..c53e5a640d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_566.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_566.RULE @@ -7,15 +7,15 @@ referenced_filenames: --- Bash is free software; you can redistribute it and/or modify it under - the terms of the GNU General Public License as published by the Free + the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later - version. + version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with Bash; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_567.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_567.RULE index 73598948d1..ded864c6b2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_567.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_567.RULE @@ -8,16 +8,16 @@ referenced_filenames: --- The GNU Tilde Library is free software; you can redistribute it - and/or modify it under the terms of the GNU General Public License + and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or - (at your option) any later version. + (at your option) any later version}}. The GNU Tilde Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - The GNU General Public License is often shipped with GNU software, and + The {{GNU General Public License}} is often shipped with GNU software, and is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_568.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_568.RULE index 56d17a8b4a..281e356471 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_568.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_568.RULE @@ -7,15 +7,15 @@ referenced_filenames: --- Readline is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any - later version. + later version}}. Readline is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with Readline; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_569.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_569.RULE index ac30846469..b0315b83ad 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_569.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_569.RULE @@ -8,16 +8,16 @@ referenced_filenames: --- The Library is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) - any later version. + any later version}}. The Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - The GNU General Public License is often shipped with GNU software, and + The {{GNU General Public License}} is often shipped with GNU software, and is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_57.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_57.RULE index 087e2beb38..fca382488b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_57.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_57.RULE @@ -8,19 +8,19 @@ ignorable_emails: --- is free software; you can redistribute it and/or modify it under the - terms of the GNU General Public License as published by the Free Software + terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later - version. + version}}. This program and documentation is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of - merchantability or fitness for a particular purpose. See the GNU General - Public License for more details. + merchantability or fitness for a particular purpose. See the {{GNU General + Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with adns, or one should be available above; if not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA, or email adns-maint@chiark.greenend.org.uk. - On all Debian systems , a copy of the GNU General Public License (version 2 or + On all Debian systems , a copy of the {{GNU General Public License (version 2}} or newer) can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_570.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_570.RULE index b91586297e..51b0049d58 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_570.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_570.RULE @@ -8,16 +8,16 @@ referenced_filenames: --- The GNU Readline Library is free software; you can redistribute it - and/or modify it under the terms of the GNU General Public License + and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or - (at your option) any later version. + (at your option) any later version}}. The GNU Readline Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - The GNU General Public License is often shipped with GNU software, and + The {{GNU General Public License}} is often shipped with GNU software, and is generally kept in a file called COPYING or LICENSE. If you do not have a copy of the license, write to the Free Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_571.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_571.RULE index d3d717073c..24a618cb3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_571.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_571.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA0 2111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_572.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_572.RULE index 7e33fd686d..011495e574 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_572.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_572.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with Atmel wireless lan drivers; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_573.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_573.RULE index 6e63bced86..320a7b1894 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_573.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_573.RULE @@ -5,13 +5,13 @@ relevance: 100 --- You may redistribute this program and/or modify this program under the terms - of the GNU General Public License as published by the Free Software Foundation; - either version 2 of the License, or (at your option) any later version. + of the {{GNU General Public License as published by the Free Software Foundation; + either version 2 of the License, or (at your option) any later version}}. This program is distributed WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED - WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License along with + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_574.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_574.RULE index c149092853..86fa7daa90 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_574.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_574.RULE @@ -5,14 +5,14 @@ relevance: 100 --- You may redistribute this program and/or modify this program under the terms -of the GNU General Public License as published by the Free Software Foundation; -either version 2 of the License, or (at your option) any later version. +of the {{GNU General Public License as published by the Free Software Foundation; +either version 2 of the License, or (at your option) any later version}}. This program is distributed WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED -WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_575.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_575.RULE index 043d2ade84..25dbd7e5fa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_575.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_575.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This definition file is free software; you can redistribute it -and/or modify it under the terms of the GNU General Public +and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either -version 2, or (at your option) any later version. +version 2, or (at your option) any later version}}. This definition file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_576.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_576.RULE index e0253f305f..2cd3a1af2b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_576.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_576.RULE @@ -8,16 +8,16 @@ See file CREDITS for list of people who contributed to this project. This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_577.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_577.RULE index eef502cb45..a15788704b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_577.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_577.RULE @@ -8,16 +8,16 @@ See file CREDITS for list of people who contributed to this project. This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will abe useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_578.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_578.RULE index 97edb29281..ee2029df98 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_578.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_578.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundatio; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_579.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_579.RULE index 8d1a1b4a37..ce35c96d32 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_579.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_579.RULE @@ -8,16 +8,16 @@ See file CREDITS for list of people who contributed to this project. This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundatio; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_58.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_58.RULE index 0b96ff459d..e45ee209d8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_58.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_58.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- The Debian packaging is (C) and -is licensed under the GPLv2 or later, see `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +is {{licensed under the GPLv2 or later}}, see `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_580.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_580.RULE index 07ef90c342..0347581ba4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_580.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_580.RULE @@ -8,16 +8,16 @@ See file CREDITS for list of people who contributed to this project. This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} aloong with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_581.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_581.RULE index a09bacfd17..817a27e532 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_581.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_581.RULE @@ -8,16 +8,16 @@ See file CREDITS for list of people who contributed to this project. This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_582.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_582.RULE index 931fba98f9..7c94ed3498 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_582.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_582.RULE @@ -5,16 +5,16 @@ relevance: 99 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will abe useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_583.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_583.RULE index 96d04693b5..9c3a7abffb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_583.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_583.RULE @@ -5,16 +5,16 @@ relevance: 99 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} aloong with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_584.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_584.RULE index 9650bb2ef0..1206470ab0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_584.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_584.RULE @@ -8,16 +8,16 @@ See file CREDITS for list of people who contributed to this project. The files in this directory are free software; you can redistribute -them and/or modify them under the terms of the GNU General Public +them and/or modify them under the terms of the {{GNU General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. These files are distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_585.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_585.RULE index 6738153024..1645229e9b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_585.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_585.RULE @@ -8,16 +8,16 @@ See file CREDITS for list of people who contributed to this project. The files in this directory are free software; you can redistribute -them and/or modify them under the terms of the GNU General Public +them and/or modify them under the terms of the {{GNU General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. These files are distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_586.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_586.RULE index d3071902e9..ae1607185b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_586.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_586.RULE @@ -8,6 +8,6 @@ See file CREDITS for list of people who contributed to this project. This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of - the License, or (at your option) any later version. \ No newline at end of file + the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_587.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_587.RULE index c71e61ae4f..053f8e3669 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_587.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_587.RULE @@ -6,16 +6,16 @@ notes: there is an uncommon reference to the "source code form" --- This source code is free software; you can redistribute it - and/or modify it in source code form under the terms of the GNU + and/or modify it in source code form under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_588.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_588.RULE index d30cb8ee96..93279e1bc6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_588.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_588.RULE @@ -7,16 +7,16 @@ relevance: 100 the following license applies: This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_589.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_589.RULE index d26f7d01f6..1b91465bda 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_589.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_589.RULE @@ -5,16 +5,16 @@ relevance: 100 --- The LZO library is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. The LZO library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with the LZO library; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_59.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_59.RULE index 7710bf9279..bab2768195 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_59.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_59.RULE @@ -3,20 +3,20 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -License: GPL-2+ +{{License: GPL-2+}} This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public License}} + can be found in {{/usr/share/common-licenses/GPL}}-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_590.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_590.RULE index 378fb4f1bc..9b8c5cbbb2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_590.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_590.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU GPL v2.0 or later \ No newline at end of file +GNU {{GPL v2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_591.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_591.RULE index f775e41955..a1b0f99c6e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_591.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_591.RULE @@ -8,16 +8,16 @@ See file CREDITS for list of people who contributed to this project. This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_592.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_592.RULE index ac7d310956..5003b9d18f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_592.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_592.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_596.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_596.RULE index 9e4574e44d..6a619028d0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_596.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_596.RULE @@ -21,15 +21,15 @@ This code was developed from version 2.1.1 of the Atmel drivers, Simon Kelley and not Atmel Corporation. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with Atmel wireless lan drivers; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_597.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_597.RULE index da7f3b231d..4d48f61120 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_597.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_597.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -License: GNU General Public License v2 or later +License: {{GNU General Public License}} v2 or later License URI: LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_598.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_598.RULE index 0e1c15d916..09558ed956 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_598.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_598.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING.GPLv2 --- -licensed under the GNU General Public License version 2 or later (GPL v2+). See the file `COPYING.GPLv2` for details. \ No newline at end of file +licensed under the {{GNU General Public License version 2 or later}} (GPL v2+). See the file `COPYING.GPLv2` for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_599.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_599.RULE index e4d1b2d6b0..3a76ba7a13 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_599.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_599.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU General Public License version 2 or later (GPL v2+) \ No newline at end of file +licensed under the {{GNU General Public License version 2 or later}} (GPL v2+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_6.RULE index 6abe537a97..973e686351 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_6.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_6.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -under the terms of the GNU General Public License Version 2 or later \ No newline at end of file +under the terms of the {{GNU General Public License Version 2 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_604.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_604.RULE index 94cb2da691..e2d26d9265 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_604.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_604.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at -your option) any later version. +your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program as the file LICENSE.txt; if not, please see http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_605.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_605.RULE index 92091f94be..d0b47a0d42 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_605.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_605.RULE @@ -9,7 +9,7 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt --- -Licensed under the GNU General Public License Version 2.0 (or later); +Licensed under the {{GNU General Public License Version 2}}.0 (or later); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at: diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_606.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_606.RULE index 808c1d539b..23cdd3c534 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_606.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_606.RULE @@ -10,7 +10,7 @@ ignorable_urls: --- license -Licensed under the GNU General Public License Version 2.0 (or later); +Licensed under the {{GNU General Public License Version 2}}.0 (or later); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at: diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_607.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_607.RULE index 5bf324e364..9f90acc133 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_607.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_607.RULE @@ -5,4 +5,4 @@ relevance: 100 --- license -Licensed under the GNU General Public License Version 2.0 (or later); \ No newline at end of file +Licensed under the {{GNU General Public License Version 2.0 (or later)}}; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_608.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_608.RULE index 4b18ae9596..35ed28fd77 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_608.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_608.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU General Public License Version 2.0 (or later); \ No newline at end of file +Licensed under the {{GNU General Public License Version 2.0 (or later)}}; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_609.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_609.RULE index 9a5ef79fe1..feda122a6e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_609.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_609.RULE @@ -7,15 +7,15 @@ relevance: 100 License: This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_61.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_61.RULE index affd5a9000..f732e58b17 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_61.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_61.RULE @@ -5,9 +5,9 @@ minimum_coverage: 95 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. -On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL}}-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_610.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_610.RULE index fc6fa40c22..d914013229 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_610.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_610.RULE @@ -8,19 +8,19 @@ minimum_coverage: 85 License: This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems a full copy of the GNU General Public License, GPL, can be -found in the file /usr/share/common-licenses/GPL-2. \ No newline at end of file +On Debian systems a full copy of the {{GNU General Public License}}, GPL, can be +found in the file {{/usr/share/common-licenses/GPL}}-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_611.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_611.RULE index ea49d9a55b..3aeb11f11a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_611.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_611.RULE @@ -6,21 +6,21 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -License: GPL-2+ +{{License: GPL-2+}} This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . -On Debian systems, the full text of the GNU General Public -License version 2 can be found in the file +On Debian systems, the full text of the {{GNU General Public +License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_612.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_612.RULE index aa8a3919ed..caa7667704 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_612.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_612.RULE @@ -7,19 +7,19 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . -On Debian systems, the full text of the GNU General Public -License version 2 can be found in the file +On Debian systems, the full text of the {{GNU General Public +License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_613.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_613.RULE index bfae8dd775..10421419cc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_613.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_613.RULE @@ -4,17 +4,17 @@ is_license_notice: yes relevance: 100 --- -License: GPL-2+ +{{License: GPL-2+}} This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_614.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_614.RULE index d5be64fe1b..1412656605 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_614.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_614.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This program may be distributed and/or modified under the terms of -the GNU General Public License as published by the Free Software +the {{GNU General Public License as published by the Free Software Foundation (the "GPL"); either version 2 of the GPL, or (at your option) -any later version. +any later version}}. When distributed under the terms of the GPL, this program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_615.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_615.RULE index 6ffc94ec89..d405a8f33c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_615.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_615.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -License-Grant: This code is subject to the GNU General Public License License: GPL-2+ \ No newline at end of file +License-Grant: This code is subject to the {{GNU General Public License}} {{License: GPL-2+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_616.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_616.RULE index 65de6fce9a..fa114846aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_616.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_616.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is subject to the GNU General Public License License: GPL-2+ \ No newline at end of file +This code is subject to the {{GNU General Public License}} {{License: GPL-2+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_617.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_617.RULE index d32ee52e86..1b284dd19e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_617.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_617.RULE @@ -6,4 +6,5 @@ ignorable_urls: - https://spdx.org/licenses/GPL2.0orlater.html --- -This code is subject to the GNU General Public License. License: GPL‑2+ https://spdx.org/licenses/GPL‑2.0‑or‑later.html. \ No newline at end of file +This code is subject to the {{GNU General Public License}}. +{{License: GPL‑2+}} {{ https://spdx.org/licenses/GPL‑2.0‑or‑later.html }}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_618.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_618.RULE index fb92dd83aa..ff5b21e3ee 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_618.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_618.RULE @@ -8,4 +8,4 @@ referenced_filenames: ## License - licensed under [GNU General Public License v2 (or later)](./LICENSE.md). \ No newline at end of file + licensed under [{{GNU General Public License}} v2 (or later)](./LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_619.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_619.RULE index 9d71009a59..32ccbda0ae 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_619.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_619.RULE @@ -6,4 +6,4 @@ referenced_filenames: - ./LICENSE.md --- -licensed under [GNU General Public License v2 (or later)](./LICENSE.md). \ No newline at end of file +licensed under [{{GNU General Public License}} v2 (or later)](./LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_62.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_62.RULE index 6f05c51696..a08f775b05 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_62.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_62.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- #This program is free software; you can redistribute it and/or modify -#it under the terms of the GNU General Public License as published by +#it under the terms of the {{GNU General Public License as published by #the Free Software Foundation; either version 2 of the License, or -#(at your option) any later version. +#(at your option) any later version}}. -#You should have received a copy of the GNU General Public License +#You should have received a copy of the {{GNU General Public License}} #along with this program; if not, write to the Free Software #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_620.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_620.RULE index 85d9b3ba98..df80ee730f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_620.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_620.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under [GNU General Public License v2 (or later)] \ No newline at end of file +licensed under [{{GNU General Public License v2 (or later)}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_621.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_621.RULE index 94d35dfd50..da7b38da6c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_621.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_621.RULE @@ -5,7 +5,7 @@ relevance: 100 --- This program may be distributed and/or modified under the terms of -the GNU General Public License as published by the Free Software +the {{GNU General Public License}} as published by the Free Software Foundation (the "GPL"); either version 2 of the GPL, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_622.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_622.RULE index a60e458ad3..7a9d837d30 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_622.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_622.RULE @@ -5,15 +5,15 @@ relevance: 100 --- % This program is free software; you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by +% it under the terms of the {{GNU General Public License}} as published by % the Free Software Foundation; either version 2 of the License, or % (at your option) later version. % % This program is distributed in the hope that it will be useful, % but WITHOUT ANY WARRANTY; wihtout even the implied warranty of % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -% See the GNU General Public License for more details. +% See the {{GNU General Public License}} for more details. % -% You should have received a copy of the GNU General Public License +% You should have received a copy of the {{GNU General Public License}} % along with this program; if not, write to the Free Software % Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 U.S.A. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_623.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_623.RULE index 38f50f883e..3bab956c07 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_623.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_623.RULE @@ -18,15 +18,15 @@ ignorable_holders: % Copyright (c) 1992 URW GmbH, Hamburg, Germany % % This program is free software; you can redistribute it and/or modify -% it under the terms of the GNU General Public License as published by +% it under the terms of the {{GNU General Public License}} as published by % the Free Software Foundation; either version 2 of the License, or % (at your option) later version. % % This program is distributed in the hope that it will be useful, % but WITHOUT ANY WARRANTY; wihtout even the implied warranty of % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -% See the GNU General Public License for more details. +% See the {{GNU General Public License}} for more details. % -% You should have received a copy of the GNU General Public License +% You should have received a copy of the {{GNU General Public License}} % along with this program; if not, write to the Free Software % Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 U.S.A. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_625.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_625.RULE index fe2712d398..ad359bc369 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_625.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_625.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -original code distributed under GPL V2.0 or later \ No newline at end of file +original code distributed under {{GPL V2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_627.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_627.RULE index 3048107a42..57e50810fb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_627.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_627.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU General Public License +licensed under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, -or (at your option) any later version. \ No newline at end of file +or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_63.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_63.RULE index 66db34723b..144441cfb0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_63.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_63.RULE @@ -7,16 +7,16 @@ ignorable_urls: License: This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program(see GPL.txt); if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_632.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_632.RULE index fb894cb22b..e5bcff4b32 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_632.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_632.RULE @@ -5,6 +5,6 @@ relevance: 100 --- * This program is free software; you can redistribute it - * and/or modify it under the terms of the GNU General Public - * License (version 2) as published by the FSF - Free Software + * and/or modify it under the terms of the {{GNU General Public + * License (version 2}}) as published by the FSF - Free Software * Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_633.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_633.RULE index 7b6002f865..79345cba55 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_633.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_633.RULE @@ -4,18 +4,18 @@ is_license_notice: yes relevance: 100 --- -* Licensed under the GNU General Public License Version 2 +* Licensed under the {{GNU General Public License Version 2}} * * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_634.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_634.RULE index 0c3c010ce6..b90c5b6a6f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_634.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_634.RULE @@ -5,4 +5,4 @@ relevance: 100 --- This file is released under the terms -of GNU General Public License v2 or later. \ No newline at end of file +of {{GNU General Public License v2 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_638.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_638.RULE index dbb63f197f..dd9e5df8c0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_638.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_638.RULE @@ -7,22 +7,22 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -A copy of the GNU General Public License is available as -/usr/share/common-licenses/GPL-2 in the Debian GNU/Linux +A copy of the {{GNU General Public License}} is available as +{{/usr/share/common-licenses/GPL}}-2 in the Debian GNU/Linux distribution or on the World Wide Web at . You can also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -A copy of the GNU General Public License is available as -/usr/share/common-licenses/GPL-2 in the Debian GNU/Linux +A copy of the {{GNU General Public License}} is available as +{{/usr/share/common-licenses/GPL}}-2 in the Debian GNU/Linux distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_639.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_639.RULE index 9094d108c6..c88c46b3cf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_639.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_639.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -released under the GNU GPL license version 2 or later (GPL-2.0+). See the COPYING file for license information. \ No newline at end of file +released under the GNU GPL license version 2 or later ({{GPL-2.0+}}). See the COPYING file for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_64.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_64.RULE index e5efcfec83..1efa8ba3da 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_64.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_64.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License + * modify it under the terms of the {{GNU General Public License * as published by the Free Software Foundation; either version - * 2 of the License, or (at your option) any later version. \ No newline at end of file + * 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_648.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_648.RULE index 64c5325f1b..3a8ae30579 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_648.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_648.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -License: GPL v2.0 or later http://www.gnu.org/copyleft/gpl.html http://www.gnu.org/copyleft/gpl.html \ No newline at end of file +License: {{GPL v2.0 or later}} http://www.gnu.org/copyleft/gpl.html http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_649.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_649.RULE index 97097fa333..e9ccede34e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_649.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_649.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -License: GPL v2.0 or later http://www.gnu.org/copyleft/gpl.html \ No newline at end of file +License: {{GPL v2.0 or later}} http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_65.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_65.RULE index 5dc3b4f744..a0696f0ab0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_65.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_65.RULE @@ -5,15 +5,15 @@ notes: GPL 2 or later notice --- * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the + * under the terms of the {{GNU General Public License as published by the * Free Software Foundation; either version 2, or (at your option) any - * later version. + * later version}}. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * General Public License}} for more details. * - * You should have received a copy of the GNU General Public License along + * You should have received a copy of the {{GNU General Public License}} along * with this program; if not, write to the Free Software Foundation, Inc., * 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_651.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_651.RULE index 0d3723606e..97474840bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_651.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_651.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -License: GPL v2.0 or later https://www.gnu.org/copyleft/gpl.html \ No newline at end of file +License: {{GPL v2.0 or later}} https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_652.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_652.RULE index b1f830fba2..d7e8bd9f7f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_652.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_652.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. - is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. \ No newline at end of file + is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_653.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_653.RULE index b972acac9c..97f63b57a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_653.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_653.RULE @@ -7,14 +7,14 @@ referenced_filenames: --- is free software; you can redistribute it and/or modify it under the terms of -the GNU General Public License as published by the Free Software Foundation; -either version 2 of the License, or (at your option) any later version. +the {{GNU General Public License as published by the Free Software Foundation; +either version 2 of the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the GNU General Public License for more details. +PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Please see the file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_654.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_654.RULE index e69b963dfa..1439e4d2c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_654.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_654.RULE @@ -5,15 +5,15 @@ relevance: 100 --- * is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_655.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_655.RULE index d5fd7d8505..7fe36084b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_655.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_655.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at - your option) any later version. + your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_657.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_657.RULE index e99eccf6eb..dde018ecb3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_657.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_657.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Distributed under the terms of the GNU General Public License (version 2 -# or later) \ No newline at end of file +Distributed under the terms of the {{GNU General Public License (version 2 +# or later}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_658.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_658.RULE index 4490f9427b..5055bf31d3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_658.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_658.RULE @@ -5,15 +5,15 @@ relevance: 100 --- * This is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License}} as published by * the Free Software Foundation; either version 2 of the named License, * or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_659.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_659.RULE index a48e21afdb..eecd4feee4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_659.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_659.RULE @@ -5,15 +5,15 @@ relevance: 100 --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License}} as published by * the Free Software Foundation; either version 2 of the named License, * or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_66.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_66.RULE index 1cc898bc01..024bea0f2b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_66.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_66.RULE @@ -6,6 +6,6 @@ minimum_coverage: 90 Debian packaging (debian/*) is: Copyright: -License: GNU General Public License, version 2 or later (GPL-2+) - On Debian systems, the complete text of the GNU General Public License - version 2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file +License: {{GNU General Public License, version 2 or later}} (GPL-2+) + On Debian systems, the complete text of the {{GNU General Public License + version 2}} can be found in {{/usr/share/common-licenses/GPL}}-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_660.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_660.RULE index 554688d5bd..960643b488 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_660.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_660.RULE @@ -5,15 +5,15 @@ relevance: 100 --- * This is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for * more details. * - * You should have received a copy of the GNU General Public License along + * You should have received a copy of the {{GNU General Public License}} along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_661.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_661.RULE index 308672b7e1..d097311a16 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_661.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_661.RULE @@ -6,5 +6,5 @@ relevance: 100 This is free software, and you are welcome to redistribute it under -the terms of the GNU General Public License; either -version 2, or (at your option) any later version. \ No newline at end of file +the terms of the {{GNU General Public License; either +version 2, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_662.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_662.RULE index 74a9e88ca3..a033b5ea1e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_662.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_662.RULE @@ -6,13 +6,13 @@ notes: this is mixing GPL and LGPL. So we take GPL --- This program is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free Software +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later -version. +version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. See the GNU General Public License for more details. +A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_663.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_663.RULE index f1ce54e0dc..6c95eeded3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_663.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_663.RULE @@ -6,13 +6,13 @@ notes: this is mixing GPL and LGPL. So we take GPL --- you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free Software +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later -version. +version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. See the GNU General Public License for more details. +A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_664.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_664.RULE index e2e8601473..abc9096155 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_664.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_664.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- This is free documentation; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. - The GNU General Public License's references to "object code" + The {{GNU General Public License}}'s references to "object code" and "executables" are to be interpreted as the output of any document formatting or typesetting system, including intermediate and printed output. @@ -19,8 +19,8 @@ This is free documentation; you can redistribute it and/or This manual is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with this manual. If not, see + You should have received a copy of the {{GNU General Public + License}} along with this manual. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_665.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_665.RULE index d3d7eca8c2..ca6e07df94 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_665.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_665.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- * This is free documentation; you can redistribute it and/or - * modify it under the terms of the GNU General Public License as + * modify it under the terms of the {{GNU General Public License as * published by the Free Software Foundation; either version 2 of - * the License, or (at your option) any later version. + * the License, or (at your option) any later version}}. * - * The GNU General Public License's references to "object code" + * The {{GNU General Public License}}'s references to "object code" * and "executables" are to be interpreted as the output of any * document formatting or typesetting system, including * intermediate and printed output. @@ -19,8 +19,8 @@ ignorable_urls: * This manual is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public - * License along with this manual. Otherwise check the web site + * You should have received a copy of the {{GNU General Public + * License}} along with this manual. Otherwise check the web site * of the Free Software Foundation at http://www.fsf.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_666.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_666.RULE index f932ac5a26..91e0144337 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_666.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_666.RULE @@ -5,11 +5,11 @@ relevance: 100 --- This is free documentation; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. -The GNU General Public License's references to "object code" +The {{GNU General Public License}}'s references to "object code" and "executables" are to be interpreted as the output of any document formatting or typesetting system, including intermediate and printed output. @@ -17,9 +17,9 @@ intermediate and printed output. This manual is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with this manual; if not, write to the Free +You should have received a copy of the {{GNU General Public +License}} along with this manual; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_667.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_667.RULE index a5da96c233..e80fc0c25b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_667.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_667.RULE @@ -5,11 +5,11 @@ relevance: 100 --- This is free documentation; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. -The GNU General Public License's references to "object code" +The {{GNU General Public License}}'s references to "object code" and "executables" are to be interpreted as the output of any document formatting or typesetting system, including intermediate and printed output. @@ -17,9 +17,9 @@ intermediate and printed output. This manual is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with this manual; if not, write to the Free +You should have received a copy of the {{GNU General Public +License}} along with this manual; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_668.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_668.RULE index 6f299b56da..5e2ee3fa3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_668.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_668.RULE @@ -8,11 +8,11 @@ ignorable_urls: %%%LICENSE_START(GPLv2+_DOC_FULL) This is free documentation; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. -The GNU General Public License's references to "object code" +The {{GNU General Public License}}'s references to "object code" and "executables" are to be interpreted as the output of any document formatting or typesetting system, including intermediate and printed output. @@ -20,9 +20,9 @@ intermediate and printed output. This manual is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with this manual; if not, see +You should have received a copy of the {{GNU General Public +License}} along with this manual; if not, see . %%%LICENSE_END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_669.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_669.RULE index 86c17b2fca..49b797a2d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_669.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_669.RULE @@ -6,15 +6,15 @@ notes: this is mixing GPL and LGPL. So we take GPL --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_670.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_670.RULE index 8c8d02b0a4..a463d09c4b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_670.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_670.RULE @@ -5,10 +5,10 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 or later of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2 or later of the License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_671.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_671.RULE index 410f3c6a12..719f7e5501 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_671.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_671.RULE @@ -8,16 +8,16 @@ notes: See https://github.com/nemequ/lzmat/blob/25d9b958fff9514050a28642c99b3fff --- ** The library is free software; you can redistribute it and/or -** modify it under the terms of the GNU General Public License as +** modify it under the terms of the {{GNU General Public License as ** published by the Free Software Foundation; either version 2 of -** the License, or (at your option) any later version. +** the License, or (at your option) any later version}}. ** ** The library is distributed WITHOUT ANY WARRANTY; ** without even the implied warranty of MERCHANTABILITY or -** FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public -** License for more details. +** FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public +** License}} for more details. ** -** You should have received a copy of the GNU General Public License +** You should have received a copy of the {{GNU General Public License}} ** along with the library; see the file GPL.TXT. ** If not, write to the Free Software Foundation, Inc., ** 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_672.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_672.RULE index 6056b0550f..95e491c5b2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_672.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_672.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE-GPL-2.0.txt --- -Two files were previously licensed under the **GPL 2.0+** license by mistake - see the [LICENSE-GPL-2.0](LICENSE-GPL-2.0.txt) file for details. +Two files were previously licensed under the **{{GPL 2.0+}}** license by mistake - see the [LICENSE-{{GPL-2.0}}](LICENSE-GPL-2.0.txt) file for details. These files contain the following tag instead of the full license text \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_673.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_673.RULE index 68e9a5702c..c7ac194a5a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_673.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_673.RULE @@ -8,4 +8,4 @@ referenced_filenames: License -Free use of this software is granted under the terms of the GNU General Public License version 2+ (GPLv2+). For details see the files COPYING included. \ No newline at end of file +Free use of this software is granted under the terms of the {{GNU General Public License version 2+}} (GPLv2+). For details see the files COPYING included. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_674.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_674.RULE index dd1611fde3..e5daa50816 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_674.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_674.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Free use of this software is granted under the terms of the GNU General Public License version 2+ (GPLv2+). \ No newline at end of file +Free use of this software is granted under the terms of the {{GNU General Public License version 2+}} (GPLv2+). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_675.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_675.RULE index 5260fd611e..319fe228e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_675.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_675.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- // is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by +// it under the terms of the {{GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. +// (at your option) any later version}}. // // The algorithms that underlie have required considerable // development and are described in . If you use @@ -19,7 +19,7 @@ ignorable_urls: // FastJet is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. +// {{GNU General Public License}} for more details. // -// You should have received a copy of the GNU General Public License +// You should have received a copy of the {{GNU General Public License}} // along with FastJet. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_676.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_676.RULE index 1c9a054930..49a9a9a5e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_676.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_676.RULE @@ -8,5 +8,5 @@ referenced_filenames: Licensing -This plugin is licensed under the terms of the GNU General Public License, version 2 (GPLv2) or later. +This plugin is licensed under the terms of the {{GNU General Public License, version 2 (GPLv2) or later}}. License conditions are included in LICENSE or can be found at the GNU website. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_677.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_677.RULE index cd818ccf28..cfeb6f1169 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_677.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_677.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -This plugin is licensed under the terms of the GNU General Public License, version 2 (GPLv2) or later. +This plugin is licensed under the terms of the {{GNU General Public License, version 2 (GPLv2) or later}}. License conditions are included in LICENSE or can be found at the GNU website. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_678.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_678.RULE index c0cd929a1e..605262607a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_678.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_678.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This plugin is licensed under the terms of the GNU General Public License, version 2 (GPLv2) or later. \ No newline at end of file +This plugin is licensed under the terms of the {{GNU General Public License, version 2 (GPLv2) or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_679.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_679.RULE index 628f28a3cb..18cae3c257 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_679.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_679.RULE @@ -7,11 +7,11 @@ Licensed to the Linux Foundation under the General Public License (GPL) version This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_68.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_68.RULE index 471590e9c2..d60f0813e7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_68.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_68.RULE @@ -6,15 +6,15 @@ is_license_notice: yes License: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_680.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_680.RULE index 4109775a56..86b34a7125 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_680.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_680.RULE @@ -10,5 +10,5 @@ ignorable_urls: Licensing -This plugin is licensed under the terms of the GNU General Public License, version 2 (GPLv2) or later. +This plugin is licensed under the terms of the {{GNU General Public License, version 2 (GPLv2) or later}}. License conditions are included in LICENSE or can be found at the [GNU website](http://www.gnu.org/licenses/gpl-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_681.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_681.RULE index 4a341e2f5a..bdef7579c1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_681.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_681.RULE @@ -8,5 +8,5 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.html --- -This plugin is licensed under the terms of the GNU General Public License, version 2 (GPLv2) or later. +This plugin is licensed under the terms of the {{GNU General Public License, version 2}} (GPLv2) or later. License conditions are included in LICENSE or can be found at the [GNU website](http://www.gnu.org/licenses/gpl-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_682.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_682.RULE index 4c4644f393..dc667af537 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_682.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_682.RULE @@ -10,5 +10,5 @@ ignorable_urls: Licensing -This plugin is licensed under the terms of the GNU General Public License, version 2 (GPLv2) or later. +This plugin is licensed under the terms of the {{GNU General Public License, version 2}} (GPLv2) or later. License conditions are included in LICENSE or can be found at the [GNU website](https://www.gnu.org/licenses/gpl-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_683.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_683.RULE index 540f09061a..46c844d1fe 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_683.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_683.RULE @@ -8,5 +8,5 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.html --- -This plugin is licensed under the terms of the GNU General Public License, version 2 (GPLv2) or later. +This plugin is licensed under the terms of the {{GNU General Public License, version 2}} (GPLv2) or later. License conditions are included in LICENSE or can be found at the [GNU website](https://www.gnu.org/licenses/gpl-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_685.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_685.RULE index 51cb177d26..75709db29a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_685.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_685.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -* The class uses code licensed under the terms of the GNU General - * Public License and therefore is licensed under GPL v2 or later. \ No newline at end of file +* The class uses code licensed under the terms of the {{GNU General + * Public License}} and therefore is {{licensed under GPL v2 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_686.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_686.RULE index 04c5e47606..7c537e4f1b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_686.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_686.RULE @@ -6,20 +6,20 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -* The class uses code licensed under the terms of the GNU General - * Public License and therefore is licensed under GPL v2 or later. +* The class uses code licensed under the terms of the {{GNU General + * Public License}} and therefore is {{licensed under GPL v2 or later}}. * * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program. If not, see . * * @license GPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_688.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_688.RULE index 632979e44c..05d48491ef 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_688.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_688.RULE @@ -8,4 +8,4 @@ notes: See https://github.com/pogorelov9/labelparfum.github.io/blob/f6e2961f8501 Feel free to use, modify and redistribute this theme as you like. You may remove any copyright references (unless required by third party components) and crediting is not necessary, but very appreciated... ;-D. - is distributed under the terms of the GNU GPL v2.0 or later \ No newline at end of file + is distributed under the terms of the GNU {{GPL v2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_69.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_69.RULE index 9641c8c581..fb757b1683 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_69.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_69.RULE @@ -6,18 +6,18 @@ is_license_notice: yes License: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_699.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_699.RULE index db1d73e04e..fff4388ec4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_699.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_699.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -Licensed under the GNU General Public License, either version 2, -or (at your option) any later version. See the included file COPYING. \ No newline at end of file +Licensed under the {{GNU General Public License, either version 2, +or (at your option) any later version}}. See the included file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_7.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_7.RULE index 9fb19259b0..ef005049e1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_7.RULE @@ -7,6 +7,6 @@ referenced_filenames: notes: GPL 2.0 + debian version --- -License: GNU General Public License, version 2 or later (GPL-2+) - On Debian systems, the complete text of the GNU General Public License - version 2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file +License: {{GNU General Public License, version 2 or later}} (GPL-2+) + On Debian systems, the complete text of the {{GNU General Public License + version 2}} can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_70.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_70.RULE index f3463ab86e..ef4d5932f5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_70.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_70.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is licensed under the GPLv2 or later, see `/usr/share/common-licenses/GPL-2' \ No newline at end of file +is {{licensed under the GPLv2 or later}}, see `{{/usr/share/common-licenses/GPL}}-2' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_700.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_700.RULE index 16974c615d..2078c35484 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_700.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_700.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU General Public License, either version 2, -or (at your option) any later version. \ No newline at end of file +Licensed under the {{GNU General Public License, either version 2, +or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_702.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_702.RULE index 39b72f1808..921e78feb4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_702.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_702.RULE @@ -6,13 +6,13 @@ notes: Seen in FFmpeg binaries as injected at build time per https://github.com/ --- %s is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. %s is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -You should have received a copy of the GNU General Public License +{{GNU General Public License}} for more details. +You should have received a copy of the {{GNU General Public License}} along with %s; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_705.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_705.RULE index 33195c2a27..3cd01ee305 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_705.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_705.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 --- -Valid-License-Identifier: GPL-2.0+ \ No newline at end of file +Valid-License-Identifier: {{GPL-2.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_706.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_706.RULE index 8c84d39f43..e40016db8a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_706.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_706.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 --- -Valid-License-Identifier: GPL-2.0-or-later \ No newline at end of file +Valid-License-Identifier: {{GPL-2.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_71.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_71.RULE index e5b1aae792..10ee8e35e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_71.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_71.RULE @@ -4,8 +4,8 @@ is_license_notice: yes minimum_coverage: 80 --- -License: GPL-2+ +{{License: GPL-2+}} This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. \ No newline at end of file + of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_711.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_711.RULE index 5537a6d5c2..a08216cb19 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_711.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_711.RULE @@ -6,6 +6,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -License: GPL-2+ - On Debian systems, the complete text of the GPL-2 can be found in +{{License: GPL-2+}} + On Debian systems, the complete text of the {{GPL-2}} can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_712.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_712.RULE index bdac3926e2..5546ead04e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_712.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_712.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The program is distributed under the terms of the GNU General Public License version 2 or later. \ No newline at end of file +The program is distributed under the terms of the {{GNU General Public License version 2 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_713.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_713.RULE index 242df0f562..56745de327 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_713.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_713.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -License : GPLv2 or higher, see LICENSE.txt \ No newline at end of file +License : {{GPLv2 or higher}}, see LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_714.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_714.RULE index b88228d527..52b2ea7d5f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_714.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_714.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is covered by the GNU General Public License (GPLv2 or higher) \ No newline at end of file +This code is covered by the {{GNU General Public License}} {{(GPLv2 or higher)}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_715.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_715.RULE index 5cf3355de5..d840366a92 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_715.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_715.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This man page is covered by the GNU General Public License (GPLv2 or higher). \ No newline at end of file +This man page is covered by the {{GNU General Public License}} ({{GPLv2 or higher}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_716.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_716.RULE index 2fc3279ee8..ac76dcc4d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_716.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_716.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_717.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_717.RULE index f52cfeabcc..4026f57154 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_717.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_717.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU GPLv2 or higher \ No newline at end of file +GNU/GPLv2 or higher \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_718.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_718.RULE index d3f5a60773..3bf990154e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_718.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_718.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license: GPLv2 or higher \ No newline at end of file +license: {{GPLv2 or higher}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_719.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_719.RULE index c16e340b41..862000afe5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_719.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_719.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license: GNU GPLv2 or higher \ No newline at end of file +license: GNU {{GPLv2 or higher}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_72.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_72.RULE index 4e40dc987b..fec3c48bfb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_72.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_72.RULE @@ -4,18 +4,18 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -The complete GNU General Public License can be found at -/usr/share/common-licenses/GPL \ No newline at end of file +The complete {{GNU General Public License}} can be found at +{{/usr/share/common-licenses/GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_720.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_720.RULE index 8a78dbd433..b0067cd046 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_720.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_720.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU Public License (GPLv2 or higher) \ No newline at end of file +released under the GNU Public License ({{GPLv2 or higher}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_721.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_721.RULE index 913b09c811..61c467a8b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_721.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_721.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/lisenses/gpl.txt --- -License: GNU/GPLv2 or higher (http://www.gnu.org/lisenses/gpl.txt) \ No newline at end of file +License: {{ GNU/GPLv2 or higher}} (http://www.gnu.org/lisenses/gpl.txt) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_722.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_722.RULE index 1f664f985e..c3ab482ef2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_722.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_722.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -GNU General Public License (GPLv2 or higher) as published by the Free Software Foundation (http://www. gnu.org/licenses/) \ No newline at end of file +{{GNU General Public License}} ({{GPLv2 or higher}}) as published by the Free Software Foundation (http://www. gnu.org/licenses/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_723.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_723.RULE index 016dae4fda..e4b79659f6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_723.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_723.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU General Public License GPLv2 or higher. \ No newline at end of file +under the {{GNU General Public License}} {{GPLv2 or higher}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_724.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_724.RULE index b77c8d1937..25473e3845 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_724.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_724.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -distributed under the GNU General Public License GPLv2 or higher, see LICENSE for details. \ No newline at end of file +distributed under the {{GNU General Public License}} {{GPLv2 or higher}}, see LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_725.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_725.RULE index cfb799d5da..4f9350f835 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_725.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_725.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.TXT --- -distributed under the GNU General Public License GPLv2 or higher. Please see LICENSE.TXT for details \ No newline at end of file +distributed under the {{GNU General Public License}} {{GPLv2 or higher}}. Please see LICENSE.TXT for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_726.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_726.RULE index 0b7880e91a..4f7f409452 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_726.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_726.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.TXT --- -This software is distributed under the GNU General Public License GPLv2 or higher, see LICENSE.TXT for details. \ No newline at end of file +This software is distributed under the {{GNU General Public License}} {{GPLv2 or higher}}, see LICENSE.TXT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_727.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_727.RULE index ef9d22e5a1..296eb1d9dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_727.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_727.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING.TXT --- -License GPLv2 or higher, see the file COPYING.TXT for details. \ No newline at end of file +License {{GPLv2 or higher}}, see the file COPYING.TXT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_728.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_728.RULE index 73c8c5802b..43d21d8d03 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_728.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_728.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the GNU General Public License GPLv2 or higher. \ No newline at end of file +distributed under the {{GNU General Public License}} {{GPLv2 or higher}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_729.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_729.RULE index a0d23e93ed..46cf9d5b89 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_729.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_729.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -free software, distributed under the terms of the GNU -General Public License GPLv2 or higher. \ No newline at end of file +free software, distributed under the terms of the {{GNU +General Public License}} {{GPLv2 or higher}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_730.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_730.RULE index f2cb46a488..8122ef2a85 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_730.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_730.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -free software, distributed under the terms of the GNU General Public License GPLv2 or higher. You must be aware there is no warranty whatsoever \ No newline at end of file +free software, distributed under the terms of the {{GNU General Public License}} {{GPLv2 or higher}}. You must be aware there is no warranty whatsoever \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_731.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_731.RULE index 5f0dc92216..6dd8cff254 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_731.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_731.RULE @@ -6,4 +6,4 @@ relevance: 100 License -is a free software, distributed under the terms of the GNU General Public License GPLv2 or higher. You must be aware there is no warranty whatsoever for . This is described in full in the license. \ No newline at end of file +is a free software, distributed under the terms of the {{GNU General Public License}} {{GPLv2 or higher}}. You must be aware there is no warranty whatsoever for . This is described in full in the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_732.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_732.RULE index 5453580d26..055c8bca03 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_732.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_732.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.html --- -License: GPLv2 or higher +License: {{GPLv2 or higher}} License URI: http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_733.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_733.RULE index d0e05bd99a..b951253739 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_733.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_733.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU General Public License Version 2, -or (at your option) any later version ("GPL2+"). \ No newline at end of file +licensed under the terms of the {{GNU General Public License Version 2, +or (at your option) any later version}} ("GPL2+"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_734.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_734.RULE index 342063124a..d48769bdd7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_734.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_734.RULE @@ -7,7 +7,7 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 2, or (at your option) any later version. -On Debian GNU/Linux systems, the complete text of the GNU General Public -License version 2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file +under the terms of the {{GNU General Public License as published by the +Free Software Foundation; either version 2, or (at your option) any later version}}. +On Debian GNU/Linux systems, the complete text of the {{GNU General Public +License version 2}} can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_735.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_735.RULE index 2c3e215c46..2410823c6e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_735.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_735.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . On Debian system, copy of GNU Lesser General Public License version 2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_736.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_736.RULE index 5f10f5ed82..82439fcc11 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_736.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_736.RULE @@ -9,19 +9,19 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. See /usr/share/common-licenses/GPL-2, or for the terms of the latest version -of the GNU General Public License. \ No newline at end of file +of the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_737.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_737.RULE index b643bfc3d2..8b559cbe7b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_737.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_737.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) - any later version. + any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the complete text of the GNU General Public License - version 2 can be found in ‘/usr/share/common-licenses/GPL-2’. \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public License + version 2}} can be found in ‘/usr/share/common-licenses/GPL-2’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_738.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_738.RULE index 905f3df804..e8b70fdf71 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_738.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_738.RULE @@ -3,22 +3,23 @@ license_expression: gpl-2.0-plus is_license_notice: yes relevance: 100 referenced_filenames: - - /usr/share/common-licenses/GPL-2 + - /usr/share/common-licenses/GPL-3 +is_deprecated: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the complete text of the GNU General Public License - version 3 can be found in ‘/usr/share/common-licenses/GPL-3’. \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public License + version 3}} can be found in ‘{{/usr/share/common-licenses/GPL-3}}’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_739.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_739.RULE index a9557aff03..587ece7930 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_739.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_739.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_74.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_74.RULE index 40bee5272d..b5f6ffcb0f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_74.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_74.RULE @@ -6,4 +6,4 @@ minimum_coverage: 100 --- the "GPL v2" has been broadened to -"GPL v2 or any later version". \ No newline at end of file +"{{GPL v2 or any later version}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_740.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_740.RULE index 5651811e45..66507ee624 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_740.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_740.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General -Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_741.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_741.RULE index 25be9dc727..282323db65 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_741.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_741.RULE @@ -9,16 +9,16 @@ notes: Seen in dash --- Bash is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later -version. +version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License with +You should have received a copy of the {{GNU General Public License}} with your Debian GNU/Linux system, in /usr/share/common-licenses/GPL, or with the Debian GNU/Linux hello source package as the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_742.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_742.RULE index ab8a8bdfd2..d2269ab328 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_742.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_742.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- Bash is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later -version. +version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Bash. If not, see . -On Debian systems, the complete text of the GNU General Public License +On Debian systems, the complete text of the {{GNU General Public License}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_744.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_744.RULE index 32db36cc5a..0d2647ac84 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_744.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_744.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.html --- -Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). \ No newline at end of file +Licensed under the terms of [{{GNU General Public License Version 2 or later}}](http://www.gnu.org/licenses/gpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_745.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_745.RULE index 72b7296062..f7dd49dc66 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_745.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_745.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the terms of [GNU General Public License Version 2 or later] \ No newline at end of file +Licensed under the terms of [{{GNU General Public License Version 2 or later}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_746.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_746.RULE index fd83c12ae4..4c27ff2f1f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_746.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_746.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -Licensed under the terms of [GNU General Public License Version 2 or later](https://www.gnu.org/licenses/gpl.html). \ No newline at end of file +Licensed under the terms of [{{GNU General Public License Version 2 or later}}](https://www.gnu.org/licenses/gpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_747.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_747.RULE index 5feb34e33d..bade3791e8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_747.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_747.RULE @@ -5,6 +5,6 @@ relevance: 100 notes: Debian copyright file paragraph footer --- -License: GPL-2+ - On Debian systems the full text of the GNU General Public License version 2 - can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file +{{License: GPL-2+}} + On Debian systems the full text of the {{GNU General Public License version 2}} + can be found in the `{{/usr/share/common-licenses/GPL}}-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_749.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_749.RULE index ef9622cffc..4e52061d98 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_749.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_749.RULE @@ -7,14 +7,14 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - On Debian GNU/Linux systems, the complete text of the GNU General Public - License can be found in '/usr/share/common-licenses/GPL-2' \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public + License}} can be found in '/usr/share/common-licenses/GPL-2' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_75.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_75.RULE index 97acf28d13..cc4126d44e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_75.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_75.RULE @@ -6,5 +6,5 @@ minimum_coverage: 100 --- GPL: - The GPL version 2 (or any later version) applies to all files in the + The {{GPL version 2 (or any later version}}) applies to all files in the directories: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_750.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_750.RULE index 97460b5c91..c53d8b87e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_750.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_750.RULE @@ -8,16 +8,16 @@ ignorable_urls: --- /* This program is free software; you can redistribute it and/or */ -/* modify it under the terms of the GNU General Public License */ +/* modify it under the terms of the {{GNU General Public License */ /* as published by the Free Software Foundation; either version 2 */ -/* of the License, or (at your option) any later version. */ +/* of the License, or (at your option) any later version}}. */ /* */ /* This program is distributed in the hope that it will be useful, */ /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ -/* GNU General Public License for more details. */ +/* {{GNU General Public License}} for more details. */ /* */ -/* You should have received a copy of the GNU General Public License */ +/* You should have received a copy of the {{GNU General Public License}} */ /* along with this program; if not, write to the */ /* Free Software Foundation, Inc., */ /* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_751.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_751.RULE index b6239d9a5e..79ea257f0d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_751.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_751.RULE @@ -9,16 +9,16 @@ ignorable_urls: /* LICENSE: */ /* This program is free software; you can redistribute it and/or */ -/* modify it under the terms of the GNU General Public License */ +/* modify it under the terms of the {{GNU General Public License */ /* as published by the Free Software Foundation; either version 2 */ -/* of the License, or (at your option) any later version. */ +/* of the License, or (at your option) any later version}}. */ /* */ /* This program is distributed in the hope that it will be useful, */ /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ -/* GNU General Public License for more details. */ +/* {{GNU General Public License}} for more details. */ /* */ -/* You should have received a copy of the GNU General Public License */ +/* You should have received a copy of the {{GNU General Public License}} */ /* along with this program; if not, write to the */ /* Free Software Foundation, Inc., */ /* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_752.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_752.RULE index 291c41fd5f..33d7eeaaf1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_752.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_752.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- # This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_754.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_754.RULE index b264cab055..ab18bfc10a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_754.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_754.RULE @@ -6,6 +6,6 @@ relevance: 100 all software (original and derived) is covered under the GPL (version 2 or later) - On Debian GNU/Linux systems, the complete text of the GNU General - Public License Version 2 can be found in - /usr/share/common-licenses/GPL-2. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General + Public License Version 2}} can be found in + {{/usr/share/common-licenses/GPL}}-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_756.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_756.RULE index 3e62918f87..53117c1ac2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_756.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_756.RULE @@ -5,9 +5,9 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_757.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_757.RULE index 6dc02a50f4..acff8786de 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_757.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_757.RULE @@ -7,8 +7,8 @@ minimum_coverage: 95 LICENSE -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_759.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_759.RULE index 77008c07d0..f5f1785b45 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_759.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_759.RULE @@ -9,16 +9,16 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_76.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_76.RULE index 60268aad5a..30150322a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_76.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_76.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- This manual is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version}}. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -A copy of the GNU General Public License is available as -/usr/share/common-licenses/GPL in the Debian GNU/Linux distribution or on +A copy of the {{GNU General Public License}} is available as +{{/usr/share/common-licenses/GPL}} in the Debian GNU/Linux distribution or on the World Wide Web at http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_760.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_760.RULE index 26eedd3b4f..be6af1d623 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_760.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_760.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with . If not, see . A copy of the GPL can be found in the file "COPYING" in this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_764.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_764.RULE index 148344b8f0..9c0628d159 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_764.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_764.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program (see the file COPYING); if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_765.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_765.RULE index e1264451cf..acaf8cbe23 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_765.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_765.RULE @@ -6,7 +6,7 @@ notes: typo in andor --- Permission is granted to copy, distribute andor modify this document -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation either version 2 of the License, or (at your -option) any later version. The text of the license can be found in the -section entitled ``GNU General Public License''. \ No newline at end of file +option) any later version}}. The text of the license can be found in the +section entitled ``{{GNU General Public License}}''. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_766.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_766.RULE index 7207460bdf..ecb1ba1d4c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_766.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_766.RULE @@ -6,6 +6,6 @@ notes: typo in andor --- Permission is granted to copy, distribute andor modify this document -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation either version 2 of the License, or (at your -option) any later version. \ No newline at end of file +option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_767.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_767.RULE index c5821f5f2b..af1aeb9a95 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_767.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_767.RULE @@ -5,8 +5,8 @@ relevance: 100 --- Permission is granted to copy, distribute and/or modify this -document under the terms of the GNU General Public License as +document under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. The text of the -license can be found in the section entitled "GNU General Public -License". \ No newline at end of file +License, or (at your option) any later version}}. The text of the +license can be found in the section entitled "{{GNU General Public +License}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_768.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_768.RULE index 2f1bf74bcd..a54c1a8012 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_768.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_768.RULE @@ -6,11 +6,11 @@ minimum_coverage: 80 --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_769.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_769.RULE index af69cd403c..91f62db2af 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_769.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_769.RULE @@ -5,17 +5,17 @@ relevance: 100 --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_770.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_770.RULE index 5855a5623a..7ccad20ba3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_770.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_770.RULE @@ -7,15 +7,15 @@ notes: mix of library vs. lesser GPL and GPL vs. LGPL --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, -or (at your option) any later version. +or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with ; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_771.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_771.RULE index 41ecd2a4b1..ab547ba0fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_771.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_771.RULE @@ -1,7 +1,9 @@ --- license_expression: gpl-2.0-plus is_license_reference: yes +is_required_phrase: yes +is_continuous: yes relevance: 100 --- -{{GPL-2.0-or-later - GNU General Public License version 2, or any later version}} \ No newline at end of file +GPL-2.0-or-later GNU General Public License version 2, or any later version diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_772.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_772.RULE index f8297e1fda..5238d0f7ff 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_772.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_772.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU General Public License version 2, or any later version \ No newline at end of file +{{GNU General Public License version 2}}, or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_773.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_773.RULE index 3db1f1b3eb..f35259ddf7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_773.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_773.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -The ./COPYING file (GPL-2.0-or-later) is the default license for code without +The ./COPYING file ({{GPL-2.0-or-later}}) is the default license for code without an explicitly defined license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_774.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_774.RULE index dba9e6f224..d9a6bf1373 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_774.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_774.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. TThis program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_775.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_775.RULE index 072f6b4774..6bbea81d64 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_775.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_775.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU General Public License, -version 2 \ No newline at end of file +redistribution under the terms of the {{GNU General Public License, +version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_776.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_776.RULE index 492901480e..133b60e4ef 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_776.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_776.RULE @@ -5,5 +5,5 @@ relevance: 100 --- licensed for use, modification and -redistribution under the terms of the GNU General Public License, -version 2 \ No newline at end of file +redistribution under the terms of the {{GNU General Public License, +version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_777.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_777.RULE index 4b7c4c71ee..411910d178 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_777.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_777.RULE @@ -8,18 +8,18 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU General Public License, -version 2 +redistribution under the terms of the {{GNU General Public License, +version 2}} is free software: you can redistribute it and/or modify it -under the terms of version 2 of the GNU General Public License, +under the terms of version 2 of the {{GNU General Public License}}, as published by the Free Software Foundation. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License, -version 2, along with this program. +You should have received a copy of the {{GNU General Public License, +version 2}}, along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_778.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_778.RULE index 65d4a4193c..f30753ce5c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_778.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_778.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_779.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_779.RULE index 6d2a927a19..47799037f7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_779.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_779.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. TThis program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_78.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_78.RULE index 7b7914d55f..74e3fab6e1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_78.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_78.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- # GNU Classpath is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as +# modify it under the terms of the {{GNU General Public License as # published by the Free Software Foundation; either version 2 of the -# License, or (at your option) any later version. +# License, or (at your option) any later version}}. # GNU Classpath is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# You should have received a copy of the GNU General Public License +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +# General Public License}} for more details. +# You should have received a copy of the {{GNU General Public License}} # along with GNU Classpath; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_781.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_781.RULE index 13cbef4d63..ab7400adb5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_781.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_781.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_784.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_784.RULE index 80e3d9d1f3..4c183814a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_784.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_784.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -LICENSE INFORMATION: GPL v2.0 or later \ No newline at end of file +LICENSE INFORMATION: {{GPL v2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_786.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_786.RULE index c9de448b8e..e4ecb5a073 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_786.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_786.RULE @@ -6,10 +6,10 @@ referenced_filenames: - COPYING --- -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -The GNU General Public License can also be found in the file `COPYING' \ No newline at end of file +The {{GNU General Public License}} can also be found in the file `COPYING' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_787.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_787.RULE index 3eb8ac9307..8c2a830524 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_787.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_787.RULE @@ -6,10 +6,10 @@ referenced_filenames: - COPYING --- -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -The GNU General Public License can also be found in the file `COPYING' that comes with the source distribution. \ No newline at end of file +The {{GNU General Public License}} can also be found in the file `COPYING' that comes with the source distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_789.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_789.RULE index b9438f8744..f7aed0146c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_789.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_789.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This library is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at -your option) any later version. +your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place Suite 330, Boston, MA 021111307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_790.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_790.RULE index 46dd37fda3..983b594751 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_790.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_790.RULE @@ -5,11 +5,11 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_791.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_791.RULE index 475a8c5a3f..5aeeeb69cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_791.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_791.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_792.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_792.RULE index ff853c4c54..e18c9242e2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_792.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_792.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- GNU is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) - any later version. + any later version}}. GNU is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with GNU ; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_793.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_793.RULE index a95c2da8a6..e7ca6f79a9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_793.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_793.RULE @@ -7,5 +7,4 @@ referenced_filenames: - INHERIT_LICENSE_FROM_PACKAGE --- -GNU GPL: -This file is distributed under the same license as the {{dialog}} package. \ No newline at end of file +{{GNU GPL: This file is distributed under the same license as the dialog package }} diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_794.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_794.RULE index 94b659ca23..7953baad82 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_794.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_794.RULE @@ -8,16 +8,16 @@ referenced_filenames: --- GNU is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. GNU is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_796.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_796.RULE index f90d5cfafd..74230da96a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_796.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_796.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The code is licensed under GNU GPL v2, or any later version at your option. \ No newline at end of file +The code is licensed under GNU {{GPL v2, or any later version}} at your option. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_797.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_797.RULE index 4356d41ac3..f8ecc22f91 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_797.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_797.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under GNU GPL v2, or any later version \ No newline at end of file +licensed under GNU {{GPL v2, or any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_799.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_799.RULE index 016ee168e6..787eccdb95 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_799.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_799.RULE @@ -5,6 +5,6 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version (collectively, "GPL"). \ No newline at end of file +(at your option) any later version}} (collectively, "GPL"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_8.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_8.RULE index 658f4dc758..d2fb7ed7d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_8.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_80.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_80.RULE index 26f7f10dbb..c4192d7c56 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_80.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_80.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -GPLv2h": The GNU General Public License, version 2 or (at your - option) higher. \ No newline at end of file +GPLv2h": The {{GNU General Public License, version 2 or (at your + option) higher}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_800.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_800.RULE index d4a4700291..744dcca8d6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_800.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_800.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any -later version. +later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_801.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_801.RULE index ee48907885..6e72f2f1af 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_801.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_801.RULE @@ -5,16 +5,16 @@ relevance: 100 --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with ; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_802.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_802.RULE index 94fb462987..52eb2c612c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_802.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_802.RULE @@ -5,16 +5,16 @@ relevance: 100 --- Subcommander is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. Subcommander is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Subcommander; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_805.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_805.RULE index 8b6ec4ba34..e200153adf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_805.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_805.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU General Public License Version 2 or later \ No newline at end of file +licensed under the terms of the {{GNU General Public License Version 2 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_806.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_806.RULE index da8d3b9b39..9136e372e4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_806.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_806.RULE @@ -5,20 +5,20 @@ relevance: 100 minimum_coverage: 90 --- -License: GPL-2+ +{{License: GPL-2+}} This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the complete text of the GNU General Public - License v2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public + License}} v2 can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_807.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_807.RULE index 6998a975ca..2432312959 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_807.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_807.RULE @@ -6,18 +6,18 @@ minimum_coverage: 80 --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the complete text of the GNU General Public - License v2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public + License}} v2 can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_808.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_808.RULE index 241dc32df3..498e8925d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_808.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_808.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -On Debian #OSNAME# systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian #OSNAME# systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_81.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_81.RULE index 0cf6e27a09..549d32fc5b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_81.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_81.RULE @@ -3,10 +3,10 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -License: GPL-2+ +{{License: GPL-2+}} # This is free software; you may copy, modify and/or distribute this work - # under the terms of the GNU General Public License, version 2 or later. + # under the terms of the {{GNU General Public License, version 2 or later}}. # No warranty expressed or implied. See the file LICENSE for details. . - On Debian systems, the complete text of the GNU General Public License - can be found in file "/usr/share/common-licenses/GPL-2". \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public License}} + can be found in file "{{/usr/share/common-licenses/GPL}}-2". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_810.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_810.RULE index 389a1705f5..1b6214b001 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_810.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_810.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://spdx.org/licenses/GPL-2.0-or-later --- -LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) \ No newline at end of file +LICENSE: {{GPL-2.0-or-later}} (https://spdx.org/licenses/GPL-2.0-or-later) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_811.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_811.RULE index edb260e436..9364529c83 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_811.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_811.RULE @@ -8,19 +8,19 @@ referenced_filenames: and is GPL V2 as well. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_812.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_812.RULE index 4660581656..cef1aeaaed 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_812.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_812.RULE @@ -7,10 +7,10 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. -On Debian GNU/Linux systems, the complete text of the GNU General -Public License is in `/usr/share/common-licenses/GPL', version 2 of this +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} is in `{{/usr/share/common-licenses/GPL}}', version 2 of this license in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_813.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_813.RULE index b48a816de8..d0a62a87d8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_813.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_813.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -The documentation is licensed under -the GPLv2 (or later), \ No newline at end of file +The documentation is {{licensed under +the GPLv2 (or later}}), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_814.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_814.RULE index 1d2f87c92a..ff695d49cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_814.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_814.RULE @@ -8,15 +8,15 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License + * modify it under the terms of the {{GNU General Public License * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. + * of the License, or (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, see * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_819.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_819.RULE index 4f174a434e..e1c3100981 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_819.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_819.RULE @@ -6,15 +6,15 @@ relevance: 100 Distributed under the terms of the GPL (GNU Public License) is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_82.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_82.RULE index 6f5bd34fe2..2615159109 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_82.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_82.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_820.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_820.RULE index 3f1613d52b..bd4a3af4c7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_820.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_820.RULE @@ -5,15 +5,15 @@ relevance: 100 --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_821.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_821.RULE index 3a24384415..af297781db 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_821.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_821.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is licensed under GPLv2 or later \ No newline at end of file +This file is {{licensed under GPLv2 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_823.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_823.RULE index 46e9390cef..7cc63a3298 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_823.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_823.RULE @@ -6,14 +6,14 @@ minimum_coverage: 95 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_824.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_824.RULE index d3c8585ab3..eb89f6efd9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_824.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_824.RULE @@ -6,15 +6,15 @@ minimum_coverage: 95 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., with this program; if not, write to the Free Software Foundation, Inc., \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_826.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_826.RULE index cff77f2de2..14869fdfb7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_826.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_826.RULE @@ -7,20 +7,20 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed AS-IS, WITHOUT ANY WARRANTY, express or implied, including, but not limited to the WARRANTY OF MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. The copyright holders hereby disclaim all warranties. In no case shall the copyright holders be liable to you or any thrid- party for damages of any kind, including, but not limited to, punitive, special, consequential, indirect or similar damages. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. On the initial date of release of this software, a copy can be found at diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_827.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_827.RULE index 17e5aeffb3..43c1c837aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_827.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_827.RULE @@ -5,20 +5,20 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed AS-IS, WITHOUT ANY WARRANTY, express or implied, including, but not limited to the WARRANTY OF MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. The copyright holders hereby disclaim all warranties. In no case shall the copyright holders be liable to you or any thrid- party for damages of any kind, including, but not limited to, punitive, special, consequential, indirect or similar damages. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. On the initial date of release of this software, a copy can be found at diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_828.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_828.RULE index 729a756318..744fe936fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_828.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_828.RULE @@ -6,15 +6,15 @@ is_license_notice: yes ## The GPL ## This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_829.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_829.RULE index a36b4843f8..91eab5e496 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_829.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_829.RULE @@ -6,15 +6,15 @@ minimum_coverage: 98 GNU Public License v2.0 * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_83.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_83.RULE index fef87a956c..2fde177cd0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_83.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_83.RULE @@ -5,15 +5,15 @@ minimum_coverage: 50 --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_833.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_833.RULE index 2caab90586..34fd24fed4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_833.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_833.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- The files in this package are free software; you can redistribute them -and/or modify them under the terms of the GNU General Public License +and/or modify them under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at -your option) any later version. +your option) any later version}}. The files in this package are distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty -of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} with your Debian GNU/Linux system, in /usr/share/common-licenses/GPL, or with the Debian GNU/Linux bash source package as the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin St, diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_834.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_834.RULE index 85386c3417..c25686c86e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_834.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_834.RULE @@ -5,16 +5,16 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -License: GPL-2+ +{{License: GPL-2+}} This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - The complete text of the GNU General Public License version 2 + The complete text of the {{GNU General Public License version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_835.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_835.RULE index 20a91820bb..1d13aa0b43 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_835.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_835.RULE @@ -6,14 +6,14 @@ referenced_filenames: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - The complete text of the GNU General Public License version 2 + The complete text of the {{GNU General Public License version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_836.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_836.RULE index dd801bd4ad..a1a64c1474 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_836.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_836.RULE @@ -3,13 +3,13 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -License: GPL-2+ +{{License: GPL-2+}} This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. \ No newline at end of file + {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_837.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_837.RULE index 7db3b686da..8fbed45a54 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_837.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_837.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. \ No newline at end of file + {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_838.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_838.RULE index ab338f14bb..d301258942 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_838.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_838.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_839.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_839.RULE index 1cbe107cc6..ddb874055e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_839.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_839.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see - On Debian systems, the complete text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file + On Debian systems, the complete text of the {{GNU General + Public License version 2}} can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_84.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_84.RULE index 34ec13171b..8e1b5dd167 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_84.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_84.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_840.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_840.RULE index d3c3a39657..38d0700b74 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_840.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_840.RULE @@ -3,6 +3,6 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -This program is released under the GNU General Public License (GPL), +This program is released under the {{GNU General Public License}} (GPL), either version 2 of the License, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_841.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_841.RULE index 22cd862c38..2405030849 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_841.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_841.RULE @@ -5,9 +5,9 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -This program is released under the GNU General Public License (GPL), +This program is released under the {{GNU General Public License}} (GPL), either version 2 of the License, or (at your option) any later version. - On Debian GNU/Linux systems, the complete text of the GNU General - Public License version 2 can be found in + On Debian GNU/Linux systems, the complete text of the {{GNU General + Public License version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_842.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_842.RULE index 3aa2e670b7..d06d9ee32c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_842.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_842.RULE @@ -6,9 +6,9 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it under - the terms of the GNU General Public License as published by the Free Software + the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later - version. + version}}. . - On Debian systems, the complete text of the GNU General Public License version 2 + On Debian systems, the complete text of the {{GNU General Public License version 2}} can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_843.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_843.RULE index 8dd08e6ebc..5e54c739fe 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_843.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_843.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems a full copy of the GPL 2 can be found at +On Debian systems a full copy of the {{GPL 2}} can be found at /usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_844.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_844.RULE index d5937256fd..6254786588 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_844.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_844.RULE @@ -4,18 +4,18 @@ is_license_notice: yes --- This program is free software; you can redistribute it - and/or modify it under the terms of the GNU General Public + and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later - version. + version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the GNU General Public License for more + PURPOSE. See the {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public - License along with this package; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_845.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_845.RULE index 15ef4cb757..e28a431edf 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_845.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_845.RULE @@ -6,22 +6,22 @@ referenced_filenames: --- This program is free software; you can redistribute it - and/or modify it under the terms of the GNU General Public + and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later - version. + version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the GNU General Public License for more + PURPOSE. See the {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public - License along with this package; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the full text of the GNU General Public - License version 2 can be found in the file + On Debian systems, the full text of the {{GNU General Public + License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_846.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_846.RULE index d1237df19d..d88209fedd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_846.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_846.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see <[http]://www.gnu.org/licenses/> - On Debian systems, the complete text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". \ No newline at end of file + On Debian systems, the complete text of the {{GNU General + Public License version 2}} can be found in "/usr/share/common-licenses/GPL-2". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_847.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_847.RULE index 0cd89d6810..f1a6d39ad5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_847.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_847.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_849.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_849.RULE index 2540fb376b..2f883a7a12 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_849.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_849.RULE @@ -3,4 +3,4 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -It is distributed under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. \ No newline at end of file +It is distributed under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_85.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_85.RULE index d565eb0d3b..84a76e2829 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_85.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_85.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_850.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_850.RULE index 8ed3834d2d..6370e0b6bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_850.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_850.RULE @@ -3,4 +3,4 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -is free software: you may redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. \ No newline at end of file +is free software: you may redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_851.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_851.RULE index c0f937b75b..3e63d48d53 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_851.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_851.RULE @@ -5,22 +5,22 @@ referenced_filenames: - /usr/share/common-licenses/GPL --- -License: GPL-2+ +{{License: GPL-2+}} This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . On Debian GNU/Linux systems, the complete text of the newest version - of the GNU General Public License can be found in + of the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_852.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_852.RULE index 53cd1734b8..a08f787bfd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_852.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_852.RULE @@ -6,20 +6,20 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . On Debian GNU/Linux systems, the complete text of the newest version -of the GNU General Public License can be found in +of the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_854.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_854.RULE index 791b26493a..b1559e1a9d 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_854.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_854.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . -On Debian systems, the complete text of the GNU General Public License +On Debian systems, the complete text of the {{GNU General Public License}} can be found at '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_855.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_855.RULE index 4bd4efc98d..2a85ee5d60 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_855.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_855.RULE @@ -3,4 +3,4 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -released separately under the GNU General Public License (GPL) version 2.0 (at your option) any later version. \ No newline at end of file +released separately under the {{GNU General Public License (GPL) version 2}}.0 (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_856.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_856.RULE index b513b8cdb9..2ce704a570 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_856.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_856.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . GNU Nettle is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_857.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_857.RULE index 5cd3baf0c5..2d683dfba7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_857.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_857.RULE @@ -6,20 +6,20 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . GNU Nettle is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . On Debian GNU/Linux systems, the complete text of the newest version - of the GNU General Public License can be found in + of the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_858.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_858.RULE index b0df773c00..272067cc03 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_858.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_858.RULE @@ -6,10 +6,10 @@ referenced_filenames: --- Permission is granted to copy, distribute and/or modify this document - under the terms of the GNU General Public License as published by the + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any - later version. A copy of the license is included in the - section entitled ``GNU General Public License''. + later version}}. A copy of the license is included in the + section entitled ``{{GNU General Public License}}''. - On Debian GNU/Linux systems, the complete text of the GNU General - Public License is in `/usr/share/common-licenses/GPL'. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General + Public License}} is in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_859.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_859.RULE index 5a00b72f2e..44ba8400a7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_859.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_859.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by + under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . - On Debian systems, the full text of the GNU General Public License + On Debian systems, the full text of the {{GNU General Public License}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_86.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_86.RULE index aeb15e7d29..ee48267c4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_86.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_86.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA02111-1307USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_860.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_860.RULE index f51eddd4b2..62c9272261 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_860.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_860.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by + under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_861.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_861.RULE index 4623af8ec4..6bdac9a1dc 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_861.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_861.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by + under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . - On Debian systems, the full text of the GNU General Public License + On Debian systems, the full text of the {{GNU General Public License}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_862.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_862.RULE index 03ef85df36..97978cbe78 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_862.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_862.RULE @@ -6,14 +6,14 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_863.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_863.RULE index 87c87568bd..ac3cd0dad4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_863.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_863.RULE @@ -6,14 +6,14 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_864.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_864.RULE index f28a1ec556..dc7ca079f3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_864.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_864.RULE @@ -4,20 +4,20 @@ is_license_notice: yes relevance: 100 --- -License: GPL-2+ +{{License: GPL-2+}} This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian GNU/Linux systems, the complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} + can be found in {{/usr/share/common-licenses/GPL}}-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_865.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_865.RULE index 490f3e1aeb..63e6d55eae 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_865.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_865.RULE @@ -6,18 +6,18 @@ minimum_coverage: 80 --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian GNU/Linux systems, the complete text of the GNU General Public - License v2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public + License}} v2 can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_866.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_866.RULE index c7a320d343..37e040d70c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_866.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_866.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at - your option) any later version. + your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_867.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_867.RULE index e560cdef95..3ee4613de1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_867.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_867.RULE @@ -8,6 +8,6 @@ referenced_filenames: notes: GPL 2.0 + debian version --- -License: GNU General Public License, version 2 or later (GPL-2+) - On Debian GNU/Linux systems, the complete text of the GNU General Public License - version 2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file +License: {{GNU General Public License, version 2 or later}} (GPL-2+) + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License + version 2}} can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_868.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_868.RULE index 5f23fb8c2c..834d4e771b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_868.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_868.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian GNU/Linux systems a full copy of the GPL 2 can be found at +On Debian GNU/Linux systems a full copy of the {{GPL 2}} can be found at /usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_869.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_869.RULE index 77013bcf02..6cce61c504 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_869.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_869.RULE @@ -7,6 +7,6 @@ minimum_coverage: 90 Debian packaging (debian/*) is: Copyright: -License: GNU General Public License, version 2 or later (GPL-2+) - On Debian GNU/Linux systems, the complete text of the GNU General Public License - version 2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file +License: {{GNU General Public License, version 2 or later}} (GPL-2+) + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License + version 2}} can be found in {{/usr/share/common-licenses/GPL}}-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_87.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_87.RULE index 3ce94b354c..4399f5ec64 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_87.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_87.RULE @@ -6,17 +6,17 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems the full text of the GNU General Public -License can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file +On Debian systems the full text of the {{GNU General Public +License}} can be found in the `{{/usr/share/common-licenses/GPL}}-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_870.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_870.RULE index a2a65ba84c..efb822d10f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_870.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_870.RULE @@ -4,20 +4,20 @@ is_license_notice: yes relevance: 100 --- -License: GPL-2+. +{{License: GPL-2+}}. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU General Public License -can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} +can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_871.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_871.RULE index f78ca04738..945e76dcb1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_871.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_871.RULE @@ -6,6 +6,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -License: GPL-2+ - On Debian GNU/Linux systems, the complete text of the GPL-2 can be found in +{{License: GPL-2+}} + On Debian GNU/Linux systems, the complete text of the {{GPL-2}} can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_872.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_872.RULE index 5b93f59004..97cf6e24f6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_872.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_872.RULE @@ -5,26 +5,26 @@ relevance: 100 minimum_coverage: 90 --- -License: GPL-2+ +{{License: GPL-2+}} -License: GPL-2+ +{{License: GPL-2+}} This program is free software; you can redistribute it - and/or modify it under the terms of the GNU General Public + and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later - version. + version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the GNU General Public License for more + PURPOSE. See the {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public - License along with this package; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian GNU/Linux systems, the full text of the GNU General Public - License version 2 can be found in the file - `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian GNU/Linux systems, the full text of the {{GNU General Public + License version 2}} can be found in the file + `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_873.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_873.RULE index 86db68ab76..83db19ec51 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_873.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_873.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, - or (at your option) any later version. + or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian GNU/Linux systems a full copy of the GNU General Public License, GPL, can be +On Debian GNU/Linux systems a full copy of the {{GNU General Public License}}, GPL, can be found in the file /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_874.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_874.RULE index 2d18895abf..40bdda9eff 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_874.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_874.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see - On Debian GNU/Linux systems, the complete text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General + Public License version 2}} can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_875.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_875.RULE index 15d5d8ba22..fa6b99d194 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_875.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_875.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see <[http]://www.gnu.org/licenses/> - On Debian GNU/Linux systems, the complete text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General + Public License version 2}} can be found in "/usr/share/common-licenses/GPL-2". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_876.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_876.RULE index c178aea610..018024a31a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_876.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_876.RULE @@ -4,21 +4,22 @@ is_license_notice: yes relevance: 100 referenced_filenames: - /usr/share/common-licenses/GPL-2 +is_deprecated: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 3, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian GNU/Linux systems, the complete text of the GNU General Public License - version 3 can be found in ‘/usr/share/common-licenses/GPL-3’. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} + version 3 can be found in ‘{{/usr/share/common-licenses/GPL}}-3’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_877.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_877.RULE index 6cee3a12cb..4ab50ee680 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_877.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_877.RULE @@ -9,19 +9,19 @@ notes: GPL 2.0 short notice License: This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, a copy of the GNU General Public License (GPL) is available -in the file /usr/share/common-licenses/GPL. \ No newline at end of file +On Debian GNU/Linux systems, a copy of the {{GNU General Public License}} (GPL) is available +in the file {{/usr/share/common-licenses/GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_878.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_878.RULE index 15a7c2776b..97a0a0f363 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_878.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_878.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License +version 2}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_879.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_879.RULE index 00270ab94c..5c67f844d0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_879.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_879.RULE @@ -6,21 +6,21 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -License: GPL-2+ +{{License: GPL-2+}} | This program is free software; you can redistribute it and/or - | modify it under the terms of the GNU General Public License + | modify it under the terms of the {{GNU General Public License | as published by the Free Software Foundation; either version 2 - | of the License, or (at your option) any later version. + | of the License, or (at your option) any later version}}. | | This program is distributed in the hope that it will be useful, | but WITHOUT ANY WARRANTY; without even the implied warranty of | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - | GNU General Public License for more details. + | {{GNU General Public License}} for more details. | - | You should have received a copy of the GNU General Public License along + | You should have received a copy of the {{GNU General Public License}} along | with this program; if not, write to the Free Software Foundation, Inc., | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | | - | On Debian GNU/Linux systems, the complete text of the GNU General Public License - | version 2 can be found in “/usr/share/common-licenses/GPL-2”. \ No newline at end of file + | On Debian GNU/Linux systems, the complete text of the {{GNU General Public License + | version 2}} can be found in “/usr/share/common-licenses/GPL-2”. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_88.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_88.RULE index 7ea0c13834..31f9ac0a94 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_88.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_88.RULE @@ -5,5 +5,5 @@ referenced_filenames: - COPYING --- -This is free software; see the GNU General Public License version 2 - * or later for copying conditions. There is NO warranty. \ No newline at end of file +This is free software; see the {{GNU General Public License version 2 + * or later}} for copying conditions. There is NO warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_880.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_880.RULE index ed5d15cc65..1041f2147f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_880.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_880.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . -On Debian GNU/Linux systems, the complete text of the GNU General Public License +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} can be found at '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_881.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_881.RULE index 0131bb7ff6..35f0629269 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_881.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_881.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02110-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_882.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_882.RULE index 1b5c1c8622..40cfa819a9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_882.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_882.RULE @@ -6,21 +6,21 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -License: GPL-2+ +{{License: GPL-2+}} This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . -On Debian GNU/Linux systems, the full text of the GNU General Public -License version 2 can be found in the file +On Debian GNU/Linux systems, the full text of the {{GNU General Public +License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_883.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_883.RULE index 6b4fd25e11..3304695df0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_883.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_883.RULE @@ -7,22 +7,22 @@ referenced_filenames: --- This program is free software; you can redistribute it - and/or modify it under the terms of the GNU General Public + and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later - version. + version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the GNU General Public License for more + PURPOSE. See the {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public - License along with this package; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian GNU/Linux systems, the full text of the GNU General Public - License version 2 can be found in the file + On Debian GNU/Linux systems, the full text of the {{GNU General Public + License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_884.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_884.RULE index 3fe69915a7..26a1728042 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_884.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_884.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian GNU/Linux systems the full text of the GNU General Public -License can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file +On Debian GNU/Linux systems the full text of the {{GNU General Public +License}} can be found in the `{{/usr/share/common-licenses/GPL}}-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_885.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_885.RULE index e630e7edb9..acbcd2eb07 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_885.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_885.RULE @@ -6,7 +6,7 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -License: GPL-2+ - On Debian GNU/Linux systems the full text of the GNU General Public - License can be found in the `/usr/share/common-licenses/GPL-2' +{{License: GPL-2+}} + On Debian GNU/Linux systems the full text of the {{GNU General Public + License}} can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_886.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_886.RULE index 2677cd8dd5..4f31c3264e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_886.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_886.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) - any later version. + any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian GNU/Linux systems, the complete text of the GNU General Public License - version 2 can be found in ‘/usr/share/common-licenses/GPL-2’. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License + version 2}} can be found in ‘/usr/share/common-licenses/GPL-2’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_887.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_887.RULE index 1d112cb44a..66d584f246 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_887.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_887.RULE @@ -7,19 +7,19 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . -On Debian GNU/Linux systems, the full text of the GNU General Public -License version 2 can be found in the file +On Debian GNU/Linux systems, the full text of the {{GNU General Public +License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_888.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_888.RULE index 6c17b574f5..de035212c0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_888.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_888.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by + under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . - On Debian GNU/Linux systems, the full text of the GNU General Public License + On Debian GNU/Linux systems, the full text of the {{GNU General Public License}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_889.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_889.RULE index 1ebc1c4ce6..fb54a9da16 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_889.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_889.RULE @@ -7,18 +7,18 @@ relevance: 100 License: GPL v2 or later This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_89.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_89.RULE index 152f56a3bc..0995cc334c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_89.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_89.RULE @@ -8,19 +8,19 @@ notes: GPL 2.0 short notice License: This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, a copy of the GNU General Public License (GPL) is available -in the file /usr/share/common-licenses/GPL. \ No newline at end of file +On Debian systems, a copy of the {{GNU General Public License}} (GPL) is available +in the file {{/usr/share/common-licenses/GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_890.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_890.RULE index 3b8c1de038..7bdf170848 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_890.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_890.RULE @@ -9,18 +9,18 @@ referenced_filenames: License: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_891.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_891.RULE index 1876b9061b..7319e2797e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_891.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_891.RULE @@ -7,18 +7,18 @@ notes: GPL 2 or later notice, with debian line --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_892.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_892.RULE index 999d89ce63..021ccf90b4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_892.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_892.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- Bash is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later -version. +version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Bash. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General Public License +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_893.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_893.RULE index 2d562cd067..1306675a2e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_893.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_893.RULE @@ -8,19 +8,19 @@ minimum_coverage: 85 License: This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems a full copy of the GNU General Public License, GPL, can be -found in the file /usr/share/common-licenses/GPL-2. \ No newline at end of file +On Debian GNU/Linux systems a full copy of the {{GNU General Public License}}, GPL, can be +found in the file {{/usr/share/common-licenses/GPL}}-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_894.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_894.RULE index c9e80d7b6b..65cf317dc4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_894.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_894.RULE @@ -7,18 +7,18 @@ relevance: 100 License: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_895.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_895.RULE index 16a7f9c762..9435141afa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_895.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_895.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it under - the terms of the GNU General Public License as published by the Free Software + the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later - version. + version}}. . - On Debian GNU/Linux systems, the complete text of the GNU General Public License version 2 + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License version 2}} can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_896.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_896.RULE index 670d6f720f..b625c9bee0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_896.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_896.RULE @@ -8,19 +8,19 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License +version 2}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. the +complete text of the {{GNU General Public License}} version 3 can be found +in `{{/usr/share/common-licenses/GPL}}-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_897.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_897.RULE index c57500296a..99c0d2b225 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_897.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_897.RULE @@ -6,9 +6,9 @@ minimum_coverage: 95 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. -On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL}}-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_898.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_898.RULE index 9ea7416b43..e741fa9867 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_898.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_898.RULE @@ -5,6 +5,6 @@ relevance: 100 notes: Debian copyright file paragraph footer --- -License: GPL-2+ - On Debian GNU/Linux systems the full text of the GNU General Public License version 2 - can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file +{{License: GPL-2+}} + On Debian GNU/Linux systems the full text of the {{GNU General Public License version 2}} + can be found in the `{{/usr/share/common-licenses/GPL}}-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_899.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_899.RULE index 7a9d47c86b..43ff255322 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_899.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_899.RULE @@ -4,10 +4,10 @@ is_license_notice: yes relevance: 100 --- -License: GPL-2+ +{{License: GPL-2+}} # This is free software; you may copy, modify and/or distribute this work - # under the terms of the GNU General Public License, version 2 or later. + # under the terms of the {{GNU General Public License, version 2 or later}}. # No warranty expressed or implied. See the file LICENSE for details. . - On Debian GNU/Linux systems, the complete text of the GNU General Public License - can be found in file "/usr/share/common-licenses/GPL-2". \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} + can be found in file "{{/usr/share/common-licenses/GPL}}-2". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_9.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_9.RULE index d395a6867d..2163a69d28 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_9.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_9.RULE @@ -6,16 +6,16 @@ relevance: 100 /* * This program is free software; you can redistribute it and/or -* modify it under the terms of the GNU General Public License as +* modify it under the terms of the {{GNU General Public License}} as * published by the Free Software Foundation; either version 2 of the * License, or any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -* General Public License for more details. +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +* General Public License}} for more details. * -* You should have received a copy of the GNU General Public License +* You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_90.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_90.RULE index dff7aba499..0e96cc8da8 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_90.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_90.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. \ No newline at end of file + {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_900.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_900.RULE index 6cc73a8113..5a13ce8a22 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_900.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_900.RULE @@ -6,18 +6,18 @@ notes: there are some ambiguity wrt the lesser vs. GPL --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. On Debian GNU/Linux systems, the complete text of the GNU Library - General Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + General Public License can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_901.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_901.RULE index 0964274646..31a762aefa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_901.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_901.RULE @@ -7,21 +7,21 @@ relevance: 100 Main License (everything except docs): This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL}}'. The Debian packaging is Copyright . It is licensed under the same conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_902.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_902.RULE index efd18cf073..87e98bedf4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_902.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_902.RULE @@ -5,20 +5,20 @@ relevance: 100 minimum_coverage: 90 --- -License: GPL-2+ +{{License: GPL-2+}} This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian GNU/Linux systems, the complete text of the GNU General Public - License v2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public + License}} v2 can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_903.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_903.RULE index 7c23e29187..754ee587db 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_903.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_903.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by + under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . - On Debian GNU/Linux systems, the full text of the GNU General Public License + On Debian GNU/Linux systems, the full text of the {{GNU General Public License}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_904.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_904.RULE index 3b2b8dc9c1..8f96243e1c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_904.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_904.RULE @@ -8,9 +8,9 @@ minimum_coverage: 85 However, many parts of this library are licensed differently: This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. -On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL}}-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_905.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_905.RULE index c825523cb9..6e1efbe1a3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_905.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_905.RULE @@ -5,6 +5,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -License: GPL-2+ - On Debian and Debian-based systems, a copy of the GNU General Public - License version 2 is available in /usr/share/common-licenses/GPL-2. \ No newline at end of file +{{License: GPL-2+}} + On Debian and Debian-based systems, a copy of the {{GNU General Public + License version 2}} is available in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_906.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_906.RULE index a9465cafe8..2bd33ca5f3 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_906.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_906.RULE @@ -6,18 +6,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public + License version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_907.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_907.RULE index 5fc8163638..76cf977c3b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_907.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_907.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free Software -Foundation; either version 2, or (at your option) any later version. +the terms of the {{GNU General Public License as published by the Free Software +Foundation; either version 2, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTIES OR REPRESENTATIONS; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_908.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_908.RULE index 102f311d1f..c4e3b4e27b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_908.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_908.RULE @@ -8,11 +8,11 @@ ignorable_urls: %%%LICENSE_START(GPLv2+_DOC_FULL) This is free documentation; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. -The GNU General Public License's references to "object code" +The {{GNU General Public License}}'s references to "object code" and "executables" are to be interpreted as the output of any document formatting or typesetting system, including intermediate and printed output. @@ -20,9 +20,9 @@ intermediate and printed output. This manual is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with this manual; if not, see +You should have received a copy of the {{GNU General Public +License}} along with this manual; if not, see . %%%LICENSE_END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_909.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_909.RULE index 2845fbd479..49e2bfaa73 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_909.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_909.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -The GNU General Public License is available at +The {{GNU General Public License}} is available at https://www.gnu.org/copyleft/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_91.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_91.RULE index b4e5232708..1e8a6b8417 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_91.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_91.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -the GNU General Public License as published by the Free Software - Foundation; either version 2, or (at your option) any later version, \ No newline at end of file +the {{GNU General Public License as published by the Free Software + Foundation; either version 2, or (at your option) any later version}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_910.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_910.RULE index 95ce664562..610e604c3e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_910.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_910.RULE @@ -10,16 +10,16 @@ ignorable_urls: This implementation is free software; you can redistribute it and/or modify it under the terms of -the GNU General Public License as published by +the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This implementation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied ************************ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with ; see the file COPYING. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_911.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_911.RULE index c4e8fd3dbb..dc3ac839f5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_911.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_911.RULE @@ -6,15 +6,15 @@ ignorable_urls: - https://www.gnu.org/licenses/ --- -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . This is free documentation; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. -The GNU General Public License's references to "object code" +The {{GNU General Public License}}'s references to "object code" and "executables" are to be interpreted as the output of any document formatting or typesetting system, including intermediate and printed output. @@ -22,8 +22,8 @@ intermediate and printed output. This manual is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with this manual. If not, see +You should have received a copy of the {{GNU General Public +License}} along with this manual. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_912.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_912.RULE index 7531aa66ab..c36db7077f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_912.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_912.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at -your option) any later version. +your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program as the file LICENSE.txt; if not, please see https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_913.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_913.RULE index 3b5e567ab0..021fa341a6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_913.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_913.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with drivers; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_914.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_914.RULE index ed4c3456bb..eed880646b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_914.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_914.RULE @@ -4,18 +4,19 @@ is_license_notice: yes relevance: 100 ignorable_urls: - https://www.gnu.org/licenses/ +is_deprecated: yes --- lustre is free software: you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the + under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. lustre is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU General Public License for more details. + See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . / \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_915.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_915.RULE index 1f74361fb4..d100959935 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_915.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_915.RULE @@ -7,16 +7,16 @@ ignorable_urls: --- This program is free software and open source software; you can redistribute -it and/or modify it under the terms of the GNU General Public License as +it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, -or (at your option) any later version. +or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_916.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_916.RULE index 4262726f04..65233f3e42 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_916.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_916.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms and conditions of the GNU General Public License, - version 2 or later, as published by the Free Software Foundation. + under the terms and conditions of the {{GNU General Public License, + version 2 or later}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_917.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_917.RULE index 7e99979b98..b59f325717 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_917.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_917.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) - * any later version. + * any later version}}. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with smartmontools. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_918.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_918.RULE index 3279d74ead..d2d509ca01 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_918.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_918.RULE @@ -7,18 +7,18 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Or, point your browser to https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_919.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_919.RULE index 960b80ab07..35af3033e2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_919.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_919.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_92.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_92.RULE index f98cc56b30..93a53eb4aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_92.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_92.RULE @@ -5,11 +5,11 @@ minimum_coverage: 80 --- is free software; you can redistribute it and/or modify -it under the terms of the {{GNU General Public License}} as published by -the Free Software Foundation; either {{version 2 of the License, or +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_920.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_920.RULE index fc8e491add..c5b174680c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_920.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_920.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software: you may copy, redistribute and/or modify it - under the terms of the GNU General Public License as published by the + under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your - option) any later version. + option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_921.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_921.RULE index d33484eef1..663509ea57 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_921.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_921.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . -On Debian GNU/Linux systems, the complete text of the GNU General Public License +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} can be found at '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_922.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_922.RULE index 2ac3dfbe7a..dda3a09311 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_922.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_922.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with . If not, see . A copy of the GPL can be found in the file "COPYING" in this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_923.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_923.RULE index 4d5af164c3..7cff246a63 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_923.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_923.RULE @@ -8,16 +8,16 @@ ignorable_urls: --- // This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by +// it under the terms of the {{GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. +// (at your option) any later version}}. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. +// {{GNU General Public License}} for more details. // -// You should have received a copy of the GNU General Public License +// You should have received a copy of the {{GNU General Public License}} // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, // MA 02110-1301 USA, or visit diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_924.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_924.RULE index 25d7b1fa7c..74898902cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_924.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_924.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. See the COPYING file in the top-level directory or visit This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. This program is provided "AS IS" and "WITH ALL FAULTS" and without warranty of any kind. You are solely responsible for diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_925.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_925.RULE index d4af3b3eec..7c9255ef30 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_925.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_925.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 as published + * under the terms of the {{GNU General Public License version 2}} as published * by the Free Software Foundation. See https://www.gnu.org/ for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_926.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_926.RULE index ee91b4f614..3075597b4f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_926.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_926.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) - * any later version. + * any later version}}. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * (for example COPYING); If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_927.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_927.RULE index 02afc3001c..c97d440e5a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_927.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_927.RULE @@ -11,16 +11,16 @@ ignorable_urls: The SCTP reference implementation is free software; you can redistribute it and/or modify it under the terms of -the GNU General Public License as published by +the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. The SCTP reference implementation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied ************************ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GNU CC; see the file COPYING. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_928.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_928.RULE index 693657720f..557d197d76 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_928.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_928.RULE @@ -7,8 +7,8 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -This software is supplied under the terms of the GNU General Public -License version 2 or later. The full text of the license can be found +This software is supplied under the terms of the {{GNU General Public +License version 2 or later}}. The full text of the license can be found at: https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_929.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_929.RULE index c7038b543e..b57b0c74dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_929.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_929.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms of GNU General Public License as published by the Free + under the terms of {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) - any later version. + any later version}}. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_930.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_930.RULE index e7776d1922..26b90f7834 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_930.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_930.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This driver is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License; either -version 2 of the License, or (at your option) any later version. +modify it under the terms of the {{GNU General Public License; either +version 2 of the License, or (at your option) any later version}}. This driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this driver; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_931.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_931.RULE index a34ac98202..39b277a7eb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_931.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_931.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, you can access it online at https://www.gnu.org/licenses/gpl-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_932.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_932.RULE index 76f20eec80..e2afa52ac4 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_932.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_932.RULE @@ -8,19 +8,19 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License +version 2}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. the +complete text of the {{GNU General Public License}} version 3 can be found +in `{{/usr/share/common-licenses/GPL}}-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_933.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_933.RULE index 240d20e86d..c38f204ffa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_933.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_933.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_934.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_934.RULE index 40e0c78d04..fab0080ebd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_934.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_934.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- This manual is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version}}. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -A copy of the GNU General Public License is available as -/usr/share/common-licenses/GPL in the Debian GNU/Linux distribution or on +A copy of the {{GNU General Public License}} is available as +{{/usr/share/common-licenses/GPL}} in the Debian GNU/Linux distribution or on the World Wide Web at https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_936.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_936.RULE index ccb7a0454a..969f9e9353 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_936.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_936.RULE @@ -9,15 +9,15 @@ ignorable_urls: --- * This Program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) - * any later version. + * any later version}}. * * This Program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with XBMC; see the file COPYING. If not, see * . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_937.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_937.RULE index 05f5d643a1..5aa5258df5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_937.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_937.RULE @@ -9,7 +9,7 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt --- -Licensed under the GNU General Public License Version 2.0 (or later); +Licensed under the {{GNU General Public License Version 2.0 (or later)}}; you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at: diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_938.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_938.RULE index 0abe030b33..8a47f53336 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_938.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_938.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see https://www.gnu.org/licenses/gpl.html THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_939.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_939.RULE index 2604a6af53..afce038f11 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_939.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_939.RULE @@ -11,16 +11,16 @@ License This driver is distributed under the terms of the General Public License. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_94.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_94.RULE index 87429a4d04..04ef20e1ef 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_94.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_94.RULE @@ -7,9 +7,9 @@ ignorable_urls: - http://www.opensource.org/licenses/gpl-license.html --- -The code contained herein is licensed under the GNU General Public -License. You may obtain a copy of the GNU General Public License -Version 2 or later at the following locations: +The code contained herein is licensed under the {{GNU General Public +License}}. You may obtain a copy of the {{GNU General Public License +Version 2 or later}} at the following locations: http://www.opensource.org/licenses/gpl-license.html http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_940.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_940.RULE index fc59df56e1..c456ba4e3c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_940.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_940.RULE @@ -11,16 +11,16 @@ ignorable_urls: The SCTP implementation is free software; you can redistribute it and/or modify it under the terms of -the GNU General Public License as published by +the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. The SCTP implementation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied ************************ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GNU CC; see the file COPYING. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_941.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_941.RULE index a9c94ce09a..db41fad219 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_941.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_941.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the complete text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public License +version 2}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_942.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_942.RULE index 3fce4078d4..272afdbf72 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_942.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_942.RULE @@ -8,18 +8,18 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU General Public License, -version 2 +redistribution under the terms of the {{GNU General Public License, +version 2}} is free software: you can redistribute it and/or modify it -under the terms of version 2 of the GNU General Public License, +under the terms of version 2 of the {{GNU General Public License}}, as published by the Free Software Foundation. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License, -version 2, along with this program. +You should have received a copy of the {{GNU General Public License, +version 2}}, along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_943.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_943.RULE index 2f7dbbb774..c7a1e8d8a7 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_943.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_943.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- // is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by +// it under the terms of the {{GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. +// (at your option) any later version}}. // // The algorithms that underlie have required considerable // development and are described in . If you use @@ -19,7 +19,7 @@ ignorable_urls: // FastJet is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. +// {{GNU General Public License}} for more details. // -// You should have received a copy of the GNU General Public License +// You should have received a copy of the {{GNU General Public License}} // along with FastJet. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_944.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_944.RULE index c5af7e64ad..d79d05308c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_944.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_944.RULE @@ -19,15 +19,15 @@ This code was developed from version of the drivers, of the GPL, in source form. The source is located at the end of the file. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with Atmel wireless lan drivers; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_945.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_945.RULE index e40e94d77e..beaac0d2a6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_945.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_945.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian GNU/Linux systems the full text of the GNU General Public -License can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file +On Debian GNU/Linux systems the full text of the {{GNU General Public +License}} can be found in the `{{/usr/share/common-licenses/GPL}}-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_946.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_946.RULE index 8f1e52de92..c2cf90f81b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_946.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_946.RULE @@ -6,20 +6,20 @@ ignorable_urls: - https://www.gnu.org/licenses/ --- -* The class uses code licensed under the terms of the GNU General - * Public License and therefore is licensed under GPL v2 or later. +* The class uses code licensed under the terms of the {{GNU General + * Public License}} and therefore is {{licensed under GPL v2 or later}}. * * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program. If not, see . * * @license GPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_947.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_947.RULE index 9a99c56303..b32b81a859 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_947.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_947.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- # This file is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by +# under the terms of the {{GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +# General Public License}} for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the {{GNU General Public License}} # along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_948.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_948.RULE index 13e19f5064..fd5966c39c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_948.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_948.RULE @@ -9,15 +9,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_949.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_949.RULE index 98d9717595..b2875734a2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_949.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_949.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . -On Debian systems, the complete text of the GNU General Public License +On Debian systems, the complete text of the {{GNU General Public License}} can be found at '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_95.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_95.RULE index 5982b32e0f..bbdd388022 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_95.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_95.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; version 2 or later of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_950.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_950.RULE index 8cd63bad5f..1cbaa8b770 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_950.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_950.RULE @@ -9,19 +9,19 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. See /usr/share/common-licenses/GPL-2, or for the terms of the latest version -of the GNU General Public License. \ No newline at end of file +of the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_951.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_951.RULE index ef126668d7..4aaf2fa5f5 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_951.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_951.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This code is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_952.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_952.RULE index 422bdee6c0..c743701a20 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_952.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_952.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- Bash is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later -version. +version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Bash. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General Public License +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_953.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_953.RULE index 9b845ad90c..8afc96a050 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_953.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_953.RULE @@ -6,9 +6,9 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt --- -This software is licensed to you under the GNU General Public +This software is licensed to you under the {{GNU General Public License as published by the Free Software Foundation; either version -2 of the License (GPLv2) or (at your option) any later version. +2 of the License (GPLv2) or (at your option) any later version}}. There is NO WARRANTY for this software, express or implied, including the implied warranties of MERCHANTABILITY, NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_954.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_954.RULE index d4e4caa51f..48e4ef94e9 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_954.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_954.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems the full text of the GNU General Public -License can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file +On Debian systems the full text of the {{GNU General Public +License}} can be found in the `{{/usr/share/common-licenses/GPL}}-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_955.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_955.RULE index a07f26cdc8..a9ea2161aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_955.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_955.RULE @@ -9,6 +9,6 @@ ignorable_urls: comes with ABSOLUTELY NO WARRANTY. This is free " "software, and you are welcome to redistribute it under " - "the terms of the GNU General Public License; either " - "version 2, or (at your option) any later version. " + "the terms of the {{GNU General Public License; either " + "version 2, or (at your option) any later version}}. " "See https://www.gnu.org for further details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_956.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_956.RULE index 9d12bead14..ec62359916 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_956.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_956.RULE @@ -10,7 +10,7 @@ ignorable_urls: --- license -Licensed under the GNU General Public License Version 2.0 (or later); +Licensed under the {{GNU General Public License Version 2.0 (or later)}}; you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at: diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_957.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_957.RULE index e5a82cde92..578ee0982c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_957.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_957.RULE @@ -8,7 +8,7 @@ ignorable_urls: --- # This program is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by the +# under the terms of the {{GNU General Public License as published by the # Free Software Foundation; either version 2 of the License, or (at your -# option) any later version. See https://www.gnu.org/copyleft/gpl.html for +# option) any later version}}. See https://www.gnu.org/copyleft/gpl.html for # the full text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_958.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_958.RULE index 9bf90ffe01..5894d664d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_958.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_958.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_959.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_959.RULE index 93588f22d1..26cef59192 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_959.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_959.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307. You can also get it at https://www.gnu.org/licenses/gpl.html diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_96.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_96.RULE index ed4fe97596..98cc0184d0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_96.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_96.RULE @@ -6,6 +6,6 @@ minimum_coverage: 90 The portions of this file whose copyright is held by and which are not considered a derived work of GPL v2-only code may be distributed -and/or modified under the terms of the GNU General Public License as +and/or modified under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. \ No newline at end of file +License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_960.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_960.RULE index a1b8e94718..028dd045cd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_960.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_960.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- Bash is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later -version. +version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Bash. If not, see . -On Debian systems, the complete text of the GNU General Public License +On Debian systems, the complete text of the {{GNU General Public License}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_961.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_961.RULE index 36dbc5b47e..cda0edb606 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_961.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_961.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . On Debian system, copy of GNU Lesser General Public License version 2 diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_962.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_962.RULE index 0e97657ac3..febeaba28a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_962.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_962.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.gnu.org/licenses/ --- -# Distributed under the terms of the GNU General Public License (GPL) +# Distributed under the terms of the {{GNU General Public License}} (GPL) # as published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # https://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_963.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_963.RULE index 52df4ecac5..cb088f0867 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_963.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_963.RULE @@ -10,14 +10,14 @@ License 1: GPLv2 This file is free software; you may copy, redistribute and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at -your option) any later version. +your option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_964.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_964.RULE index f698df4196..3ebebaaae2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_964.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_964.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with wireless lan drivers; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_965.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_965.RULE index 5aafa1f23e..a6c0c11d84 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_965.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_965.RULE @@ -8,19 +8,19 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the complete text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public License +version 2}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. the +complete text of the {{GNU General Public License}} version 3 can be found +in `{{/usr/share/common-licenses/GPL}}-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_966.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_966.RULE index eb1ab22cf8..8a2ab8785c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_966.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_966.RULE @@ -10,15 +10,15 @@ This code was developed from version of the drivers, released by corp. under the GPL This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with the drivers; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_967.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_967.RULE index 107f2b1270..7429b04ef0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_967.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_967.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/lisenses/gpl.txt --- -License: GNU/GPLv2 or higher (https://www.gnu.org/lisenses/gpl.txt) \ No newline at end of file +License: {{GNU/GPLv2 or higher}} (https://www.gnu.org/lisenses/gpl.txt) diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_968.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_968.RULE index 9cbab9f8a5..21eeb7b458 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_968.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_968.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General -Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_969.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_969.RULE index f5c4fd4f2f..53908f1079 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_969.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_969.RULE @@ -8,9 +8,9 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -The code contained herein is licensed under the GNU General Public -License. You may obtain a copy of the GNU General Public License -Version 2 or later at the following locations: +The code contained herein is licensed under the {{GNU General Public +License}}. You may obtain a copy of the {{GNU General Public License +Version 2 or later}} at the following locations: http://www.opensource.org/licenses/gpl-license.html https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_97.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_97.RULE index 628376802e..313d2d13db 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_97.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_97.RULE @@ -4,6 +4,6 @@ is_license_tag: yes relevance: 100 --- -SPDX-License-Identifier: GPL-2.0+ +SPDX-License-Identifier: {{GPL-2.0+}} Heavily borrowed from the following peoples GPL'ed software: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_970.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_970.RULE index c45811797a..848bfefceb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_970.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_970.RULE @@ -11,16 +11,16 @@ ignorable_urls: This SCTP implementation is free software; you can redistribute it and/or modify it under the terms of -the GNU General Public License as published by +the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This SCTP implementation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied ************************ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GNU CC; see the file COPYING. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_971.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_971.RULE index a1aef5c1b8..084f7fa05c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_971.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_971.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. To obtain the license, point your browser to https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_972.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_972.RULE index 502ac7c058..587557e13e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_972.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_972.RULE @@ -7,8 +7,8 @@ ignorable_urls: - https://www.gnu.org/licenses/ --- -This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. +This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version}}. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this program. If not, see {\field{\*\{HYPERLINK "https://www.gnu.org/licenses/ https://www.gnu.org/licenses/ \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see {\field{\*\{HYPERLINK "https://www.gnu.org/licenses/ https://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_973.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_973.RULE index 0bf59668bb..c1e2e89259 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_973.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_973.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . -The full GNU General Public License is included in this distribution +The full {{GNU General Public License}} is included in this distribution in the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_974.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_974.RULE index 1328840145..6dc16186a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_974.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_974.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_975.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_975.RULE index ddbb4ed58b..fc20920030 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_975.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_975.RULE @@ -8,15 +8,15 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License + * modify it under the terms of the {{GNU General Public License * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. + * of the License, or (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, see * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_976.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_976.RULE index 7957e2166a..ed034c4568 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_976.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_976.RULE @@ -7,22 +7,22 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -A copy of the GNU General Public License is available as -/usr/share/common-licenses/GPL-2 in the Debian GNU/Linux +A copy of the {{GNU General Public License}} is available as +{{/usr/share/common-licenses/GPL}}-2 in the Debian GNU/Linux distribution or on the World Wide Web at . You can also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -A copy of the GNU General Public License is available as -/usr/share/common-licenses/GPL-2 in the Debian GNU/Linux +A copy of the {{GNU General Public License}} is available as +{{/usr/share/common-licenses/GPL}}-2 in the Debian GNU/Linux distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_977.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_977.RULE index 7d2167ef34..2855085bcd 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_977.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_977.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General Public License -version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License +version 2}} can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_978.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_978.RULE index 4e3e7f6a82..6ba317ffdb 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_978.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_978.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.html --- -License: GNU General Public License v2 or later +License: {{GNU General Public License v2 or later}} License URI: https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_979.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_979.RULE index a236694c7b..bb250202ab 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_979.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_979.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.html --- -License: GPLv2 or higher +License: {{GPLv2 or higher}} License URI: https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_98.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_98.RULE index aa7c216d95..b68da2f2d2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_98.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_98.RULE @@ -4,6 +4,6 @@ is_license_reference: yes relevance: 100 --- -Licensed under the GPL-2 or later. +Licensed under the {{GPL-2 or later}}. Heavily borrowed from the following peoples GPL'ed software: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_980.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_980.RULE index 5fe2d29f85..a82ec81b20 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_980.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_980.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- is free software. You can -redistribute it and/or modify it under the terms of the GNU General Public +redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_981.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_981.RULE index e2c4fd2405..c1fb717d09 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_981.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_981.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with Atmel wireless lan drivers; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_982.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_982.RULE index 36220f82ff..c39094b1e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_982.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_982.RULE @@ -10,17 +10,17 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . - The full GNU General Public License is included in this distribution in the + The full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_983.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_983.RULE index aa3f4e245f..f216716f9f 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_983.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_983.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - The complete text of the GNU General Public License + The complete text of the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_984.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_984.RULE index 9d04cdf712..00776d82f2 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_984.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_984.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_985.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_985.RULE index a8d76eff1d..83cd838a45 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_985.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_985.RULE @@ -6,9 +6,9 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; version 2 dated June, 1991, or (at your option) any later version. . - On Debian systems, the complete text of version 2 of the GNU General - Public License can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the complete text of version 2 of the {{GNU General + Public License}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_986.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_986.RULE index 7f7800b034..ee444fa40e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_986.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_986.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - On Debian systems, the full text of the GNU General Public - License version 2 can be found in the file - `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the full text of the {{GNU General Public + License version 2}} can be found in the file + `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_987.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_987.RULE index 377730e38e..b12a2e47a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_987.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_987.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -is free software; see the GNU General Public License version 2 or later for copying conditions. +is free software; see the {{GNU General Public License version 2 or later}} for copying conditions. There is no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_988.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_988.RULE index 1b613b93ad..9532061b5e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_988.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_988.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -see the GNU General Public License version 2 or -later for copying conditions. \ No newline at end of file +see the {{GNU General Public License version 2 or +later}} for copying conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_99.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_99.RULE index 5dad737e20..cf3a352c78 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_99.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_99.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- The library is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. The library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with the library; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_990.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_990.RULE index ec77581aad..3fa68ec5e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_990.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_990.RULE @@ -6,20 +6,20 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) - any later version. + any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems the full text of the GNU General Public License - version 2 can be found in the file + On Debian systems the full text of the {{GNU General Public License + version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_993.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_993.RULE index 3a87c0f960..06be6abf58 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_993.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_993.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://spdx.org/licenses/GPL-2.0-or-later.html --- -LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later.html) \ No newline at end of file +LICENSE: {{GPL-2.0-or-later}} (https://spdx.org/licenses/GPL-2.0-or-later.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_994.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_994.RULE index ebdd4db6d3..8a5ed15182 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_994.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_994.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://spdx.org/licenses/GPL-2.0 --- -LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) \ No newline at end of file +{{LICENSE: GPL-2.0+}} ({{ https://spdx.org/licenses/GPL-2.0+}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_995.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_995.RULE index 111c87984e..6097381d2a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_995.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_995.RULE @@ -4,20 +4,20 @@ is_license_notice: yes relevance: 100 --- -License: GPL-2+ +{{License: GPL-2+}} This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file + On Debian systems, the text of the {{GNU General Public License}} + can be found in {{/usr/share/common-licenses/GPL}}-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_996.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_996.RULE index 8cefc21f21..1a08566eff 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_996.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_996.RULE @@ -6,18 +6,18 @@ minimum_coverage: 80 --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the text of the GNU General Public - License v2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the text of the {{GNU General Public + License}} v2 can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_997.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_997.RULE index 2223654427..e966ad2c38 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_997.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_997.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at - your option) any later version. + your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_998.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_998.RULE index 4582e8107e..ca914d463b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_998.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_998.RULE @@ -8,6 +8,6 @@ referenced_filenames: notes: GPL 2.0 + debian version --- -License: GNU General Public License, version 2 or later (GPL-2+) - On Debian systems, the text of the GNU General Public License - version 2 can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file +License: {{GNU General Public License, version 2 or later}} (GPL-2+) + On Debian systems, the text of the {{GNU General Public License + version 2}} can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_999.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_999.RULE index b34f90de41..060c479794 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_999.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_999.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . - On Debian systems, the text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the text of the {{GNU General Public + License version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus.RULE index 6643545b63..5944e4be54 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_and_gpl-3.0-plus.RULE @@ -5,8 +5,8 @@ notes: GCC debian notice --- GCC is free software; you can redistribute it and/or modify it under -the terms of the {{GNU General Public License}} as published by the Free -Software Foundation; {{either version 3}}, or (at your option) {{any later +the terms of the {{GNU General Public License as published by the Free +Software Foundation; either version 3, or (at your option) any later version}}. GCC is distributed in the hope that it will be useful, but WITHOUT ANY @@ -14,10 +14,10 @@ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. -Files that have exception clauses are licensed under the terms of the +Files that have exception clauses are {{licensed under the terms of the GNU General Public License; either version 2, or (at your option) any -later version. +later version}}. On Debian GNU/Linux systems, the complete text of the {{GNU General -Public License is in `/usr/share/common-licenses/GPL'}}, {{version 2 of this +Public License is in `/usr/share/common-licenses/GPL', version 2 of this license in `/usr/share/common-licenses/GPL-2'.}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_busybox.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_busybox.RULE index 2b80b34831..c8d688ca7e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_busybox.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_busybox.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Licensed under GPLv2 or later, see file LICENSE in this tarball for details. \ No newline at end of file +{{Licensed under GPLv2 or later}}, see file LICENSE in this tarball for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_composer_comment.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_composer_comment.RULE index b04f466bba..e4089bb24c 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_composer_comment.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_composer_comment.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -License "GPL-2.0+" is a deprecated SPDX license identifier, use "GPL-2.0+-only" -or "GPL-2.0+-or-later" instead \ No newline at end of file +{{License "GPL-2.0+}}" is a deprecated SPDX license identifier, use "{{GPL-2.0+}}-only" +or "{{GPL-2.0+}}-or-later" instead \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_debian.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_debian.RULE index 0a7bf9db98..df2b3c518e 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_debian.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_debian.RULE @@ -3,20 +3,20 @@ license_expression: gpl-2.0-plus is_license_notice: yes --- -License: GPL-2+. +{{License: GPL-2+}}. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the complete text of the GNU General Public License -can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public License}} +can be found in `{{/usr/share/common-licenses/GPL}}-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_kodi.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_kodi.RULE index a6e9f0ec8b..786cb58972 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_kodi.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_kodi.RULE @@ -8,15 +8,15 @@ ignorable_urls: --- * This Program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) - * any later version. + * any later version}}. * * This Program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with XBMC; see the file COPYING. If not, see * . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl.RULE index 6ddf59691c..f68dd925fa 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This file is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl_2.RULE index d7f5028be7..82bf877579 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_not_lgpl_2.RULE @@ -5,16 +5,16 @@ minimum_coverage: 95 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_or_afl-3.0_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_or_afl-3.0_1.RULE index 162b515bb7..622f4710e0 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_or_afl-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_or_afl-3.0_1.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- // This program is free software; you can redistribute it and/or modify -// it under the terms of the {{GNU General Public License}} as published by +// it under the terms of the {{GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. You may also distribute +// (at your option) any later version}}. You may also distribute // and/or modify it under {{version 2.1 of the Academic Free License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_pulp.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_pulp.RULE index 88d67a87c7..c3da9addc6 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_pulp.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_pulp.RULE @@ -5,9 +5,9 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt --- -This software is licensed to you under the GNU General Public +This software is licensed to you under the {{GNU General Public License as published by the Free Software Foundation; either version -2 of the License (GPLv2) or (at your option) any later version. +2 of the License (GPLv2) or (at your option) any later version}}. There is NO WARRANTY for this software, express or implied, including the implied warranties of MERCHANTABILITY, NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_1.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_1.RULE new file mode 100644 index 0000000000..cbd9e7a0e2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_1.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Public License v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_11.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_11.RULE new file mode 100644 index 0000000000..baa500be91 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_11.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as +published by the Free Software Foundation; either version 2.* +.*or \(at your option\) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_12.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_12.RULE new file mode 100644 index 0000000000..20f0b68f11 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_12.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License, version 2 or (at your + option) higher \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_13.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_13.RULE new file mode 100644 index 0000000000..9893cd0c76 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_13.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GPL v2 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_14.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_14.RULE new file mode 100644 index 0000000000..1ddb97e6a6 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_14.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License, either Version 2 of the license, + or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_15.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_15.RULE new file mode 100644 index 0000000000..2e5f602c6b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_15.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by the", "Free Software Foundation; either version 2 of License, or (at your", "option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_16.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_16.RULE new file mode 100644 index 0000000000..f430effddf --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_16.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +General Public License as published by the + Free Software Foundation; either version 2, or (at your option) any + later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_17.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_17.RULE new file mode 100644 index 0000000000..85d18def07 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_17.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under GPL v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_18.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_18.RULE new file mode 100644 index 0000000000..4e49e66461 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_18.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation either version 2 of the license or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_19.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_19.RULE new file mode 100644 index 0000000000..31bdb00df9 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_19.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation either version 2 of the license gplv2 or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_2.RULE new file mode 100644 index 0000000000..bbb32bd7cb --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_2.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by\n" "the Free Software Foundation; either version 2 of License, or\n" "(at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_20.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_20.RULE new file mode 100644 index 0000000000..9e709a1fa8 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_20.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation; either version 2.* .*or \(at your option\) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_21.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_21.RULE new file mode 100644 index 0000000000..49b2b0490f --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_21.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License, either Version 2 of license, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_22.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_22.RULE new file mode 100644 index 0000000000..8ec2fcb360 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_22.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +General Public License as published by Free Software Foundation; either version 2, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_23.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_23.RULE new file mode 100644 index 0000000000..c63e1aeb19 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_23.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by # Free Software Foundation; either version 2 of License, or (at your # option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_24.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_24.RULE new file mode 100644 index 0000000000..ef92454026 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_24.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation; either version 2 of License (GPLv2) or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_25.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_25.RULE new file mode 100644 index 0000000000..de816b9416 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_25.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation (the "GPL"); either version 2 of GPL, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_27.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_27.RULE new file mode 100644 index 0000000000..df9e690a8b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_27.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - https://spdx.org/licenses/GPL-2.0 +--- + +https://spdx.org/licenses/GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_28.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_28.RULE new file mode 100644 index 0000000000..7fa0411d8a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_28.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License v2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_29.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_29.RULE new file mode 100644 index 0000000000..66b221aee9 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_29.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License version 2 or at your discretion +any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_3.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_3.RULE new file mode 100644 index 0000000000..e82a1170d6 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_3.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_30.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_30.RULE new file mode 100644 index 0000000000..66e1f625ca --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_30.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published + by the Free Software Foundiation. either version 2 of the License, + or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_31.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_31.RULE new file mode 100644 index 0000000000..5f1c28f5ee --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_31.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License version 2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_32.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_32.RULE new file mode 100644 index 0000000000..505dfc87a1 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_32.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by the Free Software +Foundation (the "GPL"); either version 2 of the GPL, or (at your option) +any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_33.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_33.RULE new file mode 100644 index 0000000000..dce98c2ba7 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_33.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +gpl 2.0plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_34.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_34.RULE new file mode 100644 index 0000000000..c04b01d1bf --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_34.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License, version 2 (GPLv2) or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_35.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_35.RULE new file mode 100644 index 0000000000..0709b94019 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_35.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - http://spdx.org/licenses/GPL-2.0 +--- + +http://spdx.org/licenses/GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_36.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_36.RULE new file mode 100644 index 0000000000..5968db5c79 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_36.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by +the Free Software Foundation; version 2 or later of the License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_37.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_37.RULE new file mode 100644 index 0000000000..6ac8aea45e --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_37.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License version 2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_38.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_38.RULE new file mode 100644 index 0000000000..aa467ac4d4 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_38.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License 2.0 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_39.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_39.RULE new file mode 100644 index 0000000000..baede25418 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_39.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General + Public License (GPL); either version 2, or (at your option) any + later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_4.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_4.RULE new file mode 100644 index 0000000000..bc6fcbe0f2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_4.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License; either " + "version 2, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_40.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_40.RULE new file mode 100644 index 0000000000..13f219bfda --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_40.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by the Free Software +Foundation (version 2 or a later version) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_41.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_41.RULE new file mode 100644 index 0000000000..ce07938354 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_41.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +relevance: 100 +skip_for_required_phrase_generation: yes +--- + +{{GNU General Public License as published by\n" + "the Free Software Foundation; either version 2 of the License, or\n" + "(at your option) any later version}} diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_42.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_42.RULE new file mode 100644 index 0000000000..73acaada9b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_42.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License (GPL), version +2 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_43.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_43.RULE new file mode 100644 index 0000000000..f744a2dce2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_43.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License v2 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_44.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_44.RULE new file mode 100644 index 0000000000..ab800268f0 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_44.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License version 2.0 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_45.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_45.RULE new file mode 100644 index 0000000000..435f8df35b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_45.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_46.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_46.RULE new file mode 100644 index 0000000000..40af09a7d2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_46.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by the Free Software Foundation; +either version 2 of the License, a copy of which is provided under the name +COPYING, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_47.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_47.RULE new file mode 100644 index 0000000000..0311066615 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_47.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License v2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_48.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_48.RULE new file mode 100644 index 0000000000..8e531d4802 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_48.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License v2.0 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_49.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_49.RULE new file mode 100644 index 0000000000..c3f36de7a6 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_49.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License, Version 2 any +later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_5.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_5.RULE new file mode 100644 index 0000000000..4b825824f1 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_5.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_50.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_50.RULE new file mode 100644 index 0000000000..6a469b8a3a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_50.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License (GPL), + version 2, or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_51.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_51.RULE new file mode 100644 index 0000000000..8d34de6d1e --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_51.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundiation either version 2 of the license or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_52.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_52.RULE new file mode 100644 index 0000000000..8325d62348 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_52.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation the gpl either version 2 of the gpl or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_53.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_53.RULE new file mode 100644 index 0000000000..90a4359099 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_53.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation version 2 or later of the license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_54.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_54.RULE new file mode 100644 index 0000000000..d2881f251b --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_54.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation (version 2 or a later version) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_55.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_55.RULE new file mode 100644 index 0000000000..f238ce7b67 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_55.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by n free software foundation either version 2 of the license or n at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_56.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_56.RULE new file mode 100644 index 0000000000..235c51e47c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_56.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation either version 2 of the license or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_57.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_57.RULE new file mode 100644 index 0000000000..eb7a2fa97e --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_57.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation either version 2 of the license copy of which is provided under the name copying or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_58.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_58.RULE new file mode 100644 index 0000000000..6672cecc8a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_58.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundiation. either version 2 of License, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_59.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_59.RULE new file mode 100644 index 0000000000..f101897b15 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_59.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation gpl either version 2 of the gpl or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_6.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_6.RULE new file mode 100644 index 0000000000..8e4ffe8e6c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_6.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License version 2, +or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_60.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_60.RULE new file mode 100644 index 0000000000..9b398fa987 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_60.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation; version 2 or later of License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_61.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_61.RULE new file mode 100644 index 0000000000..fd750d6890 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_61.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by n free software foundation either version 2 of license or n at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_62.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_62.RULE new file mode 100644 index 0000000000..c73ebf3c49 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_62.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation; either version 2 of License, or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_63.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_63.RULE new file mode 100644 index 0000000000..eea102825e --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_63.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation either version 2 of license copy of which is provided under the name copying or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_64.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_64.RULE new file mode 100644 index 0000000000..9face2be72 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_64.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation gpl either version 2 of gpl or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_65.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_65.RULE new file mode 100644 index 0000000000..b0d2946157 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_65.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation; either version 2 of License, a copy of which is provided under name COPYING, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_7.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_7.RULE new file mode 100644 index 0000000000..6020c8bed6 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_7.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GPL version 2 (or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_8.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_8.RULE new file mode 100644 index 0000000000..043afb8f91 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License 2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_9.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_9.RULE new file mode 100644 index 0000000000..9a3744bc8f --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0-plus_required_phrase_9.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public +License as published by the Free Software Foundation; either version +2 of the License (GPLv2) or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_structured.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_structured.RULE index ff2b1a33f4..ca3338132a 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_structured.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_structured.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://spdx.org/licenses/GPL-2.0 --- -* @license GPL-2.0+ \ No newline at end of file +* @{{license GPL-2.0+}} <{{ http://spdx.org/licenses/GPL-2.0+}}> \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_url_2.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_url_2.RULE index 4f0006c04c..2ca1340b4b 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_url_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_url_2.RULE @@ -1,9 +1,10 @@ --- license_expression: gpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 95 ignorable_urls: - - https://spdx.org/licenses/gpl-2.0-or-later.html + - https://spdx.org/licenses/GPL-2.0-or-later.html --- -https://spdx.org/licenses/gpl-2.0-or-later.html \ No newline at end of file +https://spdx.org/licenses/GPL-2.0-or-later.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_14.RULE b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_14.RULE index cd46ece5ba..5f834095de 100644 --- a/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0-plus_with_openssl-exception-gpl-2.0_14.RULE @@ -6,8 +6,8 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify -it under the terms of the {{GNU General Public License}} as published by -the Free Software Foundation; {{either version 2 of the License, or (at +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or (at your option) any later version.}} is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/gpl-2.0.RULE b/src/licensedcode/data/rules/gpl-2.0.RULE index e4adcf5009..d3780334a2 100644 --- a/src/licensedcode/data/rules/gpl-2.0.RULE +++ b/src/licensedcode/data/rules/gpl-2.0.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -"GPLv2": The GNU General Public License, version 2. \ No newline at end of file +"GPLv2": {{The GNU General Public License, version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_10.RULE b/src/licensedcode/data/rules/gpl-2.0_10.RULE index 086efc8ec3..d0da014415 100644 --- a/src/licensedcode/data/rules/gpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_10.RULE @@ -8,8 +8,8 @@ ignorable_urls: License - is specifically licensed under GPL v2.0, and no later version. + is specifically licensed under {{GPL v2}}.0, and no later version. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_100.RULE b/src/licensedcode/data/rules/gpl-2.0_100.RULE index c5a82be05c..1d8a899828 100644 --- a/src/licensedcode/data/rules/gpl-2.0_100.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_100.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.3 ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_1000.RULE b/src/licensedcode/data/rules/gpl-2.0_1000.RULE index 25a80f7ee7..5e1f517e70 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1000.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1000.RULE @@ -8,4 +8,4 @@ referenced_filenames: License -Unless otherwise specified, all the theme files, scripts and images are licenced under GNU General Public License version 2, see file license.txt. \ No newline at end of file +Unless otherwise specified, all the theme files, scripts and images are licenced under {{GNU General Public License version 2}}, see file license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1001.RULE b/src/licensedcode/data/rules/gpl-2.0_1001.RULE index defe52d7a2..21cf0f2196 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1001.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1001.RULE @@ -6,4 +6,4 @@ referenced_filenames: - license.txt --- -Unless otherwise specified, all the theme files, scripts and images are licenced under GNU General Public License version 2, see file license.txt. \ No newline at end of file +Unless otherwise specified, all the theme files, scripts and images are licenced under {{GNU General Public License version 2}}, see file license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1002.RULE b/src/licensedcode/data/rules/gpl-2.0_1002.RULE index 00f3cc02a5..a24f0e18a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1002.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1002.RULE @@ -6,4 +6,4 @@ referenced_filenames: - license.txt --- -licenced under GNU General Public License version 2, see file license.txt. \ No newline at end of file +licenced under {{GNU General Public License version 2}}, see file license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1003.RULE b/src/licensedcode/data/rules/gpl-2.0_1003.RULE index c3a597a694..a894d0de87 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1003.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1003.RULE @@ -7,13 +7,13 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License, Version 2, June +it {{under the terms of the GNU General Public License, Version 2}}, June 1991 as published by the Free Software Foundation. Redistribution and/or modification of this program under the terms of any other -version of the GNU General Public License is not permitted. +version of the {{GNU General Public License}} is not permitted. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For more details, -see the GNU General Public License, Version 2, a copy of which can be +see {{the GNU General Public License, Version 2}}, a copy of which can be found in the XORP LICENSE.gpl file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1004.RULE b/src/licensedcode/data/rules/gpl-2.0_1004.RULE index 8bd0802425..c3b2f152d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1004.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1004.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under GPL v2 \ No newline at end of file +distributed under {{GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1005.RULE b/src/licensedcode/data/rules/gpl-2.0_1005.RULE index 09fdc759c4..1183189a64 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1005.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1005.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the GNU General Public License (GPLv2). \ No newline at end of file +distributed under the {{GNU General Public License}} (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1006.RULE b/src/licensedcode/data/rules/gpl-2.0_1006.RULE index 20b88de8c0..e0857b72bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1006.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1006.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the GPL v2 license. \ No newline at end of file +distributed under the {{GPL v2}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1008.RULE b/src/licensedcode/data/rules/gpl-2.0_1008.RULE index e781f497d7..99b6210526 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1008.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1008.RULE @@ -6,10 +6,10 @@ minimum_coverage: 90 --- is free software; - you can redistribute it and/or modify it under the terms of the GNU General Public License - version 2 as published by the Free Software Foundation. Threading Building Blocks is + you can redistribute it and/or modify it {{under the terms of the GNU General Public License + version 2}} as published by the Free Software Foundation. Threading Building Blocks is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU General Public License for more details. You should have received a copy of - the GNU General Public License along with Threading Building Blocks; if not, write to the + See the {{GNU General Public License}} for more details. You should have received a copy of + the {{GNU General Public License}} along with Threading Building Blocks; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1009.RULE b/src/licensedcode/data/rules/gpl-2.0_1009.RULE index 3d1bcbc79b..3a6e08403c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1009.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1009.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -This package, the EXT2 filesystem utilities, is protected by the GNU -General Public License. -On Debian GNU systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +This package, the EXT2 filesystem utilities, is protected by the {{GNU +General Public License}}. +On Debian GNU systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-2}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1014.RULE b/src/licensedcode/data/rules/gpl-2.0_1014.RULE index ebc16ea5bd..85b0944dab 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1014.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1014.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU General Public License (GPL 2.0) \ No newline at end of file +GNU General Public {{License (GPL 2.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1015.RULE b/src/licensedcode/data/rules/gpl-2.0_1015.RULE index 8469829f32..969821ced9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1015.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1015.RULE @@ -1,6 +1,8 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes +is_continuous: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0_1016.RULE b/src/licensedcode/data/rules/gpl-2.0_1016.RULE index 83984500ee..107b609ba7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1016.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1016.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU General Public licence (GPL 2.0) \ No newline at end of file +GNU General Public licence ({{GPL 2.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1018.RULE b/src/licensedcode/data/rules/gpl-2.0_1018.RULE index 0151eb1fc2..7532769c09 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1018.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1018.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.5 ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_1019.RULE b/src/licensedcode/data/rules/gpl-2.0_1019.RULE index ea2f4acb2b..34f4d86a4a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1019.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1019.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.5.html ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_1020.RULE b/src/licensedcode/data/rules/gpl-2.0_1020.RULE index e187d8d958..f427e5e813 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1020.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1020.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.6.html ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_1021.RULE b/src/licensedcode/data/rules/gpl-2.0_1021.RULE index 3bfb862eca..9d27584b2c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1021.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1021.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.0 ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_1022.RULE b/src/licensedcode/data/rules/gpl-2.0_1022.RULE index 8e45719b70..4b97930f4c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1022.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1022.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.2 ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_1023.RULE b/src/licensedcode/data/rules/gpl-2.0_1023.RULE index 77388a0da2..b554b90bfa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1023.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1023.RULE @@ -1,22 +1,23 @@ --- license_expression: gpl-2.0 -is_license_text: yes +is_license_notice: yes relevance: 100 +is_deprecated: yes notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.4 --- The Linux Kernel is provided under: - SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note + SPDX-License-Identifier: {{GPL-2.0 WITH Linux-syscall-note }} -Being under the terms of the GNU General Public License version 2 only, +Being {{under the terms of the GNU General Public License version 2}} only, according with: - LICENSES/preferred/GPL-2.0 + {{ LICENSES/preferred/GPL-2.0}} With an explicit syscall exception, as stated at: - LICENSES/exceptions/Linux-syscall-note + {{LICENSES/exceptions/Linux-syscall-note }} In addition, other licenses may also apply. Please see: @@ -24,4 +25,4 @@ In addition, other licenses may also apply. Please see: for more details. -All contributions to the Linux Kernel are subject to this COPYING file. \ No newline at end of file +All contributions to the Linux Kernel are subject to this COPYING file. diff --git a/src/licensedcode/data/rules/gpl-2.0_1024.RULE b/src/licensedcode/data/rules/gpl-2.0_1024.RULE index a924b093ac..687d93052a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1024.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1024.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 --- -Valid-License-Identifier: GPL-2.0 \ No newline at end of file +Valid-License-Identifier: {{GPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1025.RULE b/src/licensedcode/data/rules/gpl-2.0_1025.RULE index 507ec69cd9..51a2c686b4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1025.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1025.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 --- -Valid-License-Identifier: GPL-2.0-only \ No newline at end of file +Valid-License-Identifier: {{GPL-2.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1026.RULE b/src/licensedcode/data/rules/gpl-2.0_1026.RULE index 8c0a00d715..f479791605 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1026.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1026.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.LICENSES.GPL-2.0.3 --- -GNU General Public License (GPL) version 2 only \ No newline at end of file +{{GNU General Public License (GPL) version 2}} only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1028.RULE b/src/licensedcode/data/rules/gpl-2.0_1028.RULE index c5ad68a2ca..ad743a8df1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1028.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1028.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -License: [GNU GPLv2](LICENSE) \ No newline at end of file +License: [{{GNU GPLv2}}](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1029.RULE b/src/licensedcode/data/rules/gpl-2.0_1029.RULE index fb21e29651..52b0011b53 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1029.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1029.RULE @@ -11,11 +11,11 @@ ignorable_holders: - the Free Software Foundation --- -The standard GPL V2 text: +The standard {{GPL V2}} text: - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 + {{GNU GENERAL PUBLIC LICENSE + Version 2}}, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA @@ -25,8 +25,8 @@ The standard GPL V2 text: Preamble The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free +freedom to share and change it. By contrast, the {{GNU General Public +License}} is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to @@ -73,7 +73,7 @@ patent must be licensed for everyone's free use or not licensed at all. modification follow. - GNU GENERAL PUBLIC LICENSE + {{GNU GENERAL PUBLIC LICENSE}} TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains @@ -315,16 +315,16 @@ the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License** as published by - the Free Software Foundation; either version 2 of the License, or + it under the terms of the {{GNU General Public License** as published by + the Free Software Foundation; either version 2 of the License}}, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/gpl-2.0_103.RULE b/src/licensedcode/data/rules/gpl-2.0_103.RULE index 39b340035b..edc30acb72 100644 --- a/src/licensedcode/data/rules/gpl-2.0_103.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_103.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.4 ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_1030.RULE b/src/licensedcode/data/rules/gpl-2.0_1030.RULE index bdec402cf6..ff46a96c91 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1030.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1030.RULE @@ -8,15 +8,15 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as published +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License with +You should have received a copy of the {{GNU General Public License}} with your Debian GNU system, in /usr/share/common-licenses/GPL-2, or with the Debian GNU source package as the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, diff --git a/src/licensedcode/data/rules/gpl-2.0_1031.RULE b/src/licensedcode/data/rules/gpl-2.0_1031.RULE index b65d880098..b7e57eeec6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1031.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1031.RULE @@ -8,17 +8,17 @@ notes: incorrect reference to GPL-1.0 text --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2, + it {{under the terms of the GNU General Public License version 2}}, as published by the Free Software Foundation. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-1'. \ No newline at end of file + On Debian systems, the complete text of the {{GNU General + Public License}} can be found in `/usr/share/common-licenses/GPL-1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1032.RULE b/src/licensedcode/data/rules/gpl-2.0_1032.RULE index 5572eeed2a..7f18b15bcc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1032.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1032.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2, + it {{under the terms of the GNU General Public License version 2}}, as published by the Free Software Foundation. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL \ No newline at end of file + On Debian systems, the complete text of the {{GNU General + Public License}} can be found in `/usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1033.RULE b/src/licensedcode/data/rules/gpl-2.0_1033.RULE index 7e1da07e32..18126543f9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1033.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1033.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the complete text of the GNU General Public License +On Debian systems, the complete text of the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1036.RULE b/src/licensedcode/data/rules/gpl-2.0_1036.RULE index 61fbe2d094..d20ee5423b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1036.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1036.RULE @@ -10,15 +10,15 @@ referenced_filenames: License: This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License with + You should have received a copy of the {{GNU General Public License}} with your Debian GNU/Linux system, in /usr/share/common-licenses/GPL-2, or with the Debian GNU/Linux gpm source package as the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, diff --git a/src/licensedcode/data/rules/gpl-2.0_1037.RULE b/src/licensedcode/data/rules/gpl-2.0_1037.RULE index 12ecf8c99d..7a6baf3fd0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1037.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1037.RULE @@ -8,15 +8,15 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License with + You should have received a copy of the {{GNU General Public License}} with your Debian GNU/Linux system, in /usr/share/common-licenses/GPL-2, or with the Debian GNU/Linux gpm source package as the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, diff --git a/src/licensedcode/data/rules/gpl-2.0_1038.RULE b/src/licensedcode/data/rules/gpl-2.0_1038.RULE index 57b8d0786e..d6e54b0424 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1038.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1038.RULE @@ -20,16 +20,16 @@ the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; either version 2 of the License}}, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/gpl-2.0_104.RULE b/src/licensedcode/data/rules/gpl-2.0_104.RULE index a7bd08ba45..4f4f8748c8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_104.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_104.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -software is licensed pursuant to the GNU General Public License version 2 (GPLv2), \ No newline at end of file +software is licensed pursuant to {{the GNU General Public License version 2}} (GPLv2), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1040.RULE b/src/licensedcode/data/rules/gpl-2.0_1040.RULE index 9974b763a0..71bb0d9889 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1040.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1040.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -On Debian GNU/Linux systems, the complete text of version 2 of - the GNU General Public License can be found in - `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of {{version 2 of + the GNU General Public License}} can be found in + `{{/usr/share/common-licenses/GPL-2}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1041.RULE b/src/licensedcode/data/rules/gpl-2.0_1041.RULE index e8e34a9a10..db5c45bf2d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1041.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1041.RULE @@ -5,6 +5,6 @@ relevance: 100 --- License: GPL-2 - On Debian GNU/Linux systems, the complete text of version 2 of - the GNU General Public License can be found in - `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of {{version 2 of + the GNU General Public License}} can be found in + `{{/usr/share/common-licenses/GPL-2}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1045.RULE b/src/licensedcode/data/rules/gpl-2.0_1045.RULE index f0a3e152c3..b34d18e1b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1045.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1045.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU General Public License v2 \ No newline at end of file +Licensed under the {{GNU General Public License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1046.RULE b/src/licensedcode/data/rules/gpl-2.0_1046.RULE index 6c260f6e12..f99e2c8826 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1046.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1046.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -Licensed under the GNU General Public License v2 (the "License"); +Licensed under the {{GNU General Public License v2}} (the "License"); you may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1047.RULE b/src/licensedcode/data/rules/gpl-2.0_1047.RULE index b573cbdd4a..12cba2396f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1047.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1047.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -LICENSE INFORMATION: GPL 2.0 \ No newline at end of file +LICENSE INFORMATION: {{GPL 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1048.RULE b/src/licensedcode/data/rules/gpl-2.0_1048.RULE index c23361e2ef..6861d58b7f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1048.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1048.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL v2.0 LICENSE. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE GPL v2.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{GPL v2}}.0 LICENSE. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE {{GPL v2}}.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1049.RULE b/src/licensedcode/data/rules/gpl-2.0_1049.RULE index 0be546aaa8..9064f13f09 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1049.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1049.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL v2.0 LICENSE. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE GPL v2.0. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{GPL v2}}.0 LICENSE. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE {{GPL v2}}.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1050.RULE b/src/licensedcode/data/rules/gpl-2.0_1050.RULE index 5aea368474..842693c552 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1050.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1050.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -GNU General Public License, V2.0 is applicable to the following component(s). \ No newline at end of file +{{GNU General Public License, V2.0}} is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1051.RULE b/src/licensedcode/data/rules/gpl-2.0_1051.RULE index 486361939a..cc3d7077d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1051.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1051.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -THE TEXT OF THE GPL v2 LICENSE IS SET FORTH IN THE APPENDIX OF THIS DOCUMENT. \ No newline at end of file +THE TEXT OF THE {{GPL v2}} LICENSE IS SET FORTH IN THE APPENDIX OF THIS DOCUMENT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1052.RULE b/src/licensedcode/data/rules/gpl-2.0_1052.RULE index b4da1d6fb4..8d8f63273a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1052.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1052.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA / \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1053.RULE b/src/licensedcode/data/rules/gpl-2.0_1053.RULE index 570653b3e3..bb05db89dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1053.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1053.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 minimum_coverage: 99 ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_1054.RULE b/src/licensedcode/data/rules/gpl-2.0_1054.RULE index d3185a1957..e6a93657e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1054.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1054.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - copyrighted by the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_1055.RULE b/src/licensedcode/data/rules/gpl-2.0_1055.RULE index 60b9fd8f60..8e56d44cf7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1055.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1055.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0 THE TEXT OF WHICH IS SET FORTH IN THE APPENDIX OF THIS DOCUMENT. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{GPL 2.0}} THE TEXT OF WHICH IS SET FORTH IN THE APPENDIX OF THIS DOCUMENT. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1056.RULE b/src/licensedcode/data/rules/gpl-2.0_1056.RULE index 6a2e16a3a1..320e1bf990 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1056.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1056.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0 THE TEXT OF WHICH IS SET FORTH IN THE APPENDIX OF THIS DOCUMENT. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{GPL 2.0}} THE TEXT OF WHICH IS SET FORTH IN THE APPENDIX OF THIS DOCUMENT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1057.RULE b/src/licensedcode/data/rules/gpl-2.0_1057.RULE index b6d17f9dc4..3309b0d419 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1057.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1057.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License, version 2, +it {{under the terms of the GNU General Public License, version 2}}, as published by the Free Software Foundation. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1058.RULE b/src/licensedcode/data/rules/gpl-2.0_1058.RULE index 96ff858015..a1866c420a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1058.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1058.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU General Public License, V 2.0 \ No newline at end of file +{{GNU General Public License, V 2}}.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1063.RULE b/src/licensedcode/data/rules/gpl-2.0_1063.RULE index e97db96064..eb7caf05cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1063.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1063.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is licensed under GPL v2. \ No newline at end of file +This file is licensed under {{GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1066.RULE b/src/licensedcode/data/rules/gpl-2.0_1066.RULE index 7ebd3e722a..ca124cf334 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1066.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1066.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under GNU GPL v2 \ No newline at end of file +under {{GNU GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1067.RULE b/src/licensedcode/data/rules/gpl-2.0_1067.RULE index 18a3252d77..0b8bb32001 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1067.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1067.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the terms GNU GPL v2 \ No newline at end of file +under the terms {{GNU GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1068.RULE b/src/licensedcode/data/rules/gpl-2.0_1068.RULE index c5f877f8d6..f0b465cce0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1068.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1068.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under GNU GPL v2 \ No newline at end of file +licensed under {{GNU GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_107.RULE b/src/licensedcode/data/rules/gpl-2.0_107.RULE index 642ab192d6..785e7b72ee 100644 --- a/src/licensedcode/data/rules/gpl-2.0_107.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_107.RULE @@ -15,15 +15,15 @@ notes: | --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation; version 2 +modify it under the terms of the {{GNU General Public License +as published by the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1070.RULE b/src/licensedcode/data/rules/gpl-2.0_1070.RULE index 1d076116df..d5e9a0a212 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1070.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1070.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -THE GPL 2.0 \ No newline at end of file +THE {{GPL 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1071.RULE b/src/licensedcode/data/rules/gpl-2.0_1071.RULE index 73df23558b..5a3622de78 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1071.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1071.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -UNDER THE TERMS OF THE GPL 2.0 \ No newline at end of file +UNDER THE TERMS OF THE {{GPL 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1072.RULE b/src/licensedcode/data/rules/gpl-2.0_1072.RULE index 271fe41fce..3fddf95a9a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1072.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1072.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE GPL 2.0. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{GPL 2.0}}. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE {{GPL 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1073.RULE b/src/licensedcode/data/rules/gpl-2.0_1073.RULE index 572e86dd21..da981c3303 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1073.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1073.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE GPL 2.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{GPL 2.0}}. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE {{GPL 2.0}}. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1074.RULE b/src/licensedcode/data/rules/gpl-2.0_1074.RULE index 034bafffc4..9f5fc418d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1074.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1074.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -License : GPL 2.0 \ No newline at end of file +License (GPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1075.RULE b/src/licensedcode/data/rules/gpl-2.0_1075.RULE index 7c8e79dc21..da9a87e9ba 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1075.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1075.RULE @@ -5,5 +5,5 @@ relevance: 100 --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License, version 2, +it {{under the terms of the GNU General Public License, version 2}}, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1077.RULE b/src/licensedcode/data/rules/gpl-2.0_1077.RULE index 005b26270b..15822dca5e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1077.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1077.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -FULL TEXT OF THE GPL 2.0 LICENSE \ No newline at end of file +FULL TEXT OF THE {{GPL 2.0 LICENSE}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1078.RULE b/src/licensedcode/data/rules/gpl-2.0_1078.RULE index a437c4a1c7..6fea8625c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1078.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1078.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -UNDER THE TERMS OF THE GPL 2.0 LICENSE \ No newline at end of file +UNDER THE TERMS OF THE {{GPL 2.0 LICENSE}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1079.RULE b/src/licensedcode/data/rules/gpl-2.0_1079.RULE index f8d219c874..d13f1d6bd6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1079.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1079.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0 LICENSE. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE GPL 2.0 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{GPL 2.0 LICENSE}}. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE {{GPL 2.0 LICENSE}}. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_108.RULE b/src/licensedcode/data/rules/gpl-2.0_108.RULE index 7d41b6297f..477e46d574 100644 --- a/src/licensedcode/data/rules/gpl-2.0_108.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_108.RULE @@ -6,8 +6,8 @@ referenced_filenames: --- This documentation is free software; you can redistribute - it and/or modify it under the terms of the GNU General Public - License version 2. + it and/or modify it {{under the terms of the GNU General Public + License version 2}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied diff --git a/src/licensedcode/data/rules/gpl-2.0_1080.RULE b/src/licensedcode/data/rules/gpl-2.0_1080.RULE index bc3b89d02b..a596fab2bd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1080.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1080.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{GPL 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1081.RULE b/src/licensedcode/data/rules/gpl-2.0_1081.RULE index 17c202deb1..83ecbb9a96 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1081.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1081.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE GPL 2.0. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{GPL 2.0}}. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE {{GPL 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1082.RULE b/src/licensedcode/data/rules/gpl-2.0_1082.RULE index ffdf842d20..04f79b6b79 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1082.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1082.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE GPL 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE GPL 2.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{GPL 2.0}}. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE {{GPL 2.0}}. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1083.RULE b/src/licensedcode/data/rules/gpl-2.0_1083.RULE index fd8dcbce3a..d01a9bb328 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1083.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1083.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2.0 as published by +it {{under the terms of the GNU General Public License version 2}}.0 as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License version 2 for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the +GNU General Public License version 2}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1084.RULE b/src/licensedcode/data/rules/gpl-2.0_1084.RULE index 6fc02cc27c..75c48f9a8c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1084.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1084.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as published by +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License version 2 for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the +GNU General Public License version 2}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1085.RULE b/src/licensedcode/data/rules/gpl-2.0_1085.RULE index c977431afa..704d77a84b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1085.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1085.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as published by +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License version 2.0 for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the +GNU General Public License version 2}}.0 for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1086.RULE b/src/licensedcode/data/rules/gpl-2.0_1086.RULE index 83f9c4c3d0..e354cda13c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1086.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1086.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2.0 as published by +it {{under the terms of the GNU General Public License version 2}}.0 as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License version 2.0 for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the +GNU General Public License version 2}}.0 for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1087.RULE b/src/licensedcode/data/rules/gpl-2.0_1087.RULE index a079379754..5982e70ac8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1087.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1087.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GPL-2.0 - GNU General Public License version 2 \ No newline at end of file +{{GPL-2.0}} - {{GNU General Public License version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_109.RULE b/src/licensedcode/data/rules/gpl-2.0_109.RULE index 3ac9663365..e9899a6aa4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_109.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_109.RULE @@ -8,4 +8,4 @@ referenced_filenames: notes: cpufrequtils is gpl-2.0 only --- -This file is distributed under the same license as the {{cpufrequtils}} package. \ No newline at end of file +This file is {{distributed under the same license as the cpufrequtils package}}. diff --git a/src/licensedcode/data/rules/gpl-2.0_1092.RULE b/src/licensedcode/data/rules/gpl-2.0_1092.RULE index 3cad9648e4..b7de9e828d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1092.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1092.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the complete text of the GNU General -Public License can be found in '/usr/share/common-licenses/GPL-2' \ No newline at end of file +On Debian systems, the complete text of the {{GNU General +Public License}} can be found in '/usr/share/common-licenses/GPL-2' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1093.RULE b/src/licensedcode/data/rules/gpl-2.0_1093.RULE index dd3020a8f0..dacae269c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1093.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1093.RULE @@ -6,5 +6,5 @@ notes: This is a choice notice --- * Alternatively, you may choose to be licensed under the terms of the - * GNU General Public License ("GPL") version 2 as published by the Free + * {{GNU General Public License ("GPL") version 2}} as published by the Free * Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1094.RULE b/src/licensedcode/data/rules/gpl-2.0_1094.RULE index 8d2b51dc41..324011fedb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1094.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1094.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.html --- -this file can be distributed under the terms of the GNU General -Public License V2 as published by the Free Software Foundation and can be +this file can be distributed under the terms of the {{GNU General +Public License V2}} as published by the Free Software Foundation and can be found at http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1096.RULE b/src/licensedcode/data/rules/gpl-2.0_1096.RULE index 52e5e4bbc2..609e8aaee6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1096.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1096.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- The library is free software: you can redistribute it and/or -modify it under the terms of the GNU General Public License version 2 +modify it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. The library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with the library. If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1097.RULE b/src/licensedcode/data/rules/gpl-2.0_1097.RULE index 894f81c03a..3720e5c793 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1097.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1097.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- The library is free software: you can redistribute it and/or -modify it under the terms of the GNU General Public License version 2 +modify it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. The library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with the library. If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1098.RULE b/src/licensedcode/data/rules/gpl-2.0_1098.RULE index 4a6fdedc7a..8f149b54e0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1098.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1098.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This library is free software: you can redistribute it and/or -modify it under the terms of the GNU General Public License version 2 +modify it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this library. If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1099.RULE b/src/licensedcode/data/rules/gpl-2.0_1099.RULE index 90a267c02f..ba2f260960 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1099.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1099.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This library is free software: you can redistribute it and/or -modify it under the terms of the GNU General Public License version 2 +modify it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this library. If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_11.RULE b/src/licensedcode/data/rules/gpl-2.0_11.RULE index a848007b3f..5f8823fd44 100644 --- a/src/licensedcode/data/rules/gpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_11.RULE @@ -3,7 +3,7 @@ license_expression: gpl-2.0 is_license_notice: yes --- -You should have received a copy of the GNU General Public License with the - Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL-2; if +You should have received a copy of the {{GNU General Public License}} with the + Debian GNU/Linux distribution in file {{/usr/share/common-licenses/GPL-2}}; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1100.RULE b/src/licensedcode/data/rules/gpl-2.0_1100.RULE index f4bcb6adad..9940861a99 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1100.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1100.RULE @@ -10,11 +10,11 @@ notes: this project is using a gpl-2.0 COPYING. It is not clear if the v2 or v2 --- You may redistribute copies of -update-mime-database under the terms of the GNU General Public License. +update-mime-database under the terms of the {{GNU General Public License}}. update-mime-database comes with ABSOLUTELY NO WARRANTY, to the extent permitted by law You may redistribute copies of update-mime-database -under the terms of the GNU General Public License. +under the terms of the {{GNU General Public License}}. For more information about these matters, see the file named COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1101.RULE b/src/licensedcode/data/rules/gpl-2.0_1101.RULE index ba96f7be38..e99a5542df 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1101.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1101.RULE @@ -10,11 +10,11 @@ notes: this project is using a gpl-2.0 COPYING. It is not clear if the v2 or v2 --- You may redistribute copies of -under the terms of the GNU General Public License. +under the terms of the {{GNU General Public License}}. comes with ABSOLUTELY NO WARRANTY, to the extent permitted by law You may redistribute copies of -under the terms of the GNU General Public License. +under the terms of the {{GNU General Public License}}. For more information about these matters, see the file named COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1102.RULE b/src/licensedcode/data/rules/gpl-2.0_1102.RULE index 41aed0e5d5..f1856b5c3e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1102.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1102.RULE @@ -12,6 +12,6 @@ The freedesktop.org shared MIME database (this file) was created by merging several existing MIME databases (all released under the GPL). It comes with ABSOLUTELY NO WARRANTY, to the extent permitted by law. You may -redistribute copies of update-mime-database under the terms of the GNU General -Public License. For more information about these matters, see the file named +redistribute copies of update-mime-database under the terms of the {{GNU General +Public License}}. For more information about these matters, see the file named COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1103.RULE b/src/licensedcode/data/rules/gpl-2.0_1103.RULE index d2459dec50..c3c2715151 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1103.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1103.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license="the GNU General Public License version 2", \ No newline at end of file +license="{{the GNU General Public License version 2}}", \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1104.RULE b/src/licensedcode/data/rules/gpl-2.0_1104.RULE index b9a15b8df7..98c4377157 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1104.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1104.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt --- -licensed under the GNU General Public License, version 2, June 1991. -The full text of the GNU General Public License, Version 2, June 1991, is available at: +licensed under {{the GNU General Public License, version 2}}, June 1991. +The full text of {{the GNU General Public License, Version 2}}, June 1991, is available at: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1106.RULE b/src/licensedcode/data/rules/gpl-2.0_1106.RULE index fba520be2e..553d651b84 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1106.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1106.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms GNU GPL v2 \ No newline at end of file +licensed under the terms {{GNU GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1107.RULE b/src/licensedcode/data/rules/gpl-2.0_1107.RULE index fc78591b1c..a58cdf22c1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1107.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1107.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed UNDER THE TERMS OF THE GPL 2.0 \ No newline at end of file +licensed UNDER THE TERMS OF THE {{GPL 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1108.RULE b/src/licensedcode/data/rules/gpl-2.0_1108.RULE index 2f9211e088..065a487f04 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1108.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1108.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed UNDER THE TERMS OF THE GPL 2.0 LICENSE \ No newline at end of file +licensed UNDER THE TERMS OF THE {{GPL 2.0 LICENSE}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1109.RULE b/src/licensedcode/data/rules/gpl-2.0_1109.RULE index 3dd23710ac..59c4d3fb4a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1109.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1109.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of GNU GPL v2 \ No newline at end of file +licensed under the terms of {{GNU GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1111.RULE b/src/licensedcode/data/rules/gpl-2.0_1111.RULE index 74c0aaff38..cb37f41d08 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1111.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1111.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU General Public License (GPL) version 2 \ No newline at end of file +licensed under the terms of the {{GNU General Public License (GPL) version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1112.RULE b/src/licensedcode/data/rules/gpl-2.0_1112.RULE index 30c9586c96..d7ef00c161 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1112.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1112.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU General Public License version 2 only, \ No newline at end of file +licensed {{under the terms of the GNU General Public License version 2}} only, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1113.RULE b/src/licensedcode/data/rules/gpl-2.0_1113.RULE index b0cd3edc60..30b57fa4f7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1113.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1113.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU General Public License version 2 (the “GPL”), \ No newline at end of file +licensed {{under the terms of the GNU General Public License version 2}} (the “GPL”), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1114.RULE b/src/licensedcode/data/rules/gpl-2.0_1114.RULE index 961bb148eb..d0c7b259e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1114.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1114.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU GPL v2 \ No newline at end of file +licensed under the terms of the {{GNU GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1116.RULE b/src/licensedcode/data/rules/gpl-2.0_1116.RULE index 29c5c1ddfa..adf37c8b04 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1116.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1116.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of version 2 of the GNU General Public License \ No newline at end of file +licensed under the terms of {{version 2 of the GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1117.RULE b/src/licensedcode/data/rules/gpl-2.0_1117.RULE index 36896c2bbc..b2a77dcf36 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1117.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1117.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -licensed under the terms of the GNU General Public License Version 2, you will +licensed {{under the terms of the GNU General Public License Version 2}}, you will find a copy of this license in the COPYING file included in the source package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1119.RULE b/src/licensedcode/data/rules/gpl-2.0_1119.RULE index d717f0fda7..bd815316c4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1119.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1119.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This is free software; you can redistribute it and/or modify - it under the terms of version 2 of the GNU General Public - License version 2 as published by the Free Software Foundation. + it under the terms of version 2 of {{the GNU General Public + License version 2}} as published by the Free Software Foundation. . This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_112.RULE b/src/licensedcode/data/rules/gpl-2.0_112.RULE index bc6c661cb4..e0b210842e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_112.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_112.RULE @@ -5,5 +5,5 @@ referenced_filenames: - linux/COPYING --- -Distributed under the terms of Version 2 of the GNU General Public -License, as defined in linux/COPYING. \ No newline at end of file +Distributed under the terms of {{Version 2 of the GNU General Public +License}}, as defined in linux/COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1120.RULE b/src/licensedcode/data/rules/gpl-2.0_1120.RULE index e612a26d8b..8095c2a45c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1120.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1120.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the complete text of the GNU General Public - License version 2 can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the complete text of {{the GNU General Public + License version 2}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1121.RULE b/src/licensedcode/data/rules/gpl-2.0_1121.RULE index 3a14e874ba..a3da51fb19 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1121.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1121.RULE @@ -4,7 +4,7 @@ is_license_text: yes minimum_coverage: 90 --- -is distributed under the GNU General Public License version 2 +is distributed under {{the GNU General Public License version 2}} and is also available under alternative licenses negotiated directly with . If you obtained under the GPL, then the GPL applies to all loadable modules used on your system as well, diff --git a/src/licensedcode/data/rules/gpl-2.0_1122.RULE b/src/licensedcode/data/rules/gpl-2.0_1122.RULE index f359326c85..7047bd694b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1122.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1122.RULE @@ -14,7 +14,7 @@ The Debian specific changes are and {{distributed under the terms of the GNU On Debian GNU/Linux systems, the {{complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL}}'. - A copy of the {{GNU General Public License is also available}} at + A copy of the GNU General Public License is also available at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file + St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/gpl-2.0_1124.RULE b/src/licensedcode/data/rules/gpl-2.0_1124.RULE index 0678d0161f..b811dba12f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1124.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1124.RULE @@ -6,4 +6,4 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -The GNU General Public License v2 text is contained in /usr/share/common-licenses/GPL-2. \ No newline at end of file +The {{GNU General Public License v2}} text is contained in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1125.RULE b/src/licensedcode/data/rules/gpl-2.0_1125.RULE index c3bafd9c80..a1594a008c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1125.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1125.RULE @@ -7,15 +7,15 @@ referenced_filenames: --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 + * it {{under the terms of the GNU General Public License version 2}} * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program (see the file COPYING included with this * distribution); if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1128.RULE b/src/licensedcode/data/rules/gpl-2.0_1128.RULE index 297fbeb604..eb78899b92 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1128.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1128.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is licensed under the GNU GPL v2. \ No newline at end of file +This code is licensed under the {{GNU GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1129.RULE b/src/licensedcode/data/rules/gpl-2.0_1129.RULE index 855b60c25f..4f023d8b36 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1129.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1129.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: seen in some SPDX templates --- -insert GPL v2 text here \ No newline at end of file +insert {{GPL v2}} text here \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_113.RULE b/src/licensedcode/data/rules/gpl-2.0_113.RULE index a8019c416d..1af8196be6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_113.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_113.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or NON -INFRINGEMENT. See the GNU General Public License for more details. +INFRINGEMENT. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1130.RULE b/src/licensedcode/data/rules/gpl-2.0_1130.RULE index e24af271f5..806a51ac65 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1130.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1130.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 notes: Seen in vmware tools. Truncated texts ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_1131.RULE b/src/licensedcode/data/rules/gpl-2.0_1131.RULE index 502db4c6e2..bef2882953 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1131.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1131.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as +it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1132.RULE b/src/licensedcode/data/rules/gpl-2.0_1132.RULE index 80cc4fe2f2..115834009d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1132.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1132.RULE @@ -5,14 +5,14 @@ relevance: 100 --- * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation version 2 and no later version. + * under the terms of the {{GNU General Public License as published by the + * Free Software Foundation version 2}} and no later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} * for more details. * - * You should have received a copy of the GNU General Public License along + * You should have received a copy of the {{GNU General Public License}} along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1133.RULE b/src/licensedcode/data/rules/gpl-2.0_1133.RULE index 519a140f4d..3ae5bbaaaa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1133.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1133.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The Linux kernel modules are released under the GPL v2 \ No newline at end of file +The Linux kernel modules are released under the {{GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1134.RULE b/src/licensedcode/data/rules/gpl-2.0_1134.RULE index 6f2af4cbe7..c132a25776 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1134.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1134.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GPL v2 \ No newline at end of file +the {{GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1135.RULE b/src/licensedcode/data/rules/gpl-2.0_1135.RULE index 3f7e9d7f4c..6cf2bec535 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1135.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1135.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The code is being released under GPL v2 \ No newline at end of file +The code is being released under {{GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1137.RULE b/src/licensedcode/data/rules/gpl-2.0_1137.RULE index 5ca76d31ac..9943e60070 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1137.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1137.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This package, the EXT2 filesystem utilities, is protected by the GNU -General Public License. \ No newline at end of file +This package, the EXT2 filesystem utilities, is protected by the {{GNU +General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1138.RULE b/src/licensedcode/data/rules/gpl-2.0_1138.RULE index a223e19e23..bca0e11bcf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1138.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1138.RULE @@ -6,8 +6,8 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation, version 2}} of the License. . The full text of the GPL is distributed as in /usr/share/common-licenses/GPL-2 on Debian systems. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1140.RULE b/src/licensedcode/data/rules/gpl-2.0_1140.RULE index 9042715f97..9727e5b1d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1140.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1140.RULE @@ -5,9 +5,9 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems, the full text of the GNU General Public License -version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the full text of {{the GNU General Public License +version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1141.RULE b/src/licensedcode/data/rules/gpl-2.0_1141.RULE index 690f692472..5680d041da 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1141.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1141.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the full text of the GNU General Public License -version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the full text of {{the GNU General Public License +version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1142.RULE b/src/licensedcode/data/rules/gpl-2.0_1142.RULE index 6bc0873acb..ad1d2370f1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1142.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1142.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -free software licensed under the GNU General Public License version 2. \ No newline at end of file +free software licensed under {{the GNU General Public License version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1143.RULE b/src/licensedcode/data/rules/gpl-2.0_1143.RULE index a7dda18e91..18d8c5610d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1143.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1143.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License, version 2, as + it {{under the terms of the GNU General Public License, version 2}}, as published by the Free Software Foundation. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. \ No newline at end of file + {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1144.RULE b/src/licensedcode/data/rules/gpl-2.0_1144.RULE index 74c4725428..7cb4530f47 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1144.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1144.RULE @@ -6,13 +6,13 @@ referenced_filenames: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License, version 2, as + it {{under the terms of the GNU General Public License, version 2}}, as published by the Free Software Foundation. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - The complete text of the GNU General Public License version 2 + The complete text of {{the GNU General Public License version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1145.RULE b/src/licensedcode/data/rules/gpl-2.0_1145.RULE index 5e5f20e611..1eb55bdb9b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1145.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1145.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -The complete text of the GNU General Public License version 2 +The complete text of {{the GNU General Public License version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1146.RULE b/src/licensedcode/data/rules/gpl-2.0_1146.RULE index 903b9f7236..f75bf61b1f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1146.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1146.RULE @@ -7,13 +7,13 @@ referenced_filenames: License: GPL-2 This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License, version 2, as + it {{under the terms of the GNU General Public License, version 2}}, as published by the Free Software Foundation. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - The complete text of the GNU General Public License version 2 + The complete text of {{the GNU General Public License version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1147.RULE b/src/licensedcode/data/rules/gpl-2.0_1147.RULE index b6cb825d89..64c8d7d70c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1147.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1147.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html --- -* GNU General Public License, version 2 +* {{GNU General Public License, version 2}} * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1148.RULE b/src/licensedcode/data/rules/gpl-2.0_1148.RULE index 668c5a6388..2e3ef5c28e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1148.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1148.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License 2 as published by + it under the terms of the {{GNU General Public License 2}} as published by the Free Software Foundation. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1149.RULE b/src/licensedcode/data/rules/gpl-2.0_1149.RULE index bb95b6262e..dee4a17970 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1149.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1149.RULE @@ -8,16 +8,16 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License 2 as published by + it under the terms of the {{GNU General Public License 2}} as published by the Free Software Foundation. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see - On Debian systems, the complete text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file + On Debian systems, the complete text of {{the GNU General + Public License version 2}} can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_115.RULE b/src/licensedcode/data/rules/gpl-2.0_115.RULE index d40a2e115d..679d5faf9b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_115.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_115.RULE @@ -7,14 +7,14 @@ notes: the "kernel sources" reference means we have a GPL 2 like in Linux based on GPL'ed 2.6 kernel sources This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1150.RULE b/src/licensedcode/data/rules/gpl-2.0_1150.RULE index 34d617554c..af6dfdf08e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1150.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1150.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This program is released under the GNU General Public License (GPL), - version 2. \ No newline at end of file +This program is released under the {{GNU General Public License (GPL), + version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1151.RULE b/src/licensedcode/data/rules/gpl-2.0_1151.RULE index debe2d96cf..54df6d3c3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1151.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1151.RULE @@ -5,9 +5,9 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -This program is released under the GNU General Public License (GPL), - version 2. +This program is released under the {{GNU General Public License (GPL), + version 2}}. - On Debian GNU/Linux systems, the complete text of the GNU General - Public License version 2 can be found in + On Debian GNU/Linux systems, the complete text of {{the GNU General + Public License version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1152.RULE b/src/licensedcode/data/rules/gpl-2.0_1152.RULE index 7cedc88d32..546a497855 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1152.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1152.RULE @@ -5,6 +5,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian GNU/Linux systems, the complete text of the GNU General - Public License version 2 can be found in +On Debian GNU/Linux systems, the complete text of {{the GNU General + Public License version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1154.RULE b/src/licensedcode/data/rules/gpl-2.0_1154.RULE index 2b55437fb5..688652b3dc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1154.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1154.RULE @@ -5,4 +5,4 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.htm --- -Licensed under the GNU General Public License (GPL) Version 2, June 1991:http://www.gnu.org/licenses/gpl-2.0.htm \ No newline at end of file +Licensed under the {{GNU General Public License (GPL) Version 2}}, June 1991:http://www.gnu.org/licenses/gpl-2.0.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1155.RULE b/src/licensedcode/data/rules/gpl-2.0_1155.RULE index ae78c85468..3a30c4373d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1155.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1155.RULE @@ -6,19 +6,19 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 dated June. 1991. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}} dated June. 1991. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . -On Debian GNU/Linux systems, the complete text of the GNU General -Public License, version 2, can be found in +On Debian GNU/Linux systems, the complete text of {{the GNU General +Public License, version 2}}, can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1156.RULE b/src/licensedcode/data/rules/gpl-2.0_1156.RULE index 8c74ea7079..f58d6aaa09 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1156.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1156.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under GNU GPLv2.0 \ No newline at end of file +licensed under {{GNU GPLv2}}.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1157.RULE b/src/licensedcode/data/rules/gpl-2.0_1157.RULE index 9ac90b84cf..d8866cbeaf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1157.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1157.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the complete text of the GNU General Public License +On Debian systems, the complete text of the {{GNU General Public License}} can be found at '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1158.RULE b/src/licensedcode/data/rules/gpl-2.0_1158.RULE index 07bf243f72..fc8761c93f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1158.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1158.RULE @@ -5,6 +5,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the complete text of the version of the GNU General - Public License distributed with Doxygen can be found in +On Debian systems, the complete text of the version of the {{GNU General + Public License}} distributed with Doxygen can be found in ‘/usr/share/common-licenses/GPL-2’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1159.RULE b/src/licensedcode/data/rules/gpl-2.0_1159.RULE index 17366614f0..197d2be72a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1159.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1159.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian GNU/Linux systems, the text of the GNU General Public License, -version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the text of {{the GNU General Public License, +version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_116.RULE b/src/licensedcode/data/rules/gpl-2.0_116.RULE index 5081a369f3..658d8b5719 100644 --- a/src/licensedcode/data/rules/gpl-2.0_116.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_116.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 90 --- -* This file may be distributed under the terms of the GNU General Public - * License version 2. \ No newline at end of file +* This file may be {{distributed under the terms of the GNU General Public + * License version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1160.RULE b/src/licensedcode/data/rules/gpl-2.0_1160.RULE index 0c9377bb49..413faea91f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1160.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1160.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the full text of the GNU General Public License +On Debian systems, the full text of the {{GNU General Public License}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1161.RULE b/src/licensedcode/data/rules/gpl-2.0_1161.RULE index 9b0aad6b6b..4cf27803fd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1161.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1161.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0 is_license_notice: yes --- -* This file is part of the Genode OS framework, which is distributed - * under the terms of the GNU General Public License version 2. \ No newline at end of file +* This file is part of the Genode OS framework, which is {{distributed + * under the terms of the GNU General Public License version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1162.RULE b/src/licensedcode/data/rules/gpl-2.0_1162.RULE index 8077965c27..662c9d636d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1162.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1162.RULE @@ -5,6 +5,6 @@ referenced_filenames: - COPYING --- -Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) - * Version 2 (June 1991). See the "COPYING" file distributed with this software +Linux is distributed under the {{GNU GENERAL PUBLIC LICENSE (GPL) + * Version 2}} (June 1991). See the "COPYING" file distributed with this software * for more info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1163.RULE b/src/licensedcode/data/rules/gpl-2.0_1163.RULE index b1a3138e61..7b46d078fe 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1163.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1163.RULE @@ -6,4 +6,4 @@ referenced_filenames: --- distributed under the terms of the * - * GNU General Public License 2. Please see the COPYING file for details. \ No newline at end of file + * {{GNU General Public License 2}}. Please see the COPYING file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1164.RULE b/src/licensedcode/data/rules/gpl-2.0_1164.RULE index 52755a79a0..6e1c08cf96 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1164.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1164.RULE @@ -5,6 +5,6 @@ ignorable_urls: - https://www.kernel.org/pub/linux/kernel/COPYING --- -based on Linux, which is licensed under the -GNU General Public License version 2, see: +based on Linux, which is licensed under {{the +GNU General Public License version 2}}, see: https://www.kernel.org/pub/linux/kernel/COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1165.RULE b/src/licensedcode/data/rules/gpl-2.0_1165.RULE index 52b97efc6a..5c076f5246 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1165.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1165.RULE @@ -6,18 +6,18 @@ referenced_filenames: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General + Public License}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1166.RULE b/src/licensedcode/data/rules/gpl-2.0_1166.RULE index 266941cbed..34fc18e086 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1166.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1166.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General + Public License}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1167.RULE b/src/licensedcode/data/rules/gpl-2.0_1167.RULE index e3701dc722..218108277b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1167.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1167.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1168.RULE b/src/licensedcode/data/rules/gpl-2.0_1168.RULE index 05f4eeab75..560daf976b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1168.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1168.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- License: GPL-2 - On Debian GNU/Linux systems the full text of the GNU GPL v2 can be found + On Debian GNU/Linux systems the full text of the {{GNU GPL v2}} can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1169.RULE b/src/licensedcode/data/rules/gpl-2.0_1169.RULE index 746f31e1a5..e891742516 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1169.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1169.RULE @@ -5,23 +5,23 @@ relevance: 100 --- The package scripts are copyright (C) , written by - and licensed under GPL v2. + and licensed under {{GPL v2}}. Copyright: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian GNU/Linux systems, the {{complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1170.RULE b/src/licensedcode/data/rules/gpl-2.0_1170.RULE index 58d78be3c7..3b04092338 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1170.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1170.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License 2 as published by + it under the terms of the {{GNU General Public License 2}} as published by the Free Software Foundation. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see - On Debian GNU/Linux systems, the complete text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file + On Debian GNU/Linux systems, the complete text of {{the GNU General + Public License version 2}} can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1171.RULE b/src/licensedcode/data/rules/gpl-2.0_1171.RULE index ad7274b2d9..64d174244b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1171.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1171.RULE @@ -6,9 +6,9 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian GNU/Linux systems, the full text of the GNU General Public License -version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the full text of {{the GNU General Public License +version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1172.RULE b/src/licensedcode/data/rules/gpl-2.0_1172.RULE index 343139421e..ed748d54b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1172.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1172.RULE @@ -6,6 +6,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian GNU/Linux systems, the complete text of the version of the GNU General - Public License distributed with Doxygen can be found in +On Debian GNU/Linux systems, the complete text of the version of the {{GNU General + Public License}} distributed with Doxygen can be found in ‘/usr/share/common-licenses/GPL-2’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1173.RULE b/src/licensedcode/data/rules/gpl-2.0_1173.RULE index 5c53c3675a..c0d34aab91 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1173.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1173.RULE @@ -7,6 +7,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -The programs in this package are distributed under the terms of the GNU General Public License, -version 2 as distributed by the Free Software Foundation. +The programs in this package are {{distributed under the terms of the GNU General Public License, +version 2}} as distributed by the Free Software Foundation. On Debian GNU/Linux systems, a copy of this license may be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1174.RULE b/src/licensedcode/data/rules/gpl-2.0_1174.RULE index 4c77ac7b18..e68fda775d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1174.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1174.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL-2}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1175.RULE b/src/licensedcode/data/rules/gpl-2.0_1175.RULE index d101f48238..50bb2004cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1175.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1175.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian GNU/Linux systems, the full text of the GNU General Public License +On Debian GNU/Linux systems, the full text of the {{GNU General Public License}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1176.RULE b/src/licensedcode/data/rules/gpl-2.0_1176.RULE index 46d589bc89..1e4d0d459e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1176.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1176.RULE @@ -4,23 +4,23 @@ is_license_notice: yes relevance: 100 --- -and licensed under GPL v2. +and licensed under {{GPL v2}}. Copyright: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian GNU/Linux systems, the {{complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1177.RULE b/src/licensedcode/data/rules/gpl-2.0_1177.RULE index dc8b98111a..4a1ec5f062 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1177.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1177.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -You are free to distribute this software under the terms of the GNU -General Public License, version 2. On Debian GNU/Linux systems, the complete text -of the GNU General Public License can be found in the file -`/usr/share/common-licenses/GPL-2'. \ No newline at end of file +You are free to distribute this software {{under the terms of the GNU +General Public License, version 2}}. On Debian GNU/Linux systems, the complete text +of the {{GNU General Public License}} can be found in the file +{{`/usr/share/common-licenses/GPL-2'}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1178.RULE b/src/licensedcode/data/rules/gpl-2.0_1178.RULE index 594759325d..9d8213d430 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1178.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1178.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian GNU/Linux systems, the complete text of the GNU General Public License +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} can be found at '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1179.RULE b/src/licensedcode/data/rules/gpl-2.0_1179.RULE index b488da8fe6..27bb47a8c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1179.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1179.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian GNU/Linux systems a full copy of the GNU General Public License, GPL, can be +On Debian GNU/Linux systems a full copy of the {{GNU General Public License, GPL}}, can be found in the file /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_118.RULE b/src/licensedcode/data/rules/gpl-2.0_118.RULE index 11d14ce5b5..b3308e9b93 100644 --- a/src/licensedcode/data/rules/gpl-2.0_118.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_118.RULE @@ -5,15 +5,15 @@ minimum_coverage: 80 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public -License v2 as published by the Free Software Foundation. +modify it under the terms of the {{GNU General Public +License v2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with this program; if not, write to the +You should have received a copy of the {{GNU General Public +License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 021110-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1180.RULE b/src/licensedcode/data/rules/gpl-2.0_1180.RULE index 3e5aeb234a..ecfd7d0d64 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1180.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1180.RULE @@ -5,18 +5,18 @@ relevance: 100 --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian GNU/Linux systems, the {{complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1181.RULE b/src/licensedcode/data/rules/gpl-2.0_1181.RULE index e02709b807..61be86dae5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1181.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1181.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian GNU/Linux systems the full text of the GNU GPL v2 can be found +On Debian GNU/Linux systems the full text of the {{GNU GPL v2}} can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1182.RULE b/src/licensedcode/data/rules/gpl-2.0_1182.RULE index 5133bc177b..8ccfbd0e60 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1182.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1182.RULE @@ -7,18 +7,18 @@ relevance: 100 License: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-2}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1183.RULE b/src/licensedcode/data/rules/gpl-2.0_1183.RULE index a630f2bfaa..ae2ef09eda 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1183.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1183.RULE @@ -8,17 +8,17 @@ notes: incorrect reference to GPL-1.0 text --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2, + it {{under the terms of the GNU General Public License version 2}}, as published by the Free Software Foundation. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-1'. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General + Public License}} can be found in `/usr/share/common-licenses/GPL-1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1184.RULE b/src/licensedcode/data/rules/gpl-2.0_1184.RULE index 7ef2180809..8c9631293f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1184.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1184.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2, + it {{under the terms of the GNU General Public License version 2}}, as published by the Free Software Foundation. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General + Public License}} can be found in `/usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1185.RULE b/src/licensedcode/data/rules/gpl-2.0_1185.RULE index 10524570bc..e812104dd1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1185.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1185.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU General Public License +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1186.RULE b/src/licensedcode/data/rules/gpl-2.0_1186.RULE index 18c7645b7e..c2d22ebcd4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1186.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1186.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian GNU/Linux systems, the full text of the GNU General Public License -version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the full text of {{the GNU General Public License +version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1187.RULE b/src/licensedcode/data/rules/gpl-2.0_1187.RULE index 9e3f7031fd..fc9cd8c0e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1187.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1187.RULE @@ -12,12 +12,12 @@ ignorable_emails: License for all components is: -- - GNU General Public License, version 2 (GPL-2) + {{GNU General Public License, version 2}} (GPL-2) | This file is part of the Qt Script Generator project on Trolltech Labs. | - | This file may be used under the terms of the GNU General Public - | License version 2.0 as published by the Free Software Foundation + | This file may be used {{under the terms of the GNU General Public + | License version 2}}.0 as published by the Free Software Foundation | and appearing in the file LICENSE.GPL included in the packaging of | this file. Please review the following information to ensure GNU | General Public Licensing requirements will be met: @@ -31,6 +31,6 @@ License for all components is: | This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - On Debian GNU/Linux systems, the complete text of the - GNU General Public License version 2 can be found in - /usr/share/common-licenses/GPL-2 \ No newline at end of file + On Debian GNU/Linux systems, the complete text of {{the + GNU General Public License version 2}} can be found in + {{/usr/share/common-licenses/GPL-2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1188.RULE b/src/licensedcode/data/rules/gpl-2.0_1188.RULE index 70a309a5ab..a04a2ae488 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1188.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1188.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian and Debian-based systems, a copy of the GNU General Public - License version 2 is available in /usr/share/common-licenses/GPL-2. \ No newline at end of file +On Debian and Debian-based systems, a copy of {{the GNU General Public + License version 2}} is available in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1189.RULE b/src/licensedcode/data/rules/gpl-2.0_1189.RULE index 205d41db0a..bc546da5e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1189.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1189.RULE @@ -6,17 +6,17 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, v2, as + it under the terms of the {{GNU General Public License, v2}}, as published by the Free Software Foundation . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . - On Debian systems, the complete text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the complete text of {{the GNU General Public + License version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1190.RULE b/src/licensedcode/data/rules/gpl-2.0_1190.RULE index 764fb07b1d..4b8d4f608c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1190.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1190.RULE @@ -11,17 +11,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see https://www.gnu.org/licenses/gpl-2.0.txt GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1191.RULE b/src/licensedcode/data/rules/gpl-2.0_1191.RULE index 13e36328eb..0aefd83112 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1191.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1191.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- This software file (the "File") is distributed by Marvell International -Ltd. under the terms of the GNU General Public License Version 2, June 1991 +Ltd. {{under the terms of the GNU General Public License Version 2}}, June 1991 (the "License"). You may use, redistribute and/or modify this File in accordance with the terms and conditions of the License, a copy of which is available along with the File in the license.txt file or on the worldwide diff --git a/src/licensedcode/data/rules/gpl-2.0_1192.RULE b/src/licensedcode/data/rules/gpl-2.0_1192.RULE index 72699c1376..7e32f9a116 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1192.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1192.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- BusyBox is licensed under https://www.gnu.org/licenses/old-licenses/gpl-2.0.html"> -the GNU General Public License version 2 , which is often abbreviated as GPLv2. +{{the GNU General Public License version 2}} , which is often abbreviated as GPLv2. (This is the same license the Linux kernel is under, so you may be somewhat familiar with it by now.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1193.RULE b/src/licensedcode/data/rules/gpl-2.0_1193.RULE index c8e5b7c891..499959f301 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1193.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1193.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 of +it {{under the terms of the GNU General Public License version 2}} of the License as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1194.RULE b/src/licensedcode/data/rules/gpl-2.0_1194.RULE index 63a2ce280c..6eb6ce4253 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1194.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1194.RULE @@ -8,9 +8,9 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -The code contained herein is licensed under the GNU General Public -License. You may obtain a copy of the GNU General Public License -Version 2 at the following locations: +The code contained herein is licensed under the {{GNU General Public +License}}. You may obtain a copy of {{the GNU General Public License +Version 2}} at the following locations: http://www.opensource.org/licenses/gpl-license.html https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1196.RULE b/src/licensedcode/data/rules/gpl-2.0_1196.RULE index d320ecb133..a628bc2581 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1196.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1196.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License 2 as published by + it under the terms of the {{GNU General Public License 2}} as published by the Free Software Foundation. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1197.RULE b/src/licensedcode/data/rules/gpl-2.0_1197.RULE index 16b6b2406b..9787be56ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1197.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1197.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.html --- -GNU-GPLv2 license (https://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file +{{GNU-GPLv2}} license (https://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1198.RULE b/src/licensedcode/data/rules/gpl-2.0_1198.RULE index 00955d4c4c..506c92fba3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1198.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1198.RULE @@ -12,17 +12,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see https://www.gnu.org/licenses +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see https://www.gnu.org/licenses Please visit http://www.xyratex.com/contact if you need additional information or have any questions. diff --git a/src/licensedcode/data/rules/gpl-2.0_1199.RULE b/src/licensedcode/data/rules/gpl-2.0_1199.RULE index 313ea37684..54a1500779 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1199.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1199.RULE @@ -7,10 +7,10 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html --- -is licensed under the GNU General Public License, version 2< +is licensed under {{the GNU General Public License, version 2}}< is licensed under https://www.gnu.org/licenses/old-licenses/gpl-2.0.html -the GNU General Public License version 2, which is often abbreviated as GPLv2. +{{the GNU General Public License version 2}}, which is often abbreviated as GPLv2. (This is the same license the Linux kernel is under, so you may be somewhat familiar with it by now.) diff --git a/src/licensedcode/data/rules/gpl-2.0_1200.RULE b/src/licensedcode/data/rules/gpl-2.0_1200.RULE index 5a0fdedc90..97de86c30e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1200.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1200.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.html --- -licensed under the GPL v2 +licensed under the {{GPL v2}} https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1202.RULE b/src/licensedcode/data/rules/gpl-2.0_1202.RULE index d48ca5bddb..9d748cc571 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1202.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1202.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.htm --- -Licensed under the GNU General Public License (GPL) Version 2, June 1991:https://www.gnu.org/licenses/gpl-2.0.htm \ No newline at end of file +Licensed under the {{GNU General Public License (GPL) Version 2}}, June 1991:https://www.gnu.org/licenses/gpl-2.0.htm \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1203.RULE b/src/licensedcode/data/rules/gpl-2.0_1203.RULE index bf5ad39e2c..be3a629122 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1203.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1203.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; either version 2 of the License}} This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1204.RULE b/src/licensedcode/data/rules/gpl-2.0_1204.RULE index 9f17888efb..e0f1810ef5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1204.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1204.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation version 2 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1205.RULE b/src/licensedcode/data/rules/gpl-2.0_1205.RULE index 2c43179be1..e281bb4d98 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1205.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1205.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed "as is" WITHOUT ANY WARRANTY of any kind, whether express or implied; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1207.RULE b/src/licensedcode/data/rules/gpl-2.0_1207.RULE index 411ec3d122..028ad2987c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1207.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1207.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License 2 as published by + it under the terms of the {{GNU General Public License 2}} as published by the Free Software Foundation. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see - On Debian GNU/Linux systems, the complete text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file + On Debian GNU/Linux systems, the complete text of {{the GNU General + Public License version 2}} can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1208.RULE b/src/licensedcode/data/rules/gpl-2.0_1208.RULE index 05e1115017..d16beab405 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1208.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1208.RULE @@ -12,13 +12,13 @@ ignorable_urls: GPLv2 ## Librecad is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 (GPLv2) +it {{under the terms of the GNU General Public License version 2}} (GPLv2) as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. The GPLv2 can be found in the `licenses` folder as `gpl-2.0.txt`. diff --git a/src/licensedcode/data/rules/gpl-2.0_1209.RULE b/src/licensedcode/data/rules/gpl-2.0_1209.RULE index fbb0d38d40..6a0f3e9ecc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1209.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1209.RULE @@ -7,8 +7,8 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation; version 2 of the License. + * under the terms of the {{GNU General Public License as published by the + * Free Software Foundation; version 2}} of the License. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF @@ -21,5 +21,5 @@ ignorable_urls: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * You should have received a copy of the GNU General Public License along + * You should have received a copy of the {{GNU General Public License}} along * with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_121.RULE b/src/licensedcode/data/rules/gpl-2.0_121.RULE index ef585b6291..4ec8f0ac21 100644 --- a/src/licensedcode/data/rules/gpl-2.0_121.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_121.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - version 2 as published by the Free Software Foundation. + modify it {{under the terms of the GNU General Public License + version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. \ No newline at end of file + {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1210.RULE b/src/licensedcode/data/rules/gpl-2.0_1210.RULE index 4e68d476cf..9b6e26072a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1210.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1210.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html --- -This software program is licensed subject to the GNU General Public License - (GPL).Version 2,June 1991, available at +This software program is licensed subject to the {{GNU General Public License + (GPL).Version 2}},June 1991, available at https://www.gnu.org/licenses/old-licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1211.RULE b/src/licensedcode/data/rules/gpl-2.0_1211.RULE index e5b1f423b9..d29d92d04e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1211.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1211.RULE @@ -10,16 +10,16 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License}}, or (at your option) any later version. See the COPYING file in the top-level directory or visit This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. This program is provided "AS IS" and "WITH ALL FAULTS" and without warranty of any kind. You are solely responsible for diff --git a/src/licensedcode/data/rules/gpl-2.0_1212.RULE b/src/licensedcode/data/rules/gpl-2.0_1212.RULE index 21cdcf60aa..ead370d985 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1212.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1212.RULE @@ -15,7 +15,7 @@ The Debian specific changes are and distributed {{under the terms of the GNU On Debian GNU/Linux systems, the complete text of the {{GNU General Public License can be found in `/usr/share/common-licenses/GPL}}'. - A copy of the {{GNU General Public License is also available}} at + A copy of the GNU General Public License is also available at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file + St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/gpl-2.0_1214.RULE b/src/licensedcode/data/rules/gpl-2.0_1214.RULE index cd6ca62753..f31c893196 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1214.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1214.RULE @@ -11,17 +11,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see https://www.gnu.org/licenses/gpl-2.0.htm GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1215.RULE b/src/licensedcode/data/rules/gpl-2.0_1215.RULE index 600ed11937..f5a4941221 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1215.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1215.RULE @@ -8,8 +8,8 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -version 2 as published by the Free Software Foundation. +modify it {{under the terms of the GNU General Public License +version 2}} as published by the Free Software Foundation. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1216.RULE b/src/licensedcode/data/rules/gpl-2.0_1216.RULE index 07530dd95b..c8a100a029 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1216.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1216.RULE @@ -11,17 +11,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see https://www.gnu.org/licenses/gpl-2.0.html GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1217.RULE b/src/licensedcode/data/rules/gpl-2.0_1217.RULE index 708b098e33..2561afafaa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1217.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1217.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -License: GPL v2 (https://www.gnu.org/licenses/gpl.html) \ No newline at end of file +License: {{GPL v2}} (https://www.gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1218.RULE b/src/licensedcode/data/rules/gpl-2.0_1218.RULE index d68fa9b18a..29c43f6f88 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1218.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1218.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - version 2 only, as published by the Free Software Foundation. + modify it {{under the terms of the GNU General Public License + version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. To obtain the license, point your browser to https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1219.RULE b/src/licensedcode/data/rules/gpl-2.0_1219.RULE index b09cf0ca07..c9e4c12da6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1219.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1219.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License 2 as published by + it under the terms of the {{GNU General Public License 2}} as published by the Free Software Foundation. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see - On Debian systems, the complete text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file + On Debian systems, the complete text of {{the GNU General + Public License version 2}} can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_122.RULE b/src/licensedcode/data/rules/gpl-2.0_122.RULE index e10e75bacc..09479c35d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_122.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_122.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1220.RULE b/src/licensedcode/data/rules/gpl-2.0_1220.RULE index 8b08861faf..a2ea76fd6d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1220.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1220.RULE @@ -6,12 +6,12 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.txt --- -GNU General Public License Version 2.0, June 1991 +{{GNU General Public License Version 2}}.0, June 1991 -The following applies to all products licensed under the GNU General -Public License, Version 2.0: You may not use the identified files -except in compliance with the GNU General Public License, Version -2.0 (the "License.") You may obtain a copy of the License at +The following applies to all products licensed under {{the GNU General +Public License, Version 2}}.0: You may not use the identified files +except in compliance with {{the GNU General Public License, Version +2}}.0 (the "License.") You may obtain a copy of the License at https://www.gnu.org/licenses/gpl-2.0.txt. A copy of the license is also reproduced below. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed diff --git a/src/licensedcode/data/rules/gpl-2.0_1221.RULE b/src/licensedcode/data/rules/gpl-2.0_1221.RULE index 6a1b9e6bbf..57640e9997 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1221.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1221.RULE @@ -14,7 +14,7 @@ General Public License, version 2}}. On Debian GNU/Linux systems, the complete {{text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2}}'. - A copy of the {{GNU General Public License is also available}} at + A copy of the GNU General Public License is also available at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file + St, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/rules/gpl-2.0_1222.RULE b/src/licensedcode/data/rules/gpl-2.0_1222.RULE index 0bc7b4981e..d0ee1671de 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1222.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1222.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of version 2 of the GNU General Public -License as published by the Free Software Foundation. +modify it under the terms of {{version 2 of the GNU General Public +License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1223.RULE b/src/licensedcode/data/rules/gpl-2.0_1223.RULE index 315b00899c..bc750d2984 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1223.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1223.RULE @@ -8,8 +8,8 @@ ignorable_urls: License - is specifically licensed under GPL v2.0, and no later version. + is specifically licensed under {{GPL v2}}.0, and no later version. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/. \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1224.RULE b/src/licensedcode/data/rules/gpl-2.0_1224.RULE index 7c26c78b94..03560cb860 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1224.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1224.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as + it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, diff --git a/src/licensedcode/data/rules/gpl-2.0_1225.RULE b/src/licensedcode/data/rules/gpl-2.0_1225.RULE index 29b74f8c35..00b1094e7f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1225.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1225.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/ --- -Distributed under the terms of the GNU General Public License version 2 (GPLv2) +{{Distributed under the terms of the GNU General Public License version 2}} (GPLv2) The full text of the GPLv2 is available at: https://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1226.RULE b/src/licensedcode/data/rules/gpl-2.0_1226.RULE index c5fbfc7836..04eb9e89b7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1226.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1226.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This driver is free software; you can redistribute it and/or modify -it under the terms of version 2 only of the GNU General Public License as +it under the terms of version 2 only of the {{GNU General Public License}} as published by the Free Software Foundation. It is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1227.RULE b/src/licensedcode/data/rules/gpl-2.0_1227.RULE index a47be077ba..9bb6440727 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1227.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1227.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This driver is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation, version 2}} of the License. This driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this driver. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1228.RULE b/src/licensedcode/data/rules/gpl-2.0_1228.RULE index 52fe00a4f1..c4cae78722 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1228.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1228.RULE @@ -9,7 +9,7 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as + it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. http://www.opensource.org/licenses/gpl-license.html diff --git a/src/licensedcode/data/rules/gpl-2.0_1229.RULE b/src/licensedcode/data/rules/gpl-2.0_1229.RULE index a3b43ad5c6..049ab4eaa8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1229.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1229.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.html --- -# This program is released under the terms of the Gnu General Public -# License version 2 (GPLv2) +# This program is released {{under the terms of the Gnu General Public +# License version 2}} (GPLv2) # https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_123.RULE b/src/licensedcode/data/rules/gpl-2.0_123.RULE index 6371f40118..56ebd153a2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_123.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_123.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as + it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1230.RULE b/src/licensedcode/data/rules/gpl-2.0_1230.RULE index 6bbce7e96d..6f0cd758d3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1230.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1230.RULE @@ -8,6 +8,6 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -Your use of this code is subject to the terms and conditions of the -GNU general public license version 2. See "COPYING" or +Your use of this code is subject to the terms and conditions of {{the +GNU general public license version 2}}. See "COPYING" or https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1231.RULE b/src/licensedcode/data/rules/gpl-2.0_1231.RULE index 9307ebe3ce..b0b084ab8e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1231.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1231.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.html --- -under the GNU-GPLv2 license (https://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file +under the {{GNU-GPLv2}} license (https://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1232.RULE b/src/licensedcode/data/rules/gpl-2.0_1232.RULE index efb68c79e7..d5892d031d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1232.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1232.RULE @@ -6,10 +6,10 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.txt --- -The following applies to all products licensed under the GNU General -Public License, Version 2.0: You may not use the identified files -except in compliance with the GNU General Public License, Version -2.0 (the "License.") You may obtain a copy of the License at +The following applies to all products licensed under {{the GNU General +Public License, Version 2}}.0: You may not use the identified files +except in compliance with {{the GNU General Public License, Version +2}}.0 (the "License.") You may obtain a copy of the License at https://www.gnu.org/licenses/gpl-2.0.txt. A copy of the license is also reproduced below. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed diff --git a/src/licensedcode/data/rules/gpl-2.0_1233.RULE b/src/licensedcode/data/rules/gpl-2.0_1233.RULE index f057642681..272bfe63ba 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1233.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1233.RULE @@ -8,6 +8,6 @@ ignorable_urls: --- This program falls under the GNU GPL (General Public Licence) version 2 -GNU GPL V2 +{{GNU GPL V2}} en-> https://www.gnu.org/licenses/gpl-2.0.html de-> http://www.gnu.de/documents/gpl-2.0.de.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1234.RULE b/src/licensedcode/data/rules/gpl-2.0_1234.RULE index cc81109382..3663bcd551 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1234.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1234.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License version 2 as published by + {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along with + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1235.RULE b/src/licensedcode/data/rules/gpl-2.0_1235.RULE index 2600e25487..e8748f55bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1235.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1235.RULE @@ -16,18 +16,18 @@ This file is provided under a GPLv2 license. When using or This program is free software; you can redistribute it and/or modify it - under the terms and conditions of the GNU General Public License, - version 2, as published by the Free Software Foundation. + under the terms and conditions of {{the GNU General Public License, + version 2}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, it can be found . - The full GNU General Public License is included in this distribution in + The full {{GNU General Public License}} is included in this distribution in the file called "COPYING". THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS diff --git a/src/licensedcode/data/rules/gpl-2.0_1236.RULE b/src/licensedcode/data/rules/gpl-2.0_1236.RULE index 33d9966add..d63c9c80da 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1236.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1236.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.html --- -This ruleset is under the GNU-GPLv2 license (https://www.gnu.org/licenses/gpl-2.0.html) +This ruleset is under the {{GNU-GPLv2}} license (https://www.gnu.org/licenses/gpl-2.0.html) and open to any user or organization, as long as you use it under this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1237.RULE b/src/licensedcode/data/rules/gpl-2.0_1237.RULE index 257daee3c0..1734fc0bc9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1237.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1237.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software; you can distribute it and/or modify it -under the terms of the GNU General Public License (Version 2) as +{{under the terms of the GNU General Public License (Version 2}}) as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1238.RULE b/src/licensedcode/data/rules/gpl-2.0_1238.RULE index 0abe45424f..222488d189 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1238.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1238.RULE @@ -7,10 +7,10 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, version 2, as + it {{under the terms of the GNU General Public License, version 2}}, as published by the Free Software Foundation. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED diff --git a/src/licensedcode/data/rules/gpl-2.0_1239.RULE b/src/licensedcode/data/rules/gpl-2.0_1239.RULE index 2718ef418d..57b62fe7bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1239.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1239.RULE @@ -8,13 +8,13 @@ ignorable_urls: --- /* This program is free software; you can redistribute it and/or modify */ -/* it under the terms of the GNU General Public License as published by */ -/* the Free Software Foundation, using version 2 of the License. */ +/* it under the terms of the {{GNU General Public License as published by */ +/* the Free Software Foundation, using version 2 of the License}}. */ /* */ /* This program is distributed in the hope that it will be useful, */ /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ -/* GNU General Public License for more details. */ +/* {{GNU General Public License}} for more details. */ /* */ -/* You should have received a copy of the GNU General Public License */ +/* You should have received a copy of the {{GNU General Public License}} */ /* along with this program. If not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1240.RULE b/src/licensedcode/data/rules/gpl-2.0_1240.RULE index 6d7052385d..2e5d3a532a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1240.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1240.RULE @@ -12,13 +12,13 @@ ignorable_urls: GPLv2 ## is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 (GPLv2) +it {{under the terms of the GNU General Public License version 2}} (GPLv2) as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. The GPLv2 can be found in the `licenses` folder as `gpl-2.0.txt`. diff --git a/src/licensedcode/data/rules/gpl-2.0_1242.RULE b/src/licensedcode/data/rules/gpl-2.0_1242.RULE index 0757cd4535..49049f19af 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1242.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1242.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation, version 2}} of the License. This driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this software. If not see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1243.RULE b/src/licensedcode/data/rules/gpl-2.0_1243.RULE index 0f9f2876c6..7698f3292d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1243.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1243.RULE @@ -8,7 +8,7 @@ ignorable_urls: This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions -of the GNU General Public License v.2. +of the {{GNU General Public License v.2}}. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1244.RULE b/src/licensedcode/data/rules/gpl-2.0_1244.RULE index 342e609dff..cc16bc4c0a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1244.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1244.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- This driver is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, version 2. + it {{under the terms of the GNU General Public License, version 2}}. This driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this driver; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1245.RULE b/src/licensedcode/data/rules/gpl-2.0_1245.RULE index 6180f59f1d..98473a0295 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1245.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1245.RULE @@ -14,5 +14,5 @@ This software may be used and distributed according to the terms of the GNU Public License, version 2 as published by the Free Software Foundation. See the file COPYING in the main directory of this archive for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1246.RULE b/src/licensedcode/data/rules/gpl-2.0_1246.RULE index 71fdde2d1f..4d3f7daace 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1246.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1246.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms and conditions of the GNU General Public License, - version 2, as published by the Free Software Foundation. + under the terms and conditions of {{the GNU General Public License, + version 2}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1247.RULE b/src/licensedcode/data/rules/gpl-2.0_1247.RULE index b932945a8c..79bcca7c2a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1247.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1247.RULE @@ -9,7 +9,7 @@ ignorable_urls: - GNU General Public License Version 2 + {{GNU General Public License Version 2}} https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt repo diff --git a/src/licensedcode/data/rules/gpl-2.0_1248.RULE b/src/licensedcode/data/rules/gpl-2.0_1248.RULE index d7556125e3..4337a36953 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1248.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1248.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it -under the terms and conditions of the GNU General Public License, -version 2, as published by the Free Software Foundation. +under the terms and conditions of {{the GNU General Public License, +version 2}}, as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1249.RULE b/src/licensedcode/data/rules/gpl-2.0_1249.RULE index 9f53ac6960..9ac0492f16 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1249.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1249.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms and conditions of the GNU General Public License, - version 2, as published by the Free Software Foundation. + under the terms and conditions of {{the GNU General Public License, + version 2}}, as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along with + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . - The full GNU General Public License is included in this distribution in + The full {{GNU General Public License}} is included in this distribution in the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_125.RULE b/src/licensedcode/data/rules/gpl-2.0_125.RULE index 9a23378fbc..875cda8c60 100644 --- a/src/licensedcode/data/rules/gpl-2.0_125.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_125.RULE @@ -5,5 +5,5 @@ minimum_coverage: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License. \ No newline at end of file +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; either version 2 of the License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1250.RULE b/src/licensedcode/data/rules/gpl-2.0_1250.RULE index 970eff4c3b..1c19fb9937 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1250.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1250.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0-standalone.html --- -license 'GPL-2.0', 'https://www.gnu.org/licenses/gpl-2.0-standalone.html' \ No newline at end of file +{{license 'GPL-2.0}}', 'https://www.gnu.org/licenses/gpl-2.0-standalone.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1252.RULE b/src/licensedcode/data/rules/gpl-2.0_1252.RULE index 7e0cebf2b9..795c4a0005 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1252.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1252.RULE @@ -7,16 +7,16 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License, Version 2, as +it {{under the terms of the GNU General Public License, Version 2}}, as published by the Free Software Foundation. This file is distributed in the hope that it will be useful, but AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or -NONINFRINGEMENT. See the GNU General Public License for more +NONINFRINGEMENT. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this file; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA or visit https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1253.RULE b/src/licensedcode/data/rules/gpl-2.0_1253.RULE index 20b5c0ad9f..100cb4a9d8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1253.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1253.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- This software file (the "File") is distributed by company - under the terms of the GNU General Public License Version 2, June 1991 + {{under the terms of the GNU General Public License Version 2}}, June 1991 (the "License"). You may use, redistribute and/or modify this File in accordance with the terms and conditions of the License, a copy of which is available by writing to the Free Software Foundation, Inc., diff --git a/src/licensedcode/data/rules/gpl-2.0_1254.RULE b/src/licensedcode/data/rules/gpl-2.0_1254.RULE index 93070bd4df..4ea2a7d2b0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1254.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1254.RULE @@ -11,16 +11,16 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License version 2 for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the +GNU General Public License version 2}} for more details. -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see https://www.gnu.org/licenses/gpl-2.0.html GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1255.RULE b/src/licensedcode/data/rules/gpl-2.0_1255.RULE index 8936b8cebe..607985773c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1255.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1255.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- Driver is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 + it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. Driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with Driver; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1256.RULE b/src/licensedcode/data/rules/gpl-2.0_1256.RULE index 598808dc15..1c7dd1cd70 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1256.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1256.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- GNU General Public Licence -distributed under the terms of the GNU General Public License version 2 +{{distributed under the terms of the GNU General Public License version 2}} (`GPLv2 `_) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1257.RULE b/src/licensedcode/data/rules/gpl-2.0_1257.RULE index 388f05d659..1f263e618e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1257.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1257.RULE @@ -11,16 +11,16 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see https://www.gnu.org/licenses +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see https://www.gnu.org/licenses GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1258.RULE b/src/licensedcode/data/rules/gpl-2.0_1258.RULE index d1899f4b88..bccd541692 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1258.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1258.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License}} as published by * the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA diff --git a/src/licensedcode/data/rules/gpl-2.0_1259.RULE b/src/licensedcode/data/rules/gpl-2.0_1259.RULE index 25967f5bdd..51efca67aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1259.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1259.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- This software file (the "File") is distributed by Marvell International - Ltd. under the terms of the GNU General Public License Version 2, June 1991 + Ltd. {{under the terms of the GNU General Public License Version 2}}, June 1991 (the "License"). You may use, redistribute and/or modify this File in accordance with the terms and conditions of the License, a copy of which is available on the worldwide web at diff --git a/src/licensedcode/data/rules/gpl-2.0_126.RULE b/src/licensedcode/data/rules/gpl-2.0_126.RULE index 6bc3e8a290..e6e0a2651e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_126.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_126.RULE @@ -5,16 +5,16 @@ minimum_coverage: 100 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 of -the License. +the License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1260.RULE b/src/licensedcode/data/rules/gpl-2.0_1260.RULE index d9829e1bdf..ec52b0bb43 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1260.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1260.RULE @@ -8,14 +8,12 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -{{distributed under the terms of the GNU - General Public License, version 2}}. - +{{distributed under the terms of the GNU General Public License, version 2}}. On Debian GNU/Linux systems, the complete text of the {{GNU General Public License can be found in `/usr/share/common-licenses/GPL}}'. - A copy of the {{GNU General Public License is also available}} at + A copy of the GNU General Public License is also available at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file + St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/gpl-2.0_1261.RULE b/src/licensedcode/data/rules/gpl-2.0_1261.RULE index f98bc23973..f7aa9a4e3e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1261.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1261.RULE @@ -8,6 +8,6 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.html --- -licensed under the terms of the GNU General Public License, version 2 (GPLv2). +licensed {{under the terms of the GNU General Public License, version 2}} (GPLv2). The full text of this license may be found in the COPYING file at the top of the source tree and online at https://www.gnu.org/licenses/gpl-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1262.RULE b/src/licensedcode/data/rules/gpl-2.0_1262.RULE index bb9f10c9de..427beea27a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1262.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1262.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- This software file (the "File") is distributed by Marvell International -Ltd. under the terms of the GNU General Public License Version 2, June 1991 +Ltd. {{under the terms of the GNU General Public License Version 2}}, June 1991 (the "License"). You may use, redistribute and/or modify this File in accordance with the terms and conditions of the License, a copy of which is available by writing to the Free Software Foundation, Inc., diff --git a/src/licensedcode/data/rules/gpl-2.0_1265.RULE b/src/licensedcode/data/rules/gpl-2.0_1265.RULE index 5f8a05e455..d8aaabb8f9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1265.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1265.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.html --- -this file can be distributed under the terms of the GNU General -Public License V2 as published by the Free Software Foundation and can be +this file can be distributed under the terms of the {{GNU General +Public License V2}} as published by the Free Software Foundation and can be found at https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1266.RULE b/src/licensedcode/data/rules/gpl-2.0_1266.RULE index b7656af086..44e67b7833 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1266.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1266.RULE @@ -10,4 +10,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -@copyright GNU General Public License * @license https://www.gnu.org/licenses/gpl.html \ No newline at end of file +@copyright {{GNU General Public License}} * @license https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1267.RULE b/src/licensedcode/data/rules/gpl-2.0_1267.RULE index 1939beabf1..d7975f8253 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1267.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1267.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.txt --- -is subject to the ?GNU General Public License Version 2?, which may be obtained at the following web site: https://www.gnu.org/licenses/gpl.txt \ No newline at end of file +is subject to {{the ?GNU General Public License Version 2}}?, which may be obtained at the following web site: https://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1268.RULE b/src/licensedcode/data/rules/gpl-2.0_1268.RULE index a5a2f8a045..f276445d00 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1268.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1268.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- BusyBox is licensed under https://www.gnu.org/licenses/old-licenses/gpl-2.0.html -the GNU General Public License version , which is often abbreviated as GPLv2. +the {{GNU General Public License}} version , which is often abbreviated as GPLv2. (This is the same license the Linux kernel is under, so you may be somewhat familiar with it by now.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_127.RULE b/src/licensedcode/data/rules/gpl-2.0_127.RULE index fdb9eaaa02..8c8950ccfb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_127.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_127.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Subject to the GNU General Public License, version 2 \ No newline at end of file +Subject to {{the GNU General Public License, version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1270.RULE b/src/licensedcode/data/rules/gpl-2.0_1270.RULE index db7788d1c7..4acfc6adf8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1270.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1270.RULE @@ -9,14 +9,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; either version 2 of the License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1271.RULE b/src/licensedcode/data/rules/gpl-2.0_1271.RULE index ad1e5f9744..baff512998 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1271.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1271.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.txt --- -Read the GPL v2.0 for legal details. +Read the {{GPL v2}}.0 for legal details. https://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1272.RULE b/src/licensedcode/data/rules/gpl-2.0_1272.RULE index 5c8f77777d..8cb18fae51 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1272.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1272.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the version 2 of the GNU General Public License +it under the terms of the {{version 2 of the GNU General Public License}} as published by the Free Software Foundation This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1273.RULE b/src/licensedcode/data/rules/gpl-2.0_1273.RULE index cc3e6863d9..c2ab10644d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1273.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1273.RULE @@ -12,17 +12,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see https://www.gnu.org/licenses +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see https://www.gnu.org/licenses Please contact Oracle Corporation, Inc., 500 Oracle Parkway, Redwood Shores, CA 94065 USA or visit www.oracle.com if you need additional information or diff --git a/src/licensedcode/data/rules/gpl-2.0_1274.RULE b/src/licensedcode/data/rules/gpl-2.0_1274.RULE index 4d5fd9ac30..288b0e55dc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1274.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1274.RULE @@ -10,17 +10,17 @@ ignorable_urls: DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see https://www.gnu.org/licenses +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see https://www.gnu.org/licenses Please visit http://www.xyratex.com/contact if you need additional information or have any questions. diff --git a/src/licensedcode/data/rules/gpl-2.0_1275.RULE b/src/licensedcode/data/rules/gpl-2.0_1275.RULE index bcc1e80c86..402e47d9b8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1275.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1275.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/ --- -distributed under the terms of the GNU General Public License version 2 +{{distributed under the terms of the GNU General Public License version 2}} (`GPLv2 `_) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1277.RULE b/src/licensedcode/data/rules/gpl-2.0_1277.RULE index 50bff40f3f..21425ddaa2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1277.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1277.RULE @@ -9,15 +9,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as +it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . -The full GNU General Public License is included in this distribution +The full {{GNU General Public License}} is included in this distribution in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1278.RULE b/src/licensedcode/data/rules/gpl-2.0_1278.RULE index 51aff5f026..63ffedbb8b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1278.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1278.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see https://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_128.RULE b/src/licensedcode/data/rules/gpl-2.0_128.RULE index d4764a875a..9d35f494f3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_128.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_128.RULE @@ -7,14 +7,14 @@ The Linux kernel code has the following (c) and license, which is hence propagated to 's tree and here: This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1280.RULE b/src/licensedcode/data/rules/gpl-2.0_1280.RULE index 108c8624e1..a35ee3d030 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1280.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1280.RULE @@ -10,10 +10,10 @@ ignorable_urls: --- license -BusyBox is licensed under the GNU General Public License, version 2 +BusyBox is licensed under {{the GNU General Public License, version 2}} BusyBox is licensed under https://www.gnu.org/licenses/old-licenses/gpl-2.0.html" -the GNU General Public License version 2, which is often abbreviated as GPLv2. +{{the GNU General Public License version 2}}, which is often abbreviated as GPLv2. (This is the same license the Linux kernel is under, so you may be somewhat familiar with it by now.) diff --git a/src/licensedcode/data/rules/gpl-2.0_1282.RULE b/src/licensedcode/data/rules/gpl-2.0_1282.RULE index b44df8a6a4..f535a896d2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1282.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1282.RULE @@ -8,5 +8,5 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html --- -licensed under a Creative Commons GNU General Public License -Please see the full text of the GNU General Public License \ No newline at end of file +licensed under a Creative Commons {{GNU General Public License}} +Please see the full text of the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1283.RULE b/src/licensedcode/data/rules/gpl-2.0_1283.RULE index 42a5eafa0c..2ca3c869e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1283.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1283.RULE @@ -9,6 +9,6 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -Use of this code is subject to the terms and conditions of the -GNU general public license version 2. See "COPYING" or +Use of this code is subject to the terms and conditions of {{the +GNU general public license version 2}}. See "COPYING" or https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1285.RULE b/src/licensedcode/data/rules/gpl-2.0_1285.RULE index d5c3ace041..fa78e5428e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1285.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1285.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt --- -# This software is licensed to you under the GNU General Public License, -# version 2 (GPLv2). There is NO WARRANTY for this software, express or +# This software is licensed to you under {{the GNU General Public License, +# version 2}} (GPLv2). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 # along with this software; if not, see diff --git a/src/licensedcode/data/rules/gpl-2.0_1287.RULE b/src/licensedcode/data/rules/gpl-2.0_1287.RULE index 9b062e9456..087053d183 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1287.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1287.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - version 2 only, as published by the Free Software Foundation. + modify it {{under the terms of the GNU General Public License + version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA diff --git a/src/licensedcode/data/rules/gpl-2.0_1289.RULE b/src/licensedcode/data/rules/gpl-2.0_1289.RULE index 17755f46a9..8f55dc7492 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1289.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1289.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html --- -* GNU General Public License, version 2 +* {{GNU General Public License, version 2}} * https://www.gnu.org/licenses/old-licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_129.RULE b/src/licensedcode/data/rules/gpl-2.0_129.RULE index a9d88085e9..56e605987a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_129.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_129.RULE @@ -5,17 +5,17 @@ notes: GPL from linux --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian GNU/Linux systems, the {{complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1290.RULE b/src/licensedcode/data/rules/gpl-2.0_1290.RULE index baadc99fd9..784dd97d9e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1290.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1290.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -The complete text of the GNU General Public License +The complete text of the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1292.RULE b/src/licensedcode/data/rules/gpl-2.0_1292.RULE index ed90d6384a..6e37745f4a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1292.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1292.RULE @@ -6,18 +6,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} of the License. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian and systems the full text of the GNU General Public - License version 2 can be found in the file + On Debian and systems the full text of {{the GNU General Public + License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2` \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1293.RULE b/src/licensedcode/data/rules/gpl-2.0_1293.RULE index fd519a63ef..9381379572 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1293.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1293.RULE @@ -5,6 +5,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian and systems the full text of the GNU General Public - License version 2 can be found in the file +On Debian and systems the full text of {{the GNU General Public + License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2` \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1294.RULE b/src/licensedcode/data/rules/gpl-2.0_1294.RULE index 776013555f..eb84d3f01e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1294.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1294.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -The full text of the GNU General Public License version 2 +The full text of {{the GNU General Public License version 2}} can be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1295.RULE b/src/licensedcode/data/rules/gpl-2.0_1295.RULE index d7dd4bf010..9c6495138a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1295.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1295.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the complete text of version 2 of the GNU General - Public License can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the complete text of {{version 2 of the GNU General + Public License}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1296.RULE b/src/licensedcode/data/rules/gpl-2.0_1296.RULE index 8e1ee57c84..13c72740c7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1296.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1296.RULE @@ -6,8 +6,8 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. . - On Debian systems, the complete text of version 2 of the GNU General - Public License can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the complete text of {{version 2 of the GNU General + Public License}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1298.RULE b/src/licensedcode/data/rules/gpl-2.0_1298.RULE index c6efde5db6..3c813964c0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1298.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1298.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The GNU General Public License v2 \ No newline at end of file +The {{GNU General Public License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1299.RULE b/src/licensedcode/data/rules/gpl-2.0_1299.RULE index 430cc3967b..680821b402 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1299.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1299.RULE @@ -6,6 +6,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the complete text of the GNU General Public License +On Debian systems, the complete text of the {{GNU General Public License}} can be found in ‘/usr/share/common-licenses/GPL-2’ or in the dpkg source as the file ‘COPYING’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_13.RULE b/src/licensedcode/data/rules/gpl-2.0_13.RULE index d031a7da3c..a3f7a18e22 100644 --- a/src/licensedcode/data/rules/gpl-2.0_13.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_13.RULE @@ -6,13 +6,13 @@ notes: kernel gpl notice --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. NO WARRANTY THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR @@ -34,6 +34,6 @@ This program is free software; you can redistribute it and/or modify USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_130.RULE b/src/licensedcode/data/rules/gpl-2.0_130.RULE index e1eafc3a5e..9f84ee6afd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_130.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_130.RULE @@ -4,13 +4,13 @@ is_license_notice: yes --- This program is free software; you can distribute it and/or modify -it under the terms of the GNU General Public License (Version 2) as +it {{under the terms of the GNU General Public License (Version 2}}) as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. -You should have received a copy of the GNU General Public License +See the {{GNU General Public License}} for more details. +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1300.RULE b/src/licensedcode/data/rules/gpl-2.0_1300.RULE index 55e517629c..ea5fc1923e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1300.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1300.RULE @@ -4,17 +4,17 @@ is_license_notice: yes --- This program is free software; you can redistribute it - and/or modify it under the terms of the GNU General Public + and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; - version 2 dated June 1991. + version 2}} dated June 1991. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the GNU General Public License for more + PURPOSE. See the {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public - License along with this package; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1301.RULE b/src/licensedcode/data/rules/gpl-2.0_1301.RULE index 7ac1dd0635..93b816ff18 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1301.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1301.RULE @@ -6,21 +6,21 @@ referenced_filenames: --- This program is free software; you can redistribute it - and/or modify it under the terms of the GNU General Public + and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; - version 2 dated June 1991. + version 2}} dated June 1991. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the GNU General Public License for more + PURPOSE. See the {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public - License along with this package; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the full text of the GNU General Public - License version 2 can be found in the file + On Debian systems, the full text of {{the GNU General Public + License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1302.RULE b/src/licensedcode/data/rules/gpl-2.0_1302.RULE index 1664dfe266..4e97f7bb73 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1302.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1302.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- Permission to use, copy, modify, and distribute this software and its - documentation under the terms of the GNU General Public License is + documentation under the terms of the {{GNU General Public License}} is hereby granted. No representations are made about the suitability of this software for any purpose. It is provided "as is" without express - or implied warranty. See the GNU General Public License for more + or implied warranty. See the {{GNU General Public License}} for more details. . Documents produced by doxygen are derivative works derived from the input used in their production; they are not affected by this license. . - On Debian systems, the complete text of the version of the GNU General - Public License distributed with Doxygen can be found in - ‘/usr/share/common-licenses/GPL-2’. \ No newline at end of file + On Debian systems, the complete text of the version of the {{GNU General + Public License}} distributed with Doxygen can be found in + ‘{{/usr/share/common-licenses/GPL-2}}’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1303.RULE b/src/licensedcode/data/rules/gpl-2.0_1303.RULE index dfd1967aac..11fc885feb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1303.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1303.RULE @@ -7,8 +7,8 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. . - On Debian systems, the text of version 2 of the GNU General - Public License can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the text of {{version 2 of the GNU General + Public License}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1304.RULE b/src/licensedcode/data/rules/gpl-2.0_1304.RULE index ba0abaf877..f0000cc13f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1304.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1304.RULE @@ -5,15 +5,15 @@ relevance: 100 --- Permission to use, copy, modify, and distribute this software and its - documentation under the terms of the GNU General Public License is + documentation under the terms of the {{GNU General Public License}} is hereby granted. No representations are made about the suitability of this software for any purpose. It is provided "as is" without express - or implied warranty. See the GNU General Public License for more + or implied warranty. See the {{GNU General Public License}} for more details. . Documents produced by doxygen are derivative works derived from the input used in their production; they are not affected by this license. . - On Debian systems, the text of the version of the GNU General - Public License distributed with Doxygen can be found in - ‘/usr/share/common-licenses/GPL-2’. \ No newline at end of file + On Debian systems, the text of the version of the {{GNU General + Public License}} distributed with Doxygen can be found in + ‘{{/usr/share/common-licenses/GPL-2}}’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1305.RULE b/src/licensedcode/data/rules/gpl-2.0_1305.RULE index 4305a0f814..14c65b6837 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1305.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1305.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License 2 as published by + it under the terms of the {{GNU General Public License 2}} as published by the Free Software Foundation. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see - On Debian systems, the text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file + On Debian systems, the text of {{the GNU General + Public License version 2}} can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1306.RULE b/src/licensedcode/data/rules/gpl-2.0_1306.RULE index 3af519321c..a3ff02fc19 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1306.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1306.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, v2, as + it under the terms of the {{GNU General Public License, v2}}, as published by the Free Software Foundation . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . - On Debian systems, the text of the GNU General Public - License version 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the text of {{the GNU General Public + License version 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1307.RULE b/src/licensedcode/data/rules/gpl-2.0_1307.RULE index 0c10d4723a..e20c2ae366 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1307.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1307.RULE @@ -5,23 +5,23 @@ relevance: 100 --- The package scripts are copyright (C) , written by - and licensed under GPL v2. + and licensed under {{GPL v2}}. Copyright: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian systems, the {{text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1308.RULE b/src/licensedcode/data/rules/gpl-2.0_1308.RULE index d88cd120f4..87fe0d9b5c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1308.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1308.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License 2 as published by + it under the terms of the {{GNU General Public License 2}} as published by the Free Software Foundation. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see - On Debian systems, the text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file + On Debian systems, the text of {{the GNU General + Public License version 2}} can be found in "/usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1309.RULE b/src/licensedcode/data/rules/gpl-2.0_1309.RULE index b47d6d6262..3b30f8248e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1309.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1309.RULE @@ -6,6 +6,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the text of the version of the GNU General - Public License distributed with Doxygen can be found in +On Debian systems, the text of the version of the {{GNU General + Public License}} distributed with Doxygen can be found in ‘/usr/share/common-licenses/GPL-2’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_131.RULE b/src/licensedcode/data/rules/gpl-2.0_131.RULE index e1bf2dd204..b7d1c957a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_131.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_131.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as +it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA -The full GNU General Public License is included in this distribution +The full {{GNU General Public License}} is included in this distribution in the file called LICENSE.GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1310.RULE b/src/licensedcode/data/rules/gpl-2.0_1310.RULE index ccd84e5c76..8f0d130a00 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1310.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1310.RULE @@ -7,5 +7,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the text of the GNU General Public - License version 2 can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the text of {{the GNU General Public + License version 2}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1311.RULE b/src/licensedcode/data/rules/gpl-2.0_1311.RULE index e69f6a4b1d..bfdd651b2a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1311.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1311.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -On Debian systems, the text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file +On Debian systems, the text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL-2}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1312.RULE b/src/licensedcode/data/rules/gpl-2.0_1312.RULE index 419e16776c..fb3d70675b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1312.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1312.RULE @@ -4,23 +4,23 @@ is_license_notice: yes relevance: 100 --- -and licensed under GPL v2. +and licensed under {{GPL v2}}. Copyright: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian systems, the {{text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1313.RULE b/src/licensedcode/data/rules/gpl-2.0_1313.RULE index 57ca1654d8..aa7b5da77f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1313.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1313.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -You are free to distribute this software under the terms of the GNU -General Public License, version 2. On Debian systems, the text -of the GNU General Public License can be found in the file -`/usr/share/common-licenses/GPL-2'. \ No newline at end of file +You are free to distribute this software {{under the terms of the GNU +General Public License, version 2}}. On Debian systems, the text +of the {{GNU General Public License}} can be found in the file +`{{/usr/share/common-licenses/GPL-2}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1314.RULE b/src/licensedcode/data/rules/gpl-2.0_1314.RULE index 00d3cfe9a3..ff95ec3dc1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1314.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1314.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the text of the GNU General Public License +On Debian systems, the text of the {{GNU General Public License}} can be found at '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1315.RULE b/src/licensedcode/data/rules/gpl-2.0_1315.RULE index 9cfed75c8a..156334d9d0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1315.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1315.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the text of the GNU General -Public License can be found in '/usr/share/common-licenses/GPL-2' \ No newline at end of file +On Debian systems, the text of the {{GNU General +Public License}} can be found in '/usr/share/common-licenses/GPL-2' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1316.RULE b/src/licensedcode/data/rules/gpl-2.0_1316.RULE index 31b05cce09..fabb0fe8d2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1316.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1316.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the text of version 2 of the GNU General - Public License can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the text of {{version 2 of the GNU General + Public License}} can be found in '/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1317.RULE b/src/licensedcode/data/rules/gpl-2.0_1317.RULE index eaaf0b19ee..ab073b5867 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1317.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1317.RULE @@ -5,18 +5,18 @@ relevance: 100 --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian systems, the {{text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1318.RULE b/src/licensedcode/data/rules/gpl-2.0_1318.RULE index a592655f9a..6df4daaa9e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1318.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1318.RULE @@ -7,18 +7,18 @@ relevance: 100 License: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-2}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1319.RULE b/src/licensedcode/data/rules/gpl-2.0_1319.RULE index e3510dd81f..ffd0cff214 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1319.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1319.RULE @@ -8,17 +8,17 @@ notes: incorrect reference to GPL-1.0 text --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2, + it {{under the terms of the GNU General Public License version 2}}, as published by the Free Software Foundation. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-1'. \ No newline at end of file + On Debian systems, the text of the {{GNU General + Public License}} can be found in `/usr/share/common-licenses/GPL-1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_132.RULE b/src/licensedcode/data/rules/gpl-2.0_132.RULE index 32209fab27..added324f8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_132.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_132.RULE @@ -10,18 +10,18 @@ GPL LICENSE SUMMARY This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as +it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA -The full GNU General Public License is included in this distribution +The full {{GNU General Public License}} is included in this distribution in the file called LICENSE.GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1320.RULE b/src/licensedcode/data/rules/gpl-2.0_1320.RULE index 10d432ff81..b1d0b9cf53 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1320.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1320.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2, + it {{under the terms of the GNU General Public License version 2}}, as published by the Free Software Foundation. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL \ No newline at end of file + On Debian systems, the text of the {{GNU General + Public License}} can be found in `/usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1321.RULE b/src/licensedcode/data/rules/gpl-2.0_1321.RULE index c1fad0e541..be5b492b5f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1321.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1321.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the text of the GNU General Public License +On Debian systems, the text of the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1322.RULE b/src/licensedcode/data/rules/gpl-2.0_1322.RULE index be3448718b..758c401d6b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1322.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1322.RULE @@ -12,12 +12,12 @@ ignorable_emails: License for all components is: -- - GNU General Public License, version 2 (GPL-2) + {{GNU General Public License, version 2}} (GPL-2) | This file is part of the Qt Script Generator project on Trolltech Labs. | - | This file may be used under the terms of the GNU General Public - | License version 2.0 as published by the Free Software Foundation + | This file may be used {{under the terms of the GNU General Public + | License version 2}}.0 as published by the Free Software Foundation | and appearing in the file LICENSE.GPL included in the packaging of | this file. Please review the following information to ensure GNU | General Public Licensing requirements will be met: @@ -31,6 +31,6 @@ License for all components is: | This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - On Debian systems, the text of the - GNU General Public License version 2 can be found in - /usr/share/common-licenses/GPL-2 \ No newline at end of file + On Debian systems, the text of {{the + GNU General Public License version 2}} can be found in + {{/usr/share/common-licenses/GPL-2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1323.RULE b/src/licensedcode/data/rules/gpl-2.0_1323.RULE index cab1a00bea..f90bc1fd5b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1323.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1323.RULE @@ -7,6 +7,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the text of the GNU General Public License +On Debian systems, the text of the {{GNU General Public License}} can be found in ‘/usr/share/common-licenses/GPL-2’ or in the dpkg source as the file ‘COPYING’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1324.RULE b/src/licensedcode/data/rules/gpl-2.0_1324.RULE index 9bfdb03a36..a016427e77 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1324.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1324.RULE @@ -6,9 +6,9 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems, the text of the GNU General Public License -version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the text of {{the GNU General Public License +version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1326.RULE b/src/licensedcode/data/rules/gpl-2.0_1326.RULE index f0a304d6b9..f782dfb0c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1326.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1326.RULE @@ -7,21 +7,21 @@ referenced_filenames: --- This program is free software; you can redistribute it - and/or modify it under the terms of the GNU General Public + and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; - version 2 dated June 1991. + version 2}} dated June 1991. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the GNU General Public License for more + PURPOSE. See the {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public - License along with this package; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the text of the GNU General Public - License version 2 can be found in the file + On Debian systems, the text of {{the GNU General Public + License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1327.RULE b/src/licensedcode/data/rules/gpl-2.0_1327.RULE index c75c6d8b2a..b82448afc3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1327.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1327.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the text of the GNU General Public License -version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the text of {{the GNU General Public License +version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1329.RULE b/src/licensedcode/data/rules/gpl-2.0_1329.RULE index 2f2944fa4b..75e117acd2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1329.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1329.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - On Debian and systems the full text of the GNU General Public - License version 2 can be found in the file + On Debian and systems the full text of {{the GNU General Public + License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2` - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_133.RULE b/src/licensedcode/data/rules/gpl-2.0_133.RULE index c87660f336..9db10b35a2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_133.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_133.RULE @@ -5,9 +5,9 @@ minimum_coverage: 80 --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as + it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. \ No newline at end of file + {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1330.RULE b/src/licensedcode/data/rules/gpl-2.0_1330.RULE index bbdeb0a04b..060388bd74 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1330.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1330.RULE @@ -6,17 +6,17 @@ referenced_filenames: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as + it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - On Debian systems, the complete text of the GNU General Public License version - 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file + On Debian systems, the complete text of {{the GNU General Public License version + 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1331.RULE b/src/licensedcode/data/rules/gpl-2.0_1331.RULE index ef640e7dfa..d4fb0b3447 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1331.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1331.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as + it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1332.RULE b/src/licensedcode/data/rules/gpl-2.0_1332.RULE index 7c488fe9fa..51751d717a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1332.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1332.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems, the complete text of the GNU General - Public License 2 can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General + Public License 2}} can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1333.RULE b/src/licensedcode/data/rules/gpl-2.0_1333.RULE index 86654e1a8f..b921e237ea 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1333.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1333.RULE @@ -5,6 +5,6 @@ referenced_filenames: - LICENSE --- -This program is free software, distributed under the terms of the GNU - General Public License Version 2. See the LICENSE file at the top of +This program is free software, {{distributed under the terms of the GNU + General Public License Version 2}}. See the LICENSE file at the top of the source tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1336.RULE b/src/licensedcode/data/rules/gpl-2.0_1336.RULE index e2c327b26f..994bd4037b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1336.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1336.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU General Public License 2.0 \ No newline at end of file +Licensed under the {{GNU General Public License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1337.RULE b/src/licensedcode/data/rules/gpl-2.0_1337.RULE index 52e90d018c..44bf3ce478 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1337.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1337.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - The GNU General Public License, Version 2.0 + {{The GNU General Public License, Version 2}}.0 https://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1338.RULE b/src/licensedcode/data/rules/gpl-2.0_1338.RULE index c6abd29db2..eee36fbffe 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1338.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1338.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - The GNU General Public License, Version 2.0 + {{The GNU General Public License, Version 2}}.0 http://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1339.RULE b/src/licensedcode/data/rules/gpl-2.0_1339.RULE index 45db5ad41b..2d293540e9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1339.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1339.RULE @@ -7,5 +7,5 @@ ignorable_urls: - The GNU General Public License, Version 2.0 + {{The GNU General Public License, Version 2}}.0 https://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_134.RULE b/src/licensedcode/data/rules/gpl-2.0_134.RULE index 6cc145ab60..70c93ead7b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_134.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_134.RULE @@ -5,10 +5,10 @@ minimum_coverage: 70 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation; Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. -See the GNU General Public License for more details. \ No newline at end of file +See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1341.RULE b/src/licensedcode/data/rules/gpl-2.0_1341.RULE index 1a51064a62..624095d513 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1341.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1341.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GPL 2.0 license. \ No newline at end of file +Licensed under the {{GPL 2.0 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1342.RULE b/src/licensedcode/data/rules/gpl-2.0_1342.RULE index e9d2136532..20f3f8997f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1342.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1342.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave., Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1343.RULE b/src/licensedcode/data/rules/gpl-2.0_1343.RULE index 99f0ba5670..9ddc62d2a4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1343.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1343.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU General Public License version 2, which is often abbreviated as GPLv2. \ No newline at end of file +licensed under {{the GNU General Public License version 2}}, which is often abbreviated as GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1344.RULE b/src/licensedcode/data/rules/gpl-2.0_1344.RULE index 3aa081104b..ba9dd5b85d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1344.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1344.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under GNU General Public License, version 2 (GPL v.2) \ No newline at end of file +released under {{GNU General Public License, version 2}} (GPL v.2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1345.RULE b/src/licensedcode/data/rules/gpl-2.0_1345.RULE index fc96f58247..68c8080531 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1345.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1345.RULE @@ -3,4 +3,4 @@ license_expression: gpl-2.0 is_license_notice: yes --- -released under GNU General Public License, version 2 (GPL v.2). This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GPLv.2 license for more details. \ No newline at end of file +released under {{GNU General Public License, version 2}} (GPL v.2). This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GPLv.2 license for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1346.RULE b/src/licensedcode/data/rules/gpl-2.0_1346.RULE index a78f0345f3..e23de96266 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1346.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1346.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GPL-2.0 GNU General Public License v2.0 only \ No newline at end of file +{{GPL-2.0}} {{GNU General Public License v2.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1347.RULE b/src/licensedcode/data/rules/gpl-2.0_1347.RULE index bf72615ca0..949571fdaf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1347.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1347.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GNU General Public License v2.0 only GPL-2.0 \ No newline at end of file +{{GNU General Public License v2.0 only}} {{GPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1348.RULE b/src/licensedcode/data/rules/gpl-2.0_1348.RULE index 1f6f98d703..8b91013424 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1348.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1348.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : GPL-2.0 \ No newline at end of file +licenseid : {{GPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1349.RULE b/src/licensedcode/data/rules/gpl-2.0_1349.RULE index e58e54d7a6..81884cab12 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1349.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1349.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : GNU General Public License v2.0 only \ No newline at end of file +name : {{GNU General Public License v2.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1350.RULE b/src/licensedcode/data/rules/gpl-2.0_1350.RULE index a2fcd28ec0..0b76d09f79 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1350.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1350.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GPL-2.0-only GNU General Public License v2.0 only \ No newline at end of file +{{GPL-2.0-only}} {{GNU General Public License v2.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1351.RULE b/src/licensedcode/data/rules/gpl-2.0_1351.RULE index 4c6296b892..ff0ea0f30e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1351.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1351.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU General Public License v2.0 only GPL-2.0-only \ No newline at end of file +{{GNU General Public License v2.0 only}} {{GPL-2.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1352.RULE b/src/licensedcode/data/rules/gpl-2.0_1352.RULE index ccba2014a4..ffadac54c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1352.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1352.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GPL-2.0-only \ No newline at end of file +{{license: GPL-2.0}}-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1353.RULE b/src/licensedcode/data/rules/gpl-2.0_1353.RULE index 6e6df2f046..7ffa3907d3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1353.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1353.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: GPL-2.0-only \ No newline at end of file +licenseId: {{GPL-2.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1354.RULE b/src/licensedcode/data/rules/gpl-2.0_1354.RULE index 2e8682e50a..82573681b8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1354.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1354.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'GNU General Public License, version 2': 'GPL-2.0-only', \ No newline at end of file +'{{GNU General Public License, version 2}}': '{{GPL-2.0-only}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1355.RULE b/src/licensedcode/data/rules/gpl-2.0_1355.RULE index 3944a4e703..09fcbf5a06 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1355.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1355.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -['GPLV2', 'GPL-2.0-only'], \ No newline at end of file +[{{'GPLV2'}}, '{{GPL-2.0-only}}'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1357.RULE b/src/licensedcode/data/rules/gpl-2.0_1357.RULE index b504ac3cbe..eb2fd71e55 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1357.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1357.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU GPL V2: GPL-2.0-only \ No newline at end of file +{{GNU GPL V2}}: {{GPL-2.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1358.RULE b/src/licensedcode/data/rules/gpl-2.0_1358.RULE index 5fd95ef2f5..6701e968b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1358.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1358.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU GPL v2.0: GPL-2.0-only \ No newline at end of file +{{GNU GPL v2.0}}: {{GPL-2.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1359.RULE b/src/licensedcode/data/rules/gpl-2.0_1359.RULE index e00668ad56..404255eb55 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1359.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1359.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU GPLv2: GPL-2.0-only \ No newline at end of file +{{GNU GPLv2}}: {{GPL-2.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_136.RULE b/src/licensedcode/data/rules/gpl-2.0_136.RULE index ea2f25b7f0..da741e3661 100644 --- a/src/licensedcode/data/rules/gpl-2.0_136.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_136.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation; Software distributed under the License is distributed on an "AS diff --git a/src/licensedcode/data/rules/gpl-2.0_1360.RULE b/src/licensedcode/data/rules/gpl-2.0_1360.RULE index 8bfa9f9e44..f5c26ee1a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1360.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1360.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU General Public License v2.0: GPL-2.0-only \ No newline at end of file +{{GNU General Public License v2.0}}: {{GPL-2.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1363.RULE b/src/licensedcode/data/rules/gpl-2.0_1363.RULE index 363e68f09c..8cca6a2ca1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1363.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1363.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0_1364.RULE b/src/licensedcode/data/rules/gpl-2.0_1364.RULE index 69c8dbbd49..b7102789e4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1364.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1364.RULE @@ -3,4 +3,4 @@ license_expression: gpl-2.0 is_license_notice: yes --- -licensed under the GNU General Public License (GPL). License terms appear in GNU General Public License version 2 . \ No newline at end of file +licensed under the {{GNU General Public License (GPL)}}. License terms appear in {{GNU General Public License version 2}} . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1365.RULE b/src/licensedcode/data/rules/gpl-2.0_1365.RULE index b3b709e256..c9a659e8eb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1365.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1365.RULE @@ -3,4 +3,4 @@ license_expression: gpl-2.0 is_license_notice: yes --- -The C library at the core of this Perl module can additionally be used, modified and redistributed under the terms of the GNU General Public License version 2 . \ No newline at end of file +The C library at the core of this Perl module can additionally be used, modified and redistributed {{under the terms of the GNU General Public License version 2}} . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1366.RULE b/src/licensedcode/data/rules/gpl-2.0_1366.RULE index 6e4770a8d0..908f33b276 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1366.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1366.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0_1369.RULE b/src/licensedcode/data/rules/gpl-2.0_1369.RULE index ade644690b..c47a58b2c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1369.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1369.RULE @@ -6,12 +6,12 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, version 2. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation, version 2}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -You should have received a copy of the GNU General Public License +{{GNU General Public License}} for more details. +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1370.RULE b/src/licensedcode/data/rules/gpl-2.0_1370.RULE index ccc315b2f4..aeda4078ff 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1370.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1370.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0_1371.RULE b/src/licensedcode/data/rules/gpl-2.0_1371.RULE index 88268c4343..0348946f64 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1371.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1371.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: GPL-2.0 \ No newline at end of file +licenses: {{GPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1372.RULE b/src/licensedcode/data/rules/gpl-2.0_1372.RULE index b5fc540670..a16a9599db 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1372.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1372.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: GPL-2.0-only \ No newline at end of file +licenses: {{GPL-2.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1374.RULE b/src/licensedcode/data/rules/gpl-2.0_1374.RULE index 11d455b176..dc47c9733c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1374.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1374.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- license> - GNU General Public License, version 2 + {{GNU General Public License, version 2}} https://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1375.RULE b/src/licensedcode/data/rules/gpl-2.0_1375.RULE index 79233888c7..660ea5f3fb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1375.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1375.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://gnu.org/licenses/gpl-2.0.html --- -GNU General Public License +{{GNU General Public License}} https://gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1382.RULE b/src/licensedcode/data/rules/gpl-2.0_1382.RULE index 400fe99ad6..714b42de62 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1382.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1382.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0 is_license_notice: yes --- -under the terms of the GNU General Public License version 2 as +{{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1383.RULE b/src/licensedcode/data/rules/gpl-2.0_1383.RULE index ced66935e7..758e27b447 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1383.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1383.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0_1387.RULE b/src/licensedcode/data/rules/gpl-2.0_1387.RULE index ee9951113e..65da287e16 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1387.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1387.RULE @@ -5,15 +5,15 @@ notes: seen in FFmpeg --- FFmpeg is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; - version 2 of the License. + version 2}} of the License. FFmpeg is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with FFmpeg; if not, write to the Free Software + You should have received a copy of the {{GNU General Public + License}} along with FFmpeg; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1388.RULE b/src/licensedcode/data/rules/gpl-2.0_1388.RULE index d645d53153..e6f8de3147 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1388.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1388.RULE @@ -4,12 +4,12 @@ is_license_notice: yes --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, version 2. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation, version 2}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -You should have received a copy of the GNU General Public License +{{GNU General Public License}} for more details. +You should have received a copy of the {{GNU General Public License}} along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_139.RULE b/src/licensedcode/data/rules/gpl-2.0_139.RULE index eab69cfdda..486fbdcfb7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_139.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_139.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -version 2 as published by the Free Software Foundation. +modify it {{under the terms of the GNU General Public License +version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/gpl-2.0_1390.RULE b/src/licensedcode/data/rules/gpl-2.0_1390.RULE index c4bf89e639..0e212e32e7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1390.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1390.RULE @@ -6,15 +6,15 @@ notes: Seen in http://www.multiboost.org/ . Note the ambuguous GPL 2.1 reference --- This library is free software; you can redistribute it -and/or modify it under the terms of the GNU General Public +and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation -version 2.1 of the License. +version 2}}.1 of the License. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, 5th Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1391.RULE b/src/licensedcode/data/rules/gpl-2.0_1391.RULE index d7883b29af..6593401aca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1391.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1391.RULE @@ -5,17 +5,17 @@ is_license_notice: yes is free software; you can redistribute it and/or modify it under the terms -of the GNU General Public License as published by the -Free Software Foundation; version 2 of the License. +of the {{GNU General Public License as published by the +Free Software Foundation; version 2}} of the License. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU General Public -License for more details. +PARTICULAR PURPOSE. See the {{GNU General Public +License}} for more details. -You should have received a copy of the GNU General -Public License along with this program; if not, +You should have received a copy of the {{GNU General +Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1392.RULE b/src/licensedcode/data/rules/gpl-2.0_1392.RULE index a128f67ec3..22205533c1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1392.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1392.RULE @@ -6,11 +6,11 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it - under the terms of the GNU General Public License, version 2.0, as + {{under the terms of the GNU General Public License, version 2}}.0, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License, - version 2.0, for more details. - You should have received a copy of the GNU General Public License along + FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU General Public License, + version 2}}.0, for more details. + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1399.RULE b/src/licensedcode/data/rules/gpl-2.0_1399.RULE index 73fd8da979..561552b12e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1399.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1399.RULE @@ -3,8 +3,8 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License only. +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; version 2}} of the License only. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this program; if not, write to Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_14.RULE b/src/licensedcode/data/rules/gpl-2.0_14.RULE index be2071e3a7..d7f9cfa088 100644 --- a/src/licensedcode/data/rules/gpl-2.0_14.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_14.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 + * it {{under the terms of the GNU General Public License version 2}} * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to: * Free Software Foundation * 51 Franklin Street, Fifth Floor diff --git a/src/licensedcode/data/rules/gpl-2.0_140.RULE b/src/licensedcode/data/rules/gpl-2.0_140.RULE index 09bc5589cc..133dc0f555 100644 --- a/src/licensedcode/data/rules/gpl-2.0_140.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_140.RULE @@ -5,15 +5,15 @@ notes: Only GPL 2.0 --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as + * it {{under the terms of the GNU General Public License version 2}} as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/src/licensedcode/data/rules/gpl-2.0_1400.RULE b/src/licensedcode/data/rules/gpl-2.0_1400.RULE index 73a155c001..1f670e00ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1400.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1400.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/gpl-2.0.html --- -License: GPL-2.0 +{{License: GPL-2.0}} License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1401.RULE b/src/licensedcode/data/rules/gpl-2.0_1401.RULE index 748a1370cd..7066d2dc46 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1401.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1401.RULE @@ -3,4 +3,4 @@ license_expression: gpl-2.0 is_license_notice: yes --- -The Software contains the programs licensed under the terms and conditions of GNU GENERAL PUBLIC LICENSE Version 2. Notwithstanding the foregoing, the terms and conditions of GNU GENERAL PUBLIC LICENSE Version 2 is applied to such programs. Such programs are stored on the following directory and its sub-directories. \ No newline at end of file +The Software contains the programs licensed under the terms and conditions of {{GNU GENERAL PUBLIC LICENSE Version 2}}. Notwithstanding the foregoing, the terms and conditions of {{GNU GENERAL PUBLIC LICENSE Version 2}} is applied to such programs. Such programs are stored on the following directory and its sub-directories. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1402.RULE b/src/licensedcode/data/rules/gpl-2.0_1402.RULE index 17150c1dd4..d91f59c3a7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1402.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1402.RULE @@ -3,4 +3,4 @@ license_expression: gpl-2.0 is_license_notice: yes --- -The Software contains the programs licensed under the terms and conditions of GNU GENERAL PUBLIC LICENSE Version 2. Notwithstanding the foregoing, the terms and conditions of GNU GENERAL PUBLIC LICENSE Version 2 is applied to such programs. \ No newline at end of file +The Software contains the programs licensed under the terms and conditions of {{GNU GENERAL PUBLIC LICENSE Version 2}}. Notwithstanding the foregoing, the terms and conditions of {{GNU GENERAL PUBLIC LICENSE Version 2}} is applied to such programs. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1403.RULE b/src/licensedcode/data/rules/gpl-2.0_1403.RULE index 3821752a4a..70d0b311a1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1403.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1403.RULE @@ -3,4 +3,4 @@ license_expression: gpl-2.0 is_license_notice: yes --- -The Software contains the programs licensed under the terms and conditions of GNU GENERAL PUBLIC LICENSE Version 2. \ No newline at end of file +The Software contains the programs licensed under the terms and conditions of {{GNU GENERAL PUBLIC LICENSE Version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1404.RULE b/src/licensedcode/data/rules/gpl-2.0_1404.RULE index 5d188e276d..e5f3c7590b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1404.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1404.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms and conditions of GNU GENERAL PUBLIC LICENSE Version 2. \ No newline at end of file +licensed under the terms and conditions of {{GNU GENERAL PUBLIC LICENSE Version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1405.RULE b/src/licensedcode/data/rules/gpl-2.0_1405.RULE index 06dfd4547b..2d58d60c92 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1405.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1405.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of GNU GENERAL PUBLIC LICENSE Version 2. \ No newline at end of file +licensed under the terms of {{GNU GENERAL PUBLIC LICENSE Version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1406.RULE b/src/licensedcode/data/rules/gpl-2.0_1406.RULE index 575127eeef..53461158f7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1406.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1406.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms and conditions of the GNU GENERAL PUBLIC LICENSE Version 2. \ No newline at end of file +licensed under the terms and conditions of {{the GNU GENERAL PUBLIC LICENSE Version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1407.RULE b/src/licensedcode/data/rules/gpl-2.0_1407.RULE index f60625d3cc..2725de2514 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1407.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1407.RULE @@ -5,9 +5,9 @@ is_license_text: yes GPL License Agreement -This Software may be used in accordance with GNU General Public License (GPL). Please read carefully the following GPL and click on "I Accept" button. If you cannot agree with the following terms, please click "I don't Accept" button. In case of your non-acceptance, you can not use this Software. +This Software may be used in accordance with {{GNU General Public License (GPL}}). Please read carefully the following GPL and click on "I Accept" button. If you cannot agree with the following terms, please click "I don't Accept" button. In case of your non-acceptance, you can not use this Software. Note: Please click on "I Accept" while holding down "Shift" or right click on "I Accept" and select "Save Target As,,," from the menu. -GNU GENERAL PUBLIC LICENSE -Version 2, June 1991 \ No newline at end of file +{{GNU GENERAL PUBLIC LICENSE +Version 2}}, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1408.RULE b/src/licensedcode/data/rules/gpl-2.0_1408.RULE index 30322ea74b..52eea3835c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1408.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1408.RULE @@ -8,5 +8,5 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html --- -The project as a whole is released under the terms of the [GNU General Public License, version 2](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html). +The project as a whole is released {{under the terms of the [GNU General Public License, version 2}}](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html). A copy of this license can be found in [LICENSE.gpl](LICENSE.gpl). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_141.RULE b/src/licensedcode/data/rules/gpl-2.0_141.RULE index 4c2a721825..a74d2d1655 100644 --- a/src/licensedcode/data/rules/gpl-2.0_141.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_141.RULE @@ -5,14 +5,14 @@ notes: Only GPL 2.0 --- * The program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as + * it {{under the terms of the GNU General Public License version 2}} as * published by the Free Software Foundation. * * The program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with the program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1412.RULE b/src/licensedcode/data/rules/gpl-2.0_1412.RULE index 24f3899c10..ad1e43ff4d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1412.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1412.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License version 2.0 \ No newline at end of file +released under {{the GNU General Public License version 2}}.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1413.RULE b/src/licensedcode/data/rules/gpl-2.0_1413.RULE index ea68a59748..d7c0d93026 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1413.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1413.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License 2.0 \ No newline at end of file +released under the {{GNU General Public License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1414.RULE b/src/licensedcode/data/rules/gpl-2.0_1414.RULE index 2e46221b80..fcbc9422b3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1414.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1414.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License v2.0 \ No newline at end of file +released under the {{GNU General Public License v2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1415.RULE b/src/licensedcode/data/rules/gpl-2.0_1415.RULE index 5367420ce0..0e3f6e8660 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1415.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1415.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License v2 \ No newline at end of file +released under the {{GNU General Public License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1416.RULE b/src/licensedcode/data/rules/gpl-2.0_1416.RULE index 84794aa2d4..fcecb9d786 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1416.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1416.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; - version 2.0 of the License. + version 2}}.0 of the License. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1418.RULE b/src/licensedcode/data/rules/gpl-2.0_1418.RULE index 7bc7685fa3..84a393c9aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1418.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1418.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - GNU General Public License + {{GNU General Public License}} http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1419.RULE b/src/licensedcode/data/rules/gpl-2.0_1419.RULE index 287a5fb5fd..115df6e9d6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1419.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1419.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - GNU General Public License + {{GNU General Public License}} http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_142.RULE b/src/licensedcode/data/rules/gpl-2.0_142.RULE index a62be936c2..e9f5c87f05 100644 --- a/src/licensedcode/data/rules/gpl-2.0_142.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_142.RULE @@ -5,15 +5,15 @@ notes: Only GPL 2.0 --- * The program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as + * it {{under the terms of the GNU General Public License version 2}} as * published by the Free Software Foundation. * * The program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with the program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/src/licensedcode/data/rules/gpl-2.0_1420.RULE b/src/licensedcode/data/rules/gpl-2.0_1420.RULE index 6a2544d388..af3b375af2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1420.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1420.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU General Public License v2 \ No newline at end of file +licensed under the terms of the {{GNU General Public License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1421.RULE b/src/licensedcode/data/rules/gpl-2.0_1421.RULE index a7f35752e4..2e4bf154d1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1421.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1421.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU General Public License v2 \ No newline at end of file +licensed under the terms of the {{GNU General Public License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1423.RULE b/src/licensedcode/data/rules/gpl-2.0_1423.RULE index 0503ef0e1c..d322b1d516 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1423.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1423.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- * is free software: you can redistribute it - * and/or modify it under the terms of the GNU General Public License as - * published by the Free Software Foundation, either version 2 of the License. + * and/or modify it under the terms of the {{GNU General Public License as + * published by the Free Software Foundation, either version 2 of the License}}. * * is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General + * Public License}} for more details. * - * You should have received a copy of the GNU General Public License along + * You should have received a copy of the {{GNU General Public License}} along * with . If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1424.RULE b/src/licensedcode/data/rules/gpl-2.0_1424.RULE index 28b9157926..2b5391b16a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1424.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1424.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- * is free software: you can redistribute it - * and/or modify it under the terms of the GNU General Public License as + * and/or modify it under the terms of the {{GNU General Public License}} as * published by the Free Software Foundation, either version 2.. * * is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - * Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General + * Public License}} for more details. * - * You should have received a copy of the GNU General Public License along + * You should have received a copy of the {{GNU General Public License}} along * with . If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1426.RULE b/src/licensedcode/data/rules/gpl-2.0_1426.RULE index 9fac0a4a1d..ff4395c4fd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1426.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1426.RULE @@ -3,6 +3,6 @@ license_expression: gpl-2.0 is_license_notice: yes --- -You can redistribute it and/or modify it under the terms of the GNU General +You can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 2 -of the License. \ No newline at end of file +of the License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1427.RULE b/src/licensedcode/data/rules/gpl-2.0_1427.RULE index 79f817c5c0..f03ef5dd4c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1427.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1427.RULE @@ -3,15 +3,15 @@ license_expression: gpl-2.0 is_license_notice: yes --- -GPL v2.0: +{{GPL v2}}.0: --------- ALTERNATIVELY, this product may be distributed under the terms of the -GNU General Public License (v2.0 - see below), in which case the +{{GNU General Public License (v2.0}} - see below), in which case the provisions of the GNU GPL are required INSTEAD OF the above restrictions. (This clause is necessary due to a potential conflict between the GNU GPL and the restrictions contained in a BSD-style copyright.) ------------------------- -Full text of gpl-2.0.txt: \ No newline at end of file +Full text of {{gpl-2.0}}.txt: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1428.RULE b/src/licensedcode/data/rules/gpl-2.0_1428.RULE index 2d8e8e571e..ee651bbcf7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1428.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1428.RULE @@ -3,11 +3,11 @@ license_expression: gpl-2.0 is_license_notice: yes --- -GPL v2.0: +{{GPL v2}}.0: --------- ALTERNATIVELY, this product may be distributed under the terms of the -GNU General Public License (v2.0 - see below), in which case the +{{GNU General Public License (v2.0}} - see below), in which case the provisions of the GNU GPL are required INSTEAD OF the above restrictions. (This clause is necessary due to a potential conflict between the GNU GPL and the restrictions contained in a BSD-style diff --git a/src/licensedcode/data/rules/gpl-2.0_1429.RULE b/src/licensedcode/data/rules/gpl-2.0_1429.RULE index a4fa98e813..59cc17b2e1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1429.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1429.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- ALTERNATIVELY, this product may be distributed under the terms of the -GNU General Public License (v2.0 - see below), in which case the +{{GNU General Public License (v2.0}} - see below), in which case the provisions of the GNU GPL are required INSTEAD OF the above restrictions. (This clause is necessary due to a potential conflict between the GNU GPL and the restrictions contained in a BSD-style diff --git a/src/licensedcode/data/rules/gpl-2.0_1430.RULE b/src/licensedcode/data/rules/gpl-2.0_1430.RULE index 0e8a31c439..f5fe8801e2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1430.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1430.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0 is_license_notice: yes --- -the contents of this file may be used under the -terms of the GNU General Public License version 2 (the "GPL"), \ No newline at end of file +the contents of this file may be used {{under the +terms of the GNU General Public License version 2}} (the "GPL"), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1431.RULE b/src/licensedcode/data/rules/gpl-2.0_1431.RULE index 9ebce5d198..a84f2678dc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1431.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1431.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0 is_license_notice: yes --- -the contents of this file may be used under the -terms of the GNU General Public License version 2 \ No newline at end of file +the contents of this file may be used {{under the +terms of the GNU General Public License version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1432.RULE b/src/licensedcode/data/rules/gpl-2.0_1432.RULE index 03e521068e..f874c07ee4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1432.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1432.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the terms of the GNU General Public License version 2 (the "GPL"), \ No newline at end of file +{{under the terms of the GNU General Public License version 2}} (the "GPL"), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1434.RULE b/src/licensedcode/data/rules/gpl-2.0_1434.RULE index 35587c8742..a8c2846bb5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1434.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1434.RULE @@ -9,10 +9,10 @@ notes: a copy/paste from the license home page What to do if you see a possible GPL violation Translations of the GPL GPL Frequently Asked Questions - The GNU General Public License (GPL) in plain text format - The GNU General Public License (GPL) in Texinfo format - The GNU General Public License (GPL) in LaTeX format - The GNU General Public License (GPL) as an appendix in DocBook format + The {{GNU General Public License (GPL}}) in plain text format + The {{GNU General Public License (GPL}}) in Texinfo format + The {{GNU General Public License (GPL}}) in LaTeX format + The {{GNU General Public License (GPL}}) as an appendix in DocBook format Table of Contents - GNU GENERAL PUBLIC LICENSE \ No newline at end of file + {{GNU GENERAL PUBLIC LICENSE}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1435.RULE b/src/licensedcode/data/rules/gpl-2.0_1435.RULE index 62b79057b5..f882b08dbf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_1435.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_1435.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -GNU General Public License, version 2 -GNU GENERAL PUBLIC LICENSE Version 2 \ No newline at end of file +{{GNU General Public License, version 2}} +{{GNU GENERAL PUBLIC LICENSE Version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1468.RULE b/src/licensedcode/data/rules/gpl-2.0_1468.RULE new file mode 100644 index 0000000000..ceda8e7604 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1468.RULE @@ -0,0 +1,14 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + +License: GPL-2 + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2. + . + On Debian systems, the complete text of version 2 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-2' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1469.RULE b/src/licensedcode/data/rules/gpl-2.0_1469.RULE new file mode 100644 index 0000000000..5cd4981d89 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1469.RULE @@ -0,0 +1,13 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + +This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2. + . + On Debian systems, the complete text of version 2 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-2' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_1470.RULE b/src/licensedcode/data/rules/gpl-2.0_1470.RULE new file mode 100644 index 0000000000..61b638e4e6 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_1470.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +--- + +License: GPL-2 + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_148.RULE b/src/licensedcode/data/rules/gpl-2.0_148.RULE index 6425a225a5..4e3d870ebf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_148.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_148.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- is free software; you can redistribute it and/or - modify it under the terms of version 2 of the GNU General Public - License as published by the Free Software Foundation. + modify it under the terms of {{version 2 of the GNU General Public + License}} as published by the Free Software Foundation. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with ; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_149.RULE b/src/licensedcode/data/rules/gpl-2.0_149.RULE index 881b0363a3..f9f8ce7738 100644 --- a/src/licensedcode/data/rules/gpl-2.0_149.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_149.RULE @@ -5,8 +5,8 @@ ignorable_urls: - http://opensource.org/licenses/gpl-license.php --- -provides this source code under the GPL v2 License. -The GPL v2 license is available at +provides this source code under the {{GPL v2}} License. +The {{GPL v2}} license is available at http://opensource.org/licenses/gpl-license.php. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS diff --git a/src/licensedcode/data/rules/gpl-2.0_15.RULE b/src/licensedcode/data/rules/gpl-2.0_15.RULE index f00d7b374b..b2b6ce08b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_15.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_15.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://www.opensource.org/licenses/gpl-license.php --- -* under the terms of the "GNU General Public License (GPL) Version 2" a +* under the terms of the "{{GNU General Public License (GPL) Version 2}}" a * copy of which is available from the Open Source Initiative, see * http://www.opensource.org/licenses/gpl-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_150.RULE b/src/licensedcode/data/rules/gpl-2.0_150.RULE index 03c6209d11..dd27837a1c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_150.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_150.RULE @@ -5,4 +5,4 @@ is_license_notice: yes This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions -of the GNU General Public License v.2. \ No newline at end of file +of the {{GNU General Public License v.2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_151.RULE b/src/licensedcode/data/rules/gpl-2.0_151.RULE index d72d70e6ba..53d5d82c2b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_151.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_151.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -License terms: GNU General Public License (GPL) version 2 \ No newline at end of file +License terms: {{GNU General Public License (GPL) version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_151_either.RULE b/src/licensedcode/data/rules/gpl-2.0_151_either.RULE index d045de9f19..c17d33081e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_151_either.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_151_either.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; either version 2 of the License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_152.RULE b/src/licensedcode/data/rules/gpl-2.0_152.RULE index 81d0dcf769..1103c52929 100644 --- a/src/licensedcode/data/rules/gpl-2.0_152.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_152.RULE @@ -4,8 +4,8 @@ is_license_notice: yes minimum_coverage: 90 --- -This software is distributed under the terms of the GNU General Public -License ("GPL") version 2, as published by the Free Software Foundation. +This software is distributed under the terms of the {{GNU General Public +License ("GPL") version 2}}, as published by the Free Software Foundation. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE diff --git a/src/licensedcode/data/rules/gpl-2.0_153.RULE b/src/licensedcode/data/rules/gpl-2.0_153.RULE index b745aab387..cbc0c9d614 100644 --- a/src/licensedcode/data/rules/gpl-2.0_153.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_153.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -License Terms: GNU General Public License v2 \ No newline at end of file +License Terms: {{GNU General Public License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_154.RULE b/src/licensedcode/data/rules/gpl-2.0_154.RULE index c2dd6f6a36..1aea78a14d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_154.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_154.RULE @@ -5,6 +5,6 @@ referenced_filenames: - COPYING --- -This software may be distributed under the terms of the GNU General -Public License ("GPL") version 2 as distributed in the 'COPYING' +This software may be distributed under the terms of the {{GNU General +Public License ("GPL") version 2}} as distributed in the 'COPYING' file from the main directory of the linux kernel source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_156.RULE b/src/licensedcode/data/rules/gpl-2.0_156.RULE index 4b5fac71ee..015edc9187 100644 --- a/src/licensedcode/data/rules/gpl-2.0_156.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_156.RULE @@ -10,5 +10,5 @@ notes: linux is GPL2. WHAT IS LINUX? - It is distributed under the GNU General Public License - see the + It is distributed under the {{GNU General Public License}} - see the accompanying COPYING file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_158.RULE b/src/licensedcode/data/rules/gpl-2.0_158.RULE index 80cdc52309..4f24622f1c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_158.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_158.RULE @@ -5,6 +5,6 @@ is_license_notice: yes based on GPL'ed kernel sources -This file is licensed under the terms of the GNU General Public -License version 2. This program is licensed "as is" without any +This file is licensed {{under the terms of the GNU General Public +License version 2}}. This program is licensed "as is" without any warranty of any kind, whether express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_159.RULE b/src/licensedcode/data/rules/gpl-2.0_159.RULE index 0598acdf4b..23b86aa7cc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_159.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_159.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it -under the terms and conditions of the GNU General Public License, -version 2, as published by the Free Software Foundation. +under the terms and conditions of {{the GNU General Public License, +version 2}}, as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_160.RULE b/src/licensedcode/data/rules/gpl-2.0_160.RULE index 7bb0b7bd27..91eac80b75 100644 --- a/src/licensedcode/data/rules/gpl-2.0_160.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_160.RULE @@ -7,9 +7,9 @@ ignorable_urls: - http://www.opensource.org/licenses/gpl-license.html --- -The code contained herein is licensed under the GNU General Public -License. You may obtain a copy of the GNU General Public License -Version 2 at the following locations: +The code contained herein is licensed under the {{GNU General Public +License}}. You may obtain a copy of {{the GNU General Public License +Version 2}} at the following locations: http://www.opensource.org/licenses/gpl-license.html http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_161.RULE b/src/licensedcode/data/rules/gpl-2.0_161.RULE index afd604580b..e171c9196a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_161.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_161.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -The code contained herein is licensed under the GNU General Public - License V2. \ No newline at end of file +The code contained herein is licensed under the {{GNU General Public + License V2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_162.RULE b/src/licensedcode/data/rules/gpl-2.0_162.RULE index 3d317202ff..281b1ba4bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_162.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_162.RULE @@ -7,5 +7,5 @@ referenced_filenames: notes: the linux reference explains why we return a GPLv2 --- -May be copied or modified under the terms of the GNU General Public -License. See linux/COPYING for more information. \ No newline at end of file +May be copied or modified under the terms of the {{GNU General Public +License}}. See linux/COPYING for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_162_1.RULE b/src/licensedcode/data/rules/gpl-2.0_162_1.RULE index 9cac7e99ec..7141003240 100644 --- a/src/licensedcode/data/rules/gpl-2.0_162_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_162_1.RULE @@ -8,5 +8,5 @@ referenced_filenames: notes: linux referenced explain why we return a GPLv2 --- -It is hereby placed under the terms of the GNU general public license. +It is hereby placed under the terms of the {{GNU general public license}}. (See linux/COPYING). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_163.RULE b/src/licensedcode/data/rules/gpl-2.0_163.RULE index a877020562..d5ffc9c61f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_163.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_163.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms of version 2 of the GNU General Public License + under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_164.RULE b/src/licensedcode/data/rules/gpl-2.0_164.RULE index e72d75de56..f5d18532e4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_164.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_164.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms of version 2 of the GNU General Public License +under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. The code is based on publicly available information: diff --git a/src/licensedcode/data/rules/gpl-2.0_165.RULE b/src/licensedcode/data/rules/gpl-2.0_165.RULE index 1d47febce7..991cca55c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_165.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_165.RULE @@ -7,8 +7,8 @@ referenced_filenames: notes: this is very specific to the linux kernel and its COPYING --- -This file is subject to the terms and conditions of the GNU General Public - License. See the file COPYING in the main directory of this archive for +This file is subject to the terms and conditions of the {{GNU General Public + License}}. See the file COPYING in the main directory of this archive for more details. Some parts are based on viafb \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_167.RULE b/src/licensedcode/data/rules/gpl-2.0_167.RULE index b305a49dac..f81fab8edc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_167.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_167.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it -under the terms and conditions of the GNU General Public License, -version 2, as published by the Free Software Foundation. +under the terms and conditions of {{the GNU General Public License, +version 2}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. -The full GNU General Public License is included in this distribution in +The full {{GNU General Public License}} is included in this distribution in the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_168.RULE b/src/licensedcode/data/rules/gpl-2.0_168.RULE index 0149ba68fe..509863aa0b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_168.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_168.RULE @@ -5,8 +5,8 @@ minimum_coverage: 90 --- This program is free software; you may redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}} of the License. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF diff --git a/src/licensedcode/data/rules/gpl-2.0_169.RULE b/src/licensedcode/data/rules/gpl-2.0_169.RULE index 72b3b42254..570bd3330b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_169.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_169.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under GPL v2. \ No newline at end of file +Released under {{GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_17.RULE b/src/licensedcode/data/rules/gpl-2.0_17.RULE index 0b0a00becb..68e71ba7bd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_17.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_17.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -In general all applications are covered by the GNU General Public License (GPL) version 2 \ No newline at end of file +In general all applications are covered by the {{GNU General Public License (GPL) version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_171.RULE b/src/licensedcode/data/rules/gpl-2.0_171.RULE index e060d43b35..3668dd2c3a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_171.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_171.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under the terms of the GNU GPL v2.0. \ No newline at end of file +Released under the terms of the {{GNU GPL v2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_172.RULE b/src/licensedcode/data/rules/gpl-2.0_172.RULE index 68acdf6bfb..9148905e45 100644 --- a/src/licensedcode/data/rules/gpl-2.0_172.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_172.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- License: -This code can be distributed under the terms of the GNU General Public -License (GPL) Version 2 provided that the above header down to and +This code can be distributed under the terms of the {{GNU General Public +License (GPL) Version 2}} provided that the above header down to and including this sentence is retained in full. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_173.RULE b/src/licensedcode/data/rules/gpl-2.0_173.RULE index e1f02b70bb..eb25aaa9c3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_173.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_173.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Subject to the GNU General Public License v2 only. \ No newline at end of file +Subject to the {{GNU General Public License v2}} only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_179.RULE b/src/licensedcode/data/rules/gpl-2.0_179.RULE index 53d2ee540e..987d2c60bf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_179.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_179.RULE @@ -11,17 +11,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see http://www.gnu.org/licenses +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see http://www.gnu.org/licenses Please visit http://www.xyratex.com/contact if you need additional information or have any questions. diff --git a/src/licensedcode/data/rules/gpl-2.0_18.RULE b/src/licensedcode/data/rules/gpl-2.0_18.RULE index fd8e484f4d..1569b5f687 100644 --- a/src/licensedcode/data/rules/gpl-2.0_18.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_18.RULE @@ -3,6 +3,6 @@ license_expression: gpl-2.0 is_license_notice: yes --- -Released under the terms of the GNU General Public License version 2. +Released {{under the terms of the GNU General Public License version 2}}. -See /usr/share/common-licenses/GPL for the full license. \ No newline at end of file +See {{/usr/share/common-licenses/GPL}} for the full license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_180.RULE b/src/licensedcode/data/rules/gpl-2.0_180.RULE index 1c0e2bda1d..2bc87b2813 100644 --- a/src/licensedcode/data/rules/gpl-2.0_180.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_180.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -This file may be redistributed under the terms of the GNU General Public -License v2. \ No newline at end of file +This file may be redistributed under the terms of the {{GNU General Public +License v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_181.RULE b/src/licensedcode/data/rules/gpl-2.0_181.RULE index df27111114..593b427142 100644 --- a/src/licensedcode/data/rules/gpl-2.0_181.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_181.RULE @@ -3,7 +3,7 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This file is released under the GPL v2. +This file is released under the {{GPL v2}}. This file may be redistributed under the terms of the GNU Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_184.RULE b/src/licensedcode/data/rules/gpl-2.0_184.RULE index 6696319b0b..e6055cd253 100644 --- a/src/licensedcode/data/rules/gpl-2.0_184.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_184.RULE @@ -6,14 +6,14 @@ is_license_notice: yes License (GPLv2): This program is free software; you can redistribute it and/or modify it -under the terms and conditions of the GNU General Public License, -version 2, as published by the Free Software Foundation. +under the terms and conditions of {{the GNU General Public License, +version 2}}, as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. * See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_193.RULE b/src/licensedcode/data/rules/gpl-2.0_193.RULE index 5113ac9014..08fed8764a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_193.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_193.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This is free software; you can redistribute it and/or -modify it under the terms of version 2 of the GNU General Public -License as published by the Free Software Foundation. +modify it under the terms of {{version 2 of the GNU General Public +License}} as published by the Free Software Foundation. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with This; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_194.RULE b/src/licensedcode/data/rules/gpl-2.0_194.RULE index c209d48272..10f144137b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_194.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_194.RULE @@ -6,5 +6,5 @@ relevance: 100 "DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. " + "This code is free software; you can redistribute it and/or modify it " + -"under the terms of the GNU General Public License version 2 only, as " + +"{{under the terms of the GNU General Public License version 2}} only, as " + "published by the Free Software Foundation. "; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_199.RULE b/src/licensedcode/data/rules/gpl-2.0_199.RULE index 7644ebb07c..bbb914816a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_199.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_199.RULE @@ -7,5 +7,5 @@ referenced_filenames: - COPYING --- -This source code is licensed under the GNU General Public License, -Version 2. See the file COPYING for more details. \ No newline at end of file +This source code is licensed under {{the GNU General Public License, +Version 2}}. See the file COPYING for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_20.RULE b/src/licensedcode/data/rules/gpl-2.0_20.RULE index 023c649e19..980991ea22 100644 --- a/src/licensedcode/data/rules/gpl-2.0_20.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_20.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The project is licensed under the GNU GENERAL PUBLIC LICENSE Version 2. \ No newline at end of file +The project is licensed under {{the GNU GENERAL PUBLIC LICENSE Version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_202.RULE b/src/licensedcode/data/rules/gpl-2.0_202.RULE index b729eae0f9..04792eddf3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_202.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_202.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU General Public License, version 2.0 (GPLv2) \ No newline at end of file +Licensed under {{the GNU General Public License, version 2.0}} (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_203.RULE b/src/licensedcode/data/rules/gpl-2.0_203.RULE index bb3412cf2d..41cfb07680 100644 --- a/src/licensedcode/data/rules/gpl-2.0_203.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_203.RULE @@ -3,6 +3,6 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This software is licensed under the terms of the GNU General Public -License version 2, as published by the Free Software Foundation, and +This software is licensed {{under the terms of the GNU General Public +License version 2}}, as published by the Free Software Foundation, and may be copied, distributed, and modified under those terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_204.RULE b/src/licensedcode/data/rules/gpl-2.0_204.RULE index f2cd8cec10..00bfdc58a5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_204.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_204.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License version 2 as published by + {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along with + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_205.RULE b/src/licensedcode/data/rules/gpl-2.0_205.RULE index 1d4b0c7876..9642b5573d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_205.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_205.RULE @@ -10,17 +10,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 only, + it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License version 2 for more details (a copy is included + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU + General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). - You should have received a copy of the GNU General Public License - version 2 along with this program; If not, see + You should have received a copy of {{the GNU General Public License + version 2}} along with this program; If not, see GPLv2.pdf Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, diff --git a/src/licensedcode/data/rules/gpl-2.0_206.RULE b/src/licensedcode/data/rules/gpl-2.0_206.RULE index 23bf1f6488..d3472b1fdb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_206.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_206.RULE @@ -10,17 +10,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see http://www.gnu.org/licenses/gpl-2.0.txt GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_207.RULE b/src/licensedcode/data/rules/gpl-2.0_207.RULE index 197259c850..b2fdb9a1c1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_207.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_207.RULE @@ -5,11 +5,11 @@ minimum_coverage: 80 --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 - of the License. + of the License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. \ No newline at end of file + {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_208.RULE b/src/licensedcode/data/rules/gpl-2.0_208.RULE index 3133adf0db..016542877a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_208.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_208.RULE @@ -6,13 +6,13 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or -modify it under the terms of version 2 of the GNU General -Public License as published by the Free Software Foundation. +modify it under the terms of {{version 2 of the GNU General +Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD -TO BE LEGALLY INVALID. See the GNU General Public License for +TO BE LEGALLY INVALID. See the {{GNU General Public License}} for more details, a copy of which can be found in the file COPYING included with this package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_209.RULE b/src/licensedcode/data/rules/gpl-2.0_209.RULE index 53cf9d7648..0b8d8dc91c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_209.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_209.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_21.RULE b/src/licensedcode/data/rules/gpl-2.0_21.RULE index 8ad581c3ba..736a3bedf6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_21.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_21.RULE @@ -12,7 +12,7 @@ ignorable_holders: - the Free Software Foundation --- -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, located in the file LICENSE. +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, located in the file LICENSE. GNU GENERAL PUBLIC LICENSE @@ -26,8 +26,8 @@ GNU GENERAL PUBLIC LICENSE Preamble The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free +freedom to share and change it. By contrast, the {{GNU General Public +License}} is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to @@ -311,16 +311,16 @@ the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; either version 2 of the License}}, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. diff --git a/src/licensedcode/data/rules/gpl-2.0_210.RULE b/src/licensedcode/data/rules/gpl-2.0_210.RULE index e1ae8c54d5..54cef0b115 100644 --- a/src/licensedcode/data/rules/gpl-2.0_210.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_210.RULE @@ -6,10 +6,10 @@ is_license_notice: yes The original driver's license is GPL, as declared with MODULE_LICENSE() This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation under version 2 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation under version 2 of the License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_211.RULE b/src/licensedcode/data/rules/gpl-2.0_211.RULE index 641ce2f78f..381256c0dc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_211.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_211.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation; Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_212.RULE b/src/licensedcode/data/rules/gpl-2.0_212.RULE index 280fd98e42..48e5cece02 100644 --- a/src/licensedcode/data/rules/gpl-2.0_212.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_212.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_213.RULE b/src/licensedcode/data/rules/gpl-2.0_213.RULE index a07c87a6da..e832dff2e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_213.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_213.RULE @@ -4,8 +4,8 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. -On Debian GNU/Linux systems, the complete text of the GNU General Public -License version 2 can be found in \`/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of {{the GNU General Public +License version 2}} can be found in \`{{/usr/share/common-licenses/GPL-2}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_214.RULE b/src/licensedcode/data/rules/gpl-2.0_214.RULE index ae1aea162d..235164bdc4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_214.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_214.RULE @@ -7,6 +7,6 @@ referenced_filenames: notes: the Linux COPYING reference makes this a v2 license mention --- -* This file is subject to the terms and conditions of the GNU General Public - * License. See the file COPYING in the main directory of the Linux +* This file is subject to the terms and conditions of the {{GNU General Public + * License}}. See the file COPYING in the main directory of the Linux * distribution for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_215.RULE b/src/licensedcode/data/rules/gpl-2.0_215.RULE index 85e9e97936..8575215131 100644 --- a/src/licensedcode/data/rules/gpl-2.0_215.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_215.RULE @@ -9,10 +9,10 @@ This file is licensed under the GPL2 license. GPL This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License version 2 as published +{{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_216.RULE b/src/licensedcode/data/rules/gpl-2.0_216.RULE index 606a2abaad..0de1cafafa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_216.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_216.RULE @@ -6,4 +6,4 @@ notes: the Linux reference makes this a v2 license mention --- This driver is a part of the linux kernel, and is thus distributed - under the GNU General Public License. \ No newline at end of file + under the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_217.RULE b/src/licensedcode/data/rules/gpl-2.0_217.RULE index 0e7bb9aba3..c680a175d6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_217.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_217.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is licensed under the GPL v2. \ No newline at end of file +This file is licensed under the {{GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_218.RULE b/src/licensedcode/data/rules/gpl-2.0_218.RULE index 0c7a1e05be..61178243a4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_218.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_218.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is rleased under the GPL v2. \ No newline at end of file +This file is rleased under the {{GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_219.RULE b/src/licensedcode/data/rules/gpl-2.0_219.RULE index d32ce07fc5..544267eac7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_219.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_219.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -GPL v2 Only \ No newline at end of file +{{GPL v2}} Only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_22.RULE b/src/licensedcode/data/rules/gpl-2.0_22.RULE index 076b848bf7..e57b7ab371 100644 --- a/src/licensedcode/data/rules/gpl-2.0_22.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_22.RULE @@ -11,4 +11,4 @@ Doxygen license Copyright © 1997-2009 by Dimitri van Heesch. -Permission to use, copy, modify, and distribute this software and its documentation under the terms of the GNU General Public License is hereby granted. No representations are made about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. See the GNU General Public License for more details. \ No newline at end of file +Permission to use, copy, modify, and distribute this software and its documentation under the terms of the {{GNU General Public License}} is hereby granted. No representations are made about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_221.RULE b/src/licensedcode/data/rules/gpl-2.0_221.RULE index 51e9a77968..fff503f405 100644 --- a/src/licensedcode/data/rules/gpl-2.0_221.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_221.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is distributed under GNU GPL v2, 1991 \ No newline at end of file +This software is distributed under {{GNU GPL v2}}, 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_222.RULE b/src/licensedcode/data/rules/gpl-2.0_222.RULE index f74c81f78f..628ae3247a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_222.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_222.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under the term of the GNU GPL v2. \ No newline at end of file +Released under the term of the {{GNU GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_223.RULE b/src/licensedcode/data/rules/gpl-2.0_223.RULE index 5f20e8738d..a485fdfcac 100644 --- a/src/licensedcode/data/rules/gpl-2.0_223.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_223.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0 -is_license_notice: yes +is_license_reference: yes +is_required_phrase: yes relevance: 90 --- -GNU GPL v2. \ No newline at end of file +GNU GPL v2 diff --git a/src/licensedcode/data/rules/gpl-2.0_224.RULE b/src/licensedcode/data/rules/gpl-2.0_224.RULE index c5c66c3a79..75be9ea5be 100644 --- a/src/licensedcode/data/rules/gpl-2.0_224.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_224.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is released under the GPL v2 \ No newline at end of file +This file is released under the {{GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_225.RULE b/src/licensedcode/data/rules/gpl-2.0_225.RULE index 3d96019b9d..824d23b377 100644 --- a/src/licensedcode/data/rules/gpl-2.0_225.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_225.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This is released under the GPL v2 \ No newline at end of file +This is released under the {{GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_227.RULE b/src/licensedcode/data/rules/gpl-2.0_227.RULE index 6ab22edb75..ef7165b0c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_227.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_227.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -GPL v2, can be found in COPYING. \ No newline at end of file +{{GPL v2}}, can be found in COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_228.RULE b/src/licensedcode/data/rules/gpl-2.0_228.RULE index e193016c54..234a36403a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_228.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_228.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under the GPL v2. (and only v2, not any later version) \ No newline at end of file +Released under the {{GPL v2}}. (and only v2, not any later version) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_229.RULE b/src/licensedcode/data/rules/gpl-2.0_229.RULE index 815d2e3c55..7c0f2e4836 100644 --- a/src/licensedcode/data/rules/gpl-2.0_229.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_229.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed "as is" WITHOUT ANY WARRANTY of any kind, whether express or implied; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_230.RULE b/src/licensedcode/data/rules/gpl-2.0_230.RULE index edb563b767..c7dc036ed7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_230.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_230.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Released under the GPL v2 only. \ No newline at end of file +Released under the {{GPL v2}} only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_231.RULE b/src/licensedcode/data/rules/gpl-2.0_231.RULE index 0944ecd019..dbbde35d26 100644 --- a/src/licensedcode/data/rules/gpl-2.0_231.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_231.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This file is released under the GNU GPL v2. \ No newline at end of file +This file is released under the {{GNU GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_232.RULE b/src/licensedcode/data/rules/gpl-2.0_232.RULE index 65d1c6ff05..742eb4b60c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_232.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_232.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This file is released undert the GPL v2. \ No newline at end of file +This file is released undert the {{GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_235.RULE b/src/licensedcode/data/rules/gpl-2.0_235.RULE index aca0cffa7f..9553be3e5d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_235.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_235.RULE @@ -3,6 +3,6 @@ license_expression: gpl-2.0 is_license_notice: yes --- -The files in kernel/ and hotplug/ are licensed under the GNU General Public - License Version 2 from the Free Software Foundation. A copy of the license +The files in kernel/ and hotplug/ are licensed under {{the GNU General Public + License Version 2}} from the Free Software Foundation. A copy of the license is included in the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_237.RULE b/src/licensedcode/data/rules/gpl-2.0_237.RULE index ab5a92dc67..3f230f7ea5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_237.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_237.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is licenced under the GPL v2. \ No newline at end of file +This file is licenced under the {{GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_238.RULE b/src/licensedcode/data/rules/gpl-2.0_238.RULE index 927c5fa034..8306416f9a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_238.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_238.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 98 --- diff --git a/src/licensedcode/data/rules/gpl-2.0_239.RULE b/src/licensedcode/data/rules/gpl-2.0_239.RULE index c94af98601..8050d031a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_239.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_239.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is placed under the terms of the GNU General Public License v2 \ No newline at end of file +This code is placed under the terms of the {{GNU General Public License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_240.RULE b/src/licensedcode/data/rules/gpl-2.0_240.RULE index 172717ec9c..082272a4d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_240.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_240.RULE @@ -7,14 +7,14 @@ notes: the warranty and disclaimer sections are uncommon --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation; version 2 +modify it under the terms of the {{GNU General Public License +as published by the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. NO WARRANTY THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR diff --git a/src/licensedcode/data/rules/gpl-2.0_241.RULE b/src/licensedcode/data/rules/gpl-2.0_241.RULE index cd631ee443..6bac5177ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0_241.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_241.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributable under version 2 of the GNU General Public License. \ No newline at end of file +Distributable under {{version 2 of the GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_243.RULE b/src/licensedcode/data/rules/gpl-2.0_243.RULE index 82327e4c1c..2a3ceae4b9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_243.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_243.RULE @@ -5,5 +5,5 @@ is_license_notice: yes License: As part of this driver was derived from the driver it - falls under the same license, which is GNU General Public - License v2 \ No newline at end of file + falls under the same license, which is {{GNU General Public + License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_244.RULE b/src/licensedcode/data/rules/gpl-2.0_244.RULE index f232e4ce72..47917df06c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_244.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_244.RULE @@ -6,4 +6,4 @@ notes: the Linux reference makes this a v2 license mention --- This is an extension to the Linux operating system, and is covered by the -same GNU General Public License that covers the Linux-kernel. \ No newline at end of file +same {{GNU General Public License}} that covers the Linux-kernel. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_245.RULE b/src/licensedcode/data/rules/gpl-2.0_245.RULE index fad6b7ba10..d7ea631260 100644 --- a/src/licensedcode/data/rules/gpl-2.0_245.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_245.RULE @@ -5,6 +5,6 @@ referenced_filenames: - COPYING --- -This file is subject to the terms and conditions of the GNU General Public -License v2. See the file COPYING in the main directory of this archive for +This file is subject to the terms and conditions of the {{GNU General Public +License v2}}. See the file COPYING in the main directory of this archive for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_246.RULE b/src/licensedcode/data/rules/gpl-2.0_246.RULE index 7875b6cd09..d8f6b2ec36 100644 --- a/src/licensedcode/data/rules/gpl-2.0_246.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_246.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This software may be redistributed and/or modified under the terms of -the GNU General Public License ("GPL") version 2 only as published by the +the {{GNU General Public License ("GPL") version 2}} only as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_247.RULE b/src/licensedcode/data/rules/gpl-2.0_247.RULE index b313a7862b..b619144263 100644 --- a/src/licensedcode/data/rules/gpl-2.0_247.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_247.RULE @@ -10,14 +10,14 @@ ignorable_holders: --- You may modify and redistribute the device driver code under the -GNU General Public License (a copy of which is attached hereto as +{{GNU General Public License}} (a copy of which is attached hereto as Exhibit A) published by the Free Software Foundation (version 2). EXHIBIT A - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 + {{GNU GENERAL PUBLIC LICENSE + Version 2}}, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA @@ -27,8 +27,8 @@ EXHIBIT A Preamble The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free +freedom to share and change it. By contrast, the {{GNU General Public +License}} is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to @@ -74,7 +74,7 @@ patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. - GNU GENERAL PUBLIC LICENSE + {{GNU GENERAL PUBLIC LICENSE}} TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains diff --git a/src/licensedcode/data/rules/gpl-2.0_248.RULE b/src/licensedcode/data/rules/gpl-2.0_248.RULE index aa7f5ec3ad..4cbd70ef22 100644 --- a/src/licensedcode/data/rules/gpl-2.0_248.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_248.RULE @@ -6,12 +6,12 @@ ignorable_urls: --- This driver is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, version 2. + it {{under the terms of the GNU General Public License, version 2}}. This driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this driver; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_25.RULE b/src/licensedcode/data/rules/gpl-2.0_25.RULE index 2c0572fcb7..1c977e1ea7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_25.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_25.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, using version 2 of the License. \ No newline at end of file + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation, using version 2 of the License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_250.RULE b/src/licensedcode/data/rules/gpl-2.0_250.RULE index f6ec68d82a..8b4944ff9f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_250.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_250.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This driver is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation, version 2}} of the License. This driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this driver. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_251.RULE b/src/licensedcode/data/rules/gpl-2.0_251.RULE index 0659aa4770..34d418f09e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_251.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_251.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation, version 2}} of the License. This driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this software. If not see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_252.RULE b/src/licensedcode/data/rules/gpl-2.0_252.RULE index 0ba8031224..519b0a06f7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_252.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_252.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms of version 2 of the GNU General Public License as + under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along with + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_253.RULE b/src/licensedcode/data/rules/gpl-2.0_253.RULE index 6f6042fc55..1774ef5503 100644 --- a/src/licensedcode/data/rules/gpl-2.0_253.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_253.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License, version 2, as +it {{under the terms of the GNU General Public License, version 2}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_254.RULE b/src/licensedcode/data/rules/gpl-2.0_254.RULE index 3d63ec1613..c12a2e8942 100644 --- a/src/licensedcode/data/rules/gpl-2.0_254.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_254.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 and +it {{under the terms of the GNU General Public License version 2}} and only version 2 as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_255.RULE b/src/licensedcode/data/rules/gpl-2.0_255.RULE index 7ac05ba345..f31d44c237 100644 --- a/src/licensedcode/data/rules/gpl-2.0_255.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_255.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License version -2 as published by the Free Software Foundation. +modify it {{under the terms of the GNU General Public License version +2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_256.RULE b/src/licensedcode/data/rules/gpl-2.0_256.RULE index 764a1a307d..69233eaa98 100644 --- a/src/licensedcode/data/rules/gpl-2.0_256.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_256.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of version 2 of the GNU General Public - License as published by the Free Software Foundation. + modify it under the terms of {{version 2 of the GNU General Public + License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_257.RULE b/src/licensedcode/data/rules/gpl-2.0_257.RULE index df9a786a35..bca213a490 100644 --- a/src/licensedcode/data/rules/gpl-2.0_257.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_257.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - version 2 only, as published by the Free Software Foundation. + modify it {{under the terms of the GNU General Public License + version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA diff --git a/src/licensedcode/data/rules/gpl-2.0_258.RULE b/src/licensedcode/data/rules/gpl-2.0_258.RULE index 19337b066e..447296d6fd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_258.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_258.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it - under the terms of version 2 of the GNU General Public License as + under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along with + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA - The full GNU General Public License is included in this distribution in the + The full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_259.RULE b/src/licensedcode/data/rules/gpl-2.0_259.RULE index 31232b0624..63b8378abd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_259.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_259.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License v2 as published by the + under the terms of the {{GNU General Public License v2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along with + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_26.RULE b/src/licensedcode/data/rules/gpl-2.0_26.RULE index 7aa8e9dd14..46078273e4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_26.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_26.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.1 ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_260.RULE b/src/licensedcode/data/rules/gpl-2.0_260.RULE index 167e50e617..36cb79bc86 100644 --- a/src/licensedcode/data/rules/gpl-2.0_260.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_260.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation - version 2. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation - version 2}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_261.RULE b/src/licensedcode/data/rules/gpl-2.0_261.RULE index b5a4412f85..d15157ed29 100644 --- a/src/licensedcode/data/rules/gpl-2.0_261.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_261.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms of version 2 of the GNU General Public License as +under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_262.RULE b/src/licensedcode/data/rules/gpl-2.0_262.RULE index 57af522b72..2b3cac637d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_262.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_262.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation version 2. +modify it under the terms of the {{GNU General Public License as +published by the Free Software Foundation version 2}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_263.RULE b/src/licensedcode/data/rules/gpl-2.0_263.RULE index 371ee03386..40bea29885 100644 --- a/src/licensedcode/data/rules/gpl-2.0_263.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_263.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, -version 2 of the License. +version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with this program; if not, write to the +You should have received a copy of the {{GNU General Public +License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 021110-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_264.RULE b/src/licensedcode/data/rules/gpl-2.0_264.RULE index 98cf0aea89..4deee910d8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_264.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_264.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 300, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_265.RULE b/src/licensedcode/data/rules/gpl-2.0_265.RULE index d5103c1f48..0f1cfecb86 100644 --- a/src/licensedcode/data/rules/gpl-2.0_265.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_265.RULE @@ -7,14 +7,14 @@ notes: the warranty and disclaimer sections are funky --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation; version 2 +modify it under the terms of the {{GNU General Public License +as published by the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. NO WARRANTY THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR @@ -36,5 +36,5 @@ TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_266.RULE b/src/licensedcode/data/rules/gpl-2.0_266.RULE index e8827e4794..836a6397c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_266.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_266.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the Free - Software Foundation; version 2. + under the terms of the {{GNU General Public License as published by the Free + Software Foundation; version 2}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should find a copy of v2 of the GNU General Public License somewhere on + You should find a copy of v2 of the {{GNU General Public License}} somewhere on your Linux system; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_267.RULE b/src/licensedcode/data/rules/gpl-2.0_267.RULE index fd01fee96d..859f737aba 100644 --- a/src/licensedcode/data/rules/gpl-2.0_267.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_267.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License - as published by the Free Software Foundation; version 2 of the Licence. + it under the terms of the {{GNU General Public License + as published by the Free Software Foundation; version 2}} of the Licence. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_268.RULE b/src/licensedcode/data/rules/gpl-2.0_268.RULE index 01837467af..79d11b72c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_268.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_268.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or - modify it under the terms of version 2 of the GNU General - Public License as published by the Free Software Foundation. + modify it under the terms of {{version 2 of the GNU General + Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public - License along with this program; if not, write to the Free + PURPOSE. See the {{GNU General Public License}} for more details. + You should have received a copy of the {{GNU General Public + License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - The full GNU General Public License is included in this + The full {{GNU General Public License}} is included in this distribution in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_269.RULE b/src/licensedcode/data/rules/gpl-2.0_269.RULE index 1f2c8a78f1..a9113ac40a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_269.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_269.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it -under the terms of version 2 of the GNU General Public License +under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it would be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -You should have received a copy of the GNU General Public -License along with this program; if not, write the Free Software +You should have received a copy of the {{GNU General Public +License}} along with this program; if not, write the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. For further information regarding this notice, see: diff --git a/src/licensedcode/data/rules/gpl-2.0_27.RULE b/src/licensedcode/data/rules/gpl-2.0_27.RULE index ff6e37bc31..56e29063d2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_27.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_27.RULE @@ -8,15 +8,15 @@ notes: GPL 2.0 debian version --- This program is free software; you can redistribute it and/or modify it -under the terms of version 2 of the GNU General Public License as published +under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License version 2 +You should have received a copy of {{the GNU General Public License version 2}} with your Debian system, in /usr/share/common-licenses/GPL-2, or with the goffice source package as the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA diff --git a/src/licensedcode/data/rules/gpl-2.0_270.RULE b/src/licensedcode/data/rules/gpl-2.0_270.RULE index 3015e06ead..b76c6a53e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_270.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_270.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; ifnot, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_271.RULE b/src/licensedcode/data/rules/gpl-2.0_271.RULE index d93a41802a..ac2673c3f8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_271.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_271.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License version 2 as published + {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or - NON INFRINGEMENT. See the GNU General Public License for more + NON INFRINGEMENT. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_272.RULE b/src/licensedcode/data/rules/gpl-2.0_272.RULE index 6132688ff0..c7f92f74fb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_272.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_272.RULE @@ -8,17 +8,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 only, + it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License version 2 for more details (a copy is included + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU + General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). - You should have received a copy of the GNU General Public License - version 2 along with this program; if not, write to the + You should have received a copy of {{the GNU General Public License + version 2}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 021110-1307, USA diff --git a/src/licensedcode/data/rules/gpl-2.0_273.RULE b/src/licensedcode/data/rules/gpl-2.0_273.RULE index a515685953..ee6531066e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_273.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_273.RULE @@ -3,10 +3,10 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This program can be redistributed or modified under the terms of the -GNU General Public License version 2 as published by the Free Software +This program can be redistributed or modified {{under the terms of the +GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed without any warranty or implied warranty of merchantability or fitness for a particular purpose. -See the GNU General Public License version 2 for more details. \ No newline at end of file +See {{the GNU General Public License version 2}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_274.RULE b/src/licensedcode/data/rules/gpl-2.0_274.RULE index 7ad76f075a..5fa9c37eef 100644 --- a/src/licensedcode/data/rules/gpl-2.0_274.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_274.RULE @@ -3,11 +3,11 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This software is licensed under the terms of the GNU General Public -License version 2, as published by the Free Software Foundation, and +This software is licensed {{under the terms of the GNU General Public +License version 2}}, as published by the Free Software Foundation, and may be copied, distributed, and modified under those terms. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_275.RULE b/src/licensedcode/data/rules/gpl-2.0_275.RULE index 3347dccec6..7ddac68b3e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_275.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_275.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This file is part of the Linux kernel, and is made available -under the terms of the GNU General Public License version 2, as +{{under the terms of the GNU General Public License version 2}}, as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_276.RULE b/src/licensedcode/data/rules/gpl-2.0_276.RULE index 8bcc424620..525f2b0dea 100644 --- a/src/licensedcode/data/rules/gpl-2.0_276.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_276.RULE @@ -3,11 +3,11 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This is licensed under the terms of the GNU General Public -License version 2, as published by the Free Software Foundation, and +This is licensed {{under the terms of the GNU General Public +License version 2}}, as published by the Free Software Foundation, and may be copied, distributed, and modified under those terms. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_277.RULE b/src/licensedcode/data/rules/gpl-2.0_277.RULE index dc6dd9c9e5..78ee3c4abb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_277.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_277.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -version 2, and only version 2, as published by the +modify it {{under the terms of the GNU General Public License +version 2}}, and only version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_278.RULE b/src/licensedcode/data/rules/gpl-2.0_278.RULE index b9a0f63a63..b0dbe9cc70 100644 --- a/src/licensedcode/data/rules/gpl-2.0_278.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_278.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_279.RULE b/src/licensedcode/data/rules/gpl-2.0_279.RULE index a8933bbd57..1ec3e4339d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_279.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_279.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation version 2. + modify it under the terms of the {{GNU General Public License as + published by the Free Software Foundation version 2}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_28.RULE b/src/licensedcode/data/rules/gpl-2.0_28.RULE index 0758b3766a..37cd42efde 100644 --- a/src/licensedcode/data/rules/gpl-2.0_28.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_28.RULE @@ -5,15 +5,15 @@ is_license_notice: yes License: GPL-2 This is free software; you can redistribute it and/or modify it under - the terms of the GNU General Public License as published by the Free - Software Foundation, version 2. + the terms of the {{GNU General Public License as published by the Free + Software Foundation, version 2}}. . This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License with - the Debian operating system, in /usr/share/common-licenses/GPL-2; if + You should have received a copy of the {{GNU General Public License}} with + the Debian operating system, in {{/usr/share/common-licenses/GPL-2}}; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_280.RULE b/src/licensedcode/data/rules/gpl-2.0_280.RULE index 215cff8007..8cda34b89d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_280.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_280.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License v2.0 as published by +it under the terms of the {{GNU General Public License v2.0}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_281.RULE b/src/licensedcode/data/rules/gpl-2.0_281.RULE index bff6101c2a..cd464ae0fa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_281.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_281.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms and conditions of the GNU General Public License, -version 2, as published by the Free Software Foundation. +under the terms and conditions of {{the GNU General Public License, +version 2}}, as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_282.RULE b/src/licensedcode/data/rules/gpl-2.0_282.RULE index 8a389b085d..26e5087984 100644 --- a/src/licensedcode/data/rules/gpl-2.0_282.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_282.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License (version 2 only) +it {{under the terms of the GNU General Public License (version 2}} only) as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_283.RULE b/src/licensedcode/data/rules/gpl-2.0_283.RULE index f907084e91..a8f5fc2abd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_283.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_283.RULE @@ -7,13 +7,13 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License, version 2, as +it {{under the terms of the GNU General Public License, version 2}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -The full GNU General Public License is included in this distribution in +The full {{GNU General Public License}} is included in this distribution in the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_284.RULE b/src/licensedcode/data/rules/gpl-2.0_284.RULE index ab854cc023..3329f1d1fd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_284.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_284.RULE @@ -7,13 +7,13 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it - under the terms and conditions of the GNU General Public License, - version 2, as published by the Free Software Foundation. + under the terms and conditions of {{the GNU General Public License, + version 2}}, as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - The full GNU General Public License is included in this distribution in + The full {{GNU General Public License}} is included in this distribution in the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_285.RULE b/src/licensedcode/data/rules/gpl-2.0_285.RULE index db8efbe41a..f3f91b541a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_285.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_285.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License (GPL) Version 2 as + under the terms of the {{GNU General Public License (GPL) Version 2}} as published by the Free Software Foundation This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_286.RULE b/src/licensedcode/data/rules/gpl-2.0_286.RULE index 543b9fd0f3..4124dccc69 100644 --- a/src/licensedcode/data/rules/gpl-2.0_286.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_286.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation, version 2. +modify it under the terms of the {{GNU General Public License +as published by the Free Software Foundation, version 2}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or -NON INFRINGEMENT. See the GNU General Public License for +NON INFRINGEMENT. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_287.RULE b/src/licensedcode/data/rules/gpl-2.0_287.RULE index f19ae9897b..d7529a5283 100644 --- a/src/licensedcode/data/rules/gpl-2.0_287.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_287.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License 2 as published +it under the terms of the {{GNU General Public License 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_288.RULE b/src/licensedcode/data/rules/gpl-2.0_288.RULE index 73db831cdb..74f5c269ef 100644 --- a/src/licensedcode/data/rules/gpl-2.0_288.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_288.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms of version 2 of the GNU General Public License as + under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_290.RULE b/src/licensedcode/data/rules/gpl-2.0_290.RULE index 1caf329137..5b70c378dc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_290.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_290.RULE @@ -9,4 +9,4 @@ modify it under the terms of the GPLv2. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR /PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_291.RULE b/src/licensedcode/data/rules/gpl-2.0_291.RULE index 558bf0d9fe..16d3af729e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_291.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_291.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms and conditions of the GNU General Public License, -version 2, as published by the Free Software Foundation. +under the terms and conditions of {{the GNU General Public License, +version 2}}, as published by the Free Software Foundation. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_292.RULE b/src/licensedcode/data/rules/gpl-2.0_292.RULE index 3c596affbe..93a4fb0659 100644 --- a/src/licensedcode/data/rules/gpl-2.0_292.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_292.RULE @@ -6,10 +6,10 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, version 2, as + it {{under the terms of the GNU General Public License, version 2}}, as published by the Free Software Foundation. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED diff --git a/src/licensedcode/data/rules/gpl-2.0_293.RULE b/src/licensedcode/data/rules/gpl-2.0_293.RULE index df9d468283..29baa5488d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_293.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_293.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 only. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2 only}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_294.RULE b/src/licensedcode/data/rules/gpl-2.0_294.RULE index d4362aa6c1..e5a5b0d8e5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_294.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_294.RULE @@ -6,14 +6,14 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License 2 as published + it under the terms of the {{GNU General Public License 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_295.RULE b/src/licensedcode/data/rules/gpl-2.0_295.RULE index c84c308b1c..d630979ef3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_295.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_295.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, version 2. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation, version 2}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_296.RULE b/src/licensedcode/data/rules/gpl-2.0_296.RULE index f3e7aa7196..67a6964f68 100644 --- a/src/licensedcode/data/rules/gpl-2.0_296.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_296.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_297.RULE b/src/licensedcode/data/rules/gpl-2.0_297.RULE index 0eb0348e7a..96369e37ba 100644 --- a/src/licensedcode/data/rules/gpl-2.0_297.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_297.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation version 2 of the License +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation version 2}} of the License This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_298.RULE b/src/licensedcode/data/rules/gpl-2.0_298.RULE index 5b9ae72803..2ee3513f85 100644 --- a/src/licensedcode/data/rules/gpl-2.0_298.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_298.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR diff --git a/src/licensedcode/data/rules/gpl-2.0_299.RULE b/src/licensedcode/data/rules/gpl-2.0_299.RULE index d3b5d3faee..4a88c6d617 100644 --- a/src/licensedcode/data/rules/gpl-2.0_299.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_299.RULE @@ -5,4 +5,4 @@ relevance: 99 notes: there is a typo in the reference. It should have been SPDX-License-Identifier --- -SPDX-Identifier: GPL-2.0 \ No newline at end of file +SPDX-Identifier: {{GPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_3.RULE b/src/licensedcode/data/rules/gpl-2.0_3.RULE index 0300a40ed9..f5b89c04a9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_3.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_30.RULE b/src/licensedcode/data/rules/gpl-2.0_30.RULE index 9834f58369..42a8fb00ba 100644 --- a/src/licensedcode/data/rules/gpl-2.0_30.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_30.RULE @@ -7,11 +7,11 @@ notes: ti-gpl * * This program is free software; you can redistribute it and/or -* modify it under the terms of the GNU General Public License as -* published by the Free Software Foundation version 2. +* modify it under the terms of the {{GNU General Public License as +* published by the Free Software Foundation version 2}}. * * This program is distributed .as is. WITHOUT ANY WARRANTY of any * kind, whether express or implied; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. +* {{GNU General Public License}} for more details. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_304.RULE b/src/licensedcode/data/rules/gpl-2.0_304.RULE index 3c39c43c19..c1b255ca91 100644 --- a/src/licensedcode/data/rules/gpl-2.0_304.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_304.RULE @@ -6,15 +6,15 @@ is_license_notice: yes This file is licensed under GPLv2. The driver is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation; version 2 of the +modify it under the terms of the {{GNU General Public License as +published by the Free Software Foundation; version 2}} of the License. The driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with the driver; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_305.RULE b/src/licensedcode/data/rules/gpl-2.0_305.RULE index 379dca9c9b..89f4cf5c8a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_305.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_305.RULE @@ -8,16 +8,16 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms and conditions of the GNU General Public License, - version 2, as published by the Free Software Foundation. + under the terms and conditions of {{the GNU General Public License, + version 2}}, as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along with + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . - The full GNU General Public License is included in this distribution in + The full {{GNU General Public License}} is included in this distribution in the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_306.RULE b/src/licensedcode/data/rules/gpl-2.0_306.RULE index 11b8476eba..2c577a28a5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_306.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_306.RULE @@ -4,13 +4,13 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms and conditions of the GNU General Public License, -version 2, as published by the Free Software Foundation. +under the terms and conditions of {{the GNU General Public License, +version 2}}, as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_307.RULE b/src/licensedcode/data/rules/gpl-2.0_307.RULE index 9969fc14f6..e219836a53 100644 --- a/src/licensedcode/data/rules/gpl-2.0_307.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_307.RULE @@ -6,5 +6,5 @@ referenced_filenames: - linux/COPYING --- -May be copied or modified under the terms of the GNU General Public - License Version 2. See linux/COPYING for more information. \ No newline at end of file +May be copied or modified {{under the terms of the GNU General Public + License Version 2}}. See linux/COPYING for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_308.RULE b/src/licensedcode/data/rules/gpl-2.0_308.RULE index 63c3594505..28f8095248 100644 --- a/src/licensedcode/data/rules/gpl-2.0_308.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_308.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This driver is free software; you can redistribute it and/or modify -it under the terms of Version 2 of the GNU General Public License as +it under the terms of {{Version 2 of the GNU General Public License}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_309.RULE b/src/licensedcode/data/rules/gpl-2.0_309.RULE index 5db72efb29..3191193426 100644 --- a/src/licensedcode/data/rules/gpl-2.0_309.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_309.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This is free software; you can redistribute it and/or modify - it under the terms of version 2 of the GNU General Public License as + it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_310.RULE b/src/licensedcode/data/rules/gpl-2.0_310.RULE index 73bfdf3e48..f7f993fc84 100644 --- a/src/licensedcode/data/rules/gpl-2.0_310.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_310.RULE @@ -5,5 +5,5 @@ minimum_coverage: 70 --- This program is free software; you can redistribute it and/or modify -it under the terms of the version 2 of the GNU General Public License as +it under the terms of the {{version 2 of the GNU General Public License}} as published by the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_311.RULE b/src/licensedcode/data/rules/gpl-2.0_311.RULE index b9a3462db6..a888fe575c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_311.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_311.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html --- -This software program is licensed subject to the GNU General Public License - (GPL).Version 2,June 1991, available at +This software program is licensed subject to the {{GNU General Public License + (GPL).Version 2}},June 1991, available at http://www.gnu.org/licenses/old-licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_312.RULE b/src/licensedcode/data/rules/gpl-2.0_312.RULE index 01a2c55aa1..29138d3fab 100644 --- a/src/licensedcode/data/rules/gpl-2.0_312.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_312.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of version 2 of the GNU General Public License as + it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA - The full GNU General Public License is included in this distribution + The full {{GNU General Public License}} is included in this distribution in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_313.RULE b/src/licensedcode/data/rules/gpl-2.0_313.RULE index b3df4747cb..6bc8fca16a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_313.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_313.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it -under the terms and conditions of the GNU General Public License, -version 2, as published by the Free Software Foundation. +under the terms and conditions of {{the GNU General Public License, +version 2}}, as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. -The full GNU General Public License is included in this distribution in +The full {{GNU General Public License}} is included in this distribution in the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_314.RULE b/src/licensedcode/data/rules/gpl-2.0_314.RULE index 53d00655a0..cfa54ad59f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_314.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_314.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://www.fsf.org/licenses/licenses.html --- -is released under the terms of the GNU GPL v2." +is released under the terms of the {{GNU GPL v2}}." "For more information, please see the source code or" "visit http://www.fsf.org/licenses/licenses.html"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_315.RULE b/src/licensedcode/data/rules/gpl-2.0_315.RULE index f0a5e60fec..42fe482033 100644 --- a/src/licensedcode/data/rules/gpl-2.0_315.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_315.RULE @@ -11,17 +11,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see http://www.gnu.org/licenses +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see http://www.gnu.org/licenses Please contact Oracle Corporation, Inc., 500 Oracle Parkway, Redwood Shores, CA 94065 USA or visit www.oracle.com if you need additional information or diff --git a/src/licensedcode/data/rules/gpl-2.0_317.RULE b/src/licensedcode/data/rules/gpl-2.0_317.RULE index 3f839ce4f9..7a1a344c91 100644 --- a/src/licensedcode/data/rules/gpl-2.0_317.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_317.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation version 2. +modify it under the terms of the {{GNU General Public License as +published by the Free Software Foundation version 2}}. This program is distributed WITHOUT ANY WARRANTY of any kind, whether express or implied; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_318.RULE b/src/licensedcode/data/rules/gpl-2.0_318.RULE index 9d606d714c..26b94614ce 100644 --- a/src/licensedcode/data/rules/gpl-2.0_318.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_318.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation version 2. +modify it under the terms of the {{GNU General Public License as +published by the Free Software Foundation version 2}}. This program is distributed "as is" WITHOUT ANY WARRANTY of any kind, whether express or implied; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_319.RULE b/src/licensedcode/data/rules/gpl-2.0_319.RULE index 8ea3b04e94..c7ab53ebf5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_319.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_319.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License version 2 as +modify it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed "as is" WITHOUT ANY WARRANTY of any kind, whether expressed or implied; without even the implied warranty -of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License version 2 for more details. \ No newline at end of file +of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the +GNU General Public License version 2}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_320.RULE b/src/licensedcode/data/rules/gpl-2.0_320.RULE index 60f0313314..47dcf1565d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_320.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_320.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -version 2 as published by the Free Software Foundation. +modify it {{under the terms of the GNU General Public License +version 2}} as published by the Free Software Foundation. This program is distributed "as is" WITHOUT ANY WARRANTY of any kind, whether express or implied; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_321.RULE b/src/licensedcode/data/rules/gpl-2.0_321.RULE index 43f71c9f43..f1d40ba90c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_321.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_321.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms and conditions of the GNU General Public License, -version 2, as published by the Free Software Foundation. +under the terms and conditions of {{the GNU General Public License, +version 2}}, as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_322.RULE b/src/licensedcode/data/rules/gpl-2.0_322.RULE index 6467b5a23d..0bf2bad28b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_322.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_322.RULE @@ -10,16 +10,16 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License version 2 for more details. A copy is +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the +GNU General Public License version 2}} for more details. A copy is included in the COPYING file that accompanied this code. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/gpl-2.0_323.RULE b/src/licensedcode/data/rules/gpl-2.0_323.RULE index 33ecb69648..dbacc9475a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_323.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_323.RULE @@ -4,13 +4,13 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. You should have received a copy of the GNU General Public Licens along with this program; if not, write to the Free Software diff --git a/src/licensedcode/data/rules/gpl-2.0_324.RULE b/src/licensedcode/data/rules/gpl-2.0_324.RULE index 2c9fe251ed..6b143be885 100644 --- a/src/licensedcode/data/rules/gpl-2.0_324.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_324.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation version 2 and no later version. +under the terms of the {{GNU General Public License as published by the +Free Software Foundation version 2}} and no later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_325.RULE b/src/licensedcode/data/rules/gpl-2.0_325.RULE index 4d015ed861..dab4257d5e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_325.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_325.RULE @@ -7,13 +7,13 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it -under the terms of version 2 of the GNU General Public License as +under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -The full GNU General Public License is included in this distribution in the +The full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_325_1.RULE b/src/licensedcode/data/rules/gpl-2.0_325_1.RULE index b18688d902..d61722a291 100644 --- a/src/licensedcode/data/rules/gpl-2.0_325_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_325_1.RULE @@ -9,13 +9,13 @@ GPL LICENSE SUMMARY This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as +it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -The full GNU General Public License is included in this distribution +The full {{GNU General Public License}} is included in this distribution in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_325_2.RULE b/src/licensedcode/data/rules/gpl-2.0_325_2.RULE index be9eb94d6c..890c6b4788 100644 --- a/src/licensedcode/data/rules/gpl-2.0_325_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_325_2.RULE @@ -9,13 +9,13 @@ GPL LICENSE SUMMARY This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as +it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -The full GNU General Public License is included in this distribution +The full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_325_3.RULE b/src/licensedcode/data/rules/gpl-2.0_325_3.RULE index 3d0dc0b346..4ddfbbad40 100644 --- a/src/licensedcode/data/rules/gpl-2.0_325_3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_325_3.RULE @@ -12,13 +12,13 @@ GPL LICENSE SUMMARY This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as +it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -The full GNU General Public License is included in this distribution +The full {{GNU General Public License}} is included in this distribution in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_326.RULE b/src/licensedcode/data/rules/gpl-2.0_326.RULE index aa40b1f601..a08c2f8901 100644 --- a/src/licensedcode/data/rules/gpl-2.0_326.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_326.RULE @@ -4,13 +4,13 @@ is_license_notice: yes --- Tmis program is free software; you can redistribute it and/or modify it -under the terms of version 2 of the GNU General Public License as +under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -The full GNU General Public License is included in this distribution in the +The full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_327.RULE b/src/licensedcode/data/rules/gpl-2.0_327.RULE index 42e4312891..972288cfa3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_327.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_327.RULE @@ -4,13 +4,13 @@ is_license_notice: yes --- Tmis program is free software; you can redistribute it and/or modify it -under the terms of version 2 of the GNU General Public License as +under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. Tmis program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -Tme full GNU General Public License is included in this distribution in the +Tme full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_328.RULE b/src/licensedcode/data/rules/gpl-2.0_328.RULE index f0ee1366dc..fb8714ec80 100644 --- a/src/licensedcode/data/rules/gpl-2.0_328.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_328.RULE @@ -4,13 +4,13 @@ is_license_notice: yes --- Tmis program is free software; you can redistribute it and/or modify it -under the terms of version 2 of the GNU General Public License as +under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -Tme full GNU General Public License is included in this distribution in the +Tme full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_329.RULE b/src/licensedcode/data/rules/gpl-2.0_329.RULE index 3d5a02db5b..aea21705ba 100644 --- a/src/licensedcode/data/rules/gpl-2.0_329.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_329.RULE @@ -4,13 +4,13 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms of version 2 of the GNU General Public License as + under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. Tmis program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - The full GNU General Public License is included in this distribution in the + The full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_33.RULE b/src/licensedcode/data/rules/gpl-2.0_33.RULE index 09bf5aea41..0c73082113 100644 --- a/src/licensedcode/data/rules/gpl-2.0_33.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_33.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0_330.RULE b/src/licensedcode/data/rules/gpl-2.0_330.RULE index 8aeff069e4..bd9ad04470 100644 --- a/src/licensedcode/data/rules/gpl-2.0_330.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_330.RULE @@ -4,6 +4,6 @@ is_license_reference: yes relevance: 100 --- -This code is placed under the terms of the GNU General Public License +This code is placed under the terms of the {{GNU General Public License}} Released by under GPLv2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_331.RULE b/src/licensedcode/data/rules/gpl-2.0_331.RULE index 43dcd97ef2..4fd02ec90b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_331.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_331.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; either version 2 of the License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_332.RULE b/src/licensedcode/data/rules/gpl-2.0_332.RULE index 2a1505057f..bf9b9370d3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_332.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_332.RULE @@ -6,14 +6,14 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License version 2 as published by +{{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_333.RULE b/src/licensedcode/data/rules/gpl-2.0_333.RULE index 6c1ea92223..ffa4aece35 100644 --- a/src/licensedcode/data/rules/gpl-2.0_333.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_333.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- Driver is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 + it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. Driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with Driver; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_334.RULE b/src/licensedcode/data/rules/gpl-2.0_334.RULE index f3d265aef0..1cf5050acb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_334.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_334.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -is licensed under the GNU General Public -License, version 2 (GPL2), \ No newline at end of file +is licensed under {{the GNU General Public +License, version 2}} (GPL2), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_335.RULE b/src/licensedcode/data/rules/gpl-2.0_335.RULE index c83e126acb..de036fb28e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_335.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_335.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public -License v2 as published by the Free Software Foundation. +modify it under the terms of the {{GNU General Public +License v2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_336.RULE b/src/licensedcode/data/rules/gpl-2.0_336.RULE index db20a18c95..cd3b5ff849 100644 --- a/src/licensedcode/data/rules/gpl-2.0_336.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_336.RULE @@ -6,15 +6,15 @@ referenced_filenames: - COPYING --- -This file is subject to the terms and conditions of the GNU General - Public License. See the file "COPYING" in the main directory of this +This file is subject to the terms and conditions of the {{GNU General + Public License}}. See the file "COPYING" in the main directory of this archive for more details. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_337.RULE b/src/licensedcode/data/rules/gpl-2.0_337.RULE index 4078a2d559..c7180c6a6f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_337.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_337.RULE @@ -6,6 +6,6 @@ referenced_filenames: - COPYING --- -This file is subject to the terms and conditions of version 2 of -the GNU General Public License. See the file COPYING in the main +This file is subject to the terms and conditions of {{version 2 of +the GNU General Public License}}. See the file COPYING in the main directory of this archive for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_338.RULE b/src/licensedcode/data/rules/gpl-2.0_338.RULE index b9c716611e..ae010a17a5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_338.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_338.RULE @@ -6,15 +6,15 @@ referenced_filenames: - COPYING --- -This file is subject to the terms and conditions of the GNU General -Public License. See the file "COPYING" in the main directory of this +This file is subject to the terms and conditions of the {{GNU General +Public License}}. See the file "COPYING" in the main directory of this archive for more details. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_339.RULE b/src/licensedcode/data/rules/gpl-2.0_339.RULE index 38dc675ec6..af772c4c64 100644 --- a/src/licensedcode/data/rules/gpl-2.0_339.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_339.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as + it {{under the terms of the GNU General Public License version 2}} as publishhed by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_34.RULE b/src/licensedcode/data/rules/gpl-2.0_34.RULE index 4890176534..1fff67cce9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_34.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_34.RULE @@ -5,14 +5,14 @@ notes: Only GPL 2.0 --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as + * it {{under the terms of the GNU General Public License version 2}} as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_340.RULE b/src/licensedcode/data/rules/gpl-2.0_340.RULE index ddf2938ce5..bc25611b25 100644 --- a/src/licensedcode/data/rules/gpl-2.0_340.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_340.RULE @@ -4,17 +4,17 @@ is_license_notice: yes --- Tmis program is free software; you can redistribute it and/or modify it -under the terms of version 2 of the GNU General Public License as +under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. Tmis program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with tmis program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA -Tme full GNU General Public License is included in this distribution in the +Tme full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_341.RULE b/src/licensedcode/data/rules/gpl-2.0_341.RULE index b0aa9bdc58..f582c1db1a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_341.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_341.RULE @@ -7,16 +7,16 @@ minimum_coverage: 90 GPL LICENSE SUMMARY This program is free software; you can redistribute it and/or modify - it under the terms of version 2 of the GNU General Public License as + it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. - The full GNU General Public License is included in this distribution + The full {{GNU General Public License}} is included in this distribution in the file called LICENSE.GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_342.RULE b/src/licensedcode/data/rules/gpl-2.0_342.RULE index 6bc59dda7f..c3a4b1d2d8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_342.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_342.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation. Since it is based on ext2, and the only valid version of GPL for the Linux kernel is version 2, the only valid version of GPL for is version 2. @@ -12,8 +12,8 @@ version of GPL for is version 2. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with ; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_343.RULE b/src/licensedcode/data/rules/gpl-2.0_343.RULE index 2c6b270771..0307d2cfe7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_343.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_343.RULE @@ -5,7 +5,7 @@ minimum_coverage: 75 --- exofs is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation. Since it is based on ext2, and the only valid version of GPL for the Linux kernel is version 2, the only valid version of GPL for exofs is version 2. @@ -13,8 +13,8 @@ version of GPL for exofs is version 2. exofs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with exofs; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_344.RULE b/src/licensedcode/data/rules/gpl-2.0_344.RULE index e841138766..5d09d6d574 100644 --- a/src/licensedcode/data/rules/gpl-2.0_344.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_344.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms and conditions of the GNU General Public License, - version 2, as published by the Free Software Foundation. + under the terms and conditions of {{the GNU General Public License, + version 2}}, as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along with + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. / \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_345.RULE b/src/licensedcode/data/rules/gpl-2.0_345.RULE index 2dc03942fc..9ad42831fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_345.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_345.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -version 2 as published by the Free Software Foundation. +modify it {{under the terms of the GNU General Public License +version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_346.RULE b/src/licensedcode/data/rules/gpl-2.0_346.RULE index e3f0ed3ad8..b35f3a40e4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_346.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_346.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- this is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as published - by the Free Software Foundation. (GPL v2) + it {{under the terms of the GNU General Public License version 2}} as published + by the Free Software Foundation. {{(GPL v2)}} this is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with the this; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_347.RULE b/src/licensedcode/data/rules/gpl-2.0_347.RULE index e20dd35c99..810bb1d7b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_347.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_347.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; version 2 of the License and no later version. +under the terms of the {{GNU General Public License as published by the +Free Software Foundation; version 2}} of the License and no later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or -NON INFRINGEMENT. See the GNU General Public License for more +NON INFRINGEMENT. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. -The full GNU General Public License is included in this distribution in +The full {{GNU General Public License}} is included in this distribution in the file called "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_348.RULE b/src/licensedcode/data/rules/gpl-2.0_348.RULE index 730e4d3c13..6fd9ecc64d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_348.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_348.RULE @@ -7,6 +7,6 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License version 2 - as published by the Free Software Foundation. The full GNU General - Public License is included in this distribution in the file called COPYING. \ No newline at end of file + modify it {{under the terms of the GNU General Public License version 2}} + as published by the Free Software Foundation. The full {{GNU General + Public License}} is included in this distribution in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_349.RULE b/src/licensedcode/data/rules/gpl-2.0_349.RULE index f0d4c41274..7e0b850106 100644 --- a/src/licensedcode/data/rules/gpl-2.0_349.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_349.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License ("GPL") -version 2, as published by the Free Software Foundation. \ No newline at end of file +modify it under the terms of the {{GNU General Public License ("GPL") +version 2}}, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_350.RULE b/src/licensedcode/data/rules/gpl-2.0_350.RULE index 734274ada3..c217e303a9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_350.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_350.RULE @@ -5,6 +5,6 @@ referenced_filenames: - COPYING --- -The contents of this file may be used under the terms of the GNU - General Public License version 2 (the "GPL") as distributed in +The contents of this file may be used {{under the terms of the GNU + General Public License version 2}} (the "GPL") as distributed in the kernel source COPYING file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_352.RULE b/src/licensedcode/data/rules/gpl-2.0_352.RULE index 7c5dacb241..31e62622b5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_352.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_352.RULE @@ -10,17 +10,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see http://www.gnu.org/licenses/gpl-2.0.htm GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_353.RULE b/src/licensedcode/data/rules/gpl-2.0_353.RULE index a9fdf0b581..cfd96f9522 100644 --- a/src/licensedcode/data/rules/gpl-2.0_353.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_353.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation version 2 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_354.RULE b/src/licensedcode/data/rules/gpl-2.0_354.RULE index dc385b3fa4..f53c85dd36 100644 --- a/src/licensedcode/data/rules/gpl-2.0_354.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_354.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 of +it {{under the terms of the GNU General Public License version 2}} of the License as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_355.RULE b/src/licensedcode/data/rules/gpl-2.0_355.RULE index ac64700872..63a9c8aa4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_355.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_355.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; either version 2 of the License}} This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_356.RULE b/src/licensedcode/data/rules/gpl-2.0_356.RULE index 11249f50d6..a85f21f532 100644 --- a/src/licensedcode/data/rules/gpl-2.0_356.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_356.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of version 2 of the GNU General Public -License as published by the Free Software Foundation. +modify it under the terms of {{version 2 of the GNU General Public +License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_357.RULE b/src/licensedcode/data/rules/gpl-2.0_357.RULE index d78e402bd1..c85dc69b9a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_357.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_357.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the version 2 of the GNU General Public License +it under the terms of the {{version 2 of the GNU General Public License}} as published by the Free Software Foundation This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_358.RULE b/src/licensedcode/data/rules/gpl-2.0_358.RULE index 4b1704c4a0..a270a73c92 100644 --- a/src/licensedcode/data/rules/gpl-2.0_358.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_358.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the terms of the GNU General Public License, version 2. \ No newline at end of file +Licensed {{under the terms of the GNU General Public License, version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_359.RULE b/src/licensedcode/data/rules/gpl-2.0_359.RULE index 43370d5d69..4c19ca1766 100644 --- a/src/licensedcode/data/rules/gpl-2.0_359.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_359.RULE @@ -8,6 +8,6 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.html --- -Use of this code is subject to the terms and conditions of the -GNU general public license version 2. See "COPYING" or +Use of this code is subject to the terms and conditions of {{the +GNU general public license version 2}}. See "COPYING" or http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_360.RULE b/src/licensedcode/data/rules/gpl-2.0_360.RULE index 9b05a6d893..21191d7627 100644 --- a/src/licensedcode/data/rules/gpl-2.0_360.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_360.RULE @@ -7,6 +7,6 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.html --- -Your use of this code is subject to the terms and conditions of the -GNU general public license version 2. See "COPYING" or +Your use of this code is subject to the terms and conditions of {{the +GNU general public license version 2}}. See "COPYING" or http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_361.RULE b/src/licensedcode/data/rules/gpl-2.0_361.RULE index 1811ae4005..143f26bb72 100644 --- a/src/licensedcode/data/rules/gpl-2.0_361.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_361.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -Release under the terms of the GNU GENERAL PUBLIC LICENSE version 2. +Release {{under the terms of the GNU GENERAL PUBLIC LICENSE version 2}}. See the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_362.RULE b/src/licensedcode/data/rules/gpl-2.0_362.RULE index b166150973..d4c2ff7174 100644 --- a/src/licensedcode/data/rules/gpl-2.0_362.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_362.RULE @@ -6,6 +6,6 @@ referenced_filenames: - COPYING --- -This driver is released to the public under the terms of the - GNU GENERAL PUBLIC LICENSE version 2 +This driver is released to the public {{under the terms of the + GNU GENERAL PUBLIC LICENSE version 2}} See the file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_363.RULE b/src/licensedcode/data/rules/gpl-2.0_363.RULE index 6957c3350a..b8f000a734 100644 --- a/src/licensedcode/data/rules/gpl-2.0_363.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_363.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This program may be used under the terms of version 2 of the GNU -General Public License. \ No newline at end of file +This program may be used under the terms of {{version 2 of the GNU +General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_364.RULE b/src/licensedcode/data/rules/gpl-2.0_364.RULE index 3a6f8586a8..3847c64ed2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_364.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_364.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This file is subject to the terms and conditions of the GNU General Public -License version 2 as published by the Free Software Foundation. \ No newline at end of file +This file is subject to the terms and conditions of {{the GNU General Public +License version 2}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_365.RULE b/src/licensedcode/data/rules/gpl-2.0_365.RULE index 7f52d4bdcf..f20a516e28 100644 --- a/src/licensedcode/data/rules/gpl-2.0_365.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_365.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can distribute it and/or modify it -under the terms of the GNU General Public License (Version 2) as +{{under the terms of the GNU General Public License (Version 2}}) as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_366.RULE b/src/licensedcode/data/rules/gpl-2.0_366.RULE index bcfc8e3426..57cef93794 100644 --- a/src/licensedcode/data/rules/gpl-2.0_366.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_366.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -Licensed under the terms of the GNU General Public -License version 2. See file COPYING for details. \ No newline at end of file +Licensed {{under the terms of the GNU General Public +License version 2}}. See file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_367.RULE b/src/licensedcode/data/rules/gpl-2.0_367.RULE index d8e710f5ec..3b79dd22bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_367.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_367.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributable under the terms of the GNU General Public License, version 2 \ No newline at end of file +Distributable {{under the terms of the GNU General Public License, version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_37.RULE b/src/licensedcode/data/rules/gpl-2.0_37.RULE index df9ef450bb..78db12412d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_37.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_37.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -is licensed under the GNU General Public License, version 2 \ No newline at end of file +is licensed under {{the GNU General Public License, version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_372.RULE b/src/licensedcode/data/rules/gpl-2.0_372.RULE index 8f95fb90b3..0fd7d669f0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_372.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_372.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This documentation is free software; you can redistribute - it and/or modify it under the terms of the GNU General Public - License version 2 as published by the Free Software Foundation. + it and/or modify it {{under the terms of the GNU General Public + License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU General Public License for more details. + See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with this program; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/gpl-2.0_373.RULE b/src/licensedcode/data/rules/gpl-2.0_373.RULE index 565b286db0..8488b9706e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_373.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_373.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- This driver is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}} of the License. If you want to use any later version of the GNU GPL, you will probably be allowed to, but you have to ask me \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_374.RULE b/src/licensedcode/data/rules/gpl-2.0_374.RULE index 93df3cb53d..afc8acfe7a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_374.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_374.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -Reiserfs is hereby licensed under the GNU General -Public License version 2. \ No newline at end of file +Reiserfs is hereby licensed under {{the GNU General +Public License version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_376.RULE b/src/licensedcode/data/rules/gpl-2.0_376.RULE index e4c907b0da..9ffe8cccd8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_376.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_376.RULE @@ -6,5 +6,5 @@ relevance: 100 [LICENSING] -ReiserFS is hereby licensed under the GNU General -Public License version 2. \ No newline at end of file +ReiserFS is hereby licensed under {{the GNU General +Public License version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_377.RULE b/src/licensedcode/data/rules/gpl-2.0_377.RULE index 42d91134de..7176b0273b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_377.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_377.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- This software file (the "File") is distributed by Marvell International -Ltd. under the terms of the GNU General Public License Version 2, June 1991 +Ltd. {{under the terms of the GNU General Public License Version 2}}, June 1991 (the "License"). You may use, redistribute and/or modify this File in accordance with the terms and conditions of the License, a copy of which is available along with the File in the license.txt file or on the worldwide diff --git a/src/licensedcode/data/rules/gpl-2.0_378.RULE b/src/licensedcode/data/rules/gpl-2.0_378.RULE index 61f5114e1e..fb493bd84c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_378.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_378.RULE @@ -4,17 +4,17 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License version 2 as +{{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -The full GNU General Public License is included in this distribution in the +The full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_38.RULE b/src/licensedcode/data/rules/gpl-2.0_38.RULE index af40f515c4..5c507d089d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_38.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_38.RULE @@ -10,8 +10,8 @@ ignorable_holders: - the Free Software Foundation --- -GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 +{{GNU GENERAL PUBLIC LICENSE + Version 2}}, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA @@ -21,8 +21,8 @@ GNU GENERAL PUBLIC LICENSE Preamble The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free +freedom to share and change it. By contrast, the {{GNU General Public +License}} is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to @@ -68,7 +68,7 @@ patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. - GNU GENERAL PUBLIC LICENSE + {{GNU GENERAL PUBLIC LICENSE}} TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains diff --git a/src/licensedcode/data/rules/gpl-2.0_382.RULE b/src/licensedcode/data/rules/gpl-2.0_382.RULE index 5ddad83e31..434d4e8e29 100644 --- a/src/licensedcode/data/rules/gpl-2.0_382.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_382.RULE @@ -5,6 +5,6 @@ referenced_filenames: - COPYING --- -This source file is released under GPL v2 license (no other versions). +This source file is released under {{GPL v2}} license (no other versions). See the COPYING file included in the main directory of this source distribution for the license terms and conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_383.RULE b/src/licensedcode/data/rules/gpl-2.0_383.RULE index 5dd816f379..e792e2ef4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_383.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_383.RULE @@ -13,9 +13,9 @@ ignorable_emails: --- This code is taken from the OpenSSL project but the author (Andy Polyakov) -has relicensed it under the GPLv2. Therefore this program is free software; -you can redistribute it and/or modify it under the terms of the GNU General -Public License version 2 as published by the Free Software Foundation. +has relicensed it under the {{GPLv2}}. Therefore this program is free software; +you can redistribute it and/or modify it {{under the terms of the GNU General +Public License version 2}} as published by the Free Software Foundation. The original headers, including the original license headers, are included below for completeness. diff --git a/src/licensedcode/data/rules/gpl-2.0_385.RULE b/src/licensedcode/data/rules/gpl-2.0_385.RULE index 552f8a8bb2..f959a65fe2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_385.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_385.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GPL v2. \ No newline at end of file +Licensed under the {{GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_386.RULE b/src/licensedcode/data/rules/gpl-2.0_386.RULE index c8aa73aa9a..15cd861b44 100644 --- a/src/licensedcode/data/rules/gpl-2.0_386.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_386.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU GPL v2. \ No newline at end of file +Licensed under the {{GNU GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_389.RULE b/src/licensedcode/data/rules/gpl-2.0_389.RULE index a65fc8b1af..97c095f081 100644 --- a/src/licensedcode/data/rules/gpl-2.0_389.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_389.RULE @@ -6,6 +6,6 @@ referenced_filenames: - COPYING --- -OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) -Version 2 (June 1991). See the "COPYING" file distributed with this software +OSS/Free for Linux is distributed under the {{GNU GENERAL PUBLIC LICENSE (GPL) +Version 2}} (June 1991). See the "COPYING" file distributed with this software for more info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_39.RULE b/src/licensedcode/data/rules/gpl-2.0_39.RULE index 0be4907217..9b02808d91 100644 --- a/src/licensedcode/data/rules/gpl-2.0_39.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_39.RULE @@ -1,8 +1,10 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 --- -GNU General Public License version 2 \ No newline at end of file +GNU General Public License + version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_390.RULE b/src/licensedcode/data/rules/gpl-2.0_390.RULE index a396750908..b9cbc5559f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_390.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_390.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- This software file (the "File") is distributed by Marvell International -Ltd. under the terms of the GNU General Public License Version 2, June 1991 +Ltd. {{under the terms of the GNU General Public License Version 2}}, June 1991 (the "License"). You may use, redistribute and/or modify this File in accordance with the terms and conditions of the License, a copy of which is available by writing to the Free Software Foundation, Inc., diff --git a/src/licensedcode/data/rules/gpl-2.0_391.RULE b/src/licensedcode/data/rules/gpl-2.0_391.RULE index 1022258c0c..10643d2bcb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_391.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_391.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- This software file (the "File") is distributed by company - under the terms of the GNU General Public License Version 2, June 1991 + {{under the terms of the GNU General Public License Version 2}}, June 1991 (the "License"). You may use, redistribute and/or modify this File in accordance with the terms and conditions of the License, a copy of which is available by writing to the Free Software Foundation, Inc., diff --git a/src/licensedcode/data/rules/gpl-2.0_392.RULE b/src/licensedcode/data/rules/gpl-2.0_392.RULE index 1585c4d318..5176050803 100644 --- a/src/licensedcode/data/rules/gpl-2.0_392.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_392.RULE @@ -5,6 +5,6 @@ referenced_filenames: - COPYING --- -This program is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) -Version 2 (June 1991). See the "COPYING" file distributed with this software +This program is distributed under the {{GNU GENERAL PUBLIC LICENSE (GPL) +Version 2}} (June 1991). See the "COPYING" file distributed with this software for more info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_393.RULE b/src/licensedcode/data/rules/gpl-2.0_393.RULE index 7182f64373..aed01f4614 100644 --- a/src/licensedcode/data/rules/gpl-2.0_393.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_393.RULE @@ -5,6 +5,6 @@ referenced_filenames: - COPYING --- -This file is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) -Version 2 (June 1991). See the "COPYING" file distributed with this +This file is distributed under the {{GNU GENERAL PUBLIC LICENSE (GPL) +Version 2}} (June 1991). See the "COPYING" file distributed with this software for more info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_394.RULE b/src/licensedcode/data/rules/gpl-2.0_394.RULE index 77f3fd9d69..402e60d4cf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_394.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_394.RULE @@ -5,7 +5,7 @@ referenced_filenames: - COPYING --- -OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) -Version 2 (June 1991). See the "COPYING" file distributed with this software +OSS/Free for Linux is distributed under the {{GNU GENERAL PUBLIC LICENSE (GPL) +Version 2}} (June 1991). See the "COPYING" file distributed with this software for more info. Released under the GPL version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_395.RULE b/src/licensedcode/data/rules/gpl-2.0_395.RULE index 00030ffe32..31e54733bc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_395.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_395.RULE @@ -5,6 +5,6 @@ referenced_filenames: - COPYING --- -USS/Lite for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) - Version 2 (June 1991). See the "COPYING" file distributed with this software +USS/Lite for Linux is distributed under the {{GNU GENERAL PUBLIC LICENSE (GPL) + Version 2}} (June 1991). See the "COPYING" file distributed with this software for more info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_396.RULE b/src/licensedcode/data/rules/gpl-2.0_396.RULE index f5ca562f0d..74c0aba5db 100644 --- a/src/licensedcode/data/rules/gpl-2.0_396.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_396.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation, version 2. \ No newline at end of file +modify it under the terms of the {{GNU General Public License as +published by the Free Software Foundation, version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_397.RULE b/src/licensedcode/data/rules/gpl-2.0_397.RULE index aff7542618..f9fc9c99c7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_397.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_397.RULE @@ -5,5 +5,5 @@ minimum_coverage: 50 --- This program file is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; version 2 of the License. \ No newline at end of file +under the terms of the {{GNU General Public License as published by the +Free Software Foundation; version 2}} of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_398.RULE b/src/licensedcode/data/rules/gpl-2.0_398.RULE index c3fe48986d..66826e58f1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_398.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_398.RULE @@ -4,6 +4,6 @@ is_license_notice: yes minimum_coverage: 50 --- -This file is licensed under the terms of the GNU General Public License -version 2. This program as licensed "as is" without any warranty of any +This file is licensed {{under the terms of the GNU General Public License +version 2}}. This program as licensed "as is" without any warranty of any kind, whether express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_399.RULE b/src/licensedcode/data/rules/gpl-2.0_399.RULE index cc36421101..1c427dbee3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_399.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_399.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Released under the terms of the GNU GPL v2. \ No newline at end of file +Released under the terms of the {{GNU GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_4.RULE b/src/licensedcode/data/rules/gpl-2.0_4.RULE index ce2f1dd403..d5d1440c3f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_4.RULE @@ -3,4 +3,4 @@ license_expression: gpl-2.0 is_license_notice: yes --- -are distributed under the GNU General Public Licence version 2, n on Debian systems please see /usr/share/common-licenses/GPL-2 for the complete text \ No newline at end of file +are distributed under the GNU General Public Licence version 2, n on Debian systems please see {{/usr/share/common-licenses/GPL-2}} for the complete text \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_400.RULE b/src/licensedcode/data/rules/gpl-2.0_400.RULE index 32bb35faf9..906206d574 100644 --- a/src/licensedcode/data/rules/gpl-2.0_400.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_400.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License (version 2 only) + it {{under the terms of the GNU General Public License (version 2}} only) as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_401.RULE b/src/licensedcode/data/rules/gpl-2.0_401.RULE index 3a2dc715f9..6d25a60784 100644 --- a/src/licensedcode/data/rules/gpl-2.0_401.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_401.RULE @@ -5,6 +5,6 @@ referenced_filenames: - COPYING --- -This file is subject to the terms and conditions of the GNU General -Public License version 2. See the file COPYING in the main +This file is subject to the terms and conditions of {{the GNU General +Public License version 2}}. See the file COPYING in the main directory of this archive for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_403.RULE b/src/licensedcode/data/rules/gpl-2.0_403.RULE index 5cd0703906..71cc6aa622 100644 --- a/src/licensedcode/data/rules/gpl-2.0_403.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_403.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU General Public License, version 2 (GPLv2). \ No newline at end of file +Licensed under {{the GNU General Public License, version 2}} (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_404.RULE b/src/licensedcode/data/rules/gpl-2.0_404.RULE index dad5f2fc80..b3c88c31c7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_404.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_404.RULE @@ -3,6 +3,6 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This software may be distributed under the terms of the GNU General -Public License ("GPL") version 2 as published by the Free Software +This software may be distributed under the terms of the {{GNU General +Public License ("GPL") version 2}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_405.RULE b/src/licensedcode/data/rules/gpl-2.0_405.RULE index 72980ad892..f82271ce7b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_405.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_405.RULE @@ -6,5 +6,5 @@ minimum_coverage: 97 License: As part of this driver was derived from the slram.c driver it - falls under the same license, which is GNU General Public - License v2 \ No newline at end of file + falls under the same license, which is {{GNU General Public + License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_406.RULE b/src/licensedcode/data/rules/gpl-2.0_406.RULE index dfd5d86189..83343c9bec 100644 --- a/src/licensedcode/data/rules/gpl-2.0_406.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_406.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -This file is licensed under the term of the GNU General Public License - version 2. The program licensed "as is" without any warranty of any +This file is licensed under the term of {{the GNU General Public License + version 2}}. The program licensed "as is" without any warranty of any kind, whether express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_407.RULE b/src/licensedcode/data/rules/gpl-2.0_407.RULE index a120fca447..c380ecc99a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_407.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_407.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This software is distributed under the terms of the GNU General Public - License ("GPL") version 2, as published by the Free Software Foundation. \ No newline at end of file +This software is distributed under the terms of the {{GNU General Public + License ("GPL") version 2}}, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_408.RULE b/src/licensedcode/data/rules/gpl-2.0_408.RULE index ede1e30bb1..243dc87595 100644 --- a/src/licensedcode/data/rules/gpl-2.0_408.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_408.RULE @@ -3,6 +3,6 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This software is distributed under the terms of the GNU General +This software is distributed under the terms of the {{GNU General Public License ("GPL") as published by the Free Software Foundation, -version 2 of that License. \ No newline at end of file +version 2 of that License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_409.RULE b/src/licensedcode/data/rules/gpl-2.0_409.RULE index 03588d353f..f545629f0c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_409.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_409.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as + it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS diff --git a/src/licensedcode/data/rules/gpl-2.0_41.RULE b/src/licensedcode/data/rules/gpl-2.0_41.RULE index f656dd5af1..cc372d5cc4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_41.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_41.RULE @@ -10,8 +10,8 @@ ignorable_holders: - the Free Software Foundation --- -GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 +{{GNU GENERAL PUBLIC LICENSE + Version 2}}, June 1991 Copyright (C) Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA @@ -21,8 +21,8 @@ GNU GENERAL PUBLIC LICENSE Preamble The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free +freedom to share and change it. By contrast, the {{GNU General Public +License}} is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to @@ -68,7 +68,7 @@ patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. - GNU GENERAL PUBLIC LICENSE + {{GNU GENERAL PUBLIC LICENSE}} TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains diff --git a/src/licensedcode/data/rules/gpl-2.0_410.RULE b/src/licensedcode/data/rules/gpl-2.0_410.RULE index a331d35fd7..8cfaf53585 100644 --- a/src/licensedcode/data/rules/gpl-2.0_410.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_410.RULE @@ -6,9 +6,9 @@ ignorable_emails: --- It is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as published +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with "ore". If not, write to the Free Software Foundation, Inc: "Free Software Foundation " \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_411.RULE b/src/licensedcode/data/rules/gpl-2.0_411.RULE index ff3f3862a7..c3920fdc87 100644 --- a/src/licensedcode/data/rules/gpl-2.0_411.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_411.RULE @@ -6,16 +6,16 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License, Version 2, as +it {{under the terms of the GNU General Public License, Version 2}}, as published by the Free Software Foundation. This file is distributed in the hope that it will be useful, but AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or -NONINFRINGEMENT. See the GNU General Public License for more +NONINFRINGEMENT. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this file; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA or visit http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_412.RULE b/src/licensedcode/data/rules/gpl-2.0_412.RULE index 411e082b43..944ff5d52c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_412.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_412.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- This software file (the "File") is distributed by Marvell International - Ltd. under the terms of the GNU General Public License Version 2, June 1991 + Ltd. {{under the terms of the GNU General Public License Version 2}}, June 1991 (the "License"). You may use, redistribute and/or modify this File in accordance with the terms and conditions of the License, a copy of which is available on the worldwide web at diff --git a/src/licensedcode/data/rules/gpl-2.0_413.RULE b/src/licensedcode/data/rules/gpl-2.0_413.RULE index 7307626b55..d1d57b2dac 100644 --- a/src/licensedcode/data/rules/gpl-2.0_413.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_413.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with ; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_414.RULE b/src/licensedcode/data/rules/gpl-2.0_414.RULE index 6c1c885a96..5ca4cf63e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_414.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_414.RULE @@ -3,8 +3,8 @@ license_expression: gpl-2.0 is_license_notice: yes --- -You can redistribute and/or modify this software under the terms of version 2 -of the GNU General Public License as published by the Free Software Foundation. +You can redistribute and/or modify this software under the terms of {{version 2 +of the GNU General Public License}} as published by the Free Software Foundation. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED -WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. \ No newline at end of file +WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_415.RULE b/src/licensedcode/data/rules/gpl-2.0_415.RULE index f0b0f03b8c..46646e9adc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_415.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_415.RULE @@ -3,9 +3,9 @@ license_expression: gpl-2.0 is_license_notice: yes --- -You can redistribute and/or modify this software under the terms of version 2 - of the GNU General Public License as published by the Free Software Foundation. +You can redistribute and/or modify this software under the terms of {{version 2 + of the GNU General Public License}} as published by the Free Software Foundation. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED - WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. nor its subsidiaries is obligated to provide any support for this software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_416.RULE b/src/licensedcode/data/rules/gpl-2.0_416.RULE index 9373ec0d04..5786437e9f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_416.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_416.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; yosu can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_417.RULE b/src/licensedcode/data/rules/gpl-2.0_417.RULE index 82ee97607e..54032a01ce 100644 --- a/src/licensedcode/data/rules/gpl-2.0_417.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_417.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This documentation is free software; you can redistribute it - and/or modify it under the terms of the GNU General Public + and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License}}, or (at your option) any later version. This documentation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU General Public License for more details. + See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this documentation; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/gpl-2.0_418.RULE b/src/licensedcode/data/rules/gpl-2.0_418.RULE index ad922ecafb..e55f60124d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_418.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_418.RULE @@ -6,4 +6,4 @@ notes: the notice references the Linux kernel hence GPL-2.0 --- This is an extension to the Linux operating system, and is covered by -same GNU General Public License that covers that work. \ No newline at end of file +same {{GNU General Public License}} that covers that work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_419.RULE b/src/licensedcode/data/rules/gpl-2.0_419.RULE index 196a808480..46de738ff4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_419.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_419.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- Portals is free software; you can redistribute it and/or - modify it under the terms of version 2 of the GNU General Public - License as published by the Free Software Foundation. + modify it under the terms of {{version 2 of the GNU General Public + License}} as published by the Free Software Foundation. Portals is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with Portals; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_42.RULE b/src/licensedcode/data/rules/gpl-2.0_42.RULE index baa9d32686..1034a8ab15 100644 --- a/src/licensedcode/data/rules/gpl-2.0_42.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_42.RULE @@ -8,54 +8,54 @@ ignorable_emails: --- ***************************************************************************** -The text that follows is the GNU General Public License, Version 2 (GPL V2) +The text that follows is {{the GNU General Public License, Version 2}} ({{GPL V2}}) and governs your use, modification and/or distribution of SNORT. -Section 9 of the GPL V2 acknowledges that the Free Software Foundation may -publish revised and/or new versions of the GPL V2 from time to time. Section 9 -further states that a licensee of a program subject to the GPL V2 could be +Section 9 of the {{GPL V2}} acknowledges that the Free Software Foundation may +publish revised and/or new versions of the {{GPL V2}} from time to time. Section 9 +further states that a licensee of a program subject to the {{GPL V2}} could be free to use any such revised and/or new versions under two different scenarios: -1. "Failure to Specify." Section 9 of the GPL V2 allows a licensee of a +1. "Failure to Specify." Section 9 of the {{GPL V2}} allows a licensee of a program governed by an unspecified version of the General Public License to choose any version of the General Public License ever published by the Free Software Foundation to govern his or her use of such program. This provision is not applicable to your use of SNORT because we have expressly stated in a number of instances that any third party's use, -modification or distribution of SNORT is governed by GPL V2. +modification or distribution of SNORT is governed by {{GPL V2}}. -2. "Any Later Version." At the end of the terms and condition of the GPL V2 is +2. "Any Later Version." At the end of the terms and condition of the {{GPL V2}} is a section called "How to Apply these Terms to Your New Program," which -provides guidance to a developer on how to apply the GPL V2 to a third party's +provides guidance to a developer on how to apply the {{GPL V2}} to a third party's use, modification and/or distribution of his/her program. Among other things, this guidance suggests that the developer attach certain notices to the program. Of particular importance is the following notice: "This program is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free Software -Foundation; either version 2 of the License, or (at your option) any later +the terms of the {{GNU General Public License as published by the Free Software +Foundation; either version 2 of the License}}, or (at your option) any later version." Thus if a developer follows strictly the guidance provided by the Free -Software Foundation, Section 9 of the GPL V2 provides the licensee the option -to either use, modify or distribute the program under GPL V2 or under any +Software Foundation, Section 9 of the {{GPL V2}} provides the licensee the option +to either use, modify or distribute the program under {{GPL V2}} or under any later version published by the Free Software Foundation. -SNORT is an open source project that is governed exclusively by the GPL V2 +SNORT is an open source project that is governed exclusively by the {{GPL V2}} and any third party desiring to use, modify or distribute SNORT must do so by -strictly following the terms and conditions of GPL V2. Anyone using, modifying +strictly following the terms and conditions of {{GPL V2}}. Anyone using, modifying or distributing SNORT does not have the option to chose to use, modify or distribute SNORT under any revised or new version of the GPL, including -without limitation, the GNU General Public License Version 3. +without limitation, the {{GNU General Public License}} Version 3. For ease of reference, the comparable notice that is used with SNORT (contained in the 'README' file) is as follows: -"This program is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License Version 2 as published by the Free +"This program is free software; you can redistribute it and/or modify it {{under +the terms of the GNU General Public License Version 2}} as published by the Free Software Foundation. You may not use, modify or distribute this program under -any other version of the GNU General Public License." +any other version of the {{GNU General Public License}}." If you have any questions about this statement, please feel free to email snort-info@snort.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_420.RULE b/src/licensedcode/data/rules/gpl-2.0_420.RULE index bd49086740..dee2fe9d77 100644 --- a/src/licensedcode/data/rules/gpl-2.0_420.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_420.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is released under the GNU General Public License version 2. \ No newline at end of file +This code is released under {{the GNU General Public License version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_421.RULE b/src/licensedcode/data/rules/gpl-2.0_421.RULE index a862714488..910f9eaa52 100644 --- a/src/licensedcode/data/rules/gpl-2.0_421.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_421.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This documentation is free software; you can redistribute - it and/or modify it under the terms of the GNU General Public - License version 2 as published by the Free Software Foundation. + it and/or modify it {{under the terms of the GNU General Public + License version 2}} as published by the Free Software Foundation. This documentation is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU General Public License for more details. + See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with this documentation; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this documentation; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/gpl-2.0_422.RULE b/src/licensedcode/data/rules/gpl-2.0_422.RULE index a7b6d19470..a6aa20b084 100644 --- a/src/licensedcode/data/rules/gpl-2.0_422.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_422.RULE @@ -3,11 +3,11 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This program is free software; you may redistribute and/or modify it under -the terms of the GNU General Public License Version 2 as published by the +This program is free software; you may redistribute and/or modify it {{under +the terms of the GNU General Public License Version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for complete details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_423.RULE b/src/licensedcode/data/rules/gpl-2.0_423.RULE index 486b2232d5..1778da1292 100644 --- a/src/licensedcode/data/rules/gpl-2.0_423.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_423.RULE @@ -3,15 +3,15 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This software is licensed under the terms of the GNU General Public - License version 2, as published by the Free Software Foundation, and +This software is licensed {{under the terms of the GNU General Public + License version 2}}, as published by the Free Software Foundation, and may be copied, distributed, and modified under those terms. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_424.RULE b/src/licensedcode/data/rules/gpl-2.0_424.RULE index 53c6dd33ba..d83ae7d546 100644 --- a/src/licensedcode/data/rules/gpl-2.0_424.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_424.RULE @@ -6,14 +6,14 @@ ignorable_emails: --- exofs is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License 2 as published by +it under the terms of the {{GNU General Public License 2}} as published by the Free Software Foundation. exofs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with exofs; if not, write to the: Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_426.RULE b/src/licensedcode/data/rules/gpl-2.0_426.RULE index c98a9e48dc..9223c4269f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_426.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_426.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License v2 +modify it under the terms of the {{GNU General Public License v2}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_427.RULE b/src/licensedcode/data/rules/gpl-2.0_427.RULE index 9ebca449a2..720d3624a5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_427.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_427.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 and + it {{under the terms of the GNU General Public License version 2}} and only version 2 as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_428.RULE b/src/licensedcode/data/rules/gpl-2.0_428.RULE index 76e606f504..1ca5de62cf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_428.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_428.RULE @@ -6,15 +6,15 @@ referenced_filenames: --- This program file is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the - Free Software Foundation; version 2 of the License. + under the terms of the {{GNU General Public License as published by the + Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program in a file named COPYING; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, diff --git a/src/licensedcode/data/rules/gpl-2.0_429.RULE b/src/licensedcode/data/rules/gpl-2.0_429.RULE index a95cd69535..875a8bc61c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_429.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_429.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as + it {{under the terms of the GNU General Public License version 2}} as publicshed by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_430.RULE b/src/licensedcode/data/rules/gpl-2.0_430.RULE index c109c6df3f..ae5f88d297 100644 --- a/src/licensedcode/data/rules/gpl-2.0_430.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_430.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 of the License (not later!) +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}} of the License (not later!) This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_431.RULE b/src/licensedcode/data/rules/gpl-2.0_431.RULE index 7998455ed0..cfffe30896 100644 --- a/src/licensedcode/data/rules/gpl-2.0_431.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_431.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation (version 2 of the License only). + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation (version 2}} of the License only). This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_432.RULE b/src/licensedcode/data/rules/gpl-2.0_432.RULE index 699926b27c..1da6537415 100644 --- a/src/licensedcode/data/rules/gpl-2.0_432.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_432.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation in version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_433.RULE b/src/licensedcode/data/rules/gpl-2.0_433.RULE index 1c64fe5a2f..c7e9e5c22f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_433.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_433.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 of + it {{under the terms of the GNU General Public License version 2}} of the License as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. \ No newline at end of file + {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_434.RULE b/src/licensedcode/data/rules/gpl-2.0_434.RULE index 1c1ca456b0..d1ddac44ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0_434.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_434.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can distribute it and/or modify it - under the terms of the GNU General Public License (Version 2) as + {{under the terms of the GNU General Public License (Version 2}}) as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_435.RULE b/src/licensedcode/data/rules/gpl-2.0_435.RULE index e780257db2..78dc84072d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_435.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_435.RULE @@ -5,4 +5,4 @@ is_license_notice: yes This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions -of the GNU General Public License version 2. \ No newline at end of file +of {{the GNU General Public License version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_436.RULE b/src/licensedcode/data/rules/gpl-2.0_436.RULE index 8cf61dca2c..e9da6b1298 100644 --- a/src/licensedcode/data/rules/gpl-2.0_436.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_436.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms and conditions of the GNU General Public License, - version 2, as published by the Free Software Foundation. + under the terms and conditions of {{the GNU General Public License, + version 2}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_437.RULE b/src/licensedcode/data/rules/gpl-2.0_437.RULE index 6ea568e168..88cdbff7d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_437.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_437.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software; you can distribute it and/or modify it -under the terms of the GNU General Public License (Version 2) as +{{under the terms of the GNU General Public License (Version 2}}) as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_438.RULE b/src/licensedcode/data/rules/gpl-2.0_438.RULE index 2e4ae2010b..424164e02f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_438.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_438.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License v2 as published by + it under the terms of the {{GNU General Public License v2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_439.RULE b/src/licensedcode/data/rules/gpl-2.0_439.RULE index 53aed6b507..9c520653cf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_439.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_439.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the smems of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. \ No newline at end of file + it under the smems of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_44.RULE b/src/licensedcode/data/rules/gpl-2.0_44.RULE index afd5e8b0ba..4b936da71f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_44.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_44.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- * Alternatively, this software may be distributed under the terms of the - * GNU General Public License ("GPL") version 2 as published by the Free + * {{GNU General Public License ("GPL") version 2}} as published by the Free * Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_440.RULE b/src/licensedcode/data/rules/gpl-2.0_440.RULE index 3af79bcc2c..5f88a07eab 100644 --- a/src/licensedcode/data/rules/gpl-2.0_440.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_440.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This software may be redistributed and/or modified under the terms of -the GNU General Public License ("GPL") version 2 as published by the +the {{GNU General Public License ("GPL") version 2}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_441.RULE b/src/licensedcode/data/rules/gpl-2.0_441.RULE index 3c75576e2c..a8cecdda3e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_441.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_441.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This driver is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, version 2. + it {{under the terms of the GNU General Public License, version 2}}. This driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this driver; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA / \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_442.RULE b/src/licensedcode/data/rules/gpl-2.0_442.RULE index 2347443a6d..e1cbe84bf5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_442.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_442.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public - License version 2 as published by the Free Software Foundation. + modify it {{under the terms of the GNU General Public + License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with this program; if not, write to the + You should have received a copy of the {{GNU General Public + License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 021110-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_443.RULE b/src/licensedcode/data/rules/gpl-2.0_443.RULE index f27505127e..c2595548a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_443.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_443.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License, -version 2 of the License. +it {{under the terms of the GNU General Public License, +version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_444.RULE b/src/licensedcode/data/rules/gpl-2.0_444.RULE index 69a77f73ea..052e4e1576 100644 --- a/src/licensedcode/data/rules/gpl-2.0_444.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_444.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This application is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; version 2. + modify it under the terms of the {{GNU General Public License + as published by the Free Software Foundation; version 2}}. This application is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_445.RULE b/src/licensedcode/data/rules/gpl-2.0_445.RULE index 7a2683979f..ae92604236 100644 --- a/src/licensedcode/data/rules/gpl-2.0_445.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_445.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public -License v2 as published by the Free Software Foundation. +modify it under the terms of the {{GNU General Public +License v2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_446.RULE b/src/licensedcode/data/rules/gpl-2.0_446.RULE index a10a4ce929..785707d1b2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_446.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_446.RULE @@ -10,17 +10,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 only, + it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License version 2 for more details (a copy is included + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU + General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). - You should have received a copy of the GNU General Public License - version 2 along with this program; If not, see [sun.com URL with a + You should have received a copy of {{the GNU General Public License + version 2}} along with this program; If not, see [sun.com URL with a copy of GPLv2]. Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, diff --git a/src/licensedcode/data/rules/gpl-2.0_447.RULE b/src/licensedcode/data/rules/gpl-2.0_447.RULE index 7347448906..d1a5b19975 100644 --- a/src/licensedcode/data/rules/gpl-2.0_447.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_447.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License rev 2 and + it under the terms of the {{GNU General Public License}} rev 2 and only rev 2 as published by the free Software foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or fITNESS fOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. \ No newline at end of file + {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_448.RULE b/src/licensedcode/data/rules/gpl-2.0_448.RULE index b0918df49e..e6aa158d9b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_448.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_448.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License, version 2, as +it {{under the terms of the GNU General Public License, version 2}}, as published by the Free Software Foundation. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. diff --git a/src/licensedcode/data/rules/gpl-2.0_449.RULE b/src/licensedcode/data/rules/gpl-2.0_449.RULE index b40deda528..6730161d18 100644 --- a/src/licensedcode/data/rules/gpl-2.0_449.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_449.RULE @@ -6,15 +6,15 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License version -2 as published by the Free Software Foundation. +modify it {{under the terms of the GNU General Public License version +2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_450.RULE b/src/licensedcode/data/rules/gpl-2.0_450.RULE index 6cac01354c..910ed32043 100644 --- a/src/licensedcode/data/rules/gpl-2.0_450.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_450.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- The driver is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation; version 2 of the + modify it under the terms of the {{GNU General Public License as + published by the Free Software Foundation; version 2}} of the License. The driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with the driver; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_451.RULE b/src/licensedcode/data/rules/gpl-2.0_451.RULE index 226c166ae0..b74fb30723 100644 --- a/src/licensedcode/data/rules/gpl-2.0_451.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_451.RULE @@ -5,13 +5,13 @@ minimum_coverage: 70 --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published -by the Free Software Foundation; version 2 of the License. +under the terms of the {{GNU General Public License as published +by the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_452.RULE b/src/licensedcode/data/rules/gpl-2.0_452.RULE index ff24287920..48e93b0794 100644 --- a/src/licensedcode/data/rules/gpl-2.0_452.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_452.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This is free software; you can redistribute it and/or modify it under the - terms of version 2 the GNU General Public License as published by the Free + terms of version 2 the {{GNU General Public License}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_453.RULE b/src/licensedcode/data/rules/gpl-2.0_453.RULE index 19c0776a89..27e99e3d80 100644 --- a/src/licensedcode/data/rules/gpl-2.0_453.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_453.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation version 2. +modify it under the terms of the {{GNU General Public License as +published by the Free Software Foundation version 2}}. This program is distributed "as is" WITHOUT ANY WARRANTY of any kind, whether express or implied; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_454.RULE b/src/licensedcode/data/rules/gpl-2.0_454.RULE index bda40f106e..5355208381 100644 --- a/src/licensedcode/data/rules/gpl-2.0_454.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_454.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 + it {{under the terms of the GNU General Public License version 2}} published by the Free Software Foundation. This program is distributed "as is" WITHOUT ANY WARRANTY of any kind, whether express or implied; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_455.RULE b/src/licensedcode/data/rules/gpl-2.0_455.RULE index e88fd8943d..000cf39252 100644 --- a/src/licensedcode/data/rules/gpl-2.0_455.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_455.RULE @@ -3,15 +3,15 @@ license_expression: gpl-2.0 is_license_notice: yes --- -You can redistribute and/or modify this program under the terms of the - GNU General Public License version 2 as published by the Free Software +You can redistribute and/or modify this program {{under the terms of the + GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General - Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General + Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_456.RULE b/src/licensedcode/data/rules/gpl-2.0_456.RULE index 3c54710191..07b8073b23 100644 --- a/src/licensedcode/data/rules/gpl-2.0_456.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_456.RULE @@ -4,17 +4,17 @@ is_license_notice: yes --- The Driver for Linux is free software; you -can redistribute it and/or modify it under the terms of the GNU -General Public License version 2 as published by the Free Software +can redistribute it and/or modify it {{under the terms of the GNU +General Public License version 2}} as published by the Free Software Foundation. The Driver for Linux is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public -License for more details. +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public +License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with The Driver for Linux ; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_456_1.RULE b/src/licensedcode/data/rules/gpl-2.0_456_1.RULE index a9ca15ba91..cef17b7ca3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_456_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_456_1.RULE @@ -4,17 +4,17 @@ is_license_notice: yes --- The Controller Driver for Linux is free software; you -can redistribute it and/or modify it under the terms of the GNU -General Public License version 2 as published by the Free Software +can redistribute it and/or modify it {{under the terms of the GNU +General Public License version 2}} as published by the Free Software Foundation. The Controller Driver for Linux is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public -License for more details. +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public +License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with The Controller Driver for Linux ; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_457.RULE b/src/licensedcode/data/rules/gpl-2.0_457.RULE index 7af38461de..7b6389f4cb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_457.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_457.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms and conditions of the GNU General Public License, - version 2, as published by the Free Software Foundation. + under the terms and conditions of {{the GNU General Public License, + version 2}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_458.RULE b/src/licensedcode/data/rules/gpl-2.0_458.RULE index ecb7542405..b40597d300 100644 --- a/src/licensedcode/data/rules/gpl-2.0_458.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_458.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License version 2 as published + {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or - NON INFRINGEMENT. See the GNU General Public License for more + NON INFRINGEMENT. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_459.RULE b/src/licensedcode/data/rules/gpl-2.0_459.RULE index 814264b313..9d64c7ed9b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_459.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_459.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This driver is free software; you can redistribute it and/or modify -it under the terms of version 2 only of the GNU General Public License as +it under the terms of version 2 only of the {{GNU General Public License}} as published by the Free Software Foundation. It is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_46.RULE b/src/licensedcode/data/rules/gpl-2.0_46.RULE index a29b37d217..a64388643e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_46.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_46.RULE @@ -7,15 +7,15 @@ notes: GPL 2 alternative GPL 2 is free software; you can redistribute it and/or modify (it)? -under the terms of the GNU General Public License as -published by the Free Software Foundation; version 2 +under the terms of the {{GNU General Public License as +published by the Free Software Foundation; version 2}} of the License .* is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE See the -GNU General Public License for more details +{{GNU General Public License}} for more details -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with .* if not, write to the Free Software Foundation .* .*USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_460.RULE b/src/licensedcode/data/rules/gpl-2.0_460.RULE index 487e41caca..ad7544492a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_460.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_460.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 of + it {{under the terms of the GNU General Public License version 2}} of the License as published by the Free Software Foundation. / \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_461.RULE b/src/licensedcode/data/rules/gpl-2.0_461.RULE index bc2b1c1f6a..ad3084b1d0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_461.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_461.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License, Version 2, as +it {{under the terms of the GNU General Public License, Version 2}}, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_462.RULE b/src/licensedcode/data/rules/gpl-2.0_462.RULE index 1e01fbb821..fcdafece77 100644 --- a/src/licensedcode/data/rules/gpl-2.0_462.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_462.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_463.RULE b/src/licensedcode/data/rules/gpl-2.0_463.RULE index c38e45c3cc..2734ea8170 100644 --- a/src/licensedcode/data/rules/gpl-2.0_463.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_463.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This code is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_464.RULE b/src/licensedcode/data/rules/gpl-2.0_464.RULE index 28f4120cad..f18d99d157 100644 --- a/src/licensedcode/data/rules/gpl-2.0_464.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_464.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as + it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_465.RULE b/src/licensedcode/data/rules/gpl-2.0_465.RULE index 43ce6d3d90..1c69116720 100644 --- a/src/licensedcode/data/rules/gpl-2.0_465.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_465.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- The Driver for Linux is free software; you -can redistribute it and/or modify it under the terms of the GNU -General Public License version 2 as published by the Free Software +can redistribute it and/or modify it {{under the terms of the GNU +General Public License version 2}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_466.RULE b/src/licensedcode/data/rules/gpl-2.0_466.RULE index b647b9c707..23065c7f5d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_466.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_466.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms and conditions of the GNU General Public License, - version 2, as published by the Free Software Foundation. \ No newline at end of file + under the terms and conditions of {{the GNU General Public License, + version 2}}, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_467.RULE b/src/licensedcode/data/rules/gpl-2.0_467.RULE index 706052f1d9..0907eab82a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_467.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_467.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundationr \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_468.RULE b/src/licensedcode/data/rules/gpl-2.0_468.RULE index cc0f70fcb4..d3d1aa71ff 100644 --- a/src/licensedcode/data/rules/gpl-2.0_468.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_468.RULE @@ -5,5 +5,5 @@ minimum_coverage: 50 --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License 2 as published + it under the terms of the {{GNU General Public License 2}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_469.RULE b/src/licensedcode/data/rules/gpl-2.0_469.RULE index 0686041339..45c0ed73ea 100644 --- a/src/licensedcode/data/rules/gpl-2.0_469.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_469.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; version 2 of the License and no later version. +under the terms of the {{GNU General Public License as published by the +Free Software Foundation; version 2}} of the License and no later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or -NON INFRINGEMENT. See the GNU General Public License for more +NON INFRINGEMENT. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_47.RULE b/src/licensedcode/data/rules/gpl-2.0_47.RULE index c8c0034b99..fa45398124 100644 --- a/src/licensedcode/data/rules/gpl-2.0_47.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_47.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- /* This program is free software; you can redistribute it and/or modify */ -/* it under the terms of the GNU General Public License as published by */ -/* the Free Software Foundation, using version 2 of the License. */ +/* it under the terms of the {{GNU General Public License as published by */ +/* the Free Software Foundation, using version 2 of the License}}. */ /* */ /* This program is distributed in the hope that it will be useful, */ /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ -/* GNU General Public License for more details. */ +/* {{GNU General Public License}} for more details. */ /* */ -/* You should have received a copy of the GNU General Public License */ +/* You should have received a copy of the {{GNU General Public License}} */ /* along with this program. If not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_470.RULE b/src/licensedcode/data/rules/gpl-2.0_470.RULE index f6fc809600..494a4b7bb5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_470.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_470.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- This software may be used and distributed according to the terms - of the GNU General Public License version 2, incorporated herein by reference. \ No newline at end of file + of {{the GNU General Public License version 2}}, incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_471.RULE b/src/licensedcode/data/rules/gpl-2.0_471.RULE index 58541525d8..120987569f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_471.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_471.RULE @@ -3,23 +3,23 @@ license_expression: gpl-2.0 is_license_notice: yes --- -and licensed under GPL v2. +and licensed under {{GPL v2}}. Copyright: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian systems, the {{complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_472.RULE b/src/licensedcode/data/rules/gpl-2.0_472.RULE index dea95ae9da..3de852df87 100644 --- a/src/licensedcode/data/rules/gpl-2.0_472.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_472.RULE @@ -3,6 +3,6 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This file is licensed under the terms of the GNU General Public - License Version 2. This file is licensed "as is" without any +This file is licensed {{under the terms of the GNU General Public + License Version 2}}. This file is licensed "as is" without any warranty of any kind, whether express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_473.RULE b/src/licensedcode/data/rules/gpl-2.0_473.RULE index 6785d75cf5..f687a0ba91 100644 --- a/src/licensedcode/data/rules/gpl-2.0_473.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_473.RULE @@ -3,16 +3,16 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This software is licensed under the terms of the GNU General Public - License version 2, as published by the Free Software Foundation, and +This software is licensed {{under the terms of the GNU General Public + License version 2}}, as published by the Free Software Foundation, and may be copied, distributed, and modified under those terms. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_475.RULE b/src/licensedcode/data/rules/gpl-2.0_475.RULE index dc8ac5c72e..9a4633c832 100644 --- a/src/licensedcode/data/rules/gpl-2.0_475.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_475.RULE @@ -14,7 +14,7 @@ Original Copyright Notice: Written/copyright . This software may be used and distributed according to the terms of -the GNU General Public License (GPL), incorporated herein by reference. +the {{GNU General Public License (GPL}}), incorporated herein by reference. Drivers based on or derived from this code fall under the GPL and must retain the authorship, copyright and license notice. This file is not a complete program and may only be used when the entire operating diff --git a/src/licensedcode/data/rules/gpl-2.0_476.RULE b/src/licensedcode/data/rules/gpl-2.0_476.RULE index 49156509fc..a3b9466184 100644 --- a/src/licensedcode/data/rules/gpl-2.0_476.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_476.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -* The contents of this file are subject to the terms of either the GNU - * General Public License Version 2 only ("GPL") \ No newline at end of file +* The contents of this file are subject to the terms of either {{the GNU + * General Public License Version 2}} only ("GPL") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_485.RULE b/src/licensedcode/data/rules/gpl-2.0_485.RULE index e51846b0e0..8f8f71692c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_485.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_485.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- This program falls under the GNU GPL (General Public Licence) version 2 -GNU GPL V2 +{{GNU GPL V2}} en-> http://www.gnu.org/licenses/gpl-2.0.html de-> http://www.gnu.de/documents/gpl-2.0.de.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_486.RULE b/src/licensedcode/data/rules/gpl-2.0_486.RULE index d2063651e0..27b1839f20 100644 --- a/src/licensedcode/data/rules/gpl-2.0_486.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_486.RULE @@ -5,4 +5,4 @@ relevance: 100 --- This program falls under the GNU GPL (General Public Licence) version 2 -GNU GPL V2 \ No newline at end of file +{{GNU GPL V2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_49.RULE b/src/licensedcode/data/rules/gpl-2.0_49.RULE index 5df88c1ad6..1e736207d3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_49.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_49.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.2.5.html ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_499.RULE b/src/licensedcode/data/rules/gpl-2.0_499.RULE index d491e7fd49..9f9940b58f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_499.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_499.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under the GPL v2. \ No newline at end of file +Released under the {{GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_5.RULE b/src/licensedcode/data/rules/gpl-2.0_5.RULE index 15fb899321..4bbf586d46 100644 --- a/src/licensedcode/data/rules/gpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_5.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_50.RULE b/src/licensedcode/data/rules/gpl-2.0_50.RULE index e0208b54e5..20f1fb9fe5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_50.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_50.RULE @@ -7,14 +7,14 @@ notes: GPL 2 alternative GPL 2 is free software; you can redistribute it andor modify -it under the terms of the GNU General Public License Version 2 as +it {{under the terms of the GNU General Public License Version 2}} as published by the Free Software Foundation .* is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE See the -GNU General Public License for more details +{{GNU General Public License}} for more details -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with .* if not, write to the Free Software Foundation, Inc .* USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_504.RULE b/src/licensedcode/data/rules/gpl-2.0_504.RULE index 731a81f7e7..fc3a0ff971 100644 --- a/src/licensedcode/data/rules/gpl-2.0_504.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_504.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -GPL 2.0 applies. \ No newline at end of file +{{GPL 2.0}} applies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_507.RULE b/src/licensedcode/data/rules/gpl-2.0_507.RULE index e0038ef9ae..543a7de8a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_507.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_507.RULE @@ -6,8 +6,8 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation; version 2 of the License. + * under the terms of the {{GNU General Public License as published by the + * Free Software Foundation; version 2}} of the License. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF @@ -20,5 +20,5 @@ ignorable_urls: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * You should have received a copy of the GNU General Public License along + * You should have received a copy of the {{GNU General Public License}} along * with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_508.RULE b/src/licensedcode/data/rules/gpl-2.0_508.RULE index bb41a93543..4a19888b7b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_508.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_508.RULE @@ -13,5 +13,5 @@ This software may be used and distributed according to the terms of the GNU Public License, version 2 as published by the Free Software Foundation. See the file COPYING in the main directory of this archive for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_509.RULE b/src/licensedcode/data/rules/gpl-2.0_509.RULE index 7a5d81cb78..5c89b4dd05 100644 --- a/src/licensedcode/data/rules/gpl-2.0_509.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_509.RULE @@ -5,7 +5,7 @@ referenced_filenames: - COPYING --- -This software is available under the terms of the GNU General Public License - (GPL) Version 2, available from the file COPYING in the main directory of +This software is available under the terms of the {{GNU General Public License + (GPL) Version 2}}, available from the file COPYING in the main directory of this source tree. / \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_51.RULE b/src/licensedcode/data/rules/gpl-2.0_51.RULE index e1a7849481..0033e9bcec 100644 --- a/src/licensedcode/data/rules/gpl-2.0_51.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_51.RULE @@ -5,5 +5,5 @@ minimum_coverage: 50 --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation version 2 of the License. \ No newline at end of file +under the terms of the {{GNU General Public License as published by the +Free Software Foundation version 2}} of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_510.RULE b/src/licensedcode/data/rules/gpl-2.0_510.RULE index 288192fcfe..38684d05d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_510.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_510.RULE @@ -5,5 +5,5 @@ referenced_filenames: - COPYING --- -It is distributed under the GNU General Public License v2 - see the +It is distributed under the {{GNU General Public License v2}} - see the accompanying COPYING file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_511.RULE b/src/licensedcode/data/rules/gpl-2.0_511.RULE index 631a3fb8c8..0eb78cda07 100644 --- a/src/licensedcode/data/rules/gpl-2.0_511.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_511.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This software may be freely redistributed under the terms of the GNU -General Public License (GPLv2). \ No newline at end of file +This software may be freely redistributed under the terms of the {{GNU +General Public License}} (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_513.RULE b/src/licensedcode/data/rules/gpl-2.0_513.RULE index 822348b24a..b5761f0a8b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_513.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_513.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundations; version 2 only. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY of FITNESS FOR A PARTICUPAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_514.RULE b/src/licensedcode/data/rules/gpl-2.0_514.RULE index a0e6bd3f71..54cfc2c261 100644 --- a/src/licensedcode/data/rules/gpl-2.0_514.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_514.RULE @@ -3,7 +3,7 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This program is free software and is provided to you under the terms of the -GNU General Public License version 2 as published by the Free Software +This program is free software and is provided to you {{under the terms of the +GNU General Public License version 2}} as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_515.RULE b/src/licensedcode/data/rules/gpl-2.0_515.RULE index aaedecd591..a2d2e7510c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_515.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_515.RULE @@ -10,17 +10,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see http://www.gnu.org/licenses/gpl-2.0.html GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_516.RULE b/src/licensedcode/data/rules/gpl-2.0_516.RULE index a085eeea1d..96e14e7989 100644 --- a/src/licensedcode/data/rules/gpl-2.0_516.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_516.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms and conditions of the GNU General Public License, -version 2. \ No newline at end of file +under the terms and conditions of {{the GNU General Public License, +version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_517.RULE b/src/licensedcode/data/rules/gpl-2.0_517.RULE index a7d02d90e8..83bef5a121 100644 --- a/src/licensedcode/data/rules/gpl-2.0_517.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_517.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can distribute it and/or modify it -under the terms of the GNU General Public License (Version 2) as +{{under the terms of the GNU General Public License (Version 2}}) as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_518.RULE b/src/licensedcode/data/rules/gpl-2.0_518.RULE index 148b142089..6547170df0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_518.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_518.RULE @@ -7,8 +7,8 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -version 2 as published by the Free Software Foundation. +modify it {{under the terms of the GNU General Public License +version 2}} as published by the Free Software Foundation. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_519.RULE b/src/licensedcode/data/rules/gpl-2.0_519.RULE index 49a9a90979..7992fb6ea6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_519.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_519.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License, Version 2, as +it {{under the terms of the GNU General Public License, Version 2}}, as published by the Free Software Foundation. This file is distributed in the hope that it will be useful, but AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or -NONINFRINGEMENT. See the GNU General Public License for more details. \ No newline at end of file +NONINFRINGEMENT. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_52.RULE b/src/licensedcode/data/rules/gpl-2.0_52.RULE index 5fc026b05a..d7ccf742d7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_52.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_52.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GPL-2.0 \ No newline at end of file +GPL 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_520.RULE b/src/licensedcode/data/rules/gpl-2.0_520.RULE index 6cc8ba88c0..ea2def23fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_520.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_520.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you may redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 of the License. \ No newline at end of file +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}} of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_521.RULE b/src/licensedcode/data/rules/gpl-2.0_521.RULE index d447af858f..4949b22729 100644 --- a/src/licensedcode/data/rules/gpl-2.0_521.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_521.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This file is licensed under the terms of the GNU General Public -License version 2. \ No newline at end of file +This file is licensed {{under the terms of the GNU General Public +License version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_522.RULE b/src/licensedcode/data/rules/gpl-2.0_522.RULE index 94668fa5c5..6f43552785 100644 --- a/src/licensedcode/data/rules/gpl-2.0_522.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_522.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published bythe Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_523.RULE b/src/licensedcode/data/rules/gpl-2.0_523.RULE index 3089e88774..cb4786b1f1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_523.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_523.RULE @@ -5,6 +5,6 @@ referenced_filenames: - COPYING --- -This file is subject to the terms and conditions of version 2 of the GNU - General Public License. See the file COPYING in the main directory of the +This file is subject to the terms and conditions of {{version 2 of the GNU + General Public License}}. See the file COPYING in the main directory of the Linux distribution for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_524.RULE b/src/licensedcode/data/rules/gpl-2.0_524.RULE index 89889186ea..59c5a3fa14 100644 --- a/src/licensedcode/data/rules/gpl-2.0_524.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_524.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- The driver is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2. +modify it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}}. The driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with the driver; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_525.RULE b/src/licensedcode/data/rules/gpl-2.0_525.RULE index c0901db6b7..0cb8fc1311 100644 --- a/src/licensedcode/data/rules/gpl-2.0_525.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_525.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software(void); you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_527.RULE b/src/licensedcode/data/rules/gpl-2.0_527.RULE index 80400602e3..90aad99083 100644 --- a/src/licensedcode/data/rules/gpl-2.0_527.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_527.RULE @@ -15,18 +15,18 @@ This file is provided under a GPLv2 license. When using or This program is free software; you can redistribute it and/or modify it - under the terms and conditions of the GNU General Public License, - version 2, as published by the Free Software Foundation. + under the terms and conditions of {{the GNU General Public License, + version 2}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, it can be found . - The full GNU General Public License is included in this distribution in + The full {{GNU General Public License}} is included in this distribution in the file called "COPYING". THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS diff --git a/src/licensedcode/data/rules/gpl-2.0_528.RULE b/src/licensedcode/data/rules/gpl-2.0_528.RULE index ae2d99cfab..a9e02834f1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_528.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_528.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can distribute it and/or modify it - under the terms of the GNU General Public License as published by the - Free Software Foundation; version 2 of the License. \ No newline at end of file + under the terms of the {{GNU General Public License as published by the + Free Software Foundation; version 2}} of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_529.RULE b/src/licensedcode/data/rules/gpl-2.0_529.RULE index 152f6ddabe..9ecb4f8eb7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_529.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_529.RULE @@ -5,10 +5,10 @@ minimum_coverage: 50 --- is free software; you can redistribute it and/or -modify it under the terms of version 2 of the GNU General Public -License as published by the Free Software Foundation. +modify it under the terms of {{version 2 of the GNU General Public +License}} as published by the Free Software Foundation. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_53.RULE b/src/licensedcode/data/rules/gpl-2.0_53.RULE index 47dbc6abda..e9f0753a4b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_53.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_53.RULE @@ -5,14 +5,14 @@ notes: GPL from linux --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_530.RULE b/src/licensedcode/data/rules/gpl-2.0_530.RULE index c043a5c056..4d38c2ee16 100644 --- a/src/licensedcode/data/rules/gpl-2.0_530.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_530.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 and +it {{under the terms of the GNU General Public License version 2}} and only version 2 as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_531.RULE b/src/licensedcode/data/rules/gpl-2.0_531.RULE index 521cb2d395..ffa669d6c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_531.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_531.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111- \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_532.RULE b/src/licensedcode/data/rules/gpl-2.0_532.RULE index 88fb40b0f2..19539568d6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_532.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_532.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- driver is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2. +modify it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}}. The driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with the driver; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_533.RULE b/src/licensedcode/data/rules/gpl-2.0_533.RULE index a8af0a617e..d669ea164b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_533.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_533.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- The driver is free software; you can redistribute -it and/or modify it under the terms of the GNU General Public License -as published by the Free Software Foundation; version 2 of the +it and/or modify it under the terms of the {{GNU General Public License +as published by the Free Software Foundation; version 2}} of the License. The driver is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Driver; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_534.RULE b/src/licensedcode/data/rules/gpl-2.0_534.RULE index 0200a0b690..2da0bea65b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_534.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_534.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the Free -Software Foundation; either version 2 of the License, or (at your option) +under the terms of the {{GNU General Public License as published by the Free +Software Foundation; either version 2 of the License}}, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -The full GNU General Public License is included in this distribution in the +The full {{GNU General Public License}} is included in this distribution in the file called COPYING. diff --git a/src/licensedcode/data/rules/gpl-2.0_536.RULE b/src/licensedcode/data/rules/gpl-2.0_536.RULE index 2806154f2b..3962eda971 100644 --- a/src/licensedcode/data/rules/gpl-2.0_536.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_536.RULE @@ -14,8 +14,8 @@ ignorable_emails: This code is taken from CRYPTOGAMs[1] and is included here using the option in the license to distribute the code under the GPL. Therefore this program -is free software; you can redistribute it and/or modify it under the terms of -the GNU General Public License version 2 as published by the Free Software +is free software; you can redistribute it and/or modify it {{under the terms of +the GNU General Public License version 2}} as published by the Free Software Foundation. [1] https://www.openssl.org/~appro/cryptogams/ @@ -39,8 +39,8 @@ are met: prior written permission. ALTERNATIVELY, provided that this notice is retained in full, this -product may be distributed under the terms of the GNU General Public -License (GPL), in which case the provisions of the GPL apply INSTEAD OF +product may be distributed under the terms of the {{GNU General Public +License (GPL}}), in which case the provisions of the GPL apply INSTEAD OF those given above. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS diff --git a/src/licensedcode/data/rules/gpl-2.0_537.RULE b/src/licensedcode/data/rules/gpl-2.0_537.RULE index d028a264ad..0c7d23e136 100644 --- a/src/licensedcode/data/rules/gpl-2.0_537.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_537.RULE @@ -4,13 +4,13 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License, version 2, as +it {{under the terms of the GNU General Public License, version 2}}, as published by the Free Software Foundation (the "GPL"). This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 (GPLv2) for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} (GPLv2) for more details. -You should have received a copy of the GNU General Public License -version 2 (GPLv2) along with this source code. \ No newline at end of file +You should have received a copy of {{the GNU General Public License +version 2}} (GPLv2) along with this source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_538.RULE b/src/licensedcode/data/rules/gpl-2.0_538.RULE index 257750ba1f..8ab7929420 100644 --- a/src/licensedcode/data/rules/gpl-2.0_538.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_538.RULE @@ -8,7 +8,7 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as + it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. http://www.opensource.org/licenses/gpl-license.html diff --git a/src/licensedcode/data/rules/gpl-2.0_539.RULE b/src/licensedcode/data/rules/gpl-2.0_539.RULE index 58ebbc440c..bdd8ce7065 100644 --- a/src/licensedcode/data/rules/gpl-2.0_539.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_539.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - version 2 only, as published by the Free Software Foundation. + modify it {{under the terms of the GNU General Public License + version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. To obtain the license, point your browser to http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_54.RULE b/src/licensedcode/data/rules/gpl-2.0_54.RULE index d5b0749664..366ad0bdbb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_54.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_54.RULE @@ -11,17 +11,17 @@ ignorable_holders: Linux is copyrighted by Linus Torvalds and others. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian GNU/Linux systems, the {{complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_540.RULE b/src/licensedcode/data/rules/gpl-2.0_540.RULE index 0985d24bd3..f43e47c538 100644 --- a/src/licensedcode/data/rules/gpl-2.0_540.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_540.RULE @@ -8,13 +8,13 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_541.RULE b/src/licensedcode/data/rules/gpl-2.0_541.RULE index 2c144ad87b..d0ce2720cd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_541.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_541.RULE @@ -5,4 +5,4 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 \ No newline at end of file +it {{under the terms of the GNU General Public License version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_543.RULE b/src/licensedcode/data/rules/gpl-2.0_543.RULE index 5a94e210fb..3171c4a33a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_543.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_543.RULE @@ -5,5 +5,5 @@ relevance: 100 notes: availible is a typo --- -This code is licensed under the GPL 2.0 license, availible at the root +This code is licensed under the {{GPL 2.0 license}}, availible at the root application directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_545.RULE b/src/licensedcode/data/rules/gpl-2.0_545.RULE index 6c30890838..59c2f0560a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_545.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_545.RULE @@ -6,10 +6,10 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html --- -is licensed under the GNU General Public License, version 2< +is licensed under {{the GNU General Public License, version 2}}< is licensed under http://www.gnu.org/licenses/old-licenses/gpl-2.0.html -the GNU General Public License version 2, which is often abbreviated as GPLv2. +{{the GNU General Public License version 2}}, which is often abbreviated as GPLv2. (This is the same license the Linux kernel is under, so you may be somewhat familiar with it by now.) diff --git a/src/licensedcode/data/rules/gpl-2.0_546.RULE b/src/licensedcode/data/rules/gpl-2.0_546.RULE index 0ca24f464f..8cdc1c71db 100644 --- a/src/licensedcode/data/rules/gpl-2.0_546.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_546.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -__license__ = "GPL v2 \ No newline at end of file +__license__ = "{{GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_547.RULE b/src/licensedcode/data/rules/gpl-2.0_547.RULE index 03d7c07f88..3ca0f59221 100644 --- a/src/licensedcode/data/rules/gpl-2.0_547.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_547.RULE @@ -8,15 +8,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as +it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . -The full GNU General Public License is included in this distribution +The full {{GNU General Public License}} is included in this distribution in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_548.RULE b/src/licensedcode/data/rules/gpl-2.0_548.RULE index 333a60cc6c..fc828a49e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_548.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_548.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -License Terms: GNU General Public License, version 2 \ No newline at end of file +License Terms: {{GNU General Public License, version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_55.RULE b/src/licensedcode/data/rules/gpl-2.0_55.RULE index 499b8bee91..ba7f9a90a0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_55.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_55.RULE @@ -5,18 +5,18 @@ notes: GPL 2 or later Debian notice --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU General -Public License version 2 can be found in -`/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of {{the GNU General +Public License version 2}} can be found in +`{{/usr/share/common-licenses/GPL-2}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_551.RULE b/src/licensedcode/data/rules/gpl-2.0_551.RULE index 97d4262a8e..2a382748c2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_551.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_551.RULE @@ -10,16 +10,16 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see http://www.gnu.org/licenses +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see http://www.gnu.org/licenses GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_552.RULE b/src/licensedcode/data/rules/gpl-2.0_552.RULE index 02a2e73922..aeb9796314 100644 --- a/src/licensedcode/data/rules/gpl-2.0_552.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_552.RULE @@ -12,17 +12,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License version 2 for more details. A copy is +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the +GNU General Public License version 2}} for more details. A copy is included in the COPYING file that accompanied this code. -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see http://www.sun.com/software/products/lustre/docs/GPLv2.pdf GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_554.RULE b/src/licensedcode/data/rules/gpl-2.0_554.RULE index 3eeb8a6d6d..102e2b6204 100644 --- a/src/licensedcode/data/rules/gpl-2.0_554.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_554.RULE @@ -6,5 +6,5 @@ is_license_notice: yes based on GPL code from which has This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License as - published by the Free Software Foundation, version 2. \ No newline at end of file + modify it under the terms of the {{GNU General Public License as + published by the Free Software Foundation, version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_555.RULE b/src/licensedcode/data/rules/gpl-2.0_555.RULE index 0bf9ed9e96..c77c181e3e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_555.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_555.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_556.RULE b/src/licensedcode/data/rules/gpl-2.0_556.RULE index bdba6f3b52..3cde4d7eed 100644 --- a/src/licensedcode/data/rules/gpl-2.0_556.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_556.RULE @@ -10,16 +10,16 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License version 2 for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the +GNU General Public License version 2}} for more details. -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see http://www.gnu.org/licenses/gpl-2.0.html GPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_558.RULE b/src/licensedcode/data/rules/gpl-2.0_558.RULE index 0d234e395a..258a9a87cd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_558.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_558.RULE @@ -5,10 +5,10 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERGCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_559.RULE b/src/licensedcode/data/rules/gpl-2.0_559.RULE index 957a0c8a25..928e4bc5a5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_559.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_559.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -COPYING [GNU General Public License Version 2] \ No newline at end of file +COPYING [{{GNU General Public License Version 2}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_56.RULE b/src/licensedcode/data/rules/gpl-2.0_56.RULE index c0e22d44a0..7d3545db95 100644 --- a/src/licensedcode/data/rules/gpl-2.0_56.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_56.RULE @@ -3,6 +3,6 @@ license_expression: gpl-2.0 is_license_notice: yes --- -* This file is licensed under the terms of the GNU General Public - * License version 2. This program is licensed "as is" without any +* This file is licensed {{under the terms of the GNU General Public + * License version 2}}. This program is licensed "as is" without any * warranty of any kind, whether express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_560.RULE b/src/licensedcode/data/rules/gpl-2.0_560.RULE index 0c169a96bd..45ff4eee39 100644 --- a/src/licensedcode/data/rules/gpl-2.0_560.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_560.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. \ No newline at end of file + {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_562.RULE b/src/licensedcode/data/rules/gpl-2.0_562.RULE index 5272d0d09e..f0d1323837 100644 --- a/src/licensedcode/data/rules/gpl-2.0_562.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_562.RULE @@ -5,4 +5,4 @@ relevance: 100 --- are made available under -the GNU General Public License version 2 \ No newline at end of file +{{the GNU General Public License version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_563.RULE b/src/licensedcode/data/rules/gpl-2.0_563.RULE index 6097bbcddd..ef93a54c9f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_563.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_563.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0 is_license_notice: yes --- -On Debian GNU systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2' \ No newline at end of file +On Debian GNU systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-2}}' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_565.RULE b/src/licensedcode/data/rules/gpl-2.0_565.RULE index f7c248b4be..e4c1641c57 100644 --- a/src/licensedcode/data/rules/gpl-2.0_565.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_565.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/COPYING.4.html ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/gpl-2.0_567.RULE b/src/licensedcode/data/rules/gpl-2.0_567.RULE index eb5e579a5e..049628cf82 100644 --- a/src/licensedcode/data/rules/gpl-2.0_567.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_567.RULE @@ -7,13 +7,13 @@ ignorable_urls: GPL This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License, version 2, as published by +it {{under the terms of the GNU General Public License, version 2}}, as published by the Free Software Foundation (the "GPL"). This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. A copy of the GPL is available at http://www.broadcom.com/licenses/GPLv2.php, or by diff --git a/src/licensedcode/data/rules/gpl-2.0_568.RULE b/src/licensedcode/data/rules/gpl-2.0_568.RULE index 67ca6d63f2..08e7a580ad 100644 --- a/src/licensedcode/data/rules/gpl-2.0_568.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_568.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License, version 2, as published by + it {{under the terms of the GNU General Public License, version 2}}, as published by the Free Software Foundation (the "GPL"). This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. A copy of the GPL is available at http://www.broadcom.com/licenses/GPLv2.php, or by diff --git a/src/licensedcode/data/rules/gpl-2.0_569.RULE b/src/licensedcode/data/rules/gpl-2.0_569.RULE index da3877d635..5ab8442280 100644 --- a/src/licensedcode/data/rules/gpl-2.0_569.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_569.RULE @@ -1,6 +1,8 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes +relevance: 100 --- GNU General Public License (GPL) version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_57.RULE b/src/licensedcode/data/rules/gpl-2.0_57.RULE index 0b0b5a6eec..0cdc0f7aad 100644 --- a/src/licensedcode/data/rules/gpl-2.0_57.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_57.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.txt --- -Read the GPL v2.0 for legal details. +Read the {{GPL v2}}.0 for legal details. http://www.gnu.org/licenses/gpl-2.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_571.RULE b/src/licensedcode/data/rules/gpl-2.0_571.RULE index bbe0c68253..45b58cb795 100644 --- a/src/licensedcode/data/rules/gpl-2.0_571.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_571.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under the terms of the GPL v2. \ No newline at end of file +Released under the terms of the {{GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_572.RULE b/src/licensedcode/data/rules/gpl-2.0_572.RULE index 3dc455bff6..1bbecb554c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_572.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_572.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This file is subject to the terms and conditions of the GNU General Public -License v2. \ No newline at end of file +This file is subject to the terms and conditions of the {{GNU General Public +License v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_573.RULE b/src/licensedcode/data/rules/gpl-2.0_573.RULE index 8496d9d1d8..a99b6e164c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_573.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_573.RULE @@ -5,14 +5,14 @@ relevance: 100 --- The code in this file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}} This code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_574.RULE b/src/licensedcode/data/rules/gpl-2.0_574.RULE index f46b1d51cb..6be3c8dd0d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_574.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_574.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0 is_license_reference: yes --- -* This file is available under and governed by the GNU General Public - * License version 2 only, as published by the Free Software Foundation. \ No newline at end of file +* This file is available under and governed by {{the GNU General Public + * License version 2}} only, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_575.RULE b/src/licensedcode/data/rules/gpl-2.0_575.RULE index 71f96c98c8..6feedade38 100644 --- a/src/licensedcode/data/rules/gpl-2.0_575.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_575.RULE @@ -10,17 +10,17 @@ ignorable_urls: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 only, as + * {{under the terms of the GNU General Public License version 2}} only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - * version 2 for more details (a copy is included in the LICENSE file that + * FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU General Public License + * version 2}} for more details (a copy is included in the LICENSE file that * accompanied this code). * - * You should have received a copy of the GNU General Public License version - * 2 along with this work; if not, write to the Free Software Foundation, + * You should have received a copy of {{the GNU General Public License version + * 2}} along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA diff --git a/src/licensedcode/data/rules/gpl-2.0_578.RULE b/src/licensedcode/data/rules/gpl-2.0_578.RULE index 1cbd04d51e..0bd2ae88f5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_578.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_578.RULE @@ -11,8 +11,8 @@ ignorable_holders: --- static char license_txt[] = -" GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 +" {{GNU GENERAL PUBLIC LICENSE + Version 2}}, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA @@ -22,8 +22,8 @@ static char license_txt[] = Preamble The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free +freedom to share and change it. By contrast, the {{GNU General Public +License}} is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to diff --git a/src/licensedcode/data/rules/gpl-2.0_579.RULE b/src/licensedcode/data/rules/gpl-2.0_579.RULE index 620609016e..260e87565a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_579.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_579.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The complete text of the GNU General Public License v2 is as follows \ No newline at end of file +The complete text of the {{GNU General Public License v2}} is as follows \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_58.RULE b/src/licensedcode/data/rules/gpl-2.0_58.RULE index 4252bff508..1f6d338f64 100644 --- a/src/licensedcode/data/rules/gpl-2.0_58.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_58.RULE @@ -6,15 +6,15 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/gpl-2.0_580.RULE b/src/licensedcode/data/rules/gpl-2.0_580.RULE index ff3237752e..0b823ca54f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_580.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_580.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.html --- -License: GPL v2 (http://www.gnu.org/licenses/gpl.html) \ No newline at end of file +License: {{GPL v2}} (http://www.gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_583.RULE b/src/licensedcode/data/rules/gpl-2.0_583.RULE index 29710ec42b..cf52b6ec75 100644 --- a/src/licensedcode/data/rules/gpl-2.0_583.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_583.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This documentation is free software; you can redistribute -it and/or modify it under the terms of the GNU General Public -License version 2 as published by the Free Software Foundation. \ No newline at end of file +it and/or modify it {{under the terms of the GNU General Public +License version 2}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_584.RULE b/src/licensedcode/data/rules/gpl-2.0_584.RULE index 7fdfaa671a..3b6a2486ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_584.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_584.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License version 2 +{{under the terms of the GNU General Public License version 2}} as published by the Free Software Foudation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_585.RULE b/src/licensedcode/data/rules/gpl-2.0_585.RULE index 750b54888f..41d895df6f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_585.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_585.RULE @@ -5,4 +5,4 @@ relevance: 99 notes: typo in Lincense --- -SPDX-Lincense-Identifier: GPL 2.0 \ No newline at end of file +SPDX-Lincense-Identifier: {{GPL 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_586.RULE b/src/licensedcode/data/rules/gpl-2.0_586.RULE index 8b94876c20..ffb0c2482c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_586.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_586.RULE @@ -14,8 +14,8 @@ ignorable_emails: This code is taken from the OpenSSL project but the author (Andy Polyakov) has relicensed it under the GPLv2. Therefore this program is free software; -you can redistribute it and/or modify it under the terms of the GNU General -Public License version 2 as published by the Free Software Foundation. +you can redistribute it and/or modify it {{under the terms of the GNU General +Public License version 2}} as published by the Free Software Foundation. The original headers, including the original license headers, are included below for completeness. diff --git a/src/licensedcode/data/rules/gpl-2.0_587.RULE b/src/licensedcode/data/rules/gpl-2.0_587.RULE index 492fd04f80..60e93d465f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_587.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_587.RULE @@ -15,8 +15,8 @@ ignorable_emails: This code is taken from the OpenSSL project but the author (Andy Polyakov) has relicensed it under the GPLv2. Therefore this program is free software; -you can redistribute it and/or modify it under the terms of the GNU General -Public License version 2 as published by the Free Software Foundation. +you can redistribute it and/or modify it {{under the terms of the GNU General +Public License version 2}} as published by the Free Software Foundation. The original headers, including the original license headers, are included below for completeness. diff --git a/src/licensedcode/data/rules/gpl-2.0_59.RULE b/src/licensedcode/data/rules/gpl-2.0_59.RULE index 5e9cc05cde..822b3dd3fb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_59.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_59.RULE @@ -4,18 +4,18 @@ is_license_notice: yes --- | This program is free software; you can redistribute it and/or modify - | it under the terms of the GNU General Public License as published by - | the Free Software Foundation; version 2 dated June, 1991. + | it under the terms of the {{GNU General Public License as published by + | the Free Software Foundation; version 2}} dated June, 1991. | | This package is distributed in the hope that it will be useful, | but WITHOUT ANY WARRANTY; without even the implied warranty of | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - | GNU General Public License for more details. + | {{GNU General Public License}} for more details. | - | You should have received a copy of the GNU General Public License + | You should have received a copy of the {{GNU General Public License}} | along with this program; if not, write to the Free Software Foundation, | Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - The full text of the GNU General Public License version 2 is available on - Debian systems in /usr/share/common-licenses/GPL-2 and version 3 in: - /usr/share/common-licenses/GPL \ No newline at end of file + The full text of {{the GNU General Public License version 2}} is available on + Debian systems in {{/usr/share/common-licenses/GPL-2}} and version 3 in: + {{/usr/share/common-licenses/GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_590.RULE b/src/licensedcode/data/rules/gpl-2.0_590.RULE index 76a7364662..7ec8f34d26 100644 --- a/src/licensedcode/data/rules/gpl-2.0_590.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_590.RULE @@ -10,16 +10,16 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License}}, or (at your option) any later version. See the COPYING file in the top-level directory or visit This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. This program is provided "AS IS" and "WITH ALL FAULTS" and without warranty of any kind. You are solely responsible for diff --git a/src/licensedcode/data/rules/gpl-2.0_592.RULE b/src/licensedcode/data/rules/gpl-2.0_592.RULE index 0fca1717bd..763954d3a4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_592.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_592.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -Released under the GPL v2. +Released under the {{GPL v2}}. based on GPLv2 source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_593.RULE b/src/licensedcode/data/rules/gpl-2.0_593.RULE index 15730dfec2..710b87d283 100644 --- a/src/licensedcode/data/rules/gpl-2.0_593.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_593.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is released under the GNU GPL V2 license. \ No newline at end of file +is released under the {{GNU GPL V2}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_600.RULE b/src/licensedcode/data/rules/gpl-2.0_600.RULE index 60dd082e3a..ac9fa18b73 100644 --- a/src/licensedcode/data/rules/gpl-2.0_600.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_600.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -@license GNU GPL v2 \ No newline at end of file +@license {{GNU GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_601.RULE b/src/licensedcode/data/rules/gpl-2.0_601.RULE index 7330c886cf..147b726dfb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_601.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_601.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License, version 2, as +it {{under the terms of the GNU General Public License, version 2}}, as published by the Free Software Foundation. This program is distributed in the hope that it would be useful, but diff --git a/src/licensedcode/data/rules/gpl-2.0_602.RULE b/src/licensedcode/data/rules/gpl-2.0_602.RULE index 0cfb5907c3..bfddee8808 100644 --- a/src/licensedcode/data/rules/gpl-2.0_602.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_602.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_603.RULE b/src/licensedcode/data/rules/gpl-2.0_603.RULE index b941c79262..e499514027 100644 --- a/src/licensedcode/data/rules/gpl-2.0_603.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_603.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as + it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, diff --git a/src/licensedcode/data/rules/gpl-2.0_604.RULE b/src/licensedcode/data/rules/gpl-2.0_604.RULE index e78bdcd5f4..e968f2d02c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_604.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_604.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License version 2 as published by +{{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_605.RULE b/src/licensedcode/data/rules/gpl-2.0_605.RULE index 0964cb20f7..454dba03aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_605.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_605.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 (GPL v2) +it {{under the terms of the GNU General Public License version 2}} ({{GPL v2}}) as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_606.RULE b/src/licensedcode/data/rules/gpl-2.0_606.RULE index a81a6d8405..5c2b75fffc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_606.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_606.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as version 2, as +it under the terms of the {{GNU General Public License}} as version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_607.RULE b/src/licensedcode/data/rules/gpl-2.0_607.RULE index 83d09a7a6d..fda0985d7c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_607.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_607.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms and conditions of the GNU General Public License, - version 2, as published by the Free Software Foundation. + under the terms and conditions of {{the GNU General Public License, + version 2}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_608.RULE b/src/licensedcode/data/rules/gpl-2.0_608.RULE index 26e6e8fa12..39c795bfb7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_608.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_608.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or -NON INFRINGEMENT. See the GNU General Public License for more details. \ No newline at end of file +NON INFRINGEMENT. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_609.RULE b/src/licensedcode/data/rules/gpl-2.0_609.RULE index 28ef5003a3..ac341496dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_609.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_609.RULE @@ -6,6 +6,6 @@ relevance: 100 based on GPL'ed 2.6 kernel sources -This file is licensed under the terms of the GNU General Public -License version 2. This program is licensed "as is" without any +This file is licensed {{under the terms of the GNU General Public +License version 2}}. This program is licensed "as is" without any warranty of any kind, whether express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_611.RULE b/src/licensedcode/data/rules/gpl-2.0_611.RULE index baa6d0236f..6cd4d71e21 100644 --- a/src/licensedcode/data/rules/gpl-2.0_611.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_611.RULE @@ -8,15 +8,15 @@ referenced_filenames: DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License version 2 only, as +{{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -version 2 for more details (a copy is included in the LICENSE file that +FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU General Public License +version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License version -2 along with this work; if not, write to the Free Software Foundation, +You should have received a copy of {{the GNU General Public License version +2}} along with this work; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_612.RULE b/src/licensedcode/data/rules/gpl-2.0_612.RULE index b8ff2e01e7..2c0eff1400 100644 --- a/src/licensedcode/data/rules/gpl-2.0_612.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_612.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License}} as published by * the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 * USA diff --git a/src/licensedcode/data/rules/gpl-2.0_617.RULE b/src/licensedcode/data/rules/gpl-2.0_617.RULE index c29da55d5e..b6d507a984 100644 --- a/src/licensedcode/data/rules/gpl-2.0_617.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_617.RULE @@ -9,7 +9,7 @@ ignorable_urls: --- COPYRIGHT - This file is distributed under the terms of the GNU General Public - License (GPL). Copies of the GPL can be obtained from: + This file is distributed under the terms of the {{GNU General Public + License (GPL}}). Copies of the GPL can be obtained from: ftp://prep.ai.mit.edu/pub/gnu/GPL Each contributing author retains all rights to their own work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_618.RULE b/src/licensedcode/data/rules/gpl-2.0_618.RULE index d19e06562c..226aac1a89 100644 --- a/src/licensedcode/data/rules/gpl-2.0_618.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_618.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.txt --- -is subject to the ?GNU General Public License Version 2?, which may be obtained at the following web site: http://www.gnu.org/licenses/gpl.txt \ No newline at end of file +is subject to {{the ?GNU General Public License Version 2}}?, which may be obtained at the following web site: http://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_62.RULE b/src/licensedcode/data/rules/gpl-2.0_62.RULE index de5af9d003..0e268a6652 100644 --- a/src/licensedcode/data/rules/gpl-2.0_62.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_62.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0 is_license_notice: yes --- -The complete text of the GNU General Public License version 2 is -available in /usr/share/common-licenses/GPL on a Debian system. \ No newline at end of file +The complete text of {{the GNU General Public License version 2}} is +available in {{/usr/share/common-licenses/GPL}} on a Debian system. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_620.RULE b/src/licensedcode/data/rules/gpl-2.0_620.RULE index 83aecf8f9d..25eccfe06f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_620.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_620.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0_621.RULE b/src/licensedcode/data/rules/gpl-2.0_621.RULE index 340b1adb78..a71be7cca8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_621.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_621.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 referenced_filenames: - /usr/share/common-licenses/GPL-2 diff --git a/src/licensedcode/data/rules/gpl-2.0_622.RULE b/src/licensedcode/data/rules/gpl-2.0_622.RULE index 2086dbd853..8190958a6c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_622.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_622.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -the GNU -General Public License version 2 (the "GPL License") \ No newline at end of file +{{the GNU +General Public License version 2}} (the "GPL License") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_623.RULE b/src/licensedcode/data/rules/gpl-2.0_623.RULE index 81b0f108fc..2f02d415e8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_623.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_623.RULE @@ -7,15 +7,15 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 + it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - The complete text of the GNU General Public License 2 + The complete text of the {{GNU General Public License 2}} can be found in "/usr/share/common-licenses/GPL-2". . Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA diff --git a/src/licensedcode/data/rules/gpl-2.0_624.RULE b/src/licensedcode/data/rules/gpl-2.0_624.RULE index 71faf49e4b..68b53e2c36 100644 --- a/src/licensedcode/data/rules/gpl-2.0_624.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_624.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This library is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2, as +it {{under the terms of the GNU General Public License version 2}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_625.RULE b/src/licensedcode/data/rules/gpl-2.0_625.RULE index 21ca67b9ec..65c98526ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_625.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_625.RULE @@ -7,16 +7,16 @@ referenced_filenames: This documentation is free software; you can redistribute - it and/or modify it under the terms of the GNU General Public - License version 2 as published by the Free Software Foundation. + it and/or modify it {{under the terms of the GNU General Public + License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU General Public License for more details. + See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with this program; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. diff --git a/src/licensedcode/data/rules/gpl-2.0_626.RULE b/src/licensedcode/data/rules/gpl-2.0_626.RULE index e02185a50c..5f2e08e97c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_626.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_626.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This documentation is free software; you can redistribute - it and/or modify it under the terms of the GNU General Public - License version 2 as published by the Free Software Foundation. + it and/or modify it {{under the terms of the GNU General Public + License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU General Public License for more details. + See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with this program; if not, write to the Free + You should have received a copy of the {{GNU General Public + License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. diff --git a/src/licensedcode/data/rules/gpl-2.0_63.RULE b/src/licensedcode/data/rules/gpl-2.0_63.RULE index c66e293627..607ec89b34 100644 --- a/src/licensedcode/data/rules/gpl-2.0_63.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_63.RULE @@ -5,8 +5,8 @@ is_license_notice: yes This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions -of the GNU General Public License v.2. +of the {{GNU General Public License v.2}}. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_631.RULE b/src/licensedcode/data/rules/gpl-2.0_631.RULE index 87a45f273a..5ad6f993c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_631.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_631.RULE @@ -5,4 +5,4 @@ relevance: 100 --- This file is free software. You can redistribute it and/or modify it under -the terms of the GNU General Public License (GPL), version 2. \ No newline at end of file +the terms of the {{GNU General Public License (GPL), version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_632.RULE b/src/licensedcode/data/rules/gpl-2.0_632.RULE index 461429a400..b8f117139e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_632.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_632.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the version 2 of the GNU General Public License +it under the terms of the {{version 2 of the GNU General Public License}} as published by the Free Software Foundation This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_633.RULE b/src/licensedcode/data/rules/gpl-2.0_633.RULE index 635a3395f2..ee95741ace 100644 --- a/src/licensedcode/data/rules/gpl-2.0_633.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_633.RULE @@ -8,7 +8,7 @@ ignorable_urls: This copyrighted material is made available to anyone wishing to use, modify, copy, or redistribute it subject to the terms and conditions -of the GNU General Public License v.2. +of the {{GNU General Public License v.2}}. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_636.RULE b/src/licensedcode/data/rules/gpl-2.0_636.RULE index 453f1176de..ed03d36233 100644 --- a/src/licensedcode/data/rules/gpl-2.0_636.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_636.RULE @@ -5,14 +5,14 @@ relevance: 100 --- * This program is free software; you can redistribute it and/or -* modify it under the terms of version 2 of the GNU General Public License as +* modify it under the terms of {{version 2 of the GNU General Public License}} as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. +* {{GNU General Public License}} for more details. * -* You should have received a copy of the GNU General Public License +* You should have received a copy of the {{GNU General Public License}} * along with this program; if not, contact Novell, Inc. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_637.RULE b/src/licensedcode/data/rules/gpl-2.0_637.RULE index c9d6d759b1..1b174d91ee 100644 --- a/src/licensedcode/data/rules/gpl-2.0_637.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_637.RULE @@ -5,5 +5,5 @@ relevance: 100 --- all of the files -in this archive are licensed under the terms of version 2 of the GNU -General Public License as published by the Free Software Foundation. \ No newline at end of file +in this archive are licensed under the terms of {{version 2 of the GNU +General Public License}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_639.RULE b/src/licensedcode/data/rules/gpl-2.0_639.RULE index 168260c092..4d085e8047 100644 --- a/src/licensedcode/data/rules/gpl-2.0_639.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_639.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -source code is distributed under GNU GPL v2. \ No newline at end of file +source code is distributed under {{GNU GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_64.RULE b/src/licensedcode/data/rules/gpl-2.0_64.RULE index fbcb1ba6b8..0a1beb3fac 100644 --- a/src/licensedcode/data/rules/gpl-2.0_64.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_64.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under GPL v2 \ No newline at end of file +licensed under {{GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_640.RULE b/src/licensedcode/data/rules/gpl-2.0_640.RULE index fd1f9d2341..25ea9e2956 100644 --- a/src/licensedcode/data/rules/gpl-2.0_640.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_640.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under GNU GPL v2. \ No newline at end of file +distributed under {{GNU GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_641.RULE b/src/licensedcode/data/rules/gpl-2.0_641.RULE index 52b1449093..1bebdd3e24 100644 --- a/src/licensedcode/data/rules/gpl-2.0_641.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_641.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is distributed under GNU GPL v2. \ No newline at end of file +is distributed under {{GNU GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_645.RULE b/src/licensedcode/data/rules/gpl-2.0_645.RULE index c1861b9fe0..95c0a0e11b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_645.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_645.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation; version 2 +modify it under the terms of the {{GNU General Public License +as published by the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_646.RULE b/src/licensedcode/data/rules/gpl-2.0_646.RULE index 3c1cc1d44c..d75abb080e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_646.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_646.RULE @@ -8,4 +8,4 @@ ignorable_holders: - Free Software Foundation, Inc. --- -software is licensed pursuant to the GNU General Public License version 2 (GPLv2), Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file +software is licensed pursuant to {{the GNU General Public License version 2}} (GPLv2), Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_647.RULE b/src/licensedcode/data/rules/gpl-2.0_647.RULE index 660326eb66..056c871022 100644 --- a/src/licensedcode/data/rules/gpl-2.0_647.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_647.RULE @@ -8,4 +8,4 @@ ignorable_holders: - Free Software Foundation, Inc. --- -The software is licensed pursuant to the GNU General Public License version 2 (GPLv2), Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA which is available at httplicense (the "License"). Any use of shall be subject to the License. \ No newline at end of file +The software is licensed pursuant to {{the GNU General Public License version 2}} (GPLv2), Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA which is available at httplicense (the "License"). Any use of shall be subject to the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_649.RULE b/src/licensedcode/data/rules/gpl-2.0_649.RULE index f716eee548..3d8863ad14 100644 --- a/src/licensedcode/data/rules/gpl-2.0_649.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_649.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - copyrighted by the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_65.RULE b/src/licensedcode/data/rules/gpl-2.0_65.RULE index 33dde4b450..3b37ffc237 100644 --- a/src/licensedcode/data/rules/gpl-2.0_65.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_65.RULE @@ -4,17 +4,17 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-2}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_653.RULE b/src/licensedcode/data/rules/gpl-2.0_653.RULE index f6a59c7d58..e5fb6423f1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_653.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_653.RULE @@ -7,5 +7,5 @@ notes: found in the Linux kernel --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 +it {{under the terms of the GNU General Public License version 2}} See the file COPYING included with this distribution for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_658.RULE b/src/licensedcode/data/rules/gpl-2.0_658.RULE index d376d9ee01..61e4571c0a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_658.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_658.RULE @@ -10,18 +10,18 @@ GPL LICENSE SUMMARY This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as +it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA -The full GNU General Public License is included in this distribution +The full {{GNU General Public License}} is included in this distribution in the file called COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_659.RULE b/src/licensedcode/data/rules/gpl-2.0_659.RULE index d2786ba65f..8a554888e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_659.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_659.RULE @@ -6,7 +6,7 @@ relevance: 100 * * This program is free software; you can redistribute it and/or modify it -* under the terms of version 2.0 of the GNU General Public License +* under the terms of version 2.0 of the {{GNU General Public License}} * as published by the Free Software Foundation. * * This program is distributed in the hope that it would be useful, but diff --git a/src/licensedcode/data/rules/gpl-2.0_66.RULE b/src/licensedcode/data/rules/gpl-2.0_66.RULE index 5a477c4d0e..076e68ee01 100644 --- a/src/licensedcode/data/rules/gpl-2.0_66.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_66.RULE @@ -3,4 +3,4 @@ license_expression: gpl-2.0 is_license_reference: yes --- -The package scripts are licensed under GPL v2. \ No newline at end of file +The package scripts are licensed under {{GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_660.RULE b/src/licensedcode/data/rules/gpl-2.0_660.RULE index 68d3ba73c8..e35653ba0d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_660.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_660.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -The GNU General Public License, Version 2 \ No newline at end of file +The GNU General Public License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_662.RULE b/src/licensedcode/data/rules/gpl-2.0_662.RULE index 0e1dff6d27..cdb91ee062 100644 --- a/src/licensedcode/data/rules/gpl-2.0_662.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_662.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Use and redistribute under the terms of the GNU GPL v2. \ No newline at end of file +Use and redistribute under the terms of the {{GNU GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_663.RULE b/src/licensedcode/data/rules/gpl-2.0_663.RULE index 390a5ef05c..dda135549f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_663.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_663.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -redistribute under the terms of the GNU GPL v2. \ No newline at end of file +redistribute under the terms of the {{GNU GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_664.RULE b/src/licensedcode/data/rules/gpl-2.0_664.RULE index d4ffeab55a..043eb670b0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_664.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_664.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0-standalone.html --- -license 'GPL-2.0', 'http://www.gnu.org/licenses/gpl-2.0-standalone.html' \ No newline at end of file +{{license 'GPL-2.0}}', 'http://www.gnu.org/licenses/gpl-2.0-standalone.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_666.RULE b/src/licensedcode/data/rules/gpl-2.0_666.RULE index 6604a820ba..9b0cf17990 100644 --- a/src/licensedcode/data/rules/gpl-2.0_666.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_666.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GPL v2 License \ No newline at end of file +{{GPL v2}} License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_667.RULE b/src/licensedcode/data/rules/gpl-2.0_667.RULE index 7213f8cbbe..28565ed494 100644 --- a/src/licensedcode/data/rules/gpl-2.0_667.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_667.RULE @@ -8,6 +8,6 @@ referenced_filenames: #### License -All files in this directory are licensed under GPL-v2. +All files in this directory are licensed under {{GPL-v2}}. See [COPYING](COPYING) for details. The text of the license is also included at the top of each source file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_669.RULE b/src/licensedcode/data/rules/gpl-2.0_669.RULE index 702c16a20a..e7697e6a86 100644 --- a/src/licensedcode/data/rules/gpl-2.0_669.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_669.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -GPL-v2 licensed. \ No newline at end of file +{{GPL-v2}} licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_67.RULE b/src/licensedcode/data/rules/gpl-2.0_67.RULE index 58eb809f74..fae56aecc5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_67.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_67.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0 is_license_notice: yes --- -On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL-2 file. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL-2}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_670.RULE b/src/licensedcode/data/rules/gpl-2.0_670.RULE index 28db078051..0b1c23bdb1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_670.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_670.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All examples are GPL-v2 licensed. \ No newline at end of file +All examples are {{GPL-v2}} licensed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_672.RULE b/src/licensedcode/data/rules/gpl-2.0_672.RULE index 862c7ce2e4..1561d5478e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_672.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_672.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under GNU General Public License (GPL) version 2 \ No newline at end of file +Released under {{GNU General Public License (GPL) version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_673.RULE b/src/licensedcode/data/rules/gpl-2.0_673.RULE index b8663ec05b..bf683008e3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_673.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_673.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -is GPL v2'd) */ +is {{GPL v2}}'d) */ This is free software. You can redistribute and modify it under the terms of the GNU General Public diff --git a/src/licensedcode/data/rules/gpl-2.0_674.RULE b/src/licensedcode/data/rules/gpl-2.0_674.RULE index f0f7f1c572..705ebfeeb3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_674.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_674.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -GPL v2'd \ No newline at end of file +{{GPL v2}}'d \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_675.RULE b/src/licensedcode/data/rules/gpl-2.0_675.RULE index 975c335b49..d3eb110967 100644 --- a/src/licensedcode/data/rules/gpl-2.0_675.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_675.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is GPL v2'd \ No newline at end of file +is {{GPL v2}}'d \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_676.RULE b/src/licensedcode/data/rules/gpl-2.0_676.RULE index 87835a0afe..9af538e84e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_676.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_676.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under the GNU General Public License Version 2 (GPLv2). \ No newline at end of file +Released under {{the GNU General Public License Version 2}} (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_677.RULE b/src/licensedcode/data/rules/gpl-2.0_677.RULE index 50cf98b779..9cb698ed2a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_677.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_677.RULE @@ -14,17 +14,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see http://www.sun.com/software/products/lustre/docs/GPLv2.pdf copy of GPLv2]. diff --git a/src/licensedcode/data/rules/gpl-2.0_677_1.RULE b/src/licensedcode/data/rules/gpl-2.0_677_1.RULE index 1dabbcd65b..a77eea6220 100644 --- a/src/licensedcode/data/rules/gpl-2.0_677_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_677_1.RULE @@ -14,17 +14,17 @@ GPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see http://www.sun.com/software/products/lustre/docs/GPLv2.pdf Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, diff --git a/src/licensedcode/data/rules/gpl-2.0_678.RULE b/src/licensedcode/data/rules/gpl-2.0_678.RULE index 2f1d0bfa36..3e0561fe3c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_678.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_678.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License version 2 as published + {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation, incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_679.RULE b/src/licensedcode/data/rules/gpl-2.0_679.RULE index f7de962687..caec8c79e9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_679.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_679.RULE @@ -6,14 +6,14 @@ notes: repeat lead --- This program is free software; you may redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}} of the License. This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as -published by the Free Software Foundation version 2. +modify it under the terms of the {{GNU General Public License as +published by the Free Software Foundation version 2}}. This program is distributed .as is. WITHOUT ANY WARRANTY of any kind, whether express or implied; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_68.RULE b/src/licensedcode/data/rules/gpl-2.0_68.RULE index 496d6df8ca..c7faa1faf3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_68.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_68.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This file is part of the Linux kernel, and is made available under -the terms of the GNU General Public License version 2 \ No newline at end of file +This file is part of the Linux kernel, and is made available {{under +the terms of the GNU General Public License version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_681.RULE b/src/licensedcode/data/rules/gpl-2.0_681.RULE index dff4a8402b..8a77e32579 100644 --- a/src/licensedcode/data/rules/gpl-2.0_681.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_681.RULE @@ -9,12 +9,12 @@ referenced_filenames: GPL LICENSE SUMMARY This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as +it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. -The full GNU General Public License is included in this distribution +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. +The full {{GNU General Public License}} is included in this distribution in the file called LICENSE.GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_684.RULE b/src/licensedcode/data/rules/gpl-2.0_684.RULE index 73ccffeb5c..8e4c00b86d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_684.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_684.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 as published -by the Free Software Foundation. (GPL v2) +it {{under the terms of the GNU General Public License version 2}} as published +by the Free Software Foundation. ({{GPL v2}}) is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with the ; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_685.RULE b/src/licensedcode/data/rules/gpl-2.0_685.RULE index 087f12ae16..3c3c61b171 100644 --- a/src/licensedcode/data/rules/gpl-2.0_685.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_685.RULE @@ -4,13 +4,13 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms and conditions of the GNU General Public License, -version 2, as published by the Free Software Foundation. +under the terms and conditions of {{the GNU General Public License, +version 2}}, as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_686.RULE b/src/licensedcode/data/rules/gpl-2.0_686.RULE index 0dda11e235..2c8a37fbd6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_686.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_686.RULE @@ -6,10 +6,10 @@ minimum_coverage: 95 --- LIST "This program is free software; you can redistribute it and/or modify" -LIST "it under the terms of the GNU General Public License version 2 as" +LIST "it {{under the terms of the GNU General Public License version 2}} as" LIST "published by the Free Software Foundation." LIST "This program is distributed in the hope that it will be useful," LIST "but WITHOUT ANY WARRANTY; without even the implied warranty of" LIST "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the" -LIST "GNU General Public License for more details." \ No newline at end of file +LIST "{{GNU General Public License}} for more details." \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_687.RULE b/src/licensedcode/data/rules/gpl-2.0_687.RULE index bc3bf8581e..26673666ba 100644 --- a/src/licensedcode/data/rules/gpl-2.0_687.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_687.RULE @@ -7,15 +7,15 @@ GPL LICENSE SUMMARY This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as +it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_688.RULE b/src/licensedcode/data/rules/gpl-2.0_688.RULE index 88c4bba8e8..eb3774f0b7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_688.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_688.RULE @@ -5,6 +5,6 @@ minimum_coverage: 90 --- Driver for Linux is free software; you -can redistribute it and/or modify it under the terms of the GNU -General Public License version 2 as published by the Free Software +can redistribute it and/or modify it {{under the terms of the GNU +General Public License version 2}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_689.RULE b/src/licensedcode/data/rules/gpl-2.0_689.RULE index 5fe7cf62c2..d2a827c0e6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_689.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_689.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; GPL v2. \ No newline at end of file +under the terms of the {{GNU General Public License}} as published by the +Free Software Foundation; {{GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_69.RULE b/src/licensedcode/data/rules/gpl-2.0_69.RULE index d8d5bdb8eb..fd74ecf1b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_69.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_69.RULE @@ -11,12 +11,12 @@ ignorable_emails: License for all components is: -- - GNU General Public License, version 2 (GPL-2) + {{GNU General Public License, version 2}} (GPL-2) | This file is part of the Qt Script Generator project on Trolltech Labs. | - | This file may be used under the terms of the GNU General Public - | License version 2.0 as published by the Free Software Foundation + | This file may be used {{under the terms of the GNU General Public + | License version 2}}.0 as published by the Free Software Foundation | and appearing in the file LICENSE.GPL included in the packaging of | this file. Please review the following information to ensure GNU | General Public Licensing requirements will be met: @@ -30,6 +30,6 @@ License for all components is: | This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. - On Debian systems, the complete text of the - GNU General Public License version 2 can be found in - /usr/share/common-licenses/GPL-2 \ No newline at end of file + On Debian systems, the complete text of {{the + GNU General Public License version 2}} can be found in + {{/usr/share/common-licenses/GPL-2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_690.RULE b/src/licensedcode/data/rules/gpl-2.0_690.RULE index ed80fc33ca..241f369232 100644 --- a/src/licensedcode/data/rules/gpl-2.0_690.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_690.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING.GPLv2 --- -COPYING.GPLv2: GNU General Public License version 2 \ No newline at end of file +COPYING.GPLv2: {{GNU General Public License version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_693.RULE b/src/licensedcode/data/rules/gpl-2.0_693.RULE index 273fccfc60..8cfe679ef6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_693.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_693.RULE @@ -6,14 +6,14 @@ referenced_filenames: - COPYING --- -This library is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License version 2 as published by the Free +This library is free software; you can redistribute it and/or modify it {{under +the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this library; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_695.RULE b/src/licensedcode/data/rules/gpl-2.0_695.RULE index bc08964730..4caa9c2807 100644 --- a/src/licensedcode/data/rules/gpl-2.0_695.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_695.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -gpl v2.0 \ No newline at end of file +{{gpl v2}}.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_7.RULE b/src/licensedcode/data/rules/gpl-2.0_7.RULE index 1c4891a8f4..6d4c267f3b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_7.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_7.RULE @@ -4,18 +4,18 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian systems, the {{complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_70.RULE b/src/licensedcode/data/rules/gpl-2.0_70.RULE index aaecc75217..88a1a745c1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_70.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_70.RULE @@ -5,4 +5,4 @@ relevance: 100 --- The package scripts are copyright (C) , written by - and licensed under GPL v2. \ No newline at end of file + and licensed under {{GPL v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_708.RULE b/src/licensedcode/data/rules/gpl-2.0_708.RULE index e07cf49089..f4affc3cbf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_708.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_708.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0 -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gnu gplv2 \ No newline at end of file +GNU GPLv2 diff --git a/src/licensedcode/data/rules/gpl-2.0_71.RULE b/src/licensedcode/data/rules/gpl-2.0_71.RULE index 31febdf54a..88c5b6ed21 100644 --- a/src/licensedcode/data/rules/gpl-2.0_71.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_71.RULE @@ -4,23 +4,23 @@ is_license_notice: yes --- The package scripts are copyright (C) , written by - and licensed under GPL v2. + and licensed under {{GPL v2}}. Copyright: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian systems, the {{complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_711.RULE b/src/licensedcode/data/rules/gpl-2.0_711.RULE index e61ecd6a62..1c876ad96e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_711.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_711.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-2.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-2.0_713.RULE b/src/licensedcode/data/rules/gpl-2.0_713.RULE index 8ddfa2c033..fc8d1ae6aa 100644 --- a/src/licensedcode/data/rules/gpl-2.0_713.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_713.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -gnu gpl 2.0 \ No newline at end of file +gnu {{gpl 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_714.RULE b/src/licensedcode/data/rules/gpl-2.0_714.RULE index 6856c059e1..9db4716875 100644 --- a/src/licensedcode/data/rules/gpl-2.0_714.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_714.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0 -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gnu gpl v2.0 \ No newline at end of file +GNU GPL v2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_715.RULE b/src/licensedcode/data/rules/gpl-2.0_715.RULE index 21d3623158..844dab4584 100644 --- a/src/licensedcode/data/rules/gpl-2.0_715.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_715.RULE @@ -5,14 +5,14 @@ minimum_coverage: 80 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 +it {{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_72.RULE b/src/licensedcode/data/rules/gpl-2.0_72.RULE index c052723db8..8d81ee50b1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_72.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_72.RULE @@ -6,18 +6,18 @@ is_license_notice: yes License: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-2}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_721.RULE b/src/licensedcode/data/rules/gpl-2.0_721.RULE index 76b5c18bd7..34756cdc0c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_721.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_721.RULE @@ -6,6 +6,6 @@ referenced_filenames: - COPYING --- -distributed under the GNU GENERAL PUBLIC LICENSE (GPL) - * Version 2 (June 1991). See the "COPYING" file distributed with this software +distributed under the {{GNU GENERAL PUBLIC LICENSE (GPL) + * Version 2}} (June 1991). See the "COPYING" file distributed with this software * for more info. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_723.RULE b/src/licensedcode/data/rules/gpl-2.0_723.RULE index c32183c478..065b0def4f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_723.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_723.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - copyrighted by the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_724.RULE b/src/licensedcode/data/rules/gpl-2.0_724.RULE index 153e0e7006..d54fcf0678 100644 --- a/src/licensedcode/data/rules/gpl-2.0_724.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_724.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The GNU General Public License (GPL) Version 2 \ No newline at end of file +The {{GNU General Public License (GPL) Version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_725.RULE b/src/licensedcode/data/rules/gpl-2.0_725.RULE index 7175a33234..296a5e15c5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_725.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_725.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU General Public License (GPL) Version 2, June 1991 \ No newline at end of file +{{GNU General Public License (GPL) Version 2}}, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_726.RULE b/src/licensedcode/data/rules/gpl-2.0_726.RULE index 33d3b74d78..5b93fd4909 100644 --- a/src/licensedcode/data/rules/gpl-2.0_726.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_726.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The GNU General Public License (GPL) Version 2, June 1991 \ No newline at end of file +The {{GNU General Public License (GPL) Version 2}}, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_73.RULE b/src/licensedcode/data/rules/gpl-2.0_73.RULE index 05478b2030..a058759048 100644 --- a/src/licensedcode/data/rules/gpl-2.0_73.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_73.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- BusyBox is licensed under http://www.gnu.org/licenses/old-licenses/gpl-2.0.html"> -the GNU General Public License version 2 , which is often abbreviated as GPLv2. +{{the GNU General Public License version 2}} , which is often abbreviated as GPLv2. (This is the same license the Linux kernel is under, so you may be somewhat familiar with it by now.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_730.RULE b/src/licensedcode/data/rules/gpl-2.0_730.RULE index 47442e144c..e3530f4a1a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_730.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_730.RULE @@ -8,4 +8,4 @@ ignorable_holders: - GNU General --- -Copyright: GNU General Public License, Version 2. \ No newline at end of file +Copyright: {{GNU General Public License, Version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_731.RULE b/src/licensedcode/data/rules/gpl-2.0_731.RULE index a46f3998e4..3f1a36ef48 100644 --- a/src/licensedcode/data/rules/gpl-2.0_731.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_731.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -Copyright: GNU GENERAL PUBLIC LICENSE (GPL) Version 2. \ No newline at end of file +Copyright: {{GNU GENERAL PUBLIC LICENSE (GPL) Version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_733.RULE b/src/licensedcode/data/rules/gpl-2.0_733.RULE index a4f7b551ba..67c5e69dc4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_733.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_733.RULE @@ -8,4 +8,4 @@ ignorable_holders: - GNU General --- -@copyright GNU General Public License version. 2 (GPLv2) \ No newline at end of file +@copyright {{GNU General Public License version. 2}} (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_735.RULE b/src/licensedcode/data/rules/gpl-2.0_735.RULE index 7964c8a971..e10463dc25 100644 --- a/src/licensedcode/data/rules/gpl-2.0_735.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_735.RULE @@ -8,4 +8,4 @@ ignorable_holders: - GNU General --- -COPYRIGHT GNU General Public License v. 2 \ No newline at end of file +COPYRIGHT {{GNU General Public License v. 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_737.RULE b/src/licensedcode/data/rules/gpl-2.0_737.RULE index 3db6197d6c..aefa522233 100644 --- a/src/licensedcode/data/rules/gpl-2.0_737.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_737.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -Copyright: NO COPYRIGHT (GNU General Public License) \ No newline at end of file +Copyright: NO COPYRIGHT ({{GNU General Public License}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_739.RULE b/src/licensedcode/data/rules/gpl-2.0_739.RULE index eba830b1c8..2d9cebd578 100644 --- a/src/licensedcode/data/rules/gpl-2.0_739.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_739.RULE @@ -8,4 +8,4 @@ ignorable_holders: - GNU General --- -Released under copyright GNU General Public License Version 2. \ No newline at end of file +Released under copyright {{GNU General Public License Version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_741.RULE b/src/licensedcode/data/rules/gpl-2.0_741.RULE index 6f0df1ee42..a91452521d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_741.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_741.RULE @@ -10,4 +10,4 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.html --- -@copyright GNU General Public License * @license http://www.gnu.org/licenses/gpl.html \ No newline at end of file +@copyright {{GNU General Public License}} * @license http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_743.RULE b/src/licensedcode/data/rules/gpl-2.0_743.RULE index ea6a041004..5557ed546b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_743.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_743.RULE @@ -8,4 +8,4 @@ ignorable_holders: - GNU General --- -Licence and Copyright GNU General Public License Version 2, June 1991 \ No newline at end of file +Licence and Copyright {{GNU General Public License Version 2}}, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_745.RULE b/src/licensedcode/data/rules/gpl-2.0_745.RULE index 64b4e4ed43..7206161c78 100644 --- a/src/licensedcode/data/rules/gpl-2.0_745.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_745.RULE @@ -8,4 +8,4 @@ ignorable_holders: - GNU General --- -Legal Copyright : GNU General Public License v2 \ No newline at end of file +Legal Copyright : {{GNU General Public License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_747.RULE b/src/licensedcode/data/rules/gpl-2.0_747.RULE index 25537fdbcc..aec5d18c5b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_747.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_747.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -copyright" -> "GNU General Public License version 2 or later" \ No newline at end of file +copyright" -> "{{GNU General Public License version 2}} or later" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_748.RULE b/src/licensedcode/data/rules/gpl-2.0_748.RULE index 91a7b59943..20d58bc495 100644 --- a/src/licensedcode/data/rules/gpl-2.0_748.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_748.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -GNU General Public License v2 or later \ No newline at end of file +{{GNU General Public License v2}} or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_749.RULE b/src/licensedcode/data/rules/gpl-2.0_749.RULE index b766471d2c..a956190c83 100644 --- a/src/licensedcode/data/rules/gpl-2.0_749.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_749.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -Copyright GNU GENERAL PUBLIC LICENSE Version 2, June 1991 (see. "COPYING" \ No newline at end of file +Copyright {{GNU GENERAL PUBLIC LICENSE Version 2}}, June 1991 (see. "COPYING" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_753.RULE b/src/licensedcode/data/rules/gpl-2.0_753.RULE index 6ba2c287eb..5512c86d93 100644 --- a/src/licensedcode/data/rules/gpl-2.0_753.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_753.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- License: GPL-2 - On Debian systems the full text of the GNU GPL v2 can be found + On Debian systems the full text of the {{GNU GPL v2}} can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_754.RULE b/src/licensedcode/data/rules/gpl-2.0_754.RULE index 48706a2fdb..70857aec95 100644 --- a/src/licensedcode/data/rules/gpl-2.0_754.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_754.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems the full text of the GNU GPL v2 can be found +On Debian systems the full text of the {{GNU GPL v2}} can be found in the `/usr/share/common-licenses/GPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_756.RULE b/src/licensedcode/data/rules/gpl-2.0_756.RULE index 14bb6d12aa..a8feb180fc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_756.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_756.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU General Public License v.2 \ No newline at end of file +GNU General Public License, V 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_757.RULE b/src/licensedcode/data/rules/gpl-2.0_757.RULE index 1d54c5e621..44d775795b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_757.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_757.RULE @@ -5,14 +5,14 @@ relevance: 100 --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License, V2 as published by +it under the terms of the {{GNU General Public License, V2}} as published by the Free Software Foundation. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with ; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_758.RULE b/src/licensedcode/data/rules/gpl-2.0_758.RULE index 2bcf1cc078..5a5ae3d1a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_758.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_758.RULE @@ -5,13 +5,13 @@ relevance: 100 --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 of the License, or +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; either version 2 of the License}}, or (at your option) any later version. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -You should have received a copy of the GNU General Public License +{{GNU General Public License}} for more details. +You should have received a copy of the {{GNU General Public License}} along with ; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_762.RULE b/src/licensedcode/data/rules/gpl-2.0_762.RULE index 36713891a2..34444cf71e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_762.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_762.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -LicenseText "GNU GENERAL PUBLIC LICENSE, v2" \ No newline at end of file +LicenseText "{{GNU GENERAL PUBLIC LICENSE, v2}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_763.RULE b/src/licensedcode/data/rules/gpl-2.0_763.RULE index f69656a167..9970ea73c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_763.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_763.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- license - LicenseText "GNU GENERAL PUBLIC LICENSE, v2" + LicenseText "{{GNU GENERAL PUBLIC LICENSE, v2}}" LicenseData COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_764.RULE b/src/licensedcode/data/rules/gpl-2.0_764.RULE index f0706acb32..b19b1260ec 100644 --- a/src/licensedcode/data/rules/gpl-2.0_764.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_764.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -LicenseText "GNU GENERAL PUBLIC LICENSE, v2" +LicenseText "{{GNU GENERAL PUBLIC LICENSE, v2}}" LicenseData COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_767.RULE b/src/licensedcode/data/rules/gpl-2.0_767.RULE index ac5c6d7a60..956d0bd175 100644 --- a/src/licensedcode/data/rules/gpl-2.0_767.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_767.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU General Public License, V2" \ No newline at end of file +GNU General Public License v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_768.RULE b/src/licensedcode/data/rules/gpl-2.0_768.RULE index bd11a3a88c..828cd4d8d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_768.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_768.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -LegalCopyright", "GNU General Public License, V2" \ No newline at end of file +LegalCopyright", "{{GNU General Public License, V2}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_769.RULE b/src/licensedcode/data/rules/gpl-2.0_769.RULE index 9555c2dacf..804133b235 100644 --- a/src/licensedcode/data/rules/gpl-2.0_769.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_769.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU General Public License v2.0 \ No newline at end of file +GNU General Public License, V2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_770.RULE b/src/licensedcode/data/rules/gpl-2.0_770.RULE index 3a434fe685..4120adcaf8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_770.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_770.RULE @@ -10,10 +10,10 @@ ignorable_urls: --- license -BusyBox is licensed under the GNU General Public License, version 2 +BusyBox is licensed under {{the GNU General Public License, version 2}} BusyBox is licensed under http://www.gnu.org/licenses/old-licenses/gpl-2.0.html" -the GNU General Public License version 2, which is often abbreviated as GPLv2. +{{the GNU General Public License version 2}}, which is often abbreviated as GPLv2. (This is the same license the Linux kernel is under, so you may be somewhat familiar with it by now.) diff --git a/src/licensedcode/data/rules/gpl-2.0_771.RULE b/src/licensedcode/data/rules/gpl-2.0_771.RULE index 0ab69441b9..bcd43bc7cf 100644 --- a/src/licensedcode/data/rules/gpl-2.0_771.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_771.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt --- -# This software is licensed to you under the GNU General Public License, -# version 2 (GPLv2). There is NO WARRANTY for this software, express or +# This software is licensed to you under {{the GNU General Public License, +# version 2}} (GPLv2). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 # along with this software; if not, see diff --git a/src/licensedcode/data/rules/gpl-2.0_772.RULE b/src/licensedcode/data/rules/gpl-2.0_772.RULE index fb4f09d169..b7953593ef 100644 --- a/src/licensedcode/data/rules/gpl-2.0_772.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_772.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -You are free to distribute this software under the terms of the GNU -General Public License, version 2. On Debian systems, the complete text -of the GNU General Public License can be found in the file -`/usr/share/common-licenses/GPL-2'. \ No newline at end of file +You are free to distribute this software {{under the terms of the GNU +General Public License, version 2}}. On Debian systems, the complete text +of the {{GNU General Public License}} can be found in the file +`{{/usr/share/common-licenses/GPL-2}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_773.RULE b/src/licensedcode/data/rules/gpl-2.0_773.RULE index 906a963b39..dea3ab6487 100644 --- a/src/licensedcode/data/rules/gpl-2.0_773.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_773.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.html --- -licensed under the GPL v2 +licensed under the {{GPL v2}} http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_774.RULE b/src/licensedcode/data/rules/gpl-2.0_774.RULE index 41592d1a77..f84a0edbcd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_774.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_774.RULE @@ -5,5 +5,5 @@ relevance: 100 --- is a free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License (version 2) as + it {{under the terms of the GNU General Public License (version 2}}) as published by the FSF - Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_775.RULE b/src/licensedcode/data/rules/gpl-2.0_775.RULE index cace8f9070..537a71a45e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_775.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_775.RULE @@ -5,5 +5,5 @@ relevance: 100 --- you can redistribute it and/or modify - it under the terms of the GNU General Public License (version 2) as + it {{under the terms of the GNU General Public License (version 2}}) as published by the FSF - Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_782.RULE b/src/licensedcode/data/rules/gpl-2.0_782.RULE index 206772baec..6bb3ab26c3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_782.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_782.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of version 2 of the GNU General Public License as +it under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. -The full GNU General Public License is included in this distribution +The full {{GNU General Public License}} is included in this distribution in the file called LICENSE.GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_783.RULE b/src/licensedcode/data/rules/gpl-2.0_783.RULE index 7e105c4064..4dc2fc419e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_783.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_783.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -available under the terms of the GNU General Public License, Version 2. Please check the LICENSE file for further details. \ No newline at end of file +available {{under the terms of the GNU General Public License, Version 2}}. Please check the LICENSE file for further details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_784.RULE b/src/licensedcode/data/rules/gpl-2.0_784.RULE index 560c7fa82b..634668d2ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0_784.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_784.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This project is released under "GNU General Public License v2.0". \ No newline at end of file +This project is released under "{{GNU General Public License v2.0}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_785.RULE b/src/licensedcode/data/rules/gpl-2.0_785.RULE index f504fc41e6..50af86760d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_785.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_785.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is released under "GNU General Public License v2.0". \ No newline at end of file +This project is released under "{{GNU General Public License v2.0}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_786.RULE b/src/licensedcode/data/rules/gpl-2.0_786.RULE index f9f46b56b1..ff10e7feb3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_786.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_786.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under "GNU General Public License v2.0". \ No newline at end of file +released under "{{GNU General Public License v2.0}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_787.RULE b/src/licensedcode/data/rules/gpl-2.0_787.RULE index 60b2c28167..7187bf6f61 100644 --- a/src/licensedcode/data/rules/gpl-2.0_787.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_787.RULE @@ -8,4 +8,4 @@ ignorable_urls: ## License -This project is released under "[GNU General Public License v2.0](https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md)". \ No newline at end of file +This project is released under "[{{GNU General Public License v2.0}}](https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md)". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_788.RULE b/src/licensedcode/data/rules/gpl-2.0_788.RULE index 52752ae4bf..a18f3fe66e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_788.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_788.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md --- -This project is released under "[GNU General Public License v2.0](https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md)". \ No newline at end of file +This project is released under "[{{GNU General Public License v2.0}}](https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md)". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_789.RULE b/src/licensedcode/data/rules/gpl-2.0_789.RULE index 147187d0c7..90b13c41c8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_789.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_789.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md --- -released under "[GNU General Public License v2.0](https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md)". \ No newline at end of file +released under "[{{GNU General Public License v2.0}}](https://github.com/offensive-security/exploitdb/blob/master/LICENSE.md)". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_791.RULE b/src/licensedcode/data/rules/gpl-2.0_791.RULE index dd159867ab..670504dbff 100644 --- a/src/licensedcode/data/rules/gpl-2.0_791.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_791.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -open source (GNU/GPLv2) \ No newline at end of file +open source ({{GNU/GPLv2}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_793.RULE b/src/licensedcode/data/rules/gpl-2.0_793.RULE index 68e90cbe22..78e5f5e9ea 100644 --- a/src/licensedcode/data/rules/gpl-2.0_793.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_793.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU-GPLv2 license \ No newline at end of file +under the {{GNU-GPLv2}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_794.RULE b/src/licensedcode/data/rules/gpl-2.0_794.RULE index 33ff83672f..7b9870ded0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_794.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_794.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.html --- -This ruleset is under the GNU-GPLv2 license (http://www.gnu.org/licenses/gpl-2.0.html) +This ruleset is under the {{GNU-GPLv2}} license (http://www.gnu.org/licenses/gpl-2.0.html) and open to any user or organization, as long as you use it under this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_795.RULE b/src/licensedcode/data/rules/gpl-2.0_795.RULE index 312a759726..5cb8644388 100644 --- a/src/licensedcode/data/rules/gpl-2.0_795.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_795.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.html --- -under the GNU-GPLv2 license (http://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file +under the {{GNU-GPLv2}} license (http://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_796.RULE b/src/licensedcode/data/rules/gpl-2.0_796.RULE index 36423525fc..25e8ea920d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_796.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_796.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.html --- -GNU-GPLv2 license (http://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file +{{GNU-GPLv2}} license (http://www.gnu.org/licenses/gpl-2.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_797.RULE b/src/licensedcode/data/rules/gpl-2.0_797.RULE index b0567cd893..a1fd4c794f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_797.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_797.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU-GPLv2 license \ No newline at end of file +{{GNU-GPLv2}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_8.RULE b/src/licensedcode/data/rules/gpl-2.0_8.RULE index 66c505e2f3..dd8e3a1def 100644 --- a/src/licensedcode/data/rules/gpl-2.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_8.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 + * it {{under the terms of the GNU General Public License version 2}} * as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_80.RULE b/src/licensedcode/data/rules/gpl-2.0_80.RULE index 8dcc5b78bd..8417b2f6e8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_80.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_80.RULE @@ -9,13 +9,13 @@ All source code in this file is licensed under the following license except where indicated. This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License version 2 as published +{{under the terms of the GNU General Public License version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. -You should have received a copy of the GNU General Public License +See the {{GNU General Public License}} for more details. +You should have received a copy of the {{GNU General Public License}} along with this program; if not, you can find it at http://www.fsf.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_81.RULE b/src/licensedcode/data/rules/gpl-2.0_81.RULE index 8e28c32273..dbb184eca0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_81.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_81.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0 is_license_notice: yes --- -This file is part of the Linux kernel, and is made available under -the terms of the GNU General Public License version 2 incorporated herein by reference. \ No newline at end of file +This file is part of the Linux kernel, and is made available {{under +the terms of the GNU General Public License version 2}} incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_815.RULE b/src/licensedcode/data/rules/gpl-2.0_815.RULE index 9bc94fd74f..1e59c59f4e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_815.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_815.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/GPL/2.0/ --- -GNU General Public License 2 (GPLv2) +{{GNU General Public License 2}} (GPLv2) link: http://creativecommons.org/licenses/GPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_82.RULE b/src/licensedcode/data/rules/gpl-2.0_82.RULE index 1ec46aeefd..8096922a1d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_82.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_82.RULE @@ -8,14 +8,14 @@ The following file is licenced under the GPLv2. The code in this file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}} This code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_820.RULE b/src/licensedcode/data/rules/gpl-2.0_820.RULE index f5e0222632..31fcbf5312 100644 --- a/src/licensedcode/data/rules/gpl-2.0_820.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_820.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -The complete text of the GNU General Public License version 2 can be found in +The complete text of {{the GNU General Public License version 2}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_821.RULE b/src/licensedcode/data/rules/gpl-2.0_821.RULE index 9fdbceefdc..b939ddc666 100644 --- a/src/licensedcode/data/rules/gpl-2.0_821.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_821.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license = 'GNU GPLv2' \ No newline at end of file +license = '{{GNU GPLv2}}' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_822.RULE b/src/licensedcode/data/rules/gpl-2.0_822.RULE index 8658283083..9b3f503eeb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_822.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_822.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU General Public License, version 2 \ No newline at end of file +licensed under {{the GNU General Public License, version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_825.RULE b/src/licensedcode/data/rules/gpl-2.0_825.RULE index e574e1aee3..691f921831 100644 --- a/src/licensedcode/data/rules/gpl-2.0_825.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_825.RULE @@ -5,4 +5,4 @@ relevance: 100 --- GPL2 -# Distributed under the terms of the GNU General Public License v2 \ No newline at end of file +# Distributed under the terms of the {{GNU General Public License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_826.RULE b/src/licensedcode/data/rules/gpl-2.0_826.RULE index 4edb905b0e..7d7ccb2435 100644 --- a/src/licensedcode/data/rules/gpl-2.0_826.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_826.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -# Distributed under the terms of the GNU General Public License v2 \ No newline at end of file +# Distributed under the terms of the {{GNU General Public License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_828.RULE b/src/licensedcode/data/rules/gpl-2.0_828.RULE index 57209740c7..3c0519db86 100644 --- a/src/licensedcode/data/rules/gpl-2.0_828.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_828.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -On Debian systems a full copy of the GNU General Public License, GPL, can be +On Debian systems a full copy of the {{GNU General Public License, GPL}}, can be found in the file /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_83.RULE b/src/licensedcode/data/rules/gpl-2.0_83.RULE index f3276aeb39..8c28e7a8d8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_83.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_83.RULE @@ -5,23 +5,23 @@ minimum_coverage: 100 notes: Lizartech gpl notice, rather complex --- -Released (via statement in email) under the GNU GPL v2. +Released (via statement in email) under the {{GNU GPL v2}}. Copyright: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 2}} dated June, 1991. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU General -Public License version 2 can be found in -`/usr/share/common-licenses/GPL-2'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of {{the GNU General +Public License version 2}} can be found in +`{{/usr/share/common-licenses/GPL-2}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_830.RULE b/src/licensedcode/data/rules/gpl-2.0_830.RULE index 1af3f42e72..c44b89dad6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_830.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_830.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.html --- -# This software is licensed to you under the GNU General Public License, -# version 2 (GPLv2). There is NO WARRANTY for this software, express or +# This software is licensed to you under {{the GNU General Public License, +# version 2}} (GPLv2). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. You should have received a copy of GPLv2 along with this # software; if not, see http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_831.RULE b/src/licensedcode/data/rules/gpl-2.0_831.RULE index 572820cfd8..1d30829d95 100644 --- a/src/licensedcode/data/rules/gpl-2.0_831.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_831.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -# This software is licensed to you under the GNU General Public License, -# version 2 (GPLv2). There is NO WARRANTY for this software, express or +# This software is licensed to you under {{the GNU General Public License, +# version 2}} (GPLv2). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. You should have received a copy of GPLv2 along with this # software; if not, see https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_832.RULE b/src/licensedcode/data/rules/gpl-2.0_832.RULE index 941b68d6b8..39a059e57b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_832.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_832.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -distributed under GNU GPL v2 license. See LICENSE file for details. \ No newline at end of file +distributed under {{GNU GPL v2}} license. See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_833.RULE b/src/licensedcode/data/rules/gpl-2.0_833.RULE index 412a217bd4..c15a77ee21 100644 --- a/src/licensedcode/data/rules/gpl-2.0_833.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_833.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under GNU GPL v2 license \ No newline at end of file +distributed under {{GNU GPL v2}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_834.RULE b/src/licensedcode/data/rules/gpl-2.0_834.RULE index 7ce42c79e3..b54f5c3c04 100644 --- a/src/licensedcode/data/rules/gpl-2.0_834.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_834.RULE @@ -5,4 +5,4 @@ relevance: 100 --- Some components (as annotated in the source) are licensed -under Version 2 of the GNU General Public License \ No newline at end of file +under {{Version 2 of the GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_835.RULE b/src/licensedcode/data/rules/gpl-2.0_835.RULE index 31f151fb2b..f1214042b9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_835.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_835.RULE @@ -5,4 +5,4 @@ relevance: 100 --- licensed -under Version 2 of the GNU General Public License \ No newline at end of file +under {{Version 2 of the GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_836.RULE b/src/licensedcode/data/rules/gpl-2.0_836.RULE index 20ac3d48c7..1cb59e5725 100644 --- a/src/licensedcode/data/rules/gpl-2.0_836.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_836.RULE @@ -1,7 +1,9 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Version 2 of the GNU General Public License \ No newline at end of file +version 2 of + the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_84.RULE b/src/licensedcode/data/rules/gpl-2.0_84.RULE index 2880516be1..8566230ca0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_84.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_84.RULE @@ -3,7 +3,7 @@ license_expression: gpl-2.0 is_license_notice: yes --- -GNU GENERAL PUBLIC LICENSE +{{GNU GENERAL PUBLIC LICENSE}} TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains diff --git a/src/licensedcode/data/rules/gpl-2.0_841.RULE b/src/licensedcode/data/rules/gpl-2.0_841.RULE index 8c4dfe6126..85d2c1ca7f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_841.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_841.RULE @@ -9,7 +9,7 @@ ignorable_urls: - GNU General Public License Version 2 + {{GNU General Public License Version 2}} http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt repo diff --git a/src/licensedcode/data/rules/gpl-2.0_849.RULE b/src/licensedcode/data/rules/gpl-2.0_849.RULE index 023ea148f5..9742f4ea97 100644 --- a/src/licensedcode/data/rules/gpl-2.0_849.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_849.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -This is free software, licensed under the GNU General Public License v2. +This is free software, licensed under the {{GNU General Public License v2}}. See /LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_85.RULE b/src/licensedcode/data/rules/gpl-2.0_85.RULE index 87ee2df010..316cc616bb 100644 --- a/src/licensedcode/data/rules/gpl-2.0_85.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_85.RULE @@ -8,7 +8,7 @@ referenced_filenames: --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as + * it {{under the terms of the GNU General Public License version 2}} as * published by the Free Software Foundation. * * diff --git a/src/licensedcode/data/rules/gpl-2.0_850.RULE b/src/licensedcode/data/rules/gpl-2.0_850.RULE index 44449cdf13..cb517b00d4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_850.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_850.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -Published under the GNU General Public License V.2, see file COPYING * \ No newline at end of file +Published under the {{GNU General Public License V.2}}, see file COPYING * \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_851.RULE b/src/licensedcode/data/rules/gpl-2.0_851.RULE index eba19d81a6..1ed8b54b3c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_851.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_851.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Published under the GNU General Public License V.2 \ No newline at end of file +Published under the {{GNU General Public License V.2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_852.RULE b/src/licensedcode/data/rules/gpl-2.0_852.RULE index bdc2a4e69d..d6853fa82b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_852.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_852.RULE @@ -5,4 +5,4 @@ relevance: 100 --- license -socat is distributed under the terms of the GNU GPLv2; \ No newline at end of file +socat is distributed under the terms of the {{GNU GPLv2}}; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_853.RULE b/src/licensedcode/data/rules/gpl-2.0_853.RULE index 4840c1cf82..599952db58 100644 --- a/src/licensedcode/data/rules/gpl-2.0_853.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_853.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the terms of the GNU GPLv2; \ No newline at end of file +distributed under the terms of the {{GNU GPLv2}}; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_854.RULE b/src/licensedcode/data/rules/gpl-2.0_854.RULE index 0bc7274655..5e92c177d9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_854.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_854.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under GPL v2 \ No newline at end of file +under {{GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_859.RULE b/src/licensedcode/data/rules/gpl-2.0_859.RULE index 37867ed6db..b12dfe442b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_859.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_859.RULE @@ -6,7 +6,7 @@ notes: there are some uncommon entire program references --- This software may be used and distributed according to the terms of -the GNU General Public License (GPL) version 2, incorporated herein by +the {{GNU General Public License (GPL) version 2}}, incorporated herein by reference. Drivers based on or derived from this code fall under the GPL and must retain the authorship, copyright and this license notice. This file is not a complete program and may only be used when the entire diff --git a/src/licensedcode/data/rules/gpl-2.0_860.RULE b/src/licensedcode/data/rules/gpl-2.0_860.RULE index deaa56415c..ac5ec5d3a3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_860.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_860.RULE @@ -8,15 +8,15 @@ See file CREDITS for list of people who contributed to this project. This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -version 2 as published by the Free Software Foundation. +modify it {{under the terms of the GNU General Public License +version 2}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_861.RULE b/src/licensedcode/data/rules/gpl-2.0_861.RULE index 705a6183f9..d75747d3d8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_861.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_861.RULE @@ -8,15 +8,15 @@ See file CREDITS for list of people who contributed to this project. This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -version 2 published by the Free Software Foundation. +modify it {{under the terms of the GNU General Public License +version 2}} published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_862.RULE b/src/licensedcode/data/rules/gpl-2.0_862.RULE index 64b7557f01..9ddcffef40 100644 --- a/src/licensedcode/data/rules/gpl-2.0_862.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_862.RULE @@ -8,16 +8,16 @@ See file CREDITS for list of people who contributed to this project. This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation's version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_863.RULE b/src/licensedcode/data/rules/gpl-2.0_863.RULE index f40df323e3..844bd9989f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_863.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_863.RULE @@ -5,17 +5,17 @@ relevance: 100 --- The Driver for Linux is free software; you -can redistribute it and/or modify it under the terms of the GNU -General Public License version 2 as published by the Free Software +can redistribute it and/or modify it {{under the terms of the GNU +General Public License version 2}} as published by the Free Software Foundation. The Driver for Linux is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public -License for more details. +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public +License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with The Driver for Linux ; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/gpl-2.0_864.RULE b/src/licensedcode/data/rules/gpl-2.0_864.RULE index 00babc5ceb..a4c816f716 100644 --- a/src/licensedcode/data/rules/gpl-2.0_864.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_864.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is licensed under GPL v2.0 \ No newline at end of file +This file is licensed under {{GPL v2}}.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_867.RULE b/src/licensedcode/data/rules/gpl-2.0_867.RULE index 83656ec14c..6c453d3793 100644 --- a/src/licensedcode/data/rules/gpl-2.0_867.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_867.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -* This code is distributed under the terms of GNU GPL v2 \ No newline at end of file +* This code is distributed under the terms of {{GNU GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_87.RULE b/src/licensedcode/data/rules/gpl-2.0_87.RULE index 4c552e0ece..1524d7cbb2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_87.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_87.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- # your license -# is as provided by the GNU General Public License version 2, a copy +# is as provided by {{the GNU General Public License version 2}}, a copy # of which is available in this project in the file named "LICENSE." # Alternately, a copy of the licence is available by writing to # the Free Software Foundation, Inc., 59 Temple Place, Suite 330, diff --git a/src/licensedcode/data/rules/gpl-2.0_872.RULE b/src/licensedcode/data/rules/gpl-2.0_872.RULE index a895c59777..6cf178ba0c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_872.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_872.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc., http://fsf.org - copyrighted by the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_873.RULE b/src/licensedcode/data/rules/gpl-2.0_873.RULE index 3a91fb8c25..f9392e45d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_873.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_873.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-1.0 --- -`GPL-1.0` - [GNU General Public License](https://www.gnu.org/licenses/gpl-1.0) \ No newline at end of file +`GPL-1.0` - [{{GNU General Public License}}](https://www.gnu.org/licenses/gpl-1.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_874.RULE b/src/licensedcode/data/rules/gpl-2.0_874.RULE index bc61e5f4dd..665f85a6c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_874.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_874.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html --- -`GPL-2.0` - [GNU General Public License 2.0](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html) \ No newline at end of file +`{{GPL-2.0}}` - [{{GNU General Public License 2.0}}](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_875.RULE b/src/licensedcode/data/rules/gpl-2.0_875.RULE index 8c946aeee7..62c57df2c1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_875.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_875.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://creativecommons.org/licenses/GPL/2.0/ --- -licensed under a Creative Commons GNU General Public License.

\ No newline at end of file +licensed under a Creative Commons {{GNU General Public License}}.

\ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_876.RULE b/src/licensedcode/data/rules/gpl-2.0_876.RULE index 06eccdb0ea..24db9b7fb4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_876.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_876.RULE @@ -8,5 +8,5 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html --- -licensed under a Creative Commons GNU General Public License -Please see the full text of the GNU General Public License \ No newline at end of file +licensed under a {{Creative Commons GNU General Public License}} +Please see the full text of the GNU General Public License diff --git a/src/licensedcode/data/rules/gpl-2.0_877.RULE b/src/licensedcode/data/rules/gpl-2.0_877.RULE index d6748eadb0..3e0ec0cd38 100644 --- a/src/licensedcode/data/rules/gpl-2.0_877.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_877.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Creative Commons GNU General Public License \ No newline at end of file +Creative Commons {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_879.RULE b/src/licensedcode/data/rules/gpl-2.0_879.RULE index b0f0121b81..55c72d423e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_879.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_879.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the Creative Commons GNU General Public License \ No newline at end of file +the Creative Commons {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_88.RULE b/src/licensedcode/data/rules/gpl-2.0_88.RULE index d11ea78ac5..646484abe3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_88.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_88.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - copyrighted by the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_880.RULE b/src/licensedcode/data/rules/gpl-2.0_880.RULE index ea60648902..ea21bfc120 100644 --- a/src/licensedcode/data/rules/gpl-2.0_880.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_880.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -GNU General Public License v2.0 only. \ No newline at end of file +{{GNU General Public License v2.0 only}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_881.RULE b/src/licensedcode/data/rules/gpl-2.0_881.RULE index 5cb18f517d..08ac64e8dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_881.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_881.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Legalese: This code is subject to the GNU General Public License v2 \ No newline at end of file +Legalese: This code is subject to the {{GNU General Public License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_882.RULE b/src/licensedcode/data/rules/gpl-2.0_882.RULE index 3ffa9d5b25..008f98166b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_882.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_882.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -You may use it under the terms of the GNU General Public License version 2 \ No newline at end of file +You may use it {{under the terms of the GNU General Public License version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_883.RULE b/src/licensedcode/data/rules/gpl-2.0_883.RULE index 484af8c2b0..d406a1e8cd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_883.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_883.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is subject to the GNU General Public License v2 \ No newline at end of file +This code is subject to the {{GNU General Public License v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_884.RULE b/src/licensedcode/data/rules/gpl-2.0_884.RULE index 475f7a4d77..171bc7ccdc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_884.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_884.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is subject to the GNU General Public License v3 \ No newline at end of file +This code is subject to the {{GNU General Public License}} v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_886.RULE b/src/licensedcode/data/rules/gpl-2.0_886.RULE index 70be104b20..74beb45a14 100644 --- a/src/licensedcode/data/rules/gpl-2.0_886.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_886.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the terms of GNU GPL v2 \ No newline at end of file +distributed under the terms of {{GNU GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_887.RULE b/src/licensedcode/data/rules/gpl-2.0_887.RULE index fe7a71473d..abab7cf0ed 100644 --- a/src/licensedcode/data/rules/gpl-2.0_887.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_887.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the terms of GNU GPL v2 \ No newline at end of file +under the terms of {{GNU GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_888.RULE b/src/licensedcode/data/rules/gpl-2.0_888.RULE index de34da3bc8..5ed4592cb0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_888.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_888.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the terms of GNU GPL v2 or later \ No newline at end of file +under the terms of {{GNU GPL v2}} or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_889.RULE b/src/licensedcode/data/rules/gpl-2.0_889.RULE index 59d5a94d71..8c69ec0a41 100644 --- a/src/licensedcode/data/rules/gpl-2.0_889.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_889.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -original code distributed under GPL V2 \ No newline at end of file +original code distributed under {{GPL V2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_89.RULE b/src/licensedcode/data/rules/gpl-2.0_89.RULE index c2fee8c26c..74135a3918 100644 --- a/src/licensedcode/data/rules/gpl-2.0_89.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_89.RULE @@ -4,13 +4,13 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it under the -terms of the GNU General Public License as published by the Free Software Foundation; -version 2. +terms of the {{GNU General Public License as published by the Free Software Foundation; +version 2}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_890.RULE b/src/licensedcode/data/rules/gpl-2.0_890.RULE index 0082af903e..58241bb55e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_890.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_890.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -original code distributed under GPL V2.0 \ No newline at end of file +original code distributed under {{GPL V2}}.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_893.RULE b/src/licensedcode/data/rules/gpl-2.0_893.RULE index 5be81ec8b5..deaa848adc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_893.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_893.RULE @@ -6,15 +6,15 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.html --- -* This program is free software; you can redistribute it and/or modify it under the -* terms of the GNU General Public License, version 2 as published by the Free Software +* This program is free software; you can redistribute it and/or modify it {{under the +* terms of the GNU General Public License, version 2}} as published by the Free Software * Foundation. * -* You should have received a copy of the GNU General Public License along with this +* You should have received a copy of the {{GNU General Public License}} along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/gpl-2.0.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -* See the GNU General Public License for more details. \ No newline at end of file +* See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_894.RULE b/src/licensedcode/data/rules/gpl-2.0_894.RULE index 82d246faab..2790ebb368 100644 --- a/src/licensedcode/data/rules/gpl-2.0_894.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_894.RULE @@ -6,15 +6,15 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.html --- -* This program is free software; you can redistribute it and/or modify it under the -* terms of the GNU General Public License, version 2 as published by the Free Software +* This program is free software; you can redistribute it and/or modify it {{under the +* terms of the GNU General Public License, version 2}} as published by the Free Software * Foundation. * -* You should have received a copy of the GNU General Public License along with this +* You should have received a copy of the {{GNU General Public License}} along with this * program; if not, you can obtain a copy at https://www.gnu.org/licenses/gpl-2.0.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -* See the GNU General Public License for more details. \ No newline at end of file +* See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_895.RULE b/src/licensedcode/data/rules/gpl-2.0_895.RULE index c6f42ab12b..4921005652 100644 --- a/src/licensedcode/data/rules/gpl-2.0_895.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_895.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU General Public -License, version 2 (GPL2), \ No newline at end of file +licensed under {{the GNU General Public +License, version 2}} ({{GPL2}}), \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_896.RULE b/src/licensedcode/data/rules/gpl-2.0_896.RULE index 22c16f9634..498a4e59b2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_896.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_896.RULE @@ -6,12 +6,12 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.txt --- -GNU General Public License Version 2.0, June 1991 +{{GNU General Public License Version 2}}.0, June 1991 -The following applies to all products licensed under the GNU General -Public License, Version 2.0: You may not use the identified files -except in compliance with the GNU General Public License, Version -2.0 (the "License.") You may obtain a copy of the License at +The following applies to all products licensed under {{the GNU General +Public License, Version 2}}.0: You may not use the identified files +except in compliance with {{the GNU General Public License, Version +2}}.0 (the "License.") You may obtain a copy of the License at http://www.gnu.org/licenses/gpl-2.0.txt. A copy of the license is also reproduced below. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed diff --git a/src/licensedcode/data/rules/gpl-2.0_897.RULE b/src/licensedcode/data/rules/gpl-2.0_897.RULE index 426f4c23c4..f757a4db97 100644 --- a/src/licensedcode/data/rules/gpl-2.0_897.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_897.RULE @@ -6,10 +6,10 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.txt --- -The following applies to all products licensed under the GNU General -Public License, Version 2.0: You may not use the identified files -except in compliance with the GNU General Public License, Version -2.0 (the "License.") You may obtain a copy of the License at +The following applies to all products licensed under {{the GNU General +Public License, Version 2}}.0: You may not use the identified files +except in compliance with {{the GNU General Public License, Version +2}}.0 (the "License.") You may obtain a copy of the License at http://www.gnu.org/licenses/gpl-2.0.txt. A copy of the license is also reproduced below. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed diff --git a/src/licensedcode/data/rules/gpl-2.0_898.RULE b/src/licensedcode/data/rules/gpl-2.0_898.RULE index 293351f42c..f2f1325bc6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_898.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_898.RULE @@ -5,14 +5,14 @@ relevance: 100 --- // This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License, version 2.0, +// it {{under the terms of the GNU General Public License, version 2}}.0, // as published by the Free Software Foundation. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License, version 2.0, for more details. +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the +// GNU General Public License, version 2}}.0, for more details. // -// You should have received a copy of the GNU General Public License +// You should have received a copy of the {{GNU General Public License}} // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_906.RULE b/src/licensedcode/data/rules/gpl-2.0_906.RULE index caf2e3e3a1..c5de089531 100644 --- a/src/licensedcode/data/rules/gpl-2.0_906.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_906.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -License: GPL V2 - See file LICENSE for details. \ No newline at end of file +License: {{GPL V2}} - See file LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_907.RULE b/src/licensedcode/data/rules/gpl-2.0_907.RULE index 9b649fc7d6..a56d12344a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_907.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_907.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -Licence: GPL V2 \ No newline at end of file +Licence: {{GPL V2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_909.RULE b/src/licensedcode/data/rules/gpl-2.0_909.RULE index 7c1785f0ec..1ad871d2ba 100644 --- a/src/licensedcode/data/rules/gpl-2.0_909.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_909.RULE @@ -7,6 +7,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -The programs in this package are distributed under the terms of the GNU General Public License, -version 2 as distributed by the Free Software Foundation. +The programs in this package are {{distributed under the terms of the GNU General Public License, +version 2}} as distributed by the Free Software Foundation. On Debian systems, a copy of this license may be found in /usr/share/common-licenses/GPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_912.RULE b/src/licensedcode/data/rules/gpl-2.0_912.RULE index b36868b32d..ad1c6828cd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_912.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_912.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-2.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 1989, 1991 Free Software Foundation, Inc. - copyrighted by the Free Software Foundation diff --git a/src/licensedcode/data/rules/gpl-2.0_913.RULE b/src/licensedcode/data/rules/gpl-2.0_913.RULE index 512739a65e..a1e7debda6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_913.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_913.RULE @@ -5,5 +5,5 @@ relevance: 100 notes: https://github.com/WinMerge/freeimage/ --- -GNU General Public License, version 2 (GPL-2.0) +{{GNU General Public License, version 2}} ({{GPL-2.0}}) [OSI Approved License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_914.RULE b/src/licensedcode/data/rules/gpl-2.0_914.RULE index 4e2c7ce585..198fba832a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_914.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_914.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -The GNU General Public License (GPL-2.0) +The GNU General Public {{License (GPL-2.0}}) Version 2, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_917.RULE b/src/licensedcode/data/rules/gpl-2.0_917.RULE index 291fd168fb..9f64e5f79c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_917.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_917.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This software is distributed under the terms of the GNU General Public -License version 2, which you may download from \ No newline at end of file +This software is {{distributed under the terms of the GNU General Public +License version 2}}, which you may download from \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_918.RULE b/src/licensedcode/data/rules/gpl-2.0_918.RULE index ba38b541da..11d3e27f99 100644 --- a/src/licensedcode/data/rules/gpl-2.0_918.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_918.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -license http://www.gnu.org/copyleft/gpl.html GPL v2.0 \ No newline at end of file +license http://www.gnu.org/copyleft/gpl.html {{GPL v2}}.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_919.RULE b/src/licensedcode/data/rules/gpl-2.0_919.RULE index 55499a5fc6..9880d90119 100644 --- a/src/licensedcode/data/rules/gpl-2.0_919.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_919.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -Licensed under GPL v2.0 http://www.gnu.org/copyleft/gpl.html \ No newline at end of file +Licensed under {{GPL v2}}.0 http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_920.RULE b/src/licensedcode/data/rules/gpl-2.0_920.RULE index 699a56a4df..09b9c0f493 100644 --- a/src/licensedcode/data/rules/gpl-2.0_920.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_920.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -license https://www.gnu.org/copyleft/gpl.html GPL v2.0 \ No newline at end of file +license https://www.gnu.org/copyleft/gpl.html {{GPL v2}}.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_921.RULE b/src/licensedcode/data/rules/gpl-2.0_921.RULE index 44f769b215..fc834dee2d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_921.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_921.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -Licensed under GPL v2.0 https://www.gnu.org/copyleft/gpl.html \ No newline at end of file +Licensed under {{GPL v2}}.0 https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_922.RULE b/src/licensedcode/data/rules/gpl-2.0_922.RULE index a87a68ec54..2696526058 100644 --- a/src/licensedcode/data/rules/gpl-2.0_922.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_922.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -license http://www.gnu.org/copyleft/gpl.html GPL v2 \ No newline at end of file +license http://www.gnu.org/copyleft/gpl.html {{GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_923.RULE b/src/licensedcode/data/rules/gpl-2.0_923.RULE index 2f39307f32..a9fb47d650 100644 --- a/src/licensedcode/data/rules/gpl-2.0_923.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_923.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -Licensed under GPL v2 http://www.gnu.org/copyleft/gpl.html \ No newline at end of file +Licensed under {{GPL v2}} http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_924.RULE b/src/licensedcode/data/rules/gpl-2.0_924.RULE index 71110c98fd..0d761cca36 100644 --- a/src/licensedcode/data/rules/gpl-2.0_924.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_924.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -license https://www.gnu.org/copyleft/gpl.html GPL v2 \ No newline at end of file +license https://www.gnu.org/copyleft/gpl.html {{GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_925.RULE b/src/licensedcode/data/rules/gpl-2.0_925.RULE index c6b26d389e..7d4e2ea48f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_925.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_925.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -Licensed under GPL v2 https://www.gnu.org/copyleft/gpl.html \ No newline at end of file +Licensed under {{GPL v2}} https://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_926.RULE b/src/licensedcode/data/rules/gpl-2.0_926.RULE index 917b2a6f66..50c8c3b5b6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_926.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_926.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -program licensed under the GPL-v2 \ No newline at end of file +program licensed under the {{GPL-v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_927.RULE b/src/licensedcode/data/rules/gpl-2.0_927.RULE index 94d89b64c3..f4ece0172e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_927.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_927.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GPL-v2 \ No newline at end of file +under the {{GPL-v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_928.RULE b/src/licensedcode/data/rules/gpl-2.0_928.RULE index 04d7ce054d..e5a08cfb17 100644 --- a/src/licensedcode/data/rules/gpl-2.0_928.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_928.RULE @@ -8,8 +8,8 @@ referenced_filenames: License The programs copyright by their -authors and redistributable under the terms of the GNU General -Public License. +authors and redistributable under the terms of the {{GNU General +Public License}}. On Debian Linux systems, the complete text of -the GNU General Public License can be found in +the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_930.RULE b/src/licensedcode/data/rules/gpl-2.0_930.RULE index 086afe2e9a..b4d5f518b7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_930.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_930.RULE @@ -14,7 +14,7 @@ General Public License, version 2}}. On Debian GNU/Linux systems, the complete text of the {{GNU General Public License can be found in `/usr/share/common-licenses/GPL-2 }}'. - A copy of the {{GNU General Public License is also available}} at + A copy of the GNU General Public License is also available at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin - St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file + St, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/rules/gpl-2.0_931.RULE b/src/licensedcode/data/rules/gpl-2.0_931.RULE index 0e63aecf4d..7e07d0ee52 100644 --- a/src/licensedcode/data/rules/gpl-2.0_931.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_931.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This program is distributed under the terms of GNU GPL v2, 1991 \ No newline at end of file +This program is distributed under the terms of {{GNU GPL v2}}, 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_932.RULE b/src/licensedcode/data/rules/gpl-2.0_932.RULE index 7e2d8fc917..d0d26a0e51 100644 --- a/src/licensedcode/data/rules/gpl-2.0_932.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_932.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This program is distributed under the terms of GNU GPL v2 \ No newline at end of file +This program is distributed under the terms of {{GNU GPL v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_933.RULE b/src/licensedcode/data/rules/gpl-2.0_933.RULE index 569242d89d..9fae7d7335 100644 --- a/src/licensedcode/data/rules/gpl-2.0_933.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_933.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is distributed under the terms of GNU GPL v2, 1991 \ No newline at end of file +This code is distributed under the terms of {{GNU GPL v2}}, 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_94.RULE b/src/licensedcode/data/rules/gpl-2.0_94.RULE index 17d1116db6..37bb5b0c39 100644 --- a/src/licensedcode/data/rules/gpl-2.0_94.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_94.RULE @@ -14,8 +14,8 @@ ignorable_holders: The GPL License --------------------------- -GNU GENERAL PUBLIC LICENSE -Version 2, June 1991 +{{GNU GENERAL PUBLIC LICENSE +Version 2}}, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA @@ -25,8 +25,8 @@ Version 2, June 1991 Preamble The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free +freedom to share and change it. By contrast, the {{GNU General Public +License}} is intended to guarantee your freedom to share and change free software-to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to @@ -72,7 +72,7 @@ patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. -GNU GENERAL PUBLIC LICENSE +{{GNU GENERAL PUBLIC LICENSE}} TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains diff --git a/src/licensedcode/data/rules/gpl-2.0_948.RULE b/src/licensedcode/data/rules/gpl-2.0_948.RULE index e5daa9ac67..daa7fa3792 100644 --- a/src/licensedcode/data/rules/gpl-2.0_948.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_948.RULE @@ -1,7 +1,9 @@ --- license_expression: gpl-2.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -Distributed under the terms of the GNU General Public License (version 2) \ No newline at end of file +distributed under the terms of the GNU + General Public License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_949.RULE b/src/licensedcode/data/rules/gpl-2.0_949.RULE index e6e5c39551..0256b18216 100644 --- a/src/licensedcode/data/rules/gpl-2.0_949.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_949.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This is free -software, and you are welcome to redistribute it under -the terms of the GNU General Public License version 2 \ No newline at end of file +software, and you are welcome to redistribute it {{under +the terms of the GNU General Public License version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_95.RULE b/src/licensedcode/data/rules/gpl-2.0_95.RULE index 661229f869..d4384425a7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_95.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_95.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_950.RULE b/src/licensedcode/data/rules/gpl-2.0_950.RULE index 1ce8dff5a0..8ddf1fedad 100644 --- a/src/licensedcode/data/rules/gpl-2.0_950.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_950.RULE @@ -10,17 +10,17 @@ ignorable_urls: DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 only, +it {{under the terms of the GNU General Public License version 2}} only, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License version 2 for more details (a copy is included +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See {{the GNU +General Public License version 2}} for more details (a copy is included in the LICENSE file that accompanied this code). -You should have received a copy of the GNU General Public License -version 2 along with this program; If not, see http://www.gnu.org/licenses +You should have received a copy of {{the GNU General Public License +version 2}} along with this program; If not, see http://www.gnu.org/licenses Please visit http://www.xyratex.com/contact if you need additional information or have any questions. diff --git a/src/licensedcode/data/rules/gpl-2.0_951.RULE b/src/licensedcode/data/rules/gpl-2.0_951.RULE index cdf5b5733f..e57395b96f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_951.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_951.RULE @@ -6,14 +6,14 @@ notes: this is mixing GPL and LGPL. So we take GPL --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, version 2 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation, version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_952.RULE b/src/licensedcode/data/rules/gpl-2.0_952.RULE index 52516a7bd4..049a49f6dd 100644 --- a/src/licensedcode/data/rules/gpl-2.0_952.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_952.RULE @@ -6,12 +6,12 @@ notes: this is mixing GPL and LGPL. So we take GPL --- This program is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free Software -Foundation, version 2 of the License. +the terms of the {{GNU General Public License as published by the Free Software +Foundation, version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. See the GNU General Public License for more details. +A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_953.RULE b/src/licensedcode/data/rules/gpl-2.0_953.RULE index eff3cce55a..90fb80e066 100644 --- a/src/licensedcode/data/rules/gpl-2.0_953.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_953.RULE @@ -6,12 +6,12 @@ notes: this is mixing GPL and LGPL. So we take GPL --- you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free Software -Foundation; version 2 of the License. +the terms of the {{GNU General Public License as published by the Free Software +Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_954.RULE b/src/licensedcode/data/rules/gpl-2.0_954.RULE index 291fecced7..bdec743f52 100644 --- a/src/licensedcode/data/rules/gpl-2.0_954.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_954.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -GPL-v2 licensed file \ No newline at end of file +{{GPL-v2}} licensed file \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_957.RULE b/src/licensedcode/data/rules/gpl-2.0_957.RULE index c7078a71c0..38352ffa0a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_957.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_957.RULE @@ -5,5 +5,5 @@ relevance: 100 --- Free use of this software is -granted under the terms of the GNU General Public License version 2 +granted {{under the terms of the GNU General Public License version 2}} (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_958.RULE b/src/licensedcode/data/rules/gpl-2.0_958.RULE index a5b0922bc8..8a490faeb0 100644 --- a/src/licensedcode/data/rules/gpl-2.0_958.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_958.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under the terms of the GNU General Public License version 2 (GPLv2). \ No newline at end of file +Released {{under the terms of the GNU General Public License version 2}} (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_959.RULE b/src/licensedcode/data/rules/gpl-2.0_959.RULE index 80a2111abe..f65ad31411 100644 --- a/src/licensedcode/data/rules/gpl-2.0_959.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_959.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.txt --- -Released under the terms of the GNU General Public License version 2 (GPLv2). +Released {{under the terms of the GNU General Public License version 2}} (GPLv2). See the file LICENSE.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_96.RULE b/src/licensedcode/data/rules/gpl-2.0_96.RULE index 15ae27839f..ec928d2b5a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_96.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_96.RULE @@ -6,15 +6,15 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 2 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 2}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_960.RULE b/src/licensedcode/data/rules/gpl-2.0_960.RULE index cb0e4d1113..cf7a2a6821 100644 --- a/src/licensedcode/data/rules/gpl-2.0_960.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_960.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -made available under the terms of the GNU General Public License version 2 (GPLv2). \ No newline at end of file +made available {{under the terms of the GNU General Public License version 2}} (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_961.RULE b/src/licensedcode/data/rules/gpl-2.0_961.RULE index 70908f612f..11b13a5a99 100644 --- a/src/licensedcode/data/rules/gpl-2.0_961.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_961.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -provided under the terms of the GNU General Public License, version 2 (GPLv2). \ No newline at end of file +provided {{under the terms of the GNU General Public License, version 2}} (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_962.RULE b/src/licensedcode/data/rules/gpl-2.0_962.RULE index 2ae47d2a69..cf9ef76b3d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_962.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_962.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the the terms of the GNU General Public License version 2 (GPLv2). \ No newline at end of file +Licensed under the the terms of {{the GNU General Public License version 2}} (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_963.RULE b/src/licensedcode/data/rules/gpl-2.0_963.RULE index 8376eee5ab..37e1968231 100644 --- a/src/licensedcode/data/rules/gpl-2.0_963.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_963.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://gnu.org/licenses/gpl-2.0.html --- -Licensed under the the terms of the [GNU General Public License version 2 (GPLv2)](http://gnu.org/licenses/gpl-2.0.html). \ No newline at end of file +Licensed under the the terms of {{the [GNU General Public License version 2}} (GPLv2)](http://gnu.org/licenses/gpl-2.0.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_964.RULE b/src/licensedcode/data/rules/gpl-2.0_964.RULE index 4262cdd454..0048257375 100644 --- a/src/licensedcode/data/rules/gpl-2.0_964.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_964.RULE @@ -12,13 +12,13 @@ ignorable_urls: GPLv2 ## is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 (GPLv2) +it {{under the terms of the GNU General Public License version 2}} (GPLv2) as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. The GPLv2 can be found in the `licenses` folder as `gpl-2.0.txt`. diff --git a/src/licensedcode/data/rules/gpl-2.0_965.RULE b/src/licensedcode/data/rules/gpl-2.0_965.RULE index 2a00be42b0..a859c78a97 100644 --- a/src/licensedcode/data/rules/gpl-2.0_965.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_965.RULE @@ -12,13 +12,13 @@ ignorable_urls: GPLv2 ## Librecad is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 (GPLv2) +it {{under the terms of the GNU General Public License version 2}} (GPLv2) as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. The GPLv2 can be found in the `licenses` folder as `gpl-2.0.txt`. diff --git a/src/licensedcode/data/rules/gpl-2.0_966.RULE b/src/licensedcode/data/rules/gpl-2.0_966.RULE index b331e99689..0ccb49e690 100644 --- a/src/licensedcode/data/rules/gpl-2.0_966.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_966.RULE @@ -7,7 +7,7 @@ referenced_filenames: --- // This program is free software; you can redistribute it -// and/or modify it under the terms of the -// GNU General Public License version 2 (GPLv2) +// and/or modify it {{under the terms of the +// GNU General Public License version 2}} (GPLv2) // as published by the Free Software Foundation. // See COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_967.RULE b/src/licensedcode/data/rules/gpl-2.0_967.RULE index bc79d47920..738565440a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_967.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_967.RULE @@ -5,10 +5,10 @@ relevance: 100 --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 (GPLv2) +it {{under the terms of the GNU General Public License version 2}} (GPLv2) as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. \ No newline at end of file +See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_968.RULE b/src/licensedcode/data/rules/gpl-2.0_968.RULE index 26a0d1a95a..cb350cbcf2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_968.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_968.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It's licensed under the terms of the GNU General Public License, version 2 (GPLv2). \ No newline at end of file +It's licensed {{under the terms of the GNU General Public License, version 2}} (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_969.RULE b/src/licensedcode/data/rules/gpl-2.0_969.RULE index c5911d3c94..4e6aae1d5e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_969.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_969.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU General Public License, version 2 (GPLv2). \ No newline at end of file +licensed {{under the terms of the GNU General Public License, version 2}} (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_97.RULE b/src/licensedcode/data/rules/gpl-2.0_97.RULE index 7bbbaa48bf..dffea85d66 100644 --- a/src/licensedcode/data/rules/gpl-2.0_97.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_97.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License. + * it under the terms of the {{GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_970.RULE b/src/licensedcode/data/rules/gpl-2.0_970.RULE index 952ea62656..ed828383f3 100644 --- a/src/licensedcode/data/rules/gpl-2.0_970.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_970.RULE @@ -5,4 +5,4 @@ relevance: 100 --- Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU General Public License, version 2 (GPLv2). \ No newline at end of file +{{under the terms of the GNU General Public License, version 2}} (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_971.RULE b/src/licensedcode/data/rules/gpl-2.0_971.RULE index 27fb089f90..1c2ca3ed47 100644 --- a/src/licensedcode/data/rules/gpl-2.0_971.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_971.RULE @@ -7,10 +7,10 @@ ignorable_urls: --- * This file is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License Version 2 (GPLv2) + * {{under the terms of the GNU General Public License Version 2}} (GPLv2) * as published by the Free Software Foundation. * * This file is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. . \ No newline at end of file + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * General Public License}} for more details. . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_972.RULE b/src/licensedcode/data/rules/gpl-2.0_972.RULE index d577e7abe4..dc849ac22c 100644 --- a/src/licensedcode/data/rules/gpl-2.0_972.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_972.RULE @@ -7,10 +7,10 @@ ignorable_urls: --- * This file is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License Version 2 (GPLv2) + * {{under the terms of the GNU General Public License Version 2}} (GPLv2) * as published by the Free Software Foundation. * * This file is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. . \ No newline at end of file + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * General Public License}} for more details. . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_973.RULE b/src/licensedcode/data/rules/gpl-2.0_973.RULE index 0ca1b415bc..c6f5e010b8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_973.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_973.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed under the terms of the GNU General Public License version 2 (GPLv2) \ No newline at end of file +{{Distributed under the terms of the GNU General Public License version 2}} (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_974.RULE b/src/licensedcode/data/rules/gpl-2.0_974.RULE index 10440e0114..c66793ceb7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_974.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_974.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -Distributed under the terms of the GNU General Public License version 2 (GPLv2) +{{Distributed under the terms of the GNU General Public License version 2}} (GPLv2) The full text of the GPLv2 is available at: http://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_975.RULE b/src/licensedcode/data/rules/gpl-2.0_975.RULE index 13323dcc1a..79ccb319af 100644 --- a/src/licensedcode/data/rules/gpl-2.0_975.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_975.RULE @@ -5,4 +5,4 @@ relevance: 100 --- free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 2 (GPLv2) \ No newline at end of file +it {{under the terms of the GNU General Public License version 2}} (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_976.RULE b/src/licensedcode/data/rules/gpl-2.0_976.RULE index 082c85d5cb..c239caef45 100644 --- a/src/licensedcode/data/rules/gpl-2.0_976.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_976.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -free software licensed under the terms of the GNU General Public License version 2 (GPLv2). \ No newline at end of file +free software licensed {{under the terms of the GNU General Public License version 2}} (GPLv2). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_977.RULE b/src/licensedcode/data/rules/gpl-2.0_977.RULE index a7fb20e0d7..58786554ae 100644 --- a/src/licensedcode/data/rules/gpl-2.0_977.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_977.RULE @@ -8,6 +8,6 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.html --- -licensed under the terms of the GNU General Public License, version 2 (GPLv2). +licensed {{under the terms of the GNU General Public License, version 2}} (GPLv2). The full text of this license may be found in the COPYING file at the top of the source tree and online at http://www.gnu.org/licenses/gpl-2.0.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_978.RULE b/src/licensedcode/data/rules/gpl-2.0_978.RULE index 01f9726b4f..7c6044a93d 100644 --- a/src/licensedcode/data/rules/gpl-2.0_978.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_978.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -source code is released under the GNU General Public License version 2. +source code is released under {{the GNU General Public License version 2}}. Please see the file COPYING in the main source directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_979.RULE b/src/licensedcode/data/rules/gpl-2.0_979.RULE index 0226608a2b..457afc203b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_979.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_979.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This program is free software; you can redistribute it and/or -modify it under the terms of version 2 of the GNU General -Public License as published by the Free Software Foundation. +modify it under the terms of {{version 2 of the GNU General +Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with this program; if not, write to the Free +You should have received a copy of the {{GNU General Public +License}} along with this program; if not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_98.RULE b/src/licensedcode/data/rules/gpl-2.0_98.RULE index e8b3aa360a..86e97be8d5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_98.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_98.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- * This file is free software; you can redistribute it and/or modify - * it under the terms of version 2 of the GNU General Public License + * it under the terms of {{version 2 of the GNU General Public License}} * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_980.RULE b/src/licensedcode/data/rules/gpl-2.0_980.RULE index bab7a51d9d..b2726a1686 100644 --- a/src/licensedcode/data/rules/gpl-2.0_980.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_980.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This file is distributed under the terms of the GNU General Public License -version 2 (GPLv2) as published by the Free Software Foundation. \ No newline at end of file +This file is {{distributed under the terms of the GNU General Public License +version 2}} (GPLv2) as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_981.RULE b/src/licensedcode/data/rules/gpl-2.0_981.RULE index 1106645475..ebc29c64ab 100644 --- a/src/licensedcode/data/rules/gpl-2.0_981.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_981.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -distributed under the terms of the GNU General Public License version 2 +{{distributed under the terms of the GNU General Public License version 2}} (`GPLv2 `_) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_982.RULE b/src/licensedcode/data/rules/gpl-2.0_982.RULE index 50a3009e38..20a406757b 100644 --- a/src/licensedcode/data/rules/gpl-2.0_982.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_982.RULE @@ -5,4 +5,4 @@ relevance: 100 --- GNU General Public Licence -distributed under the terms of the GNU General Public License version 2 (GPLv2) \ No newline at end of file +{{distributed under the terms of the GNU General Public License version 2}} (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_983.RULE b/src/licensedcode/data/rules/gpl-2.0_983.RULE index 94c10f2ea9..657b7ad756 100644 --- a/src/licensedcode/data/rules/gpl-2.0_983.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_983.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- GNU General Public Licence -distributed under the terms of the GNU General Public License version 2 +{{distributed under the terms of the GNU General Public License version 2}} (`GPLv2 `_) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_984.RULE b/src/licensedcode/data/rules/gpl-2.0_984.RULE index 39b470ed49..80793e8aad 100644 --- a/src/licensedcode/data/rules/gpl-2.0_984.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_984.RULE @@ -6,12 +6,12 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.html/ --- -free software: you can redistribute it and/or modify it under - * the terms of the GNU General Public License version 2 (GPLv2) as published by +free software: you can redistribute it and/or modify it {{under + * the terms of the GNU General Public License version 2}} (GPLv2) as published by * the Free Software Foundation. * is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU General Public License version 2 for + * FOR A PARTICULAR PURPOSE. See {{the GNU General Public License version 2}} for * more details. - * You should have received a copy of the GNU General Public License version 2 + * You should have received a copy of {{the GNU General Public License version 2}} * along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_985.RULE b/src/licensedcode/data/rules/gpl-2.0_985.RULE index 7970345ee3..2a0c4375be 100644 --- a/src/licensedcode/data/rules/gpl-2.0_985.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_985.RULE @@ -6,12 +6,12 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-2.0.html/ --- -free software: you can redistribute it and/or modify it under - * the terms of the GNU General Public License version 2 (GPLv2) as published by +free software: you can redistribute it and/or modify it {{under + * the terms of the GNU General Public License version 2}} (GPLv2) as published by * the Free Software Foundation. * is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU General Public License version 2 for + * FOR A PARTICULAR PURPOSE. See {{the GNU General Public License version 2}} for * more details. - * You should have received a copy of the GNU General Public License version 2 + * You should have received a copy of {{the GNU General Public License version 2}} * along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_986.RULE b/src/licensedcode/data/rules/gpl-2.0_986.RULE index ca4c279780..8c6b9bf58a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_986.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_986.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -# This program is released under the terms of the Gnu General Public -# License version 2 (GPLv2) \ No newline at end of file +# This program is released {{under the terms of the Gnu General Public +# License version 2}} (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_987.RULE b/src/licensedcode/data/rules/gpl-2.0_987.RULE index f03555b023..248d21cb92 100644 --- a/src/licensedcode/data/rules/gpl-2.0_987.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_987.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-2.0.html --- -# This program is released under the terms of the Gnu General Public -# License version 2 (GPLv2) +# This program is released {{under the terms of the Gnu General Public +# License version 2}} (GPLv2) # http://www.gnu.org/licenses/gpl-2.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_988.RULE b/src/licensedcode/data/rules/gpl-2.0_988.RULE index 5e9fee4652..51332a625e 100644 --- a/src/licensedcode/data/rules/gpl-2.0_988.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_988.RULE @@ -4,8 +4,8 @@ is_license_notice: yes relevance: 100 --- -made available under the terms of the GNU General Public License -version 2 (GPLv2), a copy of which can be found in Appendix A. As such, +made available {{under the terms of the GNU General Public License +version 2}} (GPLv2), a copy of which can be found in Appendix A. As such, it comes with absolutely no warranty, not even the implied warranties of merchantability or fitness for a particular purpose. See the full text of the GPLv2 for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_989.RULE b/src/licensedcode/data/rules/gpl-2.0_989.RULE index 26acb5999e..4d1743eb22 100644 --- a/src/licensedcode/data/rules/gpl-2.0_989.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_989.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Available under the terms of the GNU General Public License version 2 (GPLv2) \ No newline at end of file +Available {{under the terms of the GNU General Public License version 2}} (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_99.RULE b/src/licensedcode/data/rules/gpl-2.0_99.RULE index eca722ceb2..a215cf3b7a 100644 --- a/src/licensedcode/data/rules/gpl-2.0_99.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_99.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This documentation is free software; you can redistribute - it and/or modify it under the terms of the GNU General Public - License version 2. \ No newline at end of file + it and/or modify it {{under the terms of the GNU General Public + License version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_990.RULE b/src/licensedcode/data/rules/gpl-2.0_990.RULE index 0cc2eb6c59..b68dc4dad4 100644 --- a/src/licensedcode/data/rules/gpl-2.0_990.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_990.RULE @@ -11,6 +11,6 @@ ignorable_urls: GPL-2 http://www.fsf.org/licensing/licenses/gpl.txt manual - GNU GENERAL PUBLIC LICENSE Version 2, June 1991 + {{GNU GENERAL PUBLIC LICENSE Version 2}}, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_992.RULE b/src/licensedcode/data/rules/gpl-2.0_992.RULE index 98ccb3dca4..509b43aff7 100644 --- a/src/licensedcode/data/rules/gpl-2.0_992.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_992.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU GENERAL PUBLIC LICENSE Version 2, June 1991 \ No newline at end of file +{{GNU GENERAL PUBLIC LICENSE Version 2}}, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_993.RULE b/src/licensedcode/data/rules/gpl-2.0_993.RULE index d15499bcc2..38b610159f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_993.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_993.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -covered under the GNU General Public License Version 2. \ No newline at end of file +covered under {{the GNU General Public License Version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_994.RULE b/src/licensedcode/data/rules/gpl-2.0_994.RULE index a932f84c8a..f212bf11a8 100644 --- a/src/licensedcode/data/rules/gpl-2.0_994.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_994.RULE @@ -12,7 +12,7 @@ Vita Nuova Holdings Limited has the right to determine (within a specified scope the form and content of sublicences for this software. Vita Nuova Holdings Limited now makes this software available as Free -Software under the terms of the `GNU General Public LIcense, Version 2' +Software {{under the terms of the `GNU General Public LIcense, Version 2}}' (see the file LICENCE or http://www.fsf.org/copyleft/gpl.html for the full terms and conditions). One of the conditions of that licence is that you must keep intact all notices that refer to that licence and to the absence of @@ -21,7 +21,7 @@ of any warranty: for this software, note that includes this NOTICE file in parti This suite of programs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -`GNU General Public License' for more details. +`{{GNU General Public License}}' for more details. This copyright NOTICE applies to all files in this directory and subdirectories, unless another copyright notice appears in a given diff --git a/src/licensedcode/data/rules/gpl-2.0_997.RULE b/src/licensedcode/data/rules/gpl-2.0_997.RULE index 3f1dcda101..b8e31d724f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_997.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_997.RULE @@ -8,4 +8,4 @@ referenced_filenames: License -Unless otherwise specified, all the theme files, scripts and images are licensed under GNU General Public License version 2, see file license.txt. \ No newline at end of file +Unless otherwise specified, all the theme files, scripts and images are licensed under {{GNU General Public License version 2}}, see file license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_998.RULE b/src/licensedcode/data/rules/gpl-2.0_998.RULE index 79f89f8261..8346d4323f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_998.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_998.RULE @@ -6,4 +6,4 @@ referenced_filenames: - license.txt --- -Unless otherwise specified, all the theme files, scripts and images are licensed under GNU General Public License version 2, see file license.txt. \ No newline at end of file +Unless otherwise specified, all the theme files, scripts and images are licensed under {{GNU General Public License version 2}}, see file license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_999.RULE b/src/licensedcode/data/rules/gpl-2.0_999.RULE index 3523949394..401610b6c9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_999.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_999.RULE @@ -6,4 +6,4 @@ referenced_filenames: - license.txt --- -licensed under GNU General Public License version 2, see file license.txt. \ No newline at end of file +licensed under {{GNU General Public License version 2}}, see file license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_arduino.RULE b/src/licensedcode/data/rules/gpl-2.0_arduino.RULE index 8815a608ef..55e4e52cd2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_arduino.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_arduino.RULE @@ -9,8 +9,8 @@ ignorable_holders: - the Free Software Foundation --- -GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 +{{GNU GENERAL PUBLIC LICENSE + Version 2}}, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA @@ -20,8 +20,8 @@ of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free +freedom to share and change it. By contrast, the {{GNU General Public +License}} is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to @@ -67,7 +67,7 @@ patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. - GNU GENERAL PUBLIC LICENSE + {{GNU GENERAL PUBLIC LICENSE}} TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains diff --git a/src/licensedcode/data/rules/gpl-2.0_bare_single_word.RULE b/src/licensedcode/data/rules/gpl-2.0_bare_single_word.RULE index 4fa74a978b..d24bd92dc9 100644 --- a/src/licensedcode/data/rules/gpl-2.0_bare_single_word.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_bare_single_word.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GPLv2 \ No newline at end of file +GPLV2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_bcm.RULE b/src/licensedcode/data/rules/gpl-2.0_bcm.RULE index b1e686ad4e..79a608c97f 100644 --- a/src/licensedcode/data/rules/gpl-2.0_bcm.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_bcm.RULE @@ -5,6 +5,6 @@ referenced_filenames: - COPYING --- -to be licensed under the terms of the GNU - General Public License (GPL) Version 2, available from the file +to be licensed under the terms of the {{GNU + General Public License (GPL) Version 2}}, available from the file COPYING in the main directory of this source tree \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_busybox_1.RULE b/src/licensedcode/data/rules/gpl-2.0_busybox_1.RULE index 71f08d5375..9e1544a995 100644 --- a/src/licensedcode/data/rules/gpl-2.0_busybox_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_busybox_1.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- BusyBox is licensed under http://www.gnu.org/licenses/old-licenses/gpl-2.0.html -the GNU General Public License version , which is often abbreviated as GPLv2. +the {{GNU General Public License}} version , which is often abbreviated as GPLv2. (This is the same license the Linux kernel is under, so you may be somewhat familiar with it by now.) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_cal.RULE b/src/licensedcode/data/rules/gpl-2.0_cal.RULE index 0fb05e904f..44030a6e88 100644 --- a/src/licensedcode/data/rules/gpl-2.0_cal.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_cal.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://choosealicense.com/licenses/gpl-2.0 --- -License: [`gpl-2.0`](http://choosealicense.com/licenses/gpl-2.0/) \ No newline at end of file +{{License: [`gpl-2.0}}`](http://choosealicense.com/licenses/gpl-2.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_debian2.RULE b/src/licensedcode/data/rules/gpl-2.0_debian2.RULE index 1ff4649534..3608f9c986 100644 --- a/src/licensedcode/data/rules/gpl-2.0_debian2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_debian2.RULE @@ -3,5 +3,5 @@ license_expression: gpl-2.0 is_license_notice: yes --- -Debian adaptions for these packages are licensed under the GNU General -Public License, version 2, and are under Copyright by: \ No newline at end of file +Debian adaptions for these packages are licensed under {{the GNU General +Public License, version 2}}, and are under Copyright by: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_gpl_20_bare_words.RULE b/src/licensedcode/data/rules/gpl-2.0_gpl_20_bare_words.RULE index 2695960157..68dc0c0752 100644 --- a/src/licensedcode/data/rules/gpl-2.0_gpl_20_bare_words.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_gpl_20_bare_words.RULE @@ -1,8 +1,9 @@ --- license_expression: gpl-2.0 -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 60 --- -{{gpl 20}} \ No newline at end of file +gpl 20 diff --git a/src/licensedcode/data/rules/gpl-2.0_intel2100_1.RULE b/src/licensedcode/data/rules/gpl-2.0_intel2100_1.RULE index 8461d0bbdf..98485969cc 100644 --- a/src/licensedcode/data/rules/gpl-2.0_intel2100_1.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_intel2100_1.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://www.fsf.org/copyleft/gpl.html --- -This software program is licensed subject to the GNU General Public License -(GPL). Version 2, June 1991, available at +This software program is licensed subject to the {{GNU General Public License +(GPL). Version 2}}, June 1991, available at \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_intel2100_2.RULE b/src/licensedcode/data/rules/gpl-2.0_intel2100_2.RULE index 06db4cb0be..05e1c991b2 100644 --- a/src/licensedcode/data/rules/gpl-2.0_intel2100_2.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_intel2100_2.RULE @@ -6,17 +6,17 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it - under the terms of version 2 of the GNU General Public License as + under the terms of {{version 2 of the GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along with + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - The full GNU General Public License is included in this distribution in the + The full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kernel_229.RULE b/src/licensedcode/data/rules/gpl-2.0_kernel_229.RULE index e0e5f206d3..0a0d1fe742 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kernel_229.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_kernel_229.RULE @@ -6,13 +6,13 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the (modified) GNU General Public License +it under the terms of the (modified) {{GNU General Public License}} delivered with the Linux kernel source. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should find a copy of the GNU General Public License in +You should find a copy of the {{GNU General Public License}} in /usr/src/linux/COPYING; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_kodi.RULE b/src/licensedcode/data/rules/gpl-2.0_kodi.RULE index d0d131446a..f5bfc3d9de 100644 --- a/src/licensedcode/data/rules/gpl-2.0_kodi.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_kodi.RULE @@ -9,13 +9,13 @@ ignorable_holders: - the Free Software Foundation --- -You may use, distribute and copy Kodi under the terms of GNU General - Public License version 2, which is displayed below. +You may use, distribute and copy Kodi under the terms of {{GNU General + Public License version 2}}, which is displayed below. ------------------------------------------------------------------------- - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 + {{GNU GENERAL PUBLIC LICENSE + Version 2}}, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA @@ -25,8 +25,8 @@ You may use, distribute and copy Kodi under the terms of GNU General Preamble The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free +freedom to share and change it. By contrast, the {{GNU General Public +License}} is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to @@ -72,7 +72,7 @@ patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. - GNU GENERAL PUBLIC LICENSE + {{GNU GENERAL PUBLIC LICENSE}} TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license.RULE b/src/licensedcode/data/rules/gpl-2.0_module_license.RULE index 39d3b440fb..1d4eb9a1ca 100644 --- a/src/licensedcode/data/rules/gpl-2.0_module_license.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_module_license.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -MODULE_LICENSE("GPL v2") \ No newline at end of file +MODULE_LICENSE("{{GPL v2}}") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_module_license3.RULE b/src/licensedcode/data/rules/gpl-2.0_module_license3.RULE index c52fad2ea9..6ba4ea0cb5 100644 --- a/src/licensedcode/data/rules/gpl-2.0_module_license3.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_module_license3.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -DRIVER_LICENSE("GPL v2") \ No newline at end of file +DRIVER_LICENSE("{{GPL v2}}") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_not_above.RULE b/src/licensedcode/data/rules/gpl-2.0_not_above.RULE index 7a46153683..f196705ae1 100644 --- a/src/licensedcode/data/rules/gpl-2.0_not_above.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_not_above.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-2 --- -licensed under the GNU General Public License version 2 +licensed under {{the GNU General Public License version 2}} See `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_11.RULE b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_11.RULE index 9e7c7c51c3..cbae78ab27 100644 --- a/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_11.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_or_gpl-3.0_11.RULE @@ -5,4 +5,4 @@ is_license_notice: yes is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 2 or 3 of the License. \ No newline at end of file +the Free Software Foundation; {{either version 2 or 3 of the License}}. diff --git a/src/licensedcode/data/rules/gpl-2.0_qt.RULE b/src/licensedcode/data/rules/gpl-2.0_qt.RULE index c75da0ed71..2e12d13673 100644 --- a/src/licensedcode/data/rules/gpl-2.0_qt.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_qt.RULE @@ -3,7 +3,7 @@ license_expression: gpl-2.0 is_license_notice: yes --- -GNU GENERAL PUBLIC LICENSE +{{GNU GENERAL PUBLIC LICENSE}} You may use, distribute and copy the Qt GUI Toolkit under the terms of - GNU General Public License version 2, which is displayed below. \ No newline at end of file + {{GNU General Public License version 2}}, which is displayed below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_released.RULE b/src/licensedcode/data/rules/gpl-2.0_released.RULE index 2b3aefa2d6..b5b0c0c8c6 100644 --- a/src/licensedcode/data/rules/gpl-2.0_released.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_released.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Released under the terms of the GNU General Public License Version 2.0 \ No newline at end of file +Released {{under the terms of the GNU General Public License Version 2}}.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_12.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_12.RULE new file mode 100644 index 0000000000..a67a2ad575 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_12.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +underthe terms of the GNU General Public License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_13.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_13.RULE new file mode 100644 index 0000000000..7fa1ccdf08 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_13.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL +--- + +text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_14.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_14.RULE new file mode 100644 index 0000000000..513bd07b55 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_14.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + +GNU General +Public License can be found in `/usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_16.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_16.RULE new file mode 100644 index 0000000000..dcf2f5d3f2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_16.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + +text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_17.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_17.RULE new file mode 100644 index 0000000000..84f3f6eaa1 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_17.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_18.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_18.RULE new file mode 100644 index 0000000000..28fc2c48d5 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_18.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by + the Free Software Foundation; version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_19.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_19.RULE new file mode 100644 index 0000000000..6901f52297 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_19.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by */ +/* the Free Software Foundation, using version 2 of the License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_2.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_2.RULE new file mode 100644 index 0000000000..a8d5a057c3 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_2.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +A copy of the GNU General Public License is also available at \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_20.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_20.RULE new file mode 100644 index 0000000000..2d9d471a93 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_20.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +the GNU General Public License, version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_21.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_21.RULE new file mode 100644 index 0000000000..97d49989b2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_21.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General +Public License ("GPL") as published by the Free Software Foundation, +version 2 of that License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_22.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_22.RULE new file mode 100644 index 0000000000..0fecaa7f4d --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_22.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by +the Free Software Foundation under version 2 of the License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_23.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_23.RULE new file mode 100644 index 0000000000..3d0a21c0be --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_23.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_24.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_24.RULE new file mode 100644 index 0000000000..dfd15f187f --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_24.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by +the Free Software Foundation; version 2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_25.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_25.RULE new file mode 100644 index 0000000000..93e8a67039 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_25.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +under terms of the gnu general public license version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_26.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_26.RULE new file mode 100644 index 0000000000..4a8f2b9f9c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_26.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +distributed under terms of the gnu general public license version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_27.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_27.RULE new file mode 100644 index 0000000000..74f0c14f3f --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_27.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +underthe terms of GNU General Public License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_28.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_28.RULE new file mode 100644 index 0000000000..721715c50a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_28.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +text of GNU General Public License can be found in `/usr/share/common-licenses/GPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_29.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_29.RULE new file mode 100644 index 0000000000..9cab01fb46 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_29.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation either version 2 of the license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_3.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_3.RULE new file mode 100644 index 0000000000..e44dde9c79 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_3.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GPL 2.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_30.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_30.RULE new file mode 100644 index 0000000000..16f5095f08 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_30.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation; version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_31.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_31.RULE new file mode 100644 index 0000000000..39a2930732 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_31.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation using version 2 of the license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_32.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_32.RULE new file mode 100644 index 0000000000..5949baaba8 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_32.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License, version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_33.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_33.RULE new file mode 100644 index 0000000000..4a703296ad --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_33.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License ("GPL") as published by Free Software Foundation, version 2 of that License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_34.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_34.RULE new file mode 100644 index 0000000000..c107ebd602 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_34.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation under version 2 of the license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_35.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_35.RULE new file mode 100644 index 0000000000..dddf0da878 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_35.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation; version 2 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_36.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_36.RULE new file mode 100644 index 0000000000..7b91ed8701 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_36.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +version 2 of GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_37.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_37.RULE new file mode 100644 index 0000000000..04e0fc280f --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_37.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation; either version 2 of License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_38.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_38.RULE new file mode 100644 index 0000000000..52592e55d6 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_38.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by */ /* Free Software Foundation, using version 2 of License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_39.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_39.RULE new file mode 100644 index 0000000000..64472618b5 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_39.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation under version 2 of License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_4.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_4.RULE new file mode 100644 index 0000000000..52c4d96288 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_4.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +under terms of GNU General Public License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_6.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_6.RULE new file mode 100644 index 0000000000..f39cdee465 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_6.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +distributed under terms of GNU General Public License, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_7.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_7.RULE new file mode 100644 index 0000000000..f564175942 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_7.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General +Public License can be found in `/usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_8.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_8.RULE new file mode 100644 index 0000000000..6b14ef8cc5 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_required_phrase_9.RULE b/src/licensedcode/data/rules/gpl-2.0_required_phrase_9.RULE new file mode 100644 index 0000000000..9515efcbd2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_required_phrase_9.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_url_badge.RULE b/src/licensedcode/data/rules/gpl-2.0_url_badge.RULE index e2c16d16cb..93e2a3d113 100644 --- a/src/licensedcode/data/rules/gpl-2.0_url_badge.RULE +++ b/src/licensedcode/data/rules/gpl-2.0_url_badge.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html --- -[![License: GPL v2](https://img.shields.io/badge/License-GPL%20v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html) \ No newline at end of file +[![License: {{GPL v2}}](https://img.shields.io/badge/License-GPL%20v2-blue.svg)](https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_20.RULE b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_20.RULE new file mode 100644 index 0000000000..7d8cefc609 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-2.0_with_linux-syscall-exception-gpl_20.RULE @@ -0,0 +1,27 @@ +--- +license_expression: gpl-2.0 WITH linux-syscall-exception-gpl +is_license_notice: yes +relevance: 100 +notes: from https://raw.githubusercontent.com/pombredanne/gpl-history/v1.0/allvers/linux.COPYING.4 +--- + +The Linux Kernel is provided under: + + SPDX-License-Identifier: {{GPL-2.0 WITH Linux-syscall-note }} + +Being {{under the terms of the GNU General Public License version 2}} only, +according with: + + {{ LICENSES/preferred/GPL-2.0}} + +With an explicit syscall exception, as stated at: + + {{LICENSES/exceptions/Linux-syscall-note }} + +In addition, other licenses may also apply. Please see: + + Documentation/process/license-rules.rst + +for more details. + +All contributions to the Linux Kernel are subject to this COPYING file. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_0.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_0.RULE index 1d5a6aa72a..c71a23d686 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_0.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_0.RULE @@ -11,14 +11,14 @@ ignorable_urls: GNU package released under GPL 3 license This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_1.RULE index ea93d432b9..b3435e1a4a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_1.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at -your option) any later version. +your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License with +You should have received a copy of the {{GNU General Public License}} with your Debian GNU system, in /usr/share/common-licenses/GPL-3, or with the Debian GNU ed source package as the file COPYING. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_10.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_10.RULE index 3b8e09699f..3d430d6c09 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_10.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_10.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This program is free software; you may redistribute it under the terms of -the GNU General Public License version 3 or (at your option) any later version. +the {{GNU General Public License version 3 or (at your option) any later version}}. This program has absolutely no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_100.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_100.RULE index 619df344d6..a1348e7db0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_100.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_100.RULE @@ -9,6 +9,6 @@ ignorable_urls: THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT ANY WARRANTY WHATSOEVER. If you use or redistribute this software, you are permitted to do so -under the terms of GNU [GPL-3.0]+ license. +under the terms of {{GNU [GPL-3.0]+ license}}. -[GPL-3.0]: https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file +[{{GPL-3.0}}]: https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_101.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_101.RULE index cbe27d47f3..d98ebab0c3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_101.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_101.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or modify - * it under the terms of version 3 or later of the GNU General Public License as + * it under the terms of version 3 or later of the {{GNU General Public License}} as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_103.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_103.RULE index c26a3afe93..2201e05240 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_103.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_103.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_104.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_104.RULE index ffa370f65c..5f54e307c8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_104.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_104.RULE @@ -3,5 +3,5 @@ license_expression: gpl-3.0-plus is_license_notice: yes --- -which is licensed as a whole under version 3 - * (or any later version) of the GNU General Public License \ No newline at end of file +which is licensed as a whole under {{version 3 + * (or any later version) of the GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_105.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_105.RULE index 0aefaffe20..48b7869d9a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_105.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_105.RULE @@ -1,7 +1,9 @@ --- license_expression: gpl-3.0-plus -is_license_notice: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -version 3 (or any later version) of the GNU General Public License \ No newline at end of file +version 3 + * (or any later version) of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_106.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_106.RULE index a99caebd9a..da86bcede6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_106.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_106.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed as a whole under version 3 - * (or any later version) of the GNU General Public License \ No newline at end of file +licensed as a whole under {{version 3 + * (or any later version) of the GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_107.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_107.RULE index 0bdc0ccc14..cf8b729663 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_107.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_107.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- " GNU cpio is free software; you can redistribute it and/or modify" -" it under the terms of the GNU General Public License as published by" +" it under the terms of the {{GNU General Public License as published by" " the Free Software Foundation; either version 3 of the License, or" -" (at your option) any later version." +" (at your option) any later version}}." "" " GNU cpio is distributed in the hope that it will be useful," " but WITHOUT ANY WARRANTY; without even the implied warranty of" " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the" -" GNU General Public License for more details." +" {{GNU General Public License}} for more details." "" -" You should have received a copy of the GNU General Public License" +" You should have received a copy of the {{GNU General Public License}}" " along with GNU cpio; if not, write to the Free Software Foundation," " Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA" \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_109.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_109.RULE index 36fb93a234..34cf51919a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_109.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_109.RULE @@ -9,15 +9,15 @@ ignorable_urls: This file belongs to a GNU package released under GPL 3 license. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_11.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_11.RULE index ea8ddea0d6..4688880acf 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_11.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_11.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- This program is free software; you may redistribute it under the terms of -the GNU General Public License version 3 or (at your option) any later version. \ No newline at end of file +the {{GNU General Public License version 3 or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_110.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_110.RULE index c7ea75d429..84fe4efafb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_110.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_110.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- ;; is free software; you can redistribute it and/or modify it under -;; the terms of the GNU General Public License as published by the Free +;; the terms of the {{GNU General Public License as published by the Free ;; Software Foundation; either version 3, or (at your option) any later -;; version. +;; version}}. ;; ;; is distributed in the hope that it will be useful, but WITHOUT ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +;; FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} ;; for more details. ;; -;; You should have received a copy of the GNU General Public License +;; You should have received a copy of the {{GNU General Public License}} ;; along with ; see the file COPYING. If not, write to the Free ;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, ;; MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_111.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_111.RULE index 462e9c3f33..a137a96f29 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_111.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_111.RULE @@ -5,6 +5,6 @@ relevance: 100 --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) -any later version. \ No newline at end of file +any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_113.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_113.RULE index 63c3350a39..3106602377 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_113.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_113.RULE @@ -9,12 +9,12 @@ ignorable_urls: "There is NO WARRANTY, to the extent permitted by law. "; "This is free software; you can redistribute it and/or modify " -"it under the terms of the GNU General Public License as published by " +"it under the terms of the {{GNU General Public License as published by " "the Free Software Foundation; either version 3 of the License, or " -"(at your option) any later version. " +"(at your option) any later version}}. " "It is distributed in the hope that it will be useful, " "but WITHOUT ANY WARRANTY; without even the implied warranty of " "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the " -"GNU General Public License for more details. " -"You should have received a copy of the GNU General Public License " +"{{GNU General Public License}} for more details. " +"You should have received a copy of the {{GNU General Public License}} " "along with this software. If not, see .\ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_114.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_114.RULE index 5365ad9b65..011cf45d74 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_114.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_114.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -@license GPL-3.0+ \ No newline at end of file +@license {{GPL-3.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_115.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_115.RULE index cdb0ca2973..1d1869a623 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_115.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_115.RULE @@ -6,12 +6,12 @@ ignorable_urls: --- "This is free software; you can redistribute it and/or modify " -"it under the terms of the GNU General Public License as published by " +"it under the terms of the {{GNU General Public License as published by " "the Free Software Foundation; either version 3 of the License, or " -"(at your option) any later version. " +"(at your option) any later version}}. " "It is distributed in the hope that it will be useful, " "but WITHOUT ANY WARRANTY; without even the implied warranty of " "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the " -"GNU General Public License for more details. " -"You should have received a copy of the GNU General Public License " +"{{GNU General Public License}} for more details. " +"You should have received a copy of the {{GNU General Public License}} " "along with this software. If not, see .\ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_116.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_116.RULE index 8359ba3a29..bc4de94bd4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_116.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_116.RULE @@ -7,15 +7,15 @@ relevance: 100 License # # This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# {{GNU General Public License}} for more details. # -# You should have received a copy of the GNU General Public License along +# You should have received a copy of the {{GNU General Public License}} along # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_117.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_117.RULE index 1b338212f3..47eeb24473 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_117.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_117.RULE @@ -5,16 +5,16 @@ relevance: 100 --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or (at - * your option) any later version. + * your option) any later version}}. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_118.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_118.RULE index a96b43eb6a..0131e44021 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_118.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_118.RULE @@ -8,18 +8,18 @@ ignorable_urls: GPL 3+ -GPL-3.0+ +{{GPL-3.0+}} This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_12.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_12.RULE index 391cbebc9a..96533b7fe1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_12.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_12.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_13.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_13.RULE index 6e2b030fc1..2e517674ea 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_13.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_13.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_132.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_132.RULE index 1b3b82aeca..d2d1532630 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_132.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_132.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0-plus -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gpl 3.0 plus \ No newline at end of file +gpl 3.0 plus diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_1592.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_1592.RULE new file mode 100644 index 0000000000..6ad804ffc2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_1592.RULE @@ -0,0 +1,20 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - https://www.gnu.org/licenses/ +--- + +lustre is free software: you can redistribute it and/or modify it + under the terms of the {{GNU General Public License}} as published by the + Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + lustre is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the {{GNU General Public License}} for more details. + + You should have received a copy of the {{GNU General Public License}} along + with this program. If not, see . +/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_1593.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_1593.RULE new file mode 100644 index 0000000000..ca3e7f17c6 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_1593.RULE @@ -0,0 +1,23 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + +This program is free software; you can redistribute it and/or modify + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; either version 3, or (at your option) + any later version}}. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + {{GNU General Public License}} for more details. + . + You should have received a copy of the {{GNU General Public License}} along + with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + . + On Debian systems, the complete text of the {{GNU General Public License + version 3}} can be found in ‘{{/usr/share/common-licenses/GPL-3}}’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_1594.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_1594.RULE new file mode 100644 index 0000000000..add11aa16a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_1594.RULE @@ -0,0 +1,20 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +ignorable_urls: + - http://www.gnu.org/licenses/ +--- + +lustre is free software: you can redistribute it and/or modify it + under the terms of the {{GNU General Public License as published by the + Free Software Foundation, either version 3 of the License, or + (at your option) any later version}}. + + lustre is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the {{GNU General Public License}} for more details. + + You should have received a copy of the {{GNU General Public License}} along + with this program. If not, see . +/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_1595.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_1595.RULE new file mode 100644 index 0000000000..4a165b54a6 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_1595.RULE @@ -0,0 +1,23 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + +This program is free software; you can redistribute it and/or modify + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; either version 3, or (at your option) + any later version}}. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + {{GNU General Public License}} for more details. + . + You should have received a copy of the {{GNU General Public License}} along + with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + . + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License + version 3}} can be found in ‘{{/usr/share/common-licenses/GPL-3}}’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_1596.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_1596.RULE new file mode 100644 index 0000000000..dbe4010156 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_1596.RULE @@ -0,0 +1,23 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-2 +--- + +This program is free software; you can redistribute it and/or modify + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; either version 3, or (at your option) + any later version}}. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + {{GNU General Public License}} for more details. + . + You should have received a copy of the {{GNU General Public License}} along + with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + . + On Debian systems, the text of the {{GNU General Public License + version 3}} can be found in ‘{{/usr/share/common-licenses/GPL-3’}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_16.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_16.RULE index 2a59af5063..61e20f8ea5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_16.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_16.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with gnulib; if not, see + You should have received a copy of the {{GNU General Public + License}} along with gnulib; if not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_168.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_168.RULE index 27ba6411ed..01f74150bf 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_168.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_168.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0-plus -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gnu gpl 3.0+ \ No newline at end of file +gnu gpl 3.0+ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_17.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_17.RULE index 6795d5f669..7b36f067d2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_17.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_17.RULE @@ -1,19 +1,19 @@ --- -license_expression: gpl-2.0-plus +license_expression: gpl-3.0-plus is_license_notice: yes --- License: This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 3 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; either version 3 of the License}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_177.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_177.RULE index e3beb4ce4c..3558ff243c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_177.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_177.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0-plus -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gnu gpl 3.0 plus \ No newline at end of file +gnu gpl 3.0 plus diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_18.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_18.RULE index c2b2680368..57ae32fc53 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_18.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_18.RULE @@ -7,5 +7,5 @@ ignorable_urls: This is free software. It is licensed for use, modification and redistribution under the terms of the -GNU General Public License, version 3 or later +{{GNU General Public License, version 3 or later}} http://gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_181.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_181.RULE index 1515829071..e8c586a7b3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_181.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_181.RULE @@ -8,4 +8,4 @@ ignorable_holders: - GNU General --- -COPYRIGHT # GNU General Public License v3.0+ (see COPYING \ No newline at end of file +COPYRIGHT # {{GNU General Public License v3.0+}} (see COPYING \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_182.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_182.RULE index a1bd036bed..969906a6f1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_182.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_182.RULE @@ -10,4 +10,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-3.0.txt --- -COPYRIGHT# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) \ No newline at end of file +COPYRIGHT# {{GNU General Public License v3.0+}} (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_185.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_185.RULE index a285dbeeb3..61d994a0b5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_185.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_185.RULE @@ -8,4 +8,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-3.0.txt --- -GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) \ No newline at end of file +{{GNU General Public License v3.0+}} (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_186.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_186.RULE index 27599f95b6..bd9fd11b59 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_186.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_186.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_187.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_187.RULE index edf6b5f720..da70d8fd53 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_187.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_187.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 3 as published + * under the terms of the {{GNU General Public License version 3}} as published * by the Free Software Foundation. See http://www.gnu.org/ for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_188.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_188.RULE index 8600aadc55..9e61776492 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_188.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_188.RULE @@ -5,6 +5,6 @@ relevance: 100 --- # This module is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or (at -# your option) any later version. \ No newline at end of file +# your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_189.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_189.RULE index 79fa34ef1b..4b02e5c744 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_189.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_189.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU General Public License v3.0 or later. \ No newline at end of file +Licensed under the {{GNU General Public License v3.0 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_19.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_19.RULE index 151f993f26..f9a20db3d9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_19.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_19.RULE @@ -5,4 +5,4 @@ is_license_notice: yes This is free software. It is licensed for use, modification and redistribution under the terms of the -GNU General Public License, version 3 or later \ No newline at end of file +{{GNU General Public License, version 3 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_190.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_190.RULE index c8bcd3c5b9..ac5ab0f341 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_190.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_190.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Distributed under the GNU General Public License v3.0 or any later version (see the file LICENSE for details). \ No newline at end of file +Distributed under the {{GNU General Public License v3.0 or any later version}} (see the file LICENSE for details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_192.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_192.RULE index fc862c59df..f0828ff3f5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_192.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_192.RULE @@ -5,11 +5,11 @@ relevance: 100 --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -full GNU General Public License below for more details. \ No newline at end of file +full {{GNU General Public License}} below for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_193.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_193.RULE index 1d4cc9134a..1af11e226a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_193.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_193.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_194.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_194.RULE index fd97210359..ac4a7fafac 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_194.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_194.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- License: GPL-3+ - The complete text of the GNU General Public License version 3 can be found in + The complete text of the {{GNU General Public License version 3}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_195.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_195.RULE index 1b756c4ddf..362b7a9976 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_195.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_195.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- License: GPL-3+ - The complete text of the GNU General Public License version 3 can be found in + The complete text of the {{GNU General Public License version 3}} can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_2.RULE index ab50318bc6..42a5e98fdd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_2.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_20.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_20.RULE index 10c7557714..1e04909099 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_20.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_20.RULE @@ -7,17 +7,17 @@ ignorable_urls: License: GPL-3+ This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian systems, the complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public License}} + can be found in {{/usr/share/common-licenses/GPL-3}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_200.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_200.RULE index 512ce8d9ba..16dede73c8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_200.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_200.RULE @@ -8,8 +8,8 @@ referenced_filenames: License -This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. +This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -See top-level LICENSE file for the full text of the GNU General Public License along with this program. \ No newline at end of file +See top-level LICENSE file for the full text of the {{GNU General Public License}} along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_201.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_201.RULE index bb7e11a8b3..a5ae4ccd8c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_201.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_201.RULE @@ -6,8 +6,8 @@ referenced_filenames: - LICENSE --- -This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. +This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -See top-level LICENSE file for the full text of the GNU General Public License along with this program. \ No newline at end of file +See top-level LICENSE file for the full text of the {{GNU General Public License}} along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_202.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_202.RULE index ed202d4e88..4d0569befe 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_202.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_202.RULE @@ -11,7 +11,7 @@ ignorable_urls: Unless otherwise noted, Styrene is free software which is distributed under the terms of -the GNU [General Public License, version 3.0 or later][gpl3]. +the {{GNU [General Public License, version 3.0 or later}}][gpl3]. See the file named COPYING that you got with Styrene for the full legal terms and conditions. The exceptions to this rule are as follows. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_204.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_204.RULE index d4d31c4127..ddf0e16336 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_204.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_204.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license GNU General Public License, version 3 or later \ No newline at end of file +license {{GNU General Public License, version 3 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_205.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_205.RULE index c6f9804784..3b6691b8dd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_205.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_205.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This package is published under the GNU General Public License, -version 3 or later \ No newline at end of file +This package is published under the {{GNU General Public License, +version 3 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_206.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_206.RULE index e9b38e33de..139e6a48d0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_206.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_206.RULE @@ -9,14 +9,14 @@ ignorable_urls: This source file is copyrighted and licensed under the following terms: is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_207.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_207.RULE index de3875488d..75ea316db4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_207.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_207.RULE @@ -9,14 +9,14 @@ ignorable_urls: This source file is copyrighted and licensed under the following terms: This is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_208.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_208.RULE index f60935f9cc..3f62030cf4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_208.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_208.RULE @@ -19,14 +19,14 @@ This source file is copyrighted and licensed under the following terms: is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_209.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_209.RULE index 43c979a20e..758037521b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_209.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_209.RULE @@ -17,14 +17,14 @@ ignorable_urls: * This source file is copyrighted and licensed under the following terms: * * genshellopt is free software: you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the + * under the terms of the {{GNU General Public License as published by the * Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * genshellopt is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - * See the GNU General Public License for more details. + * See the {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License along + * You should have received a copy of the {{GNU General Public License}} along * with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_210.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_210.RULE index 1363cc33d1..3292632697 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_210.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_210.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- "genshellopt is free software: you can redistribute it and/or modify it under \ -the terms of the GNU General Public License as published by the Free Software \ +the terms of the {{GNU General Public License as published by the Free Software \ Foundation, either version 3 of the License, or (at your option) any later \ -version. \ +version}}. \ genshellopt is distributed in the hope that it will be useful, but WITHOUT ANY \ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A \ -PARTICULAR PURPOSE. See the GNU General Public License for more details. \ -You should have received a copy of the GNU General Public License along with \ +PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. \ +You should have received a copy of the {{GNU General Public License}} along with \ this program. If not, see ."; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_211.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_211.RULE index 70884f94c8..9c4b206353 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_211.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_211.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- AutoGen is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. AutoGen is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_214.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_214.RULE index b0c0daceab..95105aa807 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_214.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_214.RULE @@ -6,6 +6,6 @@ referenced_filenames: - legal/GPLv3 --- -licensed under the terms of the GNU General Public License Version 3, or -(at your option) any later version ("GPL3+"). +licensed under the terms of the {{GNU General Public License Version 3, or +(at your option) any later version}} ("GPL3+"). A copy of the license can be found in [legal/GPLV3](/legal/GPLv3). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_215.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_215.RULE index b57da9f212..be7dbc250e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_215.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_215.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU General Public License Version 3, or -(at your option) any later version ("GPL3+"). \ No newline at end of file +licensed under the terms of the {{GNU General Public License Version 3, or +(at your option) any later version}} ("GPL3+"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_217.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_217.RULE index 7f3dab486b..284d6956c7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_217.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_217.RULE @@ -10,18 +10,18 @@ notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen License: GPL-3+ This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . -On Debian systems, the full text of the GNU General Public -License version 2 can be found in the file +On Debian systems, the full text of the {{GNU General Public +License}} version 2 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_218.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_218.RULE index 98d40b2f16..831a756475 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_218.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_218.RULE @@ -9,18 +9,18 @@ notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . -On Debian systems, the full text of the GNU General Public -License version 2 can be found in the file +On Debian systems, the full text of the {{GNU General Public +License}} version 2 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_219.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_219.RULE index 5f968521cd..5e76f8a7e8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_219.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_219.RULE @@ -6,14 +6,14 @@ relevance: 100 License: GPL-3+ This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_22.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_22.RULE index 8e0237b85f..911e08f021 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_22.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_22.RULE @@ -8,16 +8,16 @@ ignorable_urls: --- # This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) -# any later version. +# any later version}}. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# {{GNU General Public License}} for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the {{GNU General Public License}} # along with this program (see the file COPYING); if not, see # http://www.gnu.org/licenses/, or contact Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_220.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_220.RULE index 4e482905c5..58e6476912 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_220.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_220.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_221.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_221.RULE index 5c5f6e512d..128fb7be3c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_221.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_221.RULE @@ -7,7 +7,7 @@ referenced_filenames: --- This program may be distributed and/or modified under the terms of -the GNU General Public License as published by the Free Software +the {{GNU General Public License}} as published by the Free Software Foundation (the "GPL"); either version 3 of the GPL, or (at your option) any later version. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_222.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_222.RULE index c6737b4408..df056bda39 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_222.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_222.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# {{GNU General Public License}} for more details. # -# A copy of the GNU General Public License can be found at . \ No newline at end of file +# A copy of the {{GNU General Public License}} can be found at . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_225.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_225.RULE index ddf0338d05..c08cef32b5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_225.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_225.RULE @@ -12,13 +12,13 @@ The script code used to import data and/or generate the database, together with their related code, are both licensed under the GNU GPL3+. This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -See LICENSE.GPLv3 for a local copy of the GNU General Public License. If not, see . \ No newline at end of file +See LICENSE.GPLv3 for a local copy of the {{GNU General Public License}}. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_23.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_23.RULE index 62c706ab20..e8054dcbca 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_23.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_23.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either {{version 3}} of the License, or - (at your option) {{any later version}}. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public +License}} can be found in /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_233.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_233.RULE index b8d69fd8dd..b022fb7661 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_233.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_233.RULE @@ -9,15 +9,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License , or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_234.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_234.RULE index f06368ce7c..4d92f8f092 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_234.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_234.RULE @@ -7,14 +7,14 @@ referenced_filenames: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. -On Debian systems, the complete text of the GNU General Public License +On Debian systems, the complete text of the {{GNU General Public License}} may be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_237.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_237.RULE index 455b17500e..c4ee9ce4a8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_237.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_237.RULE @@ -8,12 +8,12 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -You should have received a copy of the GNU General Public License +{{GNU General Public License}} for more details. +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_238.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_238.RULE index 066df800be..e5a73ef97e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_238.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_238.RULE @@ -7,7 +7,7 @@ referenced_filenames: --- This is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. See the LICENSE-GPL file for -the full terms of the GNU General Public license version 3. \ No newline at end of file +(at your option) any later version}}. See the LICENSE-GPL file for +the full terms of the {{GNU General Public license version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_239.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_239.RULE index e161ddf102..ced2e80592 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_239.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_239.RULE @@ -5,6 +5,6 @@ relevance: 100 --- This is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. \ No newline at end of file +(at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_24.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_24.RULE index 710001950b..82bbe7c8d2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_24.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_24.RULE @@ -6,14 +6,14 @@ minimum_coverage: 98 GNU Public License v3.0 This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - You should have received a copy of the GNU General Public License + {{GNU General Public License}} for more details. + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_240.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_240.RULE index b718abf62c..46a741b532 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_240.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_240.RULE @@ -7,7 +7,7 @@ referenced_filenames: --- is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. See the LICENSE-GPL file for -the full terms of the GNU General Public license version 3. \ No newline at end of file +(at your option) any later version}}. See the LICENSE-GPL file for +the full terms of the {{GNU General Public license version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_241.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_241.RULE index 3f1dcb93df..337cb09aba 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_241.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_241.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://www.gnu.org/licenses --- -The project utilizes code licensed under the terms of the GNU General Public License and therefore is licensed under GPL v3 or later. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. \ No newline at end of file +The project utilizes code licensed under the terms of the {{GNU General Public License}} and therefore is licensed under GPL v3 or later. This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. You should have received a copy of the {{GNU General Public License}} along with this program. If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_25.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_25.RULE index cd3ac9546f..d334d57008 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_25.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_25.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian systems the full text of the GNU General Public - License can be found in the `/usr/share/common-licenses/GPL-3' file. \ No newline at end of file + On Debian systems the full text of the {{GNU General Public + License}} can be found in the `{{/usr/share/common-licenses/GPL-3}}' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_256.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_256.RULE index 2e0e9b749e..77e7c2f610 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_256.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_256.RULE @@ -6,16 +6,16 @@ notes: Seen in libpipeline, this is a notice copied from a GPL 2.0 --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at -your option) any later version. +your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with libpipeline; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_257.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_257.RULE index 4b495f69b5..e5c4267aee 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_257.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_257.RULE @@ -6,7 +6,7 @@ referenced_filenames: - COPYING --- -Bash is free software, distributed under the terms of the [GNU] General +Bash is free software, distributed under the terms of the [{{GNU] General Public License as published by the Free Software Foundation, -version 3 of the License (or any later version). For more information, +version 3 of the License (or any later version}}). For more information, see the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_258.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_258.RULE index 38f4056c09..a992fb6c84 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_258.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_258.RULE @@ -6,7 +6,7 @@ referenced_filenames: - COPYING --- -is free software, distributed under the terms of the [GNU] General +is free software, distributed under the terms of the [{{GNU] General Public License as published by the Free Software Foundation, -version 3 of the License (or any later version). For more information, +version 3 of the License (or any later version}}). For more information, see the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_259.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_259.RULE index 9ac424cebf..558eb03e02 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_259.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_259.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -is free software, distributed under the terms of the [GNU] General +is free software, distributed under the terms of the [{{GNU] General Public License as published by the Free Software Foundation, -version 3 of the License (or any later version). \ No newline at end of file +version 3 of the License (or any later version)}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_26.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_26.RULE index 1e69b5dc31..978972c0ff 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_26.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_26.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_262.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_262.RULE index ff46b0de58..29932ef8ff 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_262.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_262.RULE @@ -9,13 +9,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -See LICENSE.GPLv3 for a local copy of the GNU General Public License. If not, see . \ No newline at end of file +See LICENSE.GPLv3 for a local copy of the {{GNU General Public License}}. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_263.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_263.RULE index 3e25072695..eb3f0feca5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_263.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_263.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_264.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_264.RULE index 87e53e1531..afeec3a7f4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_264.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_264.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_265.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_265.RULE index 25422c9ae4..8749eea06d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_265.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_265.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license: GPLv3 or higher \ No newline at end of file +license: {{GPLv3 or higher}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_266.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_266.RULE index 5c87dad789..946613cbf4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_266.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_266.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license: GNU GPLv3 or higher \ No newline at end of file +license: {{GNU GPLv3 or higher}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_267.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_267.RULE index 7d5630c989..8ef1216e61 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_267.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_267.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU Public License (GPLv3 or higher) \ No newline at end of file +released under the GNU Public License ({{GPLv3 or higher}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_268.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_268.RULE index 47c221483d..5385743a18 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_268.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_268.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/lisenses/gpl.txt --- -License: GNU/GPLv3 or higher (http://www.gnu.org/lisenses/gpl.txt) \ No newline at end of file +License: {{GNU/GPLv3 or higher}} (http://www.gnu.org/lisenses/gpl.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_269.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_269.RULE index 388d813b0f..3689ba4c3f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_269.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_269.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -GNU General Public License (GPLv3 or higher) as published by the Free Software Foundation (http://www. gnu.org/licenses/) \ No newline at end of file +{{GNU General Public License}} ({{GPLv3 or higher}}) as published by the Free Software Foundation (http://www. gnu.org/licenses/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_27.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_27.RULE index 74a0235039..1e540cbfd0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_27.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_27.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_270.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_270.RULE index 864980e958..f0b8a395b4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_270.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_270.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU General Public License GPLv3 or higher. \ No newline at end of file +under the {{GNU General Public License}} {{GPLv3 or higher}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_271.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_271.RULE index 8a43067b90..cdf3f72792 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_271.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_271.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -distributed under the GNU General Public License GPLv3 or higher, see LICENSE for details. \ No newline at end of file +distributed under the {{GNU General Public License}} {{GPLv3 or higher}}, see LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_272.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_272.RULE index 465ded3fb0..7afa350f41 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_272.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_272.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.TXT --- -distributed under the GNU General Public License GPLv3 or higher. Please see LICENSE.TXT for details \ No newline at end of file +distributed under the {{GNU General Public License}} {{GPLv3 or higher}}. Please see LICENSE.TXT for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_273.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_273.RULE index 0fa21eecba..962941d7c3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_273.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_273.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.TXT --- -This software is distributed under the GNU General Public License GPLv3 or higher, see LICENSE.TXT for details. \ No newline at end of file +This software is distributed under the {{GNU General Public License}} {{GPLv3 or higher}}, see LICENSE.TXT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_274.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_274.RULE index 7380ff2a0e..279668fe17 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_274.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_274.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING.TXT --- -License GPLv3 or higher, see the file COPYING.TXT for details. \ No newline at end of file +License {{GPLv3 or higher}}, see the file COPYING.TXT for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_275.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_275.RULE index 936f441c06..84232a03ff 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_275.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_275.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the GNU General Public License GPLv3 or higher. \ No newline at end of file +distributed under the {{GNU General Public License}} {{GPLv3 or higher}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_276.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_276.RULE index 4bf3751174..ceac010d08 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_276.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_276.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -free software, distributed under the terms of the GNU -General Public License GPLv3 or higher. \ No newline at end of file +free software, distributed under the terms of the {{GNU +General Public License}} {{GPLv3 or higher}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_277.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_277.RULE index 675bd40327..8c6d2d02bf 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_277.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_277.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -free software, distributed under the terms of the GNU General Public License GPLv3 or higher. You must be aware there is no warranty whatsoever \ No newline at end of file +free software, distributed under the terms of the {{GNU General Public License}} {{GPLv3 or higher}}. You must be aware there is no warranty whatsoever \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_278.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_278.RULE index 73df1f204b..d7e5573928 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_278.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_278.RULE @@ -6,4 +6,4 @@ relevance: 100 License -is a free software, distributed under the terms of the GNU General Public License GPLv3 or higher. You must be aware there is no warranty whatsoever for . This is described in full in the license. \ No newline at end of file +is a free software, distributed under the terms of the {{GNU General Public License}} {{GPLv3 or higher}}. You must be aware there is no warranty whatsoever for . This is described in full in the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_279.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_279.RULE index 8692c07567..221032bc0a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_279.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_279.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-3.0.html --- -License: GPLv3 or higher +License: {{GPLv3 or higher}} License URI: http://www.gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_28.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_28.RULE index 912310fd0a..22eda15536 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_28.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_28.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_280.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_280.RULE index e610e335c5..f2c9ab789d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_280.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_280.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is covered by the GNU General Public License (GPLv3 or higher) \ No newline at end of file +This code is covered by the {{GNU General Public License}} ({{GPLv3 or higher}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_281.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_281.RULE index c3ddde5844..e19d49ac09 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_281.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_281.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This man page is covered by the GNU General Public License (GPLv3 or higher). \ No newline at end of file +This man page is covered by the {{GNU General Public License}} ({{GPLv3 or higher}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_282.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_282.RULE index a657d1ac57..926b76ad2e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_282.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_282.RULE @@ -7,6 +7,6 @@ referenced_filenames: notes: https://github.com/janisozaur/openage-priv/blob/a10f54f003a46e7743f4c22d4566290df8d5f500/copying.md#L5 --- -licensed under the terms of the GNU General Public License Version 3, -or (at your option) any later version ("GPL3+"). +licensed under the terms of the {{GNU General Public License Version 3, +or (at your option) any later version}} ("GPL3+"). A copy of the license can be found in legal/GPLV3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_283.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_283.RULE index 1595f97b0c..5473f446ae 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_283.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_283.RULE @@ -7,7 +7,7 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 3, or (at your option) any later version. -On Debian GNU/Linux systems, the complete text of the GNU General Public -License version 3 can be found in /usr/share/common-licenses/GPL-3. \ No newline at end of file +under the terms of the {{GNU General Public License as published by the +Free Software Foundation; either version 3, or (at your option) any later version}}. +On Debian GNU/Linux systems, the complete text of the {{GNU General Public +License version 3}} can be found in /usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_284.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_284.RULE index 8f4d0a217b..6661513bdb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_284.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_284.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation; either version 3, or (at your option) any later version. \ No newline at end of file +under the terms of the {{GNU General Public License as published by the +Free Software Foundation; either version 3, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_285.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_285.RULE index 6b4c9acffb..4f1669cadd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_285.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_285.RULE @@ -7,8 +7,8 @@ referenced_filenames: --- GNU is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later -version. +version}}. On Debian GNU/Linux systems you can find a copy of the GPL in /usr/share/common-licenses/GPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_286.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_286.RULE index 3581df8c1a..57c54d279a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_286.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_286.RULE @@ -9,19 +9,19 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. See /usr/share/common-licenses/GPL-3, or for the terms of the latest version -of the GNU General Public License. \ No newline at end of file +of the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_287.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_287.RULE index 192c2a89e8..f4d5684a59 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_287.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_287.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_288.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_288.RULE index acb53b6f75..d5dde2a0fc 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_288.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_288.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General -Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License version 3}} can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_289.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_289.RULE index c6e13145ed..816781bd8a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_289.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_289.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- Bash is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later -version. +version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Bash. If not, see . -On Debian systems, the complete text of the GNU General Public License +On Debian systems, the complete text of the {{GNU General Public License}} can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_290.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_290.RULE index 1996711cef..1d703a2fda 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_290.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_290.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either {{version 3}} of the License, or - (at your option) {{any later version}}. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_293.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_293.RULE index b116a869db..f8f289f5d7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_293.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_293.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under the GNU General Public License version 3 or, at your option, any later version. \ No newline at end of file +available under the {{GNU General Public License version 3 or, at your option, any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_294.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_294.RULE index 7267177b5a..7c76ac145d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_294.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_294.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -GNU General Public License v3.0+ (see COPYING) \ No newline at end of file +{{GNU General Public License v3.0+}} (see COPYING) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_297.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_297.RULE index c0a2be3bfb..90cd8c4600 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_297.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_297.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -GNU General Public License, V3.0 is applicable to the following component(s). \ No newline at end of file +{{GNU General Public License}}, V3.0 is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_298.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_298.RULE index 626f6044da..2b3886fca1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_298.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_298.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with . If not, see . A copy of the GPL can be found in the file "COPYING" in this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_299.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_299.RULE index cb126681ca..2e7ffe0a0d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_299.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_299.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) -any later version. +any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_3.RULE index b0063c5024..b0709956a2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_3.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- # This file is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by +# under the terms of the {{GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +# General Public License}} for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the {{GNU General Public License}} # along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_300.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_300.RULE index 03ff0c2d9e..34e7c07b8c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_300.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_300.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) -any later version. +any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_312.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_312.RULE index 83ec8a7349..2536991fe6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_312.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_312.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- Bash is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Bash. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_313.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_313.RULE index b263e7b8e3..8bd86a8dfe 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_313.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_313.RULE @@ -7,7 +7,7 @@ referenced_filenames: --- Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your -option) any later version. The text of the license can be found in the +option) any later version}}. The text of the license can be found in the section entitled "Copying". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_314.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_314.RULE index 2e8fca02cc..a4c7024cdb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_314.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_314.RULE @@ -5,6 +5,6 @@ relevance: 100 --- Permission is granted to copy, distribute and/or modify this document -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your -option) any later version. \ No newline at end of file +option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_315.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_315.RULE index 7fdc3328bf..f3dcb598e0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_315.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_315.RULE @@ -6,14 +6,14 @@ notes: typo in andor --- This program is free software you can redistribute it andor modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_316.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_316.RULE index 5a7b6c77ca..9bbf634b24 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_316.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_316.RULE @@ -5,8 +5,8 @@ relevance: 100 --- Permission is granted to copy, distribute and/or modify this -document under the terms of the GNU General Public License as +document under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the -License, or (at your option) any later version. The text of the -license can be found in the section entitled "GNU General Public -License". \ No newline at end of file +License, or (at your option) any later version}}. The text of the +license can be found in the section entitled "{{GNU General Public +License}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_317.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_317.RULE index 5bc05dbba3..8fd8d07c14 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_317.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_317.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package. If not, see . - On Debian systems, the complete text of the GNU General Public License - version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public License + version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_318.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_318.RULE index 28feb20668..1c2db8cf91 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_318.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_318.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_319.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_319.RULE index e8443ca87f..87ca1c41ec 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_319.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_319.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package. If not, see . - On Debian systems, the complete text of the GNU General Public License - version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public License + version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_32.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_32.RULE index b13bb77c47..0a382e90c6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_32.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_32.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Licensed under GNU General Public License Version 3 or higher \ No newline at end of file +Licensed under {{GNU General Public License Version 3 or higher}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_320.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_320.RULE index 4b7e2960c8..8209e947e5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_320.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_320.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_321.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_321.RULE index ce19301af3..e67587db0e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_321.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_321.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . - On Debian systems, the complete text of the GNU General Public License - version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public License + version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_322.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_322.RULE index 082dcf9820..ed93715d55 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_322.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_322.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_323.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_323.RULE index dd9f76b683..0e354822f4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_323.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_323.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . - On Debian systems, the complete text of the GNU General Public License - version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public License + version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_324.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_324.RULE index 8e4f1327d7..d378036fb1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_324.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_324.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_325.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_325.RULE index c3b641f9ec..ff81f9ed22 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_325.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_325.RULE @@ -9,15 +9,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING3. If not see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_326.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_326.RULE index b3a798fa4d..2c340f7717 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_326.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_326.RULE @@ -9,15 +9,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING3. If not see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_327.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_327.RULE index f05bfa1c4b..1c313ac948 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_327.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_327.RULE @@ -5,12 +5,12 @@ relevance: 100 --- Permission is granted to copy, distribute and/or modify this -document under the terms of the GNU General Public License as +document under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the -License, or (at your option) any later version. The text of the +License, or (at your option) any later version}}. The text of the license can be found in the section entitled “Copying”. This document is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General -Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General +Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_328.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_328.RULE index 7302d0ddfb..2ac4927034 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_328.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_328.RULE @@ -1,7 +1,9 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes +is_required_phrase: yes +is_continuous: yes relevance: 100 --- -{{GPL-3.0-or-later - GNU General Public License version 3, or any later version}} \ No newline at end of file +GPL-3.0-or-later - GNU General Public License version 3, or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_329.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_329.RULE index 60ac0310e4..141ebf8547 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_329.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_329.RULE @@ -8,18 +8,18 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU General Public License, -version 3 or later +redistribution under the terms of the {{GNU General Public License, +version 3 or later}} is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_330.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_330.RULE index 76f3f72820..dced48897f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_330.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_330.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GNU General Public License, version 3 or later \ No newline at end of file +the {{GNU General Public License, version 3 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_331.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_331.RULE index 0a98ee145e..83afac143b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_331.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_331.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_332.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_332.RULE index 3ec21956ec..63ee6628ca 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_332.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_332.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_333.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_333.RULE index 14d67123fa..bec1200e87 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_333.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_333.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_334.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_334.RULE index bed9a70190..528db39350 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_334.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_334.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_335.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_335.RULE index d48433f370..4bd9674a5a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_335.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_335.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_336.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_336.RULE index cfdb157700..23f74e492e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_336.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_336.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_337.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_337.RULE index a930c67f5e..7317bdb0ad 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_337.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_337.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_338.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_338.RULE index bf81f18736..7ca5884275 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_338.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_338.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_339.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_339.RULE index 6bcb544606..ae5d6a9a5a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_339.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_339.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_341.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_341.RULE index 2794a9435f..638b3516f7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_341.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_341.RULE @@ -5,15 +5,15 @@ relevance: 100 --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_342.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_342.RULE index 73b8549430..524c53fe23 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_342.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_342.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_343.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_343.RULE index 073fd82ad6..6dd81e62cb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_343.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_343.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_344.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_344.RULE index b3ca2eb3e5..aa32a56b42 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_344.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_344.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Less is now released under the GNU General Public License \ No newline at end of file +Less is now released under the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_345.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_345.RULE index 87bab2de22..a0ae167c94 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_345.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_345.RULE @@ -1,9 +1,10 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://spdx.org/licenses/GPL-3.0 --- -http://spdx.org/licenses/GPL-3.0+ \ No newline at end of file +http://spdx.org/licenses/GPL-3.0+ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_346.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_346.RULE index 462341599e..c71ee86dc0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_346.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_346.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - https://spdx.org/licenses/GPL-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_347.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_347.RULE index d2b75f8ad9..38a1d2be2f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_347.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_347.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- Cygwin is free software. Red Hat, Inc. licenses Cygwin to you under the -terms of the GNU General Public License as published by the Free Software +terms of the {{GNU General Public License}} as published by the Free Software Foundation; you can redistribute it and/or modify it under the terms of -the GNU General Public License either version 3 of the license, or (at your +the {{GNU General Public License}} either version 3 of the license, or (at your option) any later version (GPLv3+),. There is NO WARRANTY for this software, express or implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the GNU General Public License for more details. +PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_348.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_348.RULE index 9e15b7c89d..b545da20fb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_348.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_348.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- under the -terms of the GNU General Public License as published by the Free Software +terms of the {{GNU General Public License}} as published by the Free Software Foundation; you can redistribute it and/or modify it under the terms of -the GNU General Public License either version 3 of the license, or (at your +the {{GNU General Public License}} either version 3 of the license, or (at your option) any later version (GPLv3+),. There is NO WARRANTY for this software, express or implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the GNU General Public License for more details. +PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_349.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_349.RULE index 627976b14c..0428d46501 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_349.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_349.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of GNU [GPL-3.0]+ license. \ No newline at end of file +licensed under the terms of {{GNU [GPL-3.0]+ license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_350.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_350.RULE index 6ce5baa69b..919f122ea0 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_350.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_350.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU General Public License Version 3, or later \ No newline at end of file +licensed under the terms of the {{GNU General Public License Version 3, or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_351.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_351.RULE index 32736e21f5..3f51cbc14f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_351.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_351.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the GPL 3.0+ \ No newline at end of file +This software is {{licensed under the GPL 3.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_353.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_353.RULE index 6d05bdd1bb..1a990892c8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_353.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_353.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) -any later version. +any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_354.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_354.RULE index 9f7b4131be..f335abe659 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_354.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_354.RULE @@ -6,19 +6,19 @@ referenced_filenames: --- is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later -version. +version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. Files that have exception clauses are licensed under the terms of the -GNU General Public License; either version 3, or (at your option) any +{{GNU General Public License}}; either version 3, or (at your option) any later version. -On Debian GNU/Linux systems, the complete text of the GNU General -Public License is in `/usr/share/common-licenses/GPL', version 3 of this +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} is in `/usr/share/common-licenses/GPL', version 3 of this license in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_358.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_358.RULE index 86c86021a1..44de15d282 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_358.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_358.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . limit so don't run it by default. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_36.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_36.RULE index 8f45301e4c..3a1f13d751 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_36.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_36.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is licensed under the terms of the GNU General Public license (version 3 or later). \ No newline at end of file +is licensed under the terms of the {{GNU General Public license (version 3 or later}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_372.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_372.RULE index f648e0c1af..edc3380eae 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_372.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_372.RULE @@ -7,20 +7,20 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed AS-IS, WITHOUT ANY WARRANTY, express or implied, including, but not limited to the WARRANTY OF MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. The copyright holders hereby disclaim all warranties. In no case shall the copyright holders be liable to you or any thrid- party for damages of any kind, including, but not limited to, punitive, special, consequential, indirect or similar damages. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. On the initial date of release of this software, a copy can be found at diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_373.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_373.RULE index d92d7bf116..f6a18309e7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_373.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_373.RULE @@ -5,20 +5,20 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed AS-IS, WITHOUT ANY WARRANTY, express or implied, including, but not limited to the WARRANTY OF MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. The copyright holders hereby disclaim all warranties. In no case shall the copyright holders be liable to you or any thrid- party for damages of any kind, including, but not limited to, punitive, special, consequential, indirect or similar damages. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. On the initial date of release of this software, a copy can be found at diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_374.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_374.RULE index e04be78c29..c677ffa6f4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_374.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_374.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This file is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. \ No newline at end of file + (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_375.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_375.RULE index 3e75b6e882..7e4574667e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_375.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_375.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This file is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_381.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_381.RULE index 1613b850dd..532840b521 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_381.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_381.RULE @@ -7,14 +7,14 @@ referenced_filenames: License: GPL-3+ This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - The complete text of the GNU General Public License can be found + The complete text of the {{GNU General Public License}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_382.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_382.RULE index b694e42f6a..3278ef887a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_382.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_382.RULE @@ -6,14 +6,14 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - The complete text of the GNU General Public License can be found + The complete text of the {{GNU General Public License}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_383.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_383.RULE index 8b421ead16..90a95355b8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_383.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_383.RULE @@ -5,11 +5,11 @@ is_license_notice: yes License: GPL-3+ This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. \ No newline at end of file + {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_384.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_384.RULE index 7e771b4460..43faa73aad 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_384.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_384.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. \ No newline at end of file + {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_385.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_385.RULE index 13a6c5eb76..bb0d999100 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_385.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_385.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian systems, the complete text of the GNU General - Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian systems, the complete text of the {{GNU General + Public License version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_386.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_386.RULE index c72f926927..f0ab905081 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_386.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_386.RULE @@ -6,12 +6,12 @@ ignorable_urls: --- # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License at for +# {{GNU General Public License}} at for # more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_387.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_387.RULE index 5140aa3a57..57bc6271f2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_387.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_387.RULE @@ -6,9 +6,9 @@ referenced_filenames: --- This file is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . - On Debian systems, the full text of the GNU General Public License version 3 + On Debian systems, the full text of the {{GNU General Public License version 3}} can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_388.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_388.RULE index 5614e78c48..6bf198f75a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_388.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_388.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -licensed under the GNU General Public License version 3.0 or later. See the file COPYING. \ No newline at end of file +licensed under the {{GNU General Public License version 3.0 or later}}. See the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_391.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_391.RULE index a5b273ae9a..73759b0571 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_391.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_391.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU General Public License version 3.0 or later \ No newline at end of file +licensed under the {{GNU General Public License version 3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_392.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_392.RULE index 805bb84283..6049301e67 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_392.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_392.RULE @@ -6,5 +6,5 @@ referenced_filenames: --- The command line tool, self tests, examples, and other auxilliary -files, are licensed under the GNU General Public License version 3.0 -or later. See the file COPYING. \ No newline at end of file +files, are licensed under the {{GNU General Public License version 3.0 +or later}}. See the file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_394.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_394.RULE index 66cc05fef7..7cab930eb7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_394.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_394.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_395.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_395.RULE index 2e5e72058a..4fca5969aa 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_395.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_395.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- * GnuTLS-extra is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * GnuTLS-extra is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_396.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_396.RULE index 72178bde4c..62306d46ef 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_396.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_396.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This texinfo.tex file is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. . This texinfo.tex file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty - of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_397.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_397.RULE index 904aeb3739..0cb4383226 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_397.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_397.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- GNU Modula-2 is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later -version. +version}}. GNU Modula-2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_398.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_398.RULE index 071f97ccb2..f3ff355f6d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_398.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_398.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- GCC is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later -version. +version}}. GCC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. Files that have exception clauses are licensed under the terms of the -GNU General Public License; either version 3, or (at your option) any +{{GNU General Public License}}; either version 3, or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_399.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_399.RULE index c6803407a7..9619d4cc7c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_399.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_399.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_4.RULE index cadb812a23..bd3a4b2ec7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_4.RULE @@ -5,15 +5,15 @@ notes: Another GPL 3 notice --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_400.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_400.RULE index 50fc15a2d2..c4b778f9e1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_400.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_400.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This file is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . - On Debian GNU/Linux systems, the full text of the GNU General Public License version 3 + On Debian GNU/Linux systems, the full text of the {{GNU General Public License version 3}} can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_401.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_401.RULE index 01cbbab680..96f842135b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_401.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_401.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package. If not, see . - On Debian GNU/Linux systems, the complete text of the GNU General Public License - version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License + version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_402.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_402.RULE index 0d27e515f9..ecef6a4f8f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_402.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_402.RULE @@ -8,17 +8,17 @@ ignorable_urls: License: GPL-3+ This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian GNU/Linux systems, the complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} + can be found in {{/usr/share/common-licenses/GPL-3}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_403.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_403.RULE index 4f74ceb55c..7a14f6d707 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_403.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_403.RULE @@ -8,18 +8,18 @@ referenced_filenames: License: GPL-3+ This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . -On Debian GNU/Linux systems, the full text of the GNU General Public -License version 2 can be found in the file +On Debian GNU/Linux systems, the full text of the {{GNU General Public +License}} version 2 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_404.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_404.RULE index cdfc69b92f..521307ac7d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_404.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_404.RULE @@ -8,18 +8,18 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . On Debian GNU/Linux systems, the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +complete text of the {{GNU General Public License version 3 can be found +in `/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_405.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_405.RULE index 43e13cdefd..2cff9b1111 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_405.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_405.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . - On Debian GNU/Linux systems, the complete text of the GNU General Public License - version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License + version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_406.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_406.RULE index d431653a81..faea882df5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_406.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_406.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_407.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_407.RULE index ce8a6e23f8..580ba901bc 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_407.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_407.RULE @@ -9,18 +9,18 @@ notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . -On Debian GNU/Linux systems, the full text of the GNU General Public -License version 2 can be found in the file +On Debian GNU/Linux systems, the full text of the {{GNU General Public +License}} version 2 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_408.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_408.RULE index 0951e5db80..261a68f98d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_408.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_408.RULE @@ -7,14 +7,14 @@ referenced_filenames: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. -On Debian GNU/Linux systems, the complete text of the GNU General Public License +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} may be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_409.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_409.RULE index d115ffbd9c..05f93e3353 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_409.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_409.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian GNU/Linux systems the full text of the GNU General Public - License can be found in the `/usr/share/common-licenses/GPL-3' file. \ No newline at end of file + On Debian GNU/Linux systems the full text of the {{GNU General Public + License}} can be found in the `{{/usr/share/common-licenses/GPL-3}}' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_41.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_41.RULE index 0fa8280d01..4f8e132400 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_41.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_41.RULE @@ -10,14 +10,14 @@ This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_410.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_410.RULE index 691bdc5b74..889c346ae3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_410.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_410.RULE @@ -8,19 +8,19 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General Public License +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} version 2 can be found in `/usr/share/common-licenses/GPL-2'. the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +complete text of the {{GNU General Public License version 3 can be found +in `/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_411.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_411.RULE index 3455c0cc2f..3f7288bc3b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_411.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_411.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package. If not, see . - On Debian GNU/Linux systems, the complete text of the GNU General Public License - version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License + version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_412.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_412.RULE index 8866d70dd2..8503477586 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_412.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_412.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General Public +License}} can be found in /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_413.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_413.RULE index 46dfaccca0..cb3e922f08 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_413.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_413.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian GNU/Linux systems, the complete text of the GNU General - Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General + Public License version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_414.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_414.RULE index 13e4266100..114cfba1ea 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_414.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_414.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . - On Debian GNU/Linux systems, the complete text of the GNU General Public License - version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License + version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_415.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_415.RULE index cafd6308db..e7abbfde03 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_415.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_415.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- Bash is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later -version. +version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Bash. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General Public License +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_416.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_416.RULE index 61ee89bc79..585a3980f1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_416.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_416.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian systems, the complete text of the GNU General Public - License version 3 can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public + License version 3}} can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_417.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_417.RULE index 4283d04d88..2566132b75 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_417.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_417.RULE @@ -8,19 +8,19 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . On Debian GNU/Linux systems, the complete text of the GNU General Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'. the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +complete text of the {{GNU General Public License version 3 can be found +in `/usr/share/common-licenses/GPL-3}}'. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_418.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_418.RULE index 10605ae26b..0473fdf68a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_418.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_418.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- GCC is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. GCC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_419.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_419.RULE index dc9906fc32..983a20ffad 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_419.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_419.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_42.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_42.RULE index 16d1bb8d0f..b0201d10e1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_42.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_42.RULE @@ -8,14 +8,14 @@ ignorable_urls: ("GPL3" t "This program is free software: you can redistribute it and/or modify" - "it under the terms of the GNU General Public License as published by" + "it under the terms of the {{GNU General Public License as published by" "the Free Software Foundation, either version 3 of the License, or" - "(at your option) any later version." + "(at your option) any later version}}." "" "This program is distributed in the hope that it will be useful," "but WITHOUT ANY WARRANTY; without even the implied warranty of" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the" - "GNU General Public License for more details." + "{{GNU General Public License}} for more details." "" - "You should have received a copy of the GNU General Public License" + "You should have received a copy of the {{GNU General Public License}}" "along with this program. If not, see .") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_421.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_421.RULE index 9eefd079a1..1782d4c890 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_421.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_421.RULE @@ -8,18 +8,18 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU General Public License, -version 3 or later +redistribution under the terms of the {{GNU General Public License, +version 3 or later}} is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_422.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_422.RULE index baac834f90..ed361ca711 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_422.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_422.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- "This is free software; you can redistribute it and/or modify " -"it under the terms of the GNU General Public License as published by " +"it under the terms of the {{GNU General Public License as published by " "the Free Software Foundation; either version 3 of the License, or " -"(at your option) any later version. " +"(at your option) any later version}}. " "It is distributed in the hope that it will be useful, " "but WITHOUT ANY WARRANTY; without even the implied warranty of " "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the " -"GNU General Public License for more details. " -"You should have received a copy of the GNU General Public License " +"{{GNU General Public License}} for more details. " +"You should have received a copy of the {{GNU General Public License}} " "along with this software. If not, see .\ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_423.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_423.RULE index c20aaa3019..c7b4aaad95 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_423.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_423.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- Bash is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Bash. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_424.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_424.RULE index 1b97cae6ab..7c6fc9380c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_424.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_424.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/lisenses/gpl.txt --- -License: GNU/GPLv3 or higher (https://www.gnu.org/lisenses/gpl.txt) \ No newline at end of file +License: {{GNU/GPLv3 or higher}} (https://www.gnu.org/lisenses/gpl.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_425.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_425.RULE index 02529595f9..39086f4183 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_425.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_425.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This texinfo.tex file is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License as + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. . This texinfo.tex file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty - of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_426.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_426.RULE index 7cc3367208..5c1c625ebe 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_426.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_426.RULE @@ -7,10 +7,10 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation, either version 3 of the License, or any later version. +under the terms of the {{GNU General Public License as published by the +Free Software Foundation, either version 3 of the License}}, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. -You should have received a copy of the GNU General Public License along with this program. +See the {{GNU General Public License}} for more details. +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see <https://www.gnu.org/licenses/>. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_427.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_427.RULE index f42b04c3f2..af5621452e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_427.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_427.RULE @@ -8,17 +8,17 @@ ignorable_urls: License: GPL-3+ This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian systems, the complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public License}} + can be found in {{/usr/share/common-licenses/GPL-3}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_428.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_428.RULE index 4be520d5c8..827dda2152 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_428.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_428.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- gnulib is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. gnulib is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with gnulib; if not, see + You should have received a copy of the {{GNU General Public + License}} along with gnulib; if not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_429.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_429.RULE index 747b7d835b..83fc5debd1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_429.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_429.RULE @@ -8,18 +8,18 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . On Debian systems, the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +complete text of the {{GNU General Public License version 3 can be found +in `/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_43.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_43.RULE index b998478e3d..6bb1a0a03c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_43.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_43.RULE @@ -3,6 +3,6 @@ license_expression: gpl-3.0-plus is_license_notice: yes --- -and licensed under the terms of the GNU General Public License Version 3, or (at -your option) any later version ("GPL3+"). A copy of the license can be found in +and licensed under the terms of the {{GNU General Public License Version 3, or (at +your option) any later version}} ("GPL3+"). A copy of the license can be found in legal/GPLV3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_430.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_430.RULE index 73394b08ce..56760ccd4f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_430.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_430.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- "genshellopt is free software: you can redistribute it and/or modify it under \ -the terms of the GNU General Public License as published by the Free Software \ +the terms of the {{GNU General Public License as published by the Free Software \ Foundation, either version 3 of the License, or (at your option) any later \ -version. \ +version}}. \ genshellopt is distributed in the hope that it will be useful, but WITHOUT ANY \ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A \ -PARTICULAR PURPOSE. See the GNU General Public License for more details. \ -You should have received a copy of the GNU General Public License along with \ +PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. \ +You should have received a copy of the {{GNU General Public License}} along with \ this program. If not, see ."; \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_431.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_431.RULE index cd96280956..beaf503684 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_431.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_431.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. +is free software: you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. - is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with . If not, see https://www.gnu.org/licenses/gpl.html. \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} along with . If not, see https://www.gnu.org/licenses/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_432.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_432.RULE index e99084507d..222908eb79 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_432.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_432.RULE @@ -9,15 +9,15 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License , or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_433.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_433.RULE index f3e068c67d..c113ddbf93 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_433.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_433.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- # This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) -# any later version. +# any later version}}. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# {{GNU General Public License}} for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the {{GNU General Public License}} # along with this program (see the file COPYING); if not, see # https://www.gnu.org/licenses/, or contact Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_435.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_435.RULE index ec588e646d..88612b78b4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_435.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_435.RULE @@ -10,15 +10,15 @@ ignorable_urls: This file belongs to a GNU package released under GPL 3 license. This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_436.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_436.RULE index 9c861e0600..3dbefa6cdc 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_436.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_436.RULE @@ -10,7 +10,7 @@ ignorable_urls: ("GPL3-fr" t "Ce programme est un logiciel libre ; vous pouvez le redistribuer ou le" - "modifier suivant les termes de la “GNU General Public License” telle que" + "modifier suivant les termes de la “{{GNU General Public License}}” telle que" "publiée par la Free Software Foundation : soit la version 3 de cette" "licence, soit (à votre gré) toute version ultérieure." "" diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_437.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_437.RULE index aea950d8eb..e6d6e9f13d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_437.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_437.RULE @@ -19,14 +19,14 @@ This source file is copyrighted and licensed under the following terms: is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_438.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_438.RULE index 82fdee2253..406cd1ab41 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_438.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_438.RULE @@ -7,16 +7,16 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . */ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_439.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_439.RULE index ec989091f7..ed69449bd8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_439.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_439.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian systems the full text of the GNU General Public - License can be found in the `/usr/share/common-licenses/GPL-3' file. \ No newline at end of file + On Debian systems the full text of the {{GNU General Public + License}} can be found in the `{{/usr/share/common-licenses/GPL-3}}' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_44.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_44.RULE index 4e7ee6a844..9bf4dfae2b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_44.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_44.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licensed as "GPLv3 or higher". \ No newline at end of file +licensed as "{{GPLv3 or higher}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_440.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_440.RULE index f16bf625c4..54b202a5dd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_440.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_440.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_441.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_441.RULE index 67c5329a2c..1639f1549f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_441.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_441.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-3.0.html --- -License: GPLv3 or higher +License: {{GPLv3 or higher}} License URI: https://www.gnu.org/licenses/gpl-3.0.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_442.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_442.RULE index 198d1f5ece..a9016274c2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_442.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_442.RULE @@ -8,19 +8,19 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the complete text of the GNU General Public License +On Debian systems, the complete text of the {{GNU General Public License}} version 2 can be found in `/usr/share/common-licenses/GPL-2'. the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +complete text of the {{GNU General Public License version 3 can be found +in `/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_443.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_443.RULE index a749184ae7..e462e1f381 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_443.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_443.RULE @@ -9,14 +9,14 @@ ignorable_urls: ("GPL3" t "This program is free software: you can redistribute it and/or modify" - "it under the terms of the GNU General Public License as published by" + "it under the terms of the {{GNU General Public License as published by" "the Free Software Foundation, either version 3 of the License, or" - "(at your option) any later version." + "(at your option) any later version}}." "" "This program is distributed in the hope that it will be useful," "but WITHOUT ANY WARRANTY; without even the implied warranty of" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the" - "GNU General Public License for more details." + "{{GNU General Public License}} for more details." "" - "You should have received a copy of the GNU General Public License" + "You should have received a copy of the {{GNU General Public License}}" "along with this program. If not, see .") \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_444.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_444.RULE index 853e6101d4..593ed985a3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_444.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_444.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- GNU Time is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. GNU Time is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GNU Time. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_445.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_445.RULE index 0fc0dd403a..d4160257a3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_445.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_445.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version.

+(at your option) any later version}}.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details.

+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details.

-You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see https://www.gnu.org/licenses/

\ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_446.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_446.RULE index c2aadf89bf..2078f649dc 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_446.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_446.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . limit so don't run it by default. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_447.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_447.RULE index 0ab2b25eec..6a234c4104 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_447.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_447.RULE @@ -8,17 +8,17 @@ ignorable_urls: License: GPL-3+ This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian GNU/Linux systems, the complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} + can be found in {{/usr/share/common-licenses/GPL-3}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_448.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_448.RULE index 21047f36b5..a4f866a092 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_448.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_448.RULE @@ -10,16 +10,16 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at -your option) any later version. +your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License with +You should have received a copy of the {{GNU General Public License}} with your Debian GNU system, in /usr/share/common-licenses/GPL-3, or with the Debian GNU ed source package as the file COPYING. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_449.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_449.RULE index cfa1f99731..a34f04ab68 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_449.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_449.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- AutoGen is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. AutoGen is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_450.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_450.RULE index b4777cf59a..5ca7d7a8a6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_450.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_450.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with . If not, see . A copy of the GPL can be found in the file "COPYING" in this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_451.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_451.RULE index ed8f38032a..348292babd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_451.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_451.RULE @@ -7,4 +7,4 @@ ignorable_urls: - https://www.gnu.org/licenses --- -The project utilizes code licensed under the terms of the GNU General Public License and therefore is licensed under GPL v3 or later. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/. \ No newline at end of file +The project utilizes code licensed under the terms of the {{GNU General Public License}} and therefore is licensed under GPL v3 or later. This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. You should have received a copy of the {{GNU General Public License}} along with this program. If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_452.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_452.RULE index d1d3e5478e..55972c5970 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_452.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_452.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- * GnuTLS-extra is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by + * it under the terms of the {{GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * GnuTLS-extra is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_453.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_453.RULE index bcbbdba20a..3f98d928ab 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_453.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_453.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- Bash is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later -version. +version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Bash. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General Public License +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_454.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_454.RULE index a50bafee5d..c74fa7f205 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_454.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_454.RULE @@ -12,14 +12,14 @@ ignorable_urls: GNU package released under GPL 3 license This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_455.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_455.RULE index 7ab4ad72aa..4c5893b163 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_455.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_455.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- # This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License at for +# {{GNU General Public License}} at for # more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_456.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_456.RULE index e099eab32d..11b12f26d1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_456.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_456.RULE @@ -9,14 +9,14 @@ ignorable_urls: This source file is copyrighted and licensed under the following terms: This is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_457.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_457.RULE index e175b90ea4..2a6b039ec9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_457.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_457.RULE @@ -9,14 +9,14 @@ ignorable_urls: This source file is copyrighted and licensed under the following terms: is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_458.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_458.RULE index 89a96f9ad2..67d2094049 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_458.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_458.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_459.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_459.RULE index b87f65e810..e6e63021e5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_459.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_459.RULE @@ -8,18 +8,18 @@ ignorable_urls: GPL 3+ -GPL-3.0+ +{{GPL-3.0+}} This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_46.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_46.RULE index fcbb4881c5..06293c94ff 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_46.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_46.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gpl-3.0+ \ No newline at end of file +GPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_460.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_460.RULE index 3dacb7fdaf..031f6ad734 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_460.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_460.RULE @@ -7,16 +7,16 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . */ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_461.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_461.RULE index 865fb59630..0fda83cfb2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_461.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_461.RULE @@ -10,15 +10,15 @@ ignorable_urls: --- GCC is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) -any later version. +any later version}}. GCC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GCC; see the file COPYING3. If not see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_462.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_462.RULE index 37ea2ee27c..5a0340d6f5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_462.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_462.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public +License}} can be found in /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_463.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_463.RULE index 3af2d49848..eb122235bb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_463.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_463.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.gnu.org/licenses --- -is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. +is free software: you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/. \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_464.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_464.RULE index fa6bb4bc15..041caa0de6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_464.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_464.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- "Ce programme est un logiciel libre ; vous pouvez le redistribuer ou le" - "modifier suivant les termes de la GNU General Public License telle que" + "modifier suivant les termes de la {{GNU General Public License}} telle que" "publiée par la Free Software Foundation : soit la version 3 de cette" "licence, soit (à votre gré) toute version ultérieure." "" diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_465.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_465.RULE index fae0ba25d9..b57eef2bde 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_465.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_465.RULE @@ -11,14 +11,14 @@ This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_467.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_467.RULE index baff736f65..2b61550a6b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_467.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_467.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 3 as published + * under the terms of the {{GNU General Public License version 3}} as published * by the Free Software Foundation. See https://www.gnu.org/ for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_468.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_468.RULE index 6a93e18768..a032b4b3b7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_468.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_468.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- This is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. +See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_469.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_469.RULE index 2f76d3c8ea..2b2ff04599 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_469.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_469.RULE @@ -10,12 +10,12 @@ ignorable_urls: "There is NO WARRANTY, to the extent permitted by law. "; "This is free software; you can redistribute it and/or modify " -"it under the terms of the GNU General Public License as published by " +"it under the terms of the {{GNU General Public License as published by " "the Free Software Foundation; either version 3 of the License, or " -"(at your option) any later version. " +"(at your option) any later version}}. " "It is distributed in the hope that it will be useful, " "but WITHOUT ANY WARRANTY; without even the implied warranty of " "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the " -"GNU General Public License for more details. " -"You should have received a copy of the GNU General Public License " +"{{GNU General Public License}} for more details. " +"You should have received a copy of the {{GNU General Public License}} " "along with this software. If not, see .\ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_47.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_47.RULE index f3bc10371c..bc8e392043 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_47.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_47.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- The code can be freely shared (copied, studiewd, modified, distributed) under -the terms of the GNU General Public License, either version 3 or a later version, +the terms of the {{GNU General Public License, either version 3 or a later version}}, as published by the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_470.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_470.RULE index a3c1db4611..e8a3d63135 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_470.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_470.RULE @@ -12,16 +12,16 @@ ignorable_urls: ![GPLv3](https://www.gnu.org/graphics/gplv3) - is licensed under [GNU General Public License] + is licensed under [{{GNU General Public License}}] (https://www.gnu.org/licenses/gpl.html) Version 3 or later. is free software: you can redistribute it and/or modify it under the terms of - the GNU General Public License as published by the Free Software Foundation, - either version 3 of the License, or (at your option) any later version. + the {{GNU General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_471.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_471.RULE index 881fcc67f9..4c02662fac 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_471.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_471.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian GNU/Linux systems the full text of the GNU General Public - License can be found in the `/usr/share/common-licenses/GPL-3' file. \ No newline at end of file + On Debian GNU/Linux systems the full text of the {{GNU General Public + License}} can be found in the `{{/usr/share/common-licenses/GPL-3}}' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_472.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_472.RULE index 05d898b57e..831c706061 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_472.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_472.RULE @@ -7,16 +7,16 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -is licensed under [GNU General Public License] +is licensed under [{{GNU General Public License}}] (https://www.gnu.org/licenses/gpl.html) Version 3 or later. is free software: you can redistribute it and/or modify it under the terms of - the GNU General Public License as published by the Free Software Foundation, - either version 3 of the License, or (at your option) any later version. + the {{GNU General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_473.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_473.RULE index 6a80d7a63e..9bfad7bbab 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_473.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_473.RULE @@ -9,19 +9,19 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. See /usr/share/common-licenses/GPL-3, or for the terms of the latest version -of the GNU General Public License. \ No newline at end of file +of the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_474.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_474.RULE index 513c47b755..4a4f84f9d3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_474.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_474.RULE @@ -8,18 +8,18 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . On Debian GNU/Linux systems, the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +complete text of the {{GNU General Public License version 3 can be found +in `/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_475.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_475.RULE index 015b4b7364..b9e2065a39 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_475.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_475.RULE @@ -17,14 +17,14 @@ ignorable_urls: * This source file is copyrighted and licensed under the following terms: * * genshellopt is free software: you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the + * under the terms of the {{GNU General Public License as published by the * Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * genshellopt is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - * See the GNU General Public License for more details. + * See the {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License along + * You should have received a copy of the {{GNU General Public License}} along * with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_476.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_476.RULE index a5790c91f9..7477ffc9af 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_476.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_476.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_477.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_477.RULE index d6ad2526f0..1afeb28739 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_477.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_477.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian GNU/Linux systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General Public +License}} can be found in /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_478.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_478.RULE index 3c7a282ddd..1074f4bf4e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_478.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_478.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- Bash is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later -version. +version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Bash. If not, see . -On Debian systems, the complete text of the GNU General Public License +On Debian systems, the complete text of the {{GNU General Public License}} can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_479.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_479.RULE index e19cf4ac53..30a1204b0a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_479.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_479.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- GnuPG is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . GnuPG is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_48.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_48.RULE index 38f097d0ed..15e919c7be 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_48.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_48.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- * is free software: you can redistribute -* it and/or modify it under the terms of the GNU General Public +* it and/or modify it under the terms of the {{GNU General Public * License as published by the Free Software Foundation, either -* version 3 of the License, or (at your option) any later version. +* version 3 of the License, or (at your option) any later version}}. * * application is distributed in the hope that it will * be useful, but WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. \ No newline at end of file +* {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_480.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_480.RULE index a09279d0af..839a66eda2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_480.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_480.RULE @@ -8,18 +8,18 @@ ignorable_urls: --- GnuPG is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . GnuPG is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . . - On Debian systems, the full text of the GNU General Public - License version 3 can be found in the file + On Debian systems, the full text of the {{GNU General Public + License version 3}} can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_481.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_481.RULE index cb256a1dbe..62cfd9c7dd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_481.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_481.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_482.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_482.RULE index 466bda5a1e..fef8df94b4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_482.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_482.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU General + Public License}} can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_483.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_483.RULE index ef37aad91d..90beabcc63 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_483.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_483.RULE @@ -9,15 +9,15 @@ notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - On Debian systems, the full text of the GNU General Public - License version 2 can be found in the file + On Debian systems, the full text of the {{GNU General Public + License}} version 2 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_484.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_484.RULE index 160131c304..56bce8afb8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_484.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_484.RULE @@ -8,18 +8,18 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian systems the full text of the GNU General Public License - version 3 can be found in the file + On Debian systems the full text of the {{GNU General Public License + version 3}} can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_485.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_485.RULE index 99c1c5880d..c156282804 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_485.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_485.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian systems, the text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_486.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_486.RULE index 060783859e..a45aac0154 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_486.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_486.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package. If not, see . - On Debian systems, the text of the GNU General Public License - version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian systems, the text of the {{GNU General Public License + version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_487.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_487.RULE index 1574e66651..5d095e65b5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_487.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_487.RULE @@ -8,17 +8,17 @@ ignorable_urls: License: GPL-3+ This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian systems, the text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file + On Debian systems, the text of the {{GNU General Public License}} + can be found in {{/usr/share/common-licenses/GPL-3}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_488.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_488.RULE index 527416d297..b8ff9a2b8e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_488.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_488.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . - On Debian systems, the text of the GNU General Public License - version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian systems, the text of the {{GNU General Public License + version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_489.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_489.RULE index 2d90c16d36..d9b0ab1c64 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_489.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_489.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian systems, the text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_49.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_49.RULE index 507ce02d83..52e449bccc 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_49.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_49.RULE @@ -9,13 +9,13 @@ ignorable_urls: --- * is free software: you can redistribute -* it and/or modify it under the terms of the GNU General Public +* it and/or modify it under the terms of the {{GNU General Public * License as published by the Free Software Foundation, either -* version 3 of the License, or (at your option) any later version. +* version 3 of the License, or (at your option) any later version}}. * * application is distributed in the hope that it will * be useful, but WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. +* {{GNU General Public License}} for more details. * -* @license GPL-3.0+ \ No newline at end of file +* @license {{GPL-3.0+}} <{{ http://spdx.org/licenses/GPL-3.0+}}> \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_490.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_490.RULE index d82be55ee3..47466f9510 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_490.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_490.RULE @@ -8,19 +8,19 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the text of the GNU General Public License +On Debian systems, the text of the {{GNU General Public License}} version 2 can be found in `/usr/share/common-licenses/GPL-2'. the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +complete text of the {{GNU General Public License version 3 can be found +in `/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_491.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_491.RULE index ffe514f642..50fc5231e7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_491.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_491.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL \ No newline at end of file +On Debian systems, the text of the {{GNU General Public +License}} can be found in /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_492.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_492.RULE index 5515c54c6e..db40a7e292 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_492.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_492.RULE @@ -7,14 +7,14 @@ referenced_filenames: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. -On Debian systems, the text of the GNU General Public License +On Debian systems, the text of the {{GNU General Public License}} may be found in `/usr/share/common-licenses/GPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_493.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_493.RULE index a5c57de580..b979dfff9c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_493.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_493.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- Bash is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later -version. +version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Bash. If not, see . -On Debian systems, the text of the GNU General Public License +On Debian systems, the text of the {{GNU General Public License}} can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_494.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_494.RULE index e2b9667319..0af284089b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_494.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_494.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian systems, the text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_495.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_495.RULE index acd8c8b8b0..d2fd571c5f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_495.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_495.RULE @@ -8,19 +8,19 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the text of the GNU General Public License +On Debian systems, the text of the {{GNU General Public License}} version 2 can be found in `/usr/share/common-licenses/GPL-2'. the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +complete text of the {{GNU General Public License version 3 can be found +in `/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_496.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_496.RULE index 7b7344e225..002afcdf3c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_496.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_496.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package. If not, see . - On Debian systems, the text of the GNU General Public License - version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian systems, the text of the {{GNU General Public License + version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_497.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_497.RULE index 15df4a2e3c..a8de6f088e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_497.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_497.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL \ No newline at end of file +On Debian systems, the text of the {{GNU General Public +License}} can be found in /usr/share/common-licenses/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_498.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_498.RULE index 49c789e0f2..3bc9393dc5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_498.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_498.RULE @@ -8,17 +8,17 @@ ignorable_urls: License: GPL-3+ This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian systems, the text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file + On Debian systems, the text of the {{GNU General Public License}} + can be found in {{/usr/share/common-licenses/GPL-3}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_499.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_499.RULE index e86f02a262..f451859d3e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_499.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_499.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian systems, the text of the GNU General - Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian systems, the text of the {{GNU General + Public License version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_5.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_5.RULE index de25baf093..d2764588a1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_5.RULE @@ -7,15 +7,15 @@ notes: GPL 3 alternative GPL 3 is free software; you can redistribute it and/or modify (it)? -under the terms of the GNU General Public License as +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 -.*or \(at your option\) any later version +.*or \(at your option\) any later version}} .* is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE See the -GNU General Public License for more details +{{GNU General Public License}} for more details -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with .* if not, write to the Free Software Foundation .* .*USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_50.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_50.RULE index d9b35ffbac..7278387ec2 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_50.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_50.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://spdx.org/licenses/GPL-3.0 --- -* @license GPL-3.0+ \ No newline at end of file +* @license {{GPL-3.0+}} <{{ http://spdx.org/licenses/GPL-3.0+}}> \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_500.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_500.RULE index c0bfc10e8b..163f3e4258 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_500.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_500.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . - On Debian systems, the text of the GNU General Public - License version 3 can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file + On Debian systems, the text of the {{GNU General Public + License version 3}} can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_501.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_501.RULE index da01e7e135..346461e56f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_501.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_501.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . - On Debian systems, the text of the GNU General Public License - version 3 can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian systems, the text of the {{GNU General Public License + version 3}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_502.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_502.RULE index f5dd04a46b..fae83d59e4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_502.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_502.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- Bash is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free +the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later -version. +version}}. Bash is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with Bash. If not, see . -On Debian systems, the text of the GNU General Public License +On Debian systems, the text of the {{GNU General Public License}} can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_503.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_503.RULE index 7882447a61..b1c0072c54 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_503.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_503.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This file is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . - On Debian systems, the text of the GNU General Public License version 3 + On Debian systems, the text of the {{GNU General Public License version 3}} can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_504.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_504.RULE index b15eb12952..ad7b7dc1b5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_504.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_504.RULE @@ -9,18 +9,18 @@ ignorable_urls: --- GnuPG is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . GnuPG is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . . - On Debian systems, the text of the GNU General Public - License version 3 can be found in the file + On Debian systems, the text of the {{GNU General Public + License version 3}} can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_505.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_505.RULE index d702c8347b..64fb899185 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_505.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_505.RULE @@ -10,18 +10,18 @@ notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen License: GPL-3+ This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . -On Debian systems, the text of the GNU General Public -License version 2 can be found in the file +On Debian systems, the text of the {{GNU General Public +License}} version 2 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_506.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_506.RULE index 9727ba87a9..c520ef439d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_506.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_506.RULE @@ -9,18 +9,18 @@ notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. . -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . . -On Debian systems, the text of the GNU General Public -License version 2 can be found in the file +On Debian systems, the text of the {{GNU General Public +License}} version 2 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_507.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_507.RULE index 2e4c9c4622..e62a70b2fa 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_507.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_507.RULE @@ -9,15 +9,15 @@ notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - On Debian systems, the text of the GNU General Public - License version 2 can be found in the file + On Debian systems, the text of the {{GNU General Public + License}} version 2 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_508.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_508.RULE index f23ff59031..1eb0e30636 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_508.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_508.RULE @@ -6,14 +6,14 @@ referenced_filenames: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at - your option) any later version. + your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. On Debian systems, the complete text of the license can be found in - the file /usr/share/common-licenses/GPL-3 \ No newline at end of file + the file {{/usr/share/common-licenses/GPL-3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_509.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_509.RULE index 37dd3201f3..e4222c3dd3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_509.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_509.RULE @@ -6,10 +6,10 @@ referenced_filenames: --- This package is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your - option) any later version. + option) any later version}}. - On Debian systems, the complete text of the GNU General Public License - version 3 can be found in file "/usr/share/common-licenses/GPL-3". \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public License + version 3}} can be found in file "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_51.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_51.RULE index 3b088a3f82..f757274607 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_51.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_51.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 3 of the License, or +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; either version 3 of the License}}, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_510.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_510.RULE index 25628a8f0c..0ab5a17514 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_510.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_510.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your - option) any later version. \ No newline at end of file + option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_511.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_511.RULE index 4aa863eaa2..1d15ba3370 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_511.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_511.RULE @@ -6,15 +6,15 @@ referenced_filenames: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_512.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_512.RULE index 986a164f16..98e11c4b04 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_512.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_512.RULE @@ -6,18 +6,18 @@ referenced_filenames: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the complete text of the GNU General - Public License 3 can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file + On Debian systems, the complete text of the {{GNU General + Public License}} 3 can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_515.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_515.RULE index a3a8640ed8..3bdd675d04 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_515.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_515.RULE @@ -3,4 +3,4 @@ license_expression: gpl-3.0-plus is_license_notice: yes --- -The program (src/), the test suite (test/), and various developer tools in this source tree are available under the GNU General Public License version 3 or, at your option, any later version. \ No newline at end of file +The program (src/), the test suite (test/), and various developer tools in this source tree are available under the {{GNU General Public License version 3 or, at your option, any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_518.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_518.RULE index aafd9c8d92..8bc8f18734 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_518.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_518.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GPL-3.0+ GNU General Public License v3.0 or later \ No newline at end of file +{{GPL-3.0+}} {{GNU General Public License v3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_519.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_519.RULE index 6f336d8024..fde5365132 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_519.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_519.RULE @@ -1,7 +1,7 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_520.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_520.RULE index b72292970e..a6cd2570c7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_520.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_520.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GNU General Public License v3.0 or later GPL-3.0+ \ No newline at end of file +{{GNU General Public License v3.0 or later}} {{GPL-3.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_521.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_521.RULE index 4debec182c..66ac57fda9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_521.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_521.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : GPL-3.0+ \ No newline at end of file +licenseid : {{GPL-3.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_522.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_522.RULE index acfc88fe54..5e024b2fa8 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_522.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_522.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : GNU General Public License v3.0 or later \ No newline at end of file +name : {{GNU General Public License v3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_523.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_523.RULE index 9ee3bbbc46..7c5afd6ee1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_523.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_523.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GPL-3.0-or-later GNU General Public License v3.0 or later \ No newline at end of file +{{GPL-3.0-or-later}} {{GNU General Public License v3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_524.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_524.RULE index 1210f680d0..c088d4a137 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_524.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_524.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU General Public License v3.0 or later GPL-3.0-or-later \ No newline at end of file +{{GNU General Public License v3.0 or later}} {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_525.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_525.RULE index cd2517a016..55fc0ef600 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_525.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_525.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GPL-3.0-or-later \ No newline at end of file +license: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_526.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_526.RULE index 6f45c1adc8..db1397a59c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_526.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_526.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GNU General Public License v3.0 or later \ No newline at end of file +license: {{GNU General Public License v3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_527.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_527.RULE index 64a8e2a10e..4529f4331f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_527.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_527.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: GPL-3.0-or-later \ No newline at end of file +licenseId: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_528.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_528.RULE index 8112cb5466..7f4866575c 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_528.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_528.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'GNU License v3': 'GPL-3.0-or-later', \ No newline at end of file +'GNU License v3': '{{GPL-3.0-or-later}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_529.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_529.RULE index cfdeb8c1d3..2cd2265fc9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_529.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_529.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -['GPL', 'GPL-3.0-or-later'], \ No newline at end of file +['GPL', '{{GPL-3.0-or-later}}'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_53.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_53.RULE index bb7c386f6d..2a071d4921 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_53.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_53.RULE @@ -11,16 +11,16 @@ ignorable_urls: ![GPLv3](https://www.gnu.org/graphics/gplv3) - is licensed under [GNU General Public License] + is licensed under [{{GNU General Public License}}] (https://www.gnu.org/licenses/gpl.html) Version 3 or later. is free software: you can redistribute it and/or modify it under the terms of - the GNU General Public License as published by the Free Software Foundation, - either version 3 of the License, or (at your option) any later version. + the {{GNU General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_530.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_530.RULE index a655c29fd7..b30ffea871 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_530.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_530.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'GLP': 'GPL-3.0-or-later', \ No newline at end of file +'GLP': '{{GPL-3.0-or-later}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_531.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_531.RULE index 3c076e6ae7..0d835b3b8a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_531.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_531.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'GLPv3': 'GPL-3.0-or-later', \ No newline at end of file +'GLPv3': '{{GPL-3.0-or-later}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_532.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_532.RULE index e431ea7d2d..a92da56c77 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_532.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_532.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU GENERAL PUBLIC LICENSE: GPL-3.0-or-later \ No newline at end of file +{{GNU GENERAL PUBLIC LICENSE}}: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_533.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_533.RULE index cde97082bf..5301db39bf 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_533.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_533.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU GLP v3.0: GPL-3.0-or-later \ No newline at end of file +GNU GLP v3.0: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_534.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_534.RULE index 4f6df46df5..017d044d77 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_534.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_534.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU GPL 3: GPL-3.0-or-later \ No newline at end of file +GNU GPL 3: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_535.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_535.RULE index 553d646058..e3e78e7a12 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_535.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_535.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU GPL 3.0: GPL-3.0-or-later \ No newline at end of file +{{GNU GPL 3.0}}: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_536.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_536.RULE index 65f97963bb..816d324efb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_536.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_536.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU GPL V3.0: GPL-3.0-or-later \ No newline at end of file +GNU GPL V3.0: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_537.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_537.RULE index 34ec667e02..dc44bcf4b9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_537.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_537.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU GPL v3: GPL-3.0-or-later \ No newline at end of file +GNU GPL v3: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_538.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_538.RULE index 951e26529a..b6b024eb7f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_538.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_538.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU GPL ver 3: GPL-3.0-or-later \ No newline at end of file +GNU GPL ver 3: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_539.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_539.RULE index 3ffbcd2002..837958ec30 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_539.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_539.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU GPL: GPL-3.0-or-later \ No newline at end of file +GNU GPL: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_54.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_54.RULE index b4cbf55f80..b41c59880b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_54.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_54.RULE @@ -10,5 +10,5 @@ ignorable_urls: ![GPLv3](https://www.gnu.org/graphics/gplv3) - is licensed under [GNU General Public License] -(https://www.gnu.org/licenses/gpl.html) Version 3 or later. \ No newline at end of file + is licensed under [{{GNU General Public License] +(https://www.gnu.org/licenses/gpl.html) Version 3 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_540.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_540.RULE index f07a755e79..d4809945ce 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_540.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_540.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU GPLv3: GPL-3.0-or-later \ No newline at end of file +GNU GPLv3: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_541.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_541.RULE index 66304bbacc..f4f11edd7e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_541.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_541.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU GPLv3+: GPL-3.0-or-later \ No newline at end of file +GNU GPLv3+: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_542.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_542.RULE index b7390d873a..777d3054ef 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_542.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_542.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU General Public License v3: GPL-3.0-or-later \ No newline at end of file +{{GNU General Public License}} v3: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_543.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_543.RULE index d7986c8af8..ece4891680 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_543.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_543.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU General Public: GPL-3.0-or-later \ No newline at end of file +GNU General Public: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_545.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_545.RULE index ad4ca78b01..3e42da73ee 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_545.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_545.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_546.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_546.RULE index 4d874cf647..f9a5a0ee37 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_546.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_546.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: GPL-3.0-or-later \ No newline at end of file +licenses: {{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_55.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_55.RULE index c81485a82d..90bb174919 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_55.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_55.RULE @@ -6,16 +6,16 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -is licensed under [GNU General Public License] +is licensed under [{{GNU General Public License}}] (https://www.gnu.org/licenses/gpl.html) Version 3 or later. is free software: you can redistribute it and/or modify it under the terms of - the GNU General Public License as published by the Free Software Foundation, - either version 3 of the License, or (at your option) any later version. + the {{GNU General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_553.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_553.RULE index f4591e122a..9a59938471 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_553.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_553.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -    it under the terms of the GNU General Public License as published by +    it under the terms of the {{GNU General Public License as published by     the Free Software Foundation, either version 3 of the License, or -    (at your option) any later version. +    (at your option) any later version}}.     This program is distributed in the hope that it will be useful,     but WITHOUT ANY WARRANTY; without even the implied warranty of     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_556.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_556.RULE index 9abf7edbff..d63b7c7155 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_556.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_556.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - You should have received a copy of the GNU General Public License + {{GNU General Public License}} for more details. + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . - The complete text of the GNU General Public License - can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file + The complete text of the {{GNU General Public License}} + can be found in {{/usr/share/common-licenses/GPL-3}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_559.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_559.RULE index c3e0a1f432..9b40c5fb3e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_559.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_559.RULE @@ -9,15 +9,15 @@ ignorable_urls: CONFIG_GPLV3 printf( "%s is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" + "it under the terms of the {{GNU General Public License}} as published by\n" "the Free Software Foundation; either version 3 of the License, or\n" "(at your option) any later version.\n" "\n" "%s is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" + "{{GNU General Public License}} for more details.\n" "\n" - "You should have received a copy of the GNU General Public License\n" + "You should have received a copy of the {{GNU General Public License}}\n" "along with %s. If not, see .\n", program_name, program_name, program_name ); \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_56.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_56.RULE index 8d03b50211..d3cd640fda 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_56.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_56.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify it under the terms of - the GNU General Public License as published by the Free Software Foundation, - either version 3 of the License, or (at your option) any later version. + the {{GNU General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_560.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_560.RULE index c9d22ac04d..88096b3dcd 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_560.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_560.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- "%s is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" + "it under the terms of the {{GNU General Public License}} as published by\n" "the Free Software Foundation; either version 3 of the License, or\n" "(at your option) any later version.\n" "\n" "%s is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" + "{{GNU General Public License}} for more details.\n" "\n" - "You should have received a copy of the GNU General Public License\n" + "You should have received a copy of the {{GNU General Public License}}\n" "along with %s. If not, see .\n", program_name, program_name, program_name ); \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_561.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_561.RULE index 8d6285245c..b45d77f302 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_561.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_561.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- ;; This is free software; you can redistribute it and/or modify it under -;; the terms of the GNU General Public License as published by the Free +;; the terms of the {{GNU General Public License as published by the Free ;; Software Foundation; either version 3, or (at your option) any later -;; version. +;; version}}. ;; This is distributed in the hope that it will be useful, but WITHOUT ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +;; FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} ;; for more details. -;; You should have received a copy of the GNU General Public License +;; You should have received a copy of the {{GNU General Public License}} ;; along with GNU Emacs; see the file COPYING. If not, write to the ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, ;; MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_562.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_562.RULE index 57977c3c89..4fb1211da5 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_562.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_562.RULE @@ -9,15 +9,15 @@ ignorable_urls: This library is free software; you can redistribute it and/or modify it under the -terms of the GNU General Public License as published by the +terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) -any later version. +any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along +You should have received a copy of the {{GNU General Public License}} along with this library; see the file COPYING3. If not see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_563.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_563.RULE index 99c5c4aff0..31af149374 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_563.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_563.RULE @@ -5,7 +5,7 @@ is_license_notice: yes Copyright and license - licensed under the terms of the GNU General Public License + licensed under the terms of the {{GNU General Public License}} (GPL), version 3 or later. While some individual source code files are licensed under the GPLv2+, and diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_564.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_564.RULE index e5f9cd46ca..8bc6b28c1d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_564.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_564.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -GPL-3.0+ \ No newline at end of file +{{GPL-3.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_565.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_565.RULE index b6ab748148..4184db1c13 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_565.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_565.RULE @@ -3,6 +3,6 @@ license_expression: gpl-3.0-plus is_license_notice: yes --- -This library is licensed under the terms of the GNU General Public License -as published by the Free Software Foundation; either {{version 3}} of the -License, or (at your option) any {{later version}}. \ No newline at end of file +This library is licensed under the terms of the {{GNU General Public License +as published by the Free Software Foundation; either version 3 of the +License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_566.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_566.RULE index bca3d5eef5..eaf0388bac 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_566.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_566.RULE @@ -3,6 +3,6 @@ license_expression: gpl-3.0-plus is_license_notice: yes --- -This program is licensed under the terms of the GNU General Public License -as published by the Free Software Foundation; either {{version 3}} of the License, -or (at your option) any later version. \ No newline at end of file +This program is licensed under the terms of the {{GNU General Public License +as published by the Free Software Foundation; either version 3 of the License, +or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_567.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_567.RULE index ef01b31cbd..31b24a11a6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_567.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_567.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- package is licensed under the terms of the -GNU General Public License as published by the Free Software -Foundation; either {{version 3}} of the License, or (at your option) any -later version. \ No newline at end of file +{{GNU General Public License as published by the Free Software +Foundation; either version 3 of the License, or (at your option) any +later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_568.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_568.RULE index fc4170d319..e615bb161f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_568.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_568.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- is licensed under the terms of the -GNU General Public License as published by the Free Software -Foundation; either {{version 3}} of the License, or (at your -option) any later version \ No newline at end of file +{{GNU General Public License as published by the Free Software +Foundation; either version 3 of the License, or (at your +option) any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_569.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_569.RULE index 4b1669a948..b7ba097214 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_569.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_569.RULE @@ -3,6 +3,6 @@ license_expression: gpl-3.0-plus is_license_notice: yes --- -The software is licensed under the terms of the GNU General +The software is licensed under the terms of the {{GNU General Public License as published by the Free Software Foundation, either -{{version 3}} of the license, or (at your option) any later version. \ No newline at end of file +version 3 of the license, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_57.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_57.RULE index 91aa253d8e..53586d1599 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_57.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_57.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by +under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version.

+(at your option) any later version}}.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details.

+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details.

-You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, see http://www.gnu.org/licenses/

\ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_570.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_570.RULE index cca6193794..4818cc9216 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_570.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_570.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_573.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_573.RULE index db625a16ac..51c0f941b9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_573.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_573.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License 3.0 or later \ No newline at end of file +released under the {{GNU General Public License}} 3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_574.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_574.RULE index ce1cc9cd89..4a55890c42 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_574.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_574.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License version 3.0 or later \ No newline at end of file +released under the {{GNU General Public License version 3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_575.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_575.RULE index ff0575634a..873b563fbe 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_575.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_575.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License v3.0 or later \ No newline at end of file +released under the {{GNU General Public License v3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_576.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_576.RULE index 4259491137..5c961f9834 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_576.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_576.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License v3 or later \ No newline at end of file +released under the {{GNU General Public License v3 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_577.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_577.RULE index e531de8a6a..084a5280fb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_577.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_577.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License 3.0 or any later version \ No newline at end of file +released under the {{GNU General Public License}} 3.0 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_578.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_578.RULE index 59ae79265e..42a3880027 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_578.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_578.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License version 3.0 or any later version \ No newline at end of file +released under the {{GNU General Public License version 3.0 or any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_579.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_579.RULE index 52aa2e7f60..0951c5d1a7 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_579.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_579.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License v3.0 or any later version \ No newline at end of file +released under the {{GNU General Public License v3.0 or any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_58.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_58.RULE index a6806121d9..ffaab2b038 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_58.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_58.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- # This file is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by +# under the terms of the {{GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +# General Public License}} for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the {{GNU General Public License}} # along with this program; if not, see . # \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_580.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_580.RULE index 26af67e5e3..4bd7c25a7d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_580.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_580.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License v3 or any later version \ No newline at end of file +released under the {{GNU General Public License}} v3 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_581.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_581.RULE index f08708ba05..530bfaba32 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_581.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_581.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This plugin is free software: you can redistribute -it and/or modify it under the terms of the GNU General Public License as -published by the Free Software Foundation, either version 3 of the License, or +it and/or modify it under the terms of the {{GNU General Public License as +published by the Free Software Foundation, either version 3 of the License}}, or later version. This plugin is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this plugin. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_582.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_582.RULE index e9d45a0115..b953e1d2b4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_582.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_582.RULE @@ -6,10 +6,10 @@ ignorable_urls: --- ' This header is free software: you can redistribute -' it and/or modify it under the terms of the GNU General Public +' it and/or modify it under the terms of the {{GNU General Public ' License as published by the Free Software Foundation, either ' version 3 of the License, or (at your option) any later -' version. For details please refer to: http://gplv3.fsf.org/ +' version}}. For details please refer to: http://gplv3.fsf.org/ ' ' This header is distributed in the hope that it will be ' useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_583.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_583.RULE index cbe8409370..a1a0b8340b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_583.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_583.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- # is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the license. +# it under the terms of the {{GNU General Public License as published by +# the Free Software Foundation, either version 3 of the license}}. # # is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# {{GNU General Public License}} for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the {{GNU General Public License}} # along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_584.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_584.RULE index 94602255c9..a4be03993f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_584.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_584.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- The project is free software; you can redistribute it and/or modify it under the -terms of the GNU General Public License as published by the Free Software +terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later -version. +version}}. -The GNU General Public License can be found at +The {{GNU General Public License}} can be found at http://www.gnu.org/copyleft/gpl.html. This script is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. This copyright notice MUST APPEAR in all copies of the script! \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_587.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_587.RULE index dc111e6ae1..922c42b162 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_587.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_587.RULE @@ -13,9 +13,9 @@ any later version.}} is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GNU ; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_588.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_588.RULE index 68dbc78e22..0370f15bab 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_588.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_588.RULE @@ -5,4 +5,4 @@ is_license_notice: yes License: GPL-3+ On Debian systems, the complete text of the GPL version 3 license can be - found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file + found in `{{/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_59.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_59.RULE index 5a93f07763..18d2d9c483 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_59.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_59.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you may redistribute it under the terms of -the GNU General Public License version 3 or (at your option) a later version. +the {{GNU General Public License version 3 or (at your option) a later version}}. This program has absolutely no warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_591.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_591.RULE index 92083e7829..161b3e910e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_591.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_591.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify it under -the terms of the {{GNU General Public License}} as published by the Free Software -Foundation; either {{version 3 of the License, or (at your option) any later +the terms of the {{GNU General Public License as published by the Free Software +Foundation; either version 3 of the License, or (at your option) any later version.}} This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this library; if not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_6.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_6.RULE index d09883ed31..909d2b3a69 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_6.RULE @@ -9,15 +9,15 @@ ignorable_urls: --- GCC is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) -any later version. +any later version}}. GCC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GCC; see the file COPYING3. If not see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_60.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_60.RULE index 89c9eaf28b..143d12ea76 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_60.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_60.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_606.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_606.RULE new file mode 100644 index 0000000000..a2adb713be --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_606.RULE @@ -0,0 +1,15 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + +License: GPL-3+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3, or (at your option) + any later version. + . + On Debian systems, the complete text of version 3 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-3' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_607.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_607.RULE new file mode 100644 index 0000000000..e496c51a39 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_607.RULE @@ -0,0 +1,14 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + +This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3, or (at your option) + any later version. + . + On Debian systems, the complete text of version 3 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-3' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_608.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_608.RULE new file mode 100644 index 0000000000..28d606e90a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_608.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +--- + +License: GPL-3+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3, or (at your option) + any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_61.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_61.RULE index c360fc6510..bec12e4607 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_61.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_61.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this file. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_62.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_62.RULE index 161c398c88..5bb3c3b6fa 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_62.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_62.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_64.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_64.RULE index 4371e8c0bb..276de34ebc 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_64.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_64.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- The Library is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. + version 3 of the License, or (at your option) any later version}}. The Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with the Library; if not, see + You should have received a copy of the {{GNU General Public + License}} along with the Library; if not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_65.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_65.RULE index 3052e7a9cc..8ab17d0ea1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_65.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_65.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with the GNU C Library; if not, see +You should have received a copy of the {{GNU General Public +License}} along with the GNU C Library; if not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_66.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_66.RULE index 33a7efb3c1..3b7057d9f3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_66.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_66.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- The GNU Library is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. The GNU Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with the GNU Library; if not, see +You should have received a copy of the {{GNU General Public +License}} along with the GNU Library; if not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_67.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_67.RULE index a2ec30e3c4..d8839ed361 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_67.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_67.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- GNU Time is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. GNU Time is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with GNU Time. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_69.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_69.RULE index f8c17406b2..4c046a425a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_69.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_69.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU-GPL-3.0-or-later \ No newline at end of file +GNU-{{GPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_7.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_7.RULE index 3839717438..46c82dec41 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_7.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_7.RULE @@ -5,6 +5,6 @@ notes: GPL 3 and later notice --- This program is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 - of the License, or (at your option) any later version. \ No newline at end of file + of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_70.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_70.RULE index a4b4591d47..699952a32b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_70.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_70.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This file is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the +under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your -option) any later version. +option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this file. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_71.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_71.RULE index 10a84bf61a..fff2487932 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_71.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_71.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- gnulib is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as + under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. gnulib is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with gnulib; if not, see + You should have received a copy of the {{GNU General Public + License}} along with gnulib; if not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_72.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_72.RULE index 5f7f393d23..9dff078a8e 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_72.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_72.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public +modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public -License along with the GNU C Library; if not, see +You should have received a copy of the {{GNU General Public +License}} along with the GNU C Library; if not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_73.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_73.RULE index eef8722601..a4df0c127f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_73.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_73.RULE @@ -6,16 +6,16 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . */ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_75.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_75.RULE index d1f87f5a2e..427b279388 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_75.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_75.RULE @@ -6,16 +6,16 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . */ diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_77.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_77.RULE index 531958e324..b6f4ea8a18 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_77.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_77.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU General Public License version 3, or any later version \ No newline at end of file +GNU General Public License, Version 3 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_78.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_78.RULE index a7d16a0cfa..a08b55e3fb 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_78.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_78.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -# License: GNU General Public License version 3, or any later version \ No newline at end of file +# License: {{GNU General Public License version 3, or any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_79.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_79.RULE index df8615ce42..73e064af22 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_79.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_79.RULE @@ -5,5 +5,5 @@ referenced_filenames: - LICENSE --- -# License: GNU General Public License version 3, or any later version +# License: {{GNU General Public License version 3, or any later version}} # See top-level LICENSE file for more information \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_8.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_8.RULE index b2b24a3deb..664d00037d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_8.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_8.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_81.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_81.RULE index 6ac4915451..b2d798d0aa 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_81.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_81.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://spdx.org/licenses/GPL-3.0 --- -The GPL-3.0+ license http://spdx.org/licenses/GPL-3.0+ \ No newline at end of file +The {{GPL-3.0+}} license {{ http://spdx.org/licenses/GPL-3.0+ }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_82.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_82.RULE index 92b7afba41..a7f3d7d21b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_82.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_82.RULE @@ -7,19 +7,19 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either {{version 3}} of the License, or - (at your option) {{any later version}}. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . -On Debian systems, the {{complete text}} of the GNU General Public License -{{version 2 can be found in `/usr/share/common-licenses/GPL-2}}'. the -{{complete text}} of the GNU General Public License {{version 3 can be found +On Debian systems, the complete text of the {{GNU General Public License}} +version 2 can be found in `/usr/share/common-licenses/GPL-2'. the +complete text of the {{GNU General Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_83.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_83.RULE index acbaa951ce..b71dc56aa3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_83.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_83.RULE @@ -7,18 +7,18 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . On Debian systems, the -complete text of the GNU General Public License version 3 can be found -in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +complete text of the {{GNU General Public License version 3 can be found +in `/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_84.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_84.RULE index 3bd769f4c5..f705a0ffc3 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_84.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_84.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_85.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_85.RULE index 8d9401b17e..0ec3cf7e7a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_85.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_85.RULE @@ -5,8 +5,8 @@ ignorable_urls: - http://www.gnu.org/licenses --- -is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. +is free software: you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_88.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_88.RULE index efc62d649c..43b49dac69 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_88.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_88.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License as +modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 3 of the License or any later version accepted by the membership of KDE e.V. (or its successor approved by the membership of KDE @@ -17,7 +17,7 @@ version 3 of the license. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_9.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_9.RULE index 5240f912e1..2017b58c0f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_9.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_9.RULE @@ -6,6 +6,6 @@ minimum_coverage: 80 License: GPL-3+ This program is free software: you can redistribute it and/or - modify it under the terms of the GNU General Public License + modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 - of the License, or (at your option) any later version. \ No newline at end of file + of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_91.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_91.RULE index 7eb05f09a2..8b358a1e35 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_91.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_91.RULE @@ -5,8 +5,8 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.html --- -is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. +is free software: you can redistribute it and/or modify it under the terms of the {{GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. - is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with . If not, see http://www.gnu.org/licenses/gpl.html. \ No newline at end of file +You should have received a copy of the {{GNU General Public License}} along with . If not, see http://www.gnu.org/licenses/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_94.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_94.RULE index dcc064b8cf..4f285ed8e9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_94.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_94.RULE @@ -6,10 +6,10 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License as published by the -Free Software Foundation, either version 3 of the License, or any later version. +under the terms of the {{GNU General Public License as published by the +Free Software Foundation, either version 3 of the License}}, or any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU General Public License for more details. -You should have received a copy of the GNU General Public License along with this program. +See the {{GNU General Public License}} for more details. +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see <http://www.gnu.org/licenses/>. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_95.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_95.RULE index 98e015556a..6ef466c32a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_95.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_95.RULE @@ -3,5 +3,5 @@ license_expression: gpl-3.0-plus is_license_notice: yes --- -the GNU General Public License, version 3 -or (at your option) any later version published by the Free Software Foundation. \ No newline at end of file +the {{GNU General Public License, version 3 +or (at your option) any later version}} published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_96.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_96.RULE index d5d94a0ef0..0bcf5d6528 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_96.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_96.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_97.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_97.RULE index 6f475c10c3..d438d1c24b 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_97.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_97.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- GCC is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) - any later version. + any later version}}. GCC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_98.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_98.RULE index 01484d18b7..7ddc1ddb1a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_98.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_98.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- is free software: you can redistribute it and/or modify it under - * the terms of the GNU General Public License as published by the Free + * the terms of the {{GNU General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) - * any later version. \ No newline at end of file + * any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_99.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_99.RULE index ce6d85c20d..3790724f9a 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_99.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_99.RULE @@ -6,12 +6,12 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation, either version 3 of the License}}, or any later version. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -You should have received a copy of the GNU General Public License +{{GNU General Public License}} for more details. +You should have received a copy of the {{GNU General Public License}} along with . If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_dist.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_dist.RULE index 88bc31c655..84095b0598 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_dist.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_dist.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Distributed under the GNU General Public License, version 3 or later version. \ No newline at end of file +Distributed under the {{GNU General Public License, version 3 or later}} version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_docutils.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_docutils.RULE index 61d30cc27b..c74b2dec31 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_docutils.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_docutils.RULE @@ -3,7 +3,7 @@ license_expression: gpl-3.0-plus is_license_reference: yes --- -released under the `GNU General Public License`_ version 3 or - later (`local copy`__). +released under the `{{GNU General Public License`_ version 3 or + later}} (`local copy`__). - __ licenses/gpl-3-0.txt \ No newline at end of file + __ {{licenses/gpl-3-0.txt }} diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_fr.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_fr.RULE index c95366fdc7..bf533ffcd9 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_fr.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_fr.RULE @@ -9,7 +9,7 @@ ignorable_urls: ("GPL3-fr" t "Ce programme est un logiciel libre ; vous pouvez le redistribuer ou le" - "modifier suivant les termes de la “GNU General Public License” telle que" + "modifier suivant les termes de la “{{GNU General Public License}}” telle que" "publiée par la Free Software Foundation : soit la version 3 de cette" "licence, soit (à votre gré) toute version ultérieure." "" diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_fr2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_fr2.RULE index 48c378b32d..4326b939b4 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_fr2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_fr2.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- "Ce programme est un logiciel libre ; vous pouvez le redistribuer ou le" - "modifier suivant les termes de la GNU General Public License telle que" + "modifier suivant les termes de la {{GNU General Public License}} telle que" "publiée par la Free Software Foundation : soit la version 3 de cette" "licence, soit (à votre gré) toute version ultérieure." "" diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_fsfe.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_fsfe.RULE index 1b939c771c..1fb895208d 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_fsfe.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_fsfe.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Licensed under the GNU General Public License version 3 or later. \ No newline at end of file +Licensed under the {{GNU General Public License version 3 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_notice_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_notice_2.RULE index d4ee8b7d2d..e8d68e1c57 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_notice_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_notice_2.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU General Public License v3 or later (GPLv3+) \ No newline at end of file +{{GNU General Public License v3 or later}} (GPLv3+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_notice_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_notice_3.RULE index 86ff33eb94..f9a98a90a6 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_notice_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_notice_3.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU General Public License v3 or later \ No newline at end of file +GNU General Public License (v3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_notice_4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_notice_4.RULE index 843368a88e..75232c7b84 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_notice_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_notice_4.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -license: GNU General Public License v3 or later (GPLv3+) \ No newline at end of file +license: {{GNU General Public License v3 or later}} (GPLv3+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_2.RULE index 2b6305d66a..13d7e676e1 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_commercial-option_2.RULE @@ -4,8 +4,8 @@ is_license_notice: yes --- You can redistribute it and/or modify it under the terms of the {{GNU -General Public License }} as published by the Free Software Foundation, -{{either version 3 of the License, or (at your option) any later version}}. +General Public License as published by the Free Software Foundation, +either version 3 of the License, or (at your option) any later version}}. Licensees holding a {{valid commercial license }}may use this file in accordance with the {{commercial license agreement }}provided with the software. diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_1.RULE index eb891030f2..bc8c15c966 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_or_mit_1.RULE @@ -3,10 +3,10 @@ license_expression: gpl-3.0-plus OR mit is_license_notice: yes relevance: 100 ignorable_urls: - - http://www.opensource.org/licenses/%7B%7Bgpl-3.0%7D%7D.php - - http://www.opensource.org/licenses/%7B%7Bmit-license%7D%7D.php + - http://www.opensource.org/licenses/gpl-3.0.php + - http://www.opensource.org/licenses/mit-license.php --- @license {{dual GPL (3.0 or later) and MIT}}, at your choice. - * @license http://www.opensource.org/licenses/{{mit-license}}.php - * @license http://www.opensource.org/licenses/{{gpl-3.0}}.php \ No newline at end of file + * @license {{ http://www.opensource.org/licenses/mit-license.php }} + * @license {{ http://www.opensource.org/licenses/gpl-3.0.php }} diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_pychess.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_pychess.RULE index fa8a70c8e1..21e1f40086 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_pychess.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_pychess.RULE @@ -8,7 +8,7 @@ PyChess ist freie Software. Sie können es unter den Bedingungen der GNU General Public License, wie von der Free Software Foundation veröffentlicht, weitergeben und/oder -modifizieren, entweder gemass Version 3 der Lizenz oder (nach Ihrer Option) +modifizieren, {{entweder gemass Version 3 der Lizenz oder (nach Ihrer Option)}} jeder späteren Version. @@ -20,6 +20,6 @@ oder der VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK. Details finden Sie in der GNU General Public License. -Sie sollten ein Exemplar der GNU General Public License zusammen mit PyChess +Sie sollten ein Exemplar der {{GNU General Public License}} zusammen mit PyChess -erhalten haben. Falls nicht, schreiben Sie an die Free Software Foundation, \ No newline at end of file +erhalten haben. Falls nicht, schreiben Sie an die Free Software Foundation, diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_readme2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_readme2.RULE index 771e4a2568..5b42dada3f 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_readme2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_readme2.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- and licensed -under the terms of the GNU General Public License Version 3, or -(at your option) any later version ("GPL3+"). +under the terms of the {{GNU General Public License Version 3, or +(at your option) any later version}} ("GPL3+"). A copy of the license can be found in [legal/GPLV3](/legal/GPLv3). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_1.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_1.RULE new file mode 100644 index 0000000000..26c26ec5e6 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_1.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License version 3.0 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_10.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_10.RULE new file mode 100644 index 0000000000..c83f452794 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_10.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU [GPL-3.0]+ license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_11.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_11.RULE new file mode 100644 index 0000000000..3634aa5428 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_11.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under the GPL 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_12.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_12.RULE new file mode 100644 index 0000000000..619971d17c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_12.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License version 3 or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_13.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_13.RULE new file mode 100644 index 0000000000..9e729d24c2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_13.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU] General +Public License as published by the Free Software Foundation, +version 3 of the License (or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_14.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_14.RULE new file mode 100644 index 0000000000..473b5bb293 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_14.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License version 3 or (at your option) a later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_15.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_15.RULE new file mode 100644 index 0000000000..041e571291 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_15.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation; either version 3, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_16.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_16.RULE new file mode 100644 index 0000000000..1d681ee68e --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_16.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +version 3 * (or any later version) of GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_17.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_17.RULE new file mode 100644 index 0000000000..e6fa7fc706 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_17.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation either version 3 of the license or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_18.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_18.RULE new file mode 100644 index 0000000000..8bb1758c80 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_18.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation either version 3 of the license \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_19.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_19.RULE new file mode 100644 index 0000000000..dcc005a118 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_19.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under GPL 3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_2.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_2.RULE new file mode 100644 index 0000000000..c4eb14f555 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_2.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU [General Public License, version 3.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_20.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_20.RULE new file mode 100644 index 0000000000..ac2d2fbd24 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_20.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general public license as published by free software foundation version 3 of the license or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_21.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_21.RULE new file mode 100644 index 0000000000..889585ddea --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_21.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation, either version 3 of License, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_22.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_22.RULE new file mode 100644 index 0000000000..6073574231 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_22.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation; either version 3 of License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_23.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_23.RULE new file mode 100644 index 0000000000..2563480049 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_23.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU] General Public License as published by Free Software Foundation, version 3 of License (or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_24.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_24.RULE new file mode 100644 index 0000000000..0eee3234b8 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_24.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by " "the Free Software Foundation; either version 3 of License, or " "(at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_26.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_26.RULE new file mode 100644 index 0000000000..439a65d491 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_26.RULE @@ -0,0 +1,11 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - https://www.gnu.org/licenses/gpl.html +--- + +GNU General Public License] +(https://www.gnu.org/licenses/gpl.html) Version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_3.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_3.RULE new file mode 100644 index 0000000000..ffb0584aa2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_3.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by + the Free Software Foundation; either version 3, or (at your option) + any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_4.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_4.RULE new file mode 100644 index 0000000000..130215d626 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_4.RULE @@ -0,0 +1,10 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or (at +your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_5.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_5.RULE new file mode 100644 index 0000000000..ead8813802 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_5.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License v3.0 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_6.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_6.RULE new file mode 100644 index 0000000000..d1c9512e5c --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_6.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License version 3 can be found +in `/usr/share/common-licenses/GPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_7.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_7.RULE new file mode 100644 index 0000000000..4642ac6489 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_7.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License, either version 3 or a later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_8.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_8.RULE new file mode 100644 index 0000000000..ed71f0871f --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License Version 3 or higher \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_9.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_9.RULE new file mode 100644 index 0000000000..873913930a --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0-plus_required_phrase_9.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by + the Free Software Foundation; either version 3 of the License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_20.RULE b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_20.RULE index a0a290fc1e..5cc880f870 100644 --- a/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_20.RULE +++ b/src/licensedcode/data/rules/gpl-3.0-plus_with_gcc-exception-3.1_20.RULE @@ -3,7 +3,7 @@ license_expression: gpl-3.0-plus WITH gcc-exception-3.1 is_license_notice: yes --- -GNU Modula-2 is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free -Software Foundation; either version 3, or (at your option) any later -version. \ No newline at end of file +{{GNU Modula-2}} is free software; you can redistribute it and/or modify it under +the terms of the {{GNU General Public License}} as published by the Free +Software Foundation; {{either version 3, or (at your option)}} any later +version. diff --git a/src/licensedcode/data/rules/gpl-3.0.RULE b/src/licensedcode/data/rules/gpl-3.0.RULE index 79e65ce293..7cbd9e81e2 100644 --- a/src/licensedcode/data/rules/gpl-3.0.RULE +++ b/src/licensedcode/data/rules/gpl-3.0.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0_1.RULE b/src/licensedcode/data/rules/gpl-3.0_1.RULE index 820e02fa01..9b124065db 100644 --- a/src/licensedcode/data/rules/gpl-3.0_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_1.RULE @@ -8,6 +8,6 @@ referenced_filenames: License ======= -GNU General Public License v3.0 +{{GNU General Public License v3.0}} See [COPYING](COPYING) to see the full text. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_100.RULE b/src/licensedcode/data/rules/gpl-3.0_100.RULE index 404b1a4308..ceba35762b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_100.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_100.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or - * modify it under the terms of version 3 of the GNU General Public - * License as published by the Free Software Foundation. + * modify it under the terms of {{version 3 of the GNU General Public + * License}} as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_101.RULE b/src/licensedcode/data/rules/gpl-3.0_101.RULE index f211c22b60..d8bf97268b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_101.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_101.RULE @@ -5,14 +5,14 @@ notes: this is a V3 not a V3-plus --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation; either version 3 of the License. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_109.RULE b/src/licensedcode/data/rules/gpl-3.0_109.RULE index 31c76d528d..7f7f07a904 100644 --- a/src/licensedcode/data/rules/gpl-3.0_109.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_109.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.fsf.org/licensing/licenses/gpl-3.0.html --- -is licensed under the GNU GENERAL PUBLIC LICENSE -Version 3 (http://www.fsf.org/licensing/licenses/gpl-3.0.html) ("GPL") +is licensed under the {{GNU GENERAL PUBLIC LICENSE +Version 3}} (http://www.fsf.org/licensing/licenses/gpl-3.0.html) ("GPL") to all third parties and that license, as required by the GPL, is included in the LICENSE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_112.RULE b/src/licensedcode/data/rules/gpl-3.0_112.RULE index 01a3f8605d..345c994cdb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_112.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_112.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU General Public License (GPL) Version 3, 29 June 2007 \ No newline at end of file +{{GNU General Public License (GPL) Version 3}}, 29 June 2007 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_113.RULE b/src/licensedcode/data/rules/gpl-3.0_113.RULE index 73eec74b40..a696929e3b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_113.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_113.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -source was placed under the GNU General Public License version 3. \ No newline at end of file +source was placed under the {{GNU General Public License version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_119.RULE b/src/licensedcode/data/rules/gpl-3.0_119.RULE index 2dd6de6e04..d5cb7f8c2b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_119.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_119.RULE @@ -5,14 +5,14 @@ relevance: 100 --- is free software; you can redistribute it and/or - modify it under the terms of version 3 of the GNU General Public - License as published by the Free Software Foundation. + modify it under the terms of {{version 3 of the GNU General Public + License}} as published by the Free Software Foundation. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with ; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_120.RULE b/src/licensedcode/data/rules/gpl-3.0_120.RULE index bd70ce1b64..c296267500 100644 --- a/src/licensedcode/data/rules/gpl-3.0_120.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_120.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- mq_perf_tests is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, version 3. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation, version 3}}. mq_perf_tests is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. For the full text of the license, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_121.RULE b/src/licensedcode/data/rules/gpl-3.0_121.RULE index dec6f81d7d..e1ea40939e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_121.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_121.RULE @@ -6,12 +6,12 @@ ignorable_urls: --- mq_open_tests is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, version 3. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation, version 3}}. mq_open_tests is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. For the full text of the license, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_123.RULE b/src/licensedcode/data/rules/gpl-3.0_123.RULE index f8f4c87e31..3770ceeb71 100644 --- a/src/licensedcode/data/rules/gpl-3.0_123.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_123.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - The GNU General Public License, Version 3.0 + The {{GNU General Public License, Version 3.0}} https://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_145.RULE b/src/licensedcode/data/rules/gpl-3.0_145.RULE index 8b884fc691..35d921c17b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_145.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_145.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -gnu gpl 30 \ No newline at end of file +gnu {{gpl 30}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_146.RULE b/src/licensedcode/data/rules/gpl-3.0_146.RULE index c5d9df4e38..5b3db038de 100644 --- a/src/licensedcode/data/rules/gpl-3.0_146.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_146.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0 -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gnu gpl 3.0 \ No newline at end of file +GNU GPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_15.RULE b/src/licensedcode/data/rules/gpl-3.0_15.RULE index 4a1d96b6db..fdc6359c9a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_15.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_15.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under GNU General Public License (GPL) version 3 \ No newline at end of file +Released under {{GNU General Public License (GPL) version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_158.RULE b/src/licensedcode/data/rules/gpl-3.0_158.RULE index 4d6e31c823..23475e5cd8 100644 --- a/src/licensedcode/data/rules/gpl-3.0_158.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_158.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -COPYRIGHT = """ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 \ No newline at end of file +COPYRIGHT = """ {{GNU GENERAL PUBLIC LICENSE Version 3}}, 29 June 2007 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_159.RULE b/src/licensedcode/data/rules/gpl-3.0_159.RULE index 4c005dc024..ca232effbd 100644 --- a/src/licensedcode/data/rules/gpl-3.0_159.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_159.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -Copyright : GNU GENERAL PUBLIC LICENSE. Version 3.0 \ No newline at end of file +Copyright : {{GNU GENERAL PUBLIC LICENSE. Version 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_160.RULE b/src/licensedcode/data/rules/gpl-3.0_160.RULE index 0699dc9436..fa118dd56d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_160.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_160.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -copyright GNU GENERAL PUBLIC LICENSE v3. \ No newline at end of file +copyright {{GNU GENERAL PUBLIC LICENSE v3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_161.RULE b/src/licensedcode/data/rules/gpl-3.0_161.RULE index 93d04cc7d3..65d7e81d1a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_161.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_161.RULE @@ -8,4 +8,4 @@ ignorable_holders: - GNU General --- -copyright: GNU General Public License, version 3 (GPL-3.0) \ No newline at end of file +copyright: {{GNU General Public License, version 3}} ({{GPL-3.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_162.RULE b/src/licensedcode/data/rules/gpl-3.0_162.RULE index ac97b45d0f..109ac70ae1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_162.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_162.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -Copyright (GNU General Public License v3.0). \ No newline at end of file +Copyright ({{GNU General Public License v3.0}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_163.RULE b/src/licensedcode/data/rules/gpl-3.0_163.RULE index 5b231c344c..7762f56382 100644 --- a/src/licensedcode/data/rules/gpl-3.0_163.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_163.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.html --- -Copyright: GNU GENERAL PUBLIC LICENSE version 3 (http://www.gnu.org/licenses/gpl.html) \ No newline at end of file +Copyright: {{GNU GENERAL PUBLIC LICENSE version 3}} (http://www.gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_164.RULE b/src/licensedcode/data/rules/gpl-3.0_164.RULE index a027183224..abc8d1c644 100644 --- a/src/licensedcode/data/rules/gpl-3.0_164.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_164.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -Copyright GNU GENERAL PUBLIC LICENSE Version 3. \ No newline at end of file +Copyright {{GNU GENERAL PUBLIC LICENSE Version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_165.RULE b/src/licensedcode/data/rules/gpl-3.0_165.RULE index fda92653e9..9959a7d946 100644 --- a/src/licensedcode/data/rules/gpl-3.0_165.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_165.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -(Copyright ) GNU General Public License 3 \ No newline at end of file +(Copyright ) {{GNU General Public License 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_166.RULE b/src/licensedcode/data/rules/gpl-3.0_166.RULE index b1c1263ce7..5ed7235843 100644 --- a/src/licensedcode/data/rules/gpl-3.0_166.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_166.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -COPYRIGHT = """ GNU GENERAL PUBLIC LICENCE Version 3, 29 June 2007 \ No newline at end of file +COPYRIGHT = """ {{GNU GENERAL PUBLIC LICENCE Version 3}}, 29 June 2007 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_167.RULE b/src/licensedcode/data/rules/gpl-3.0_167.RULE index c383cc7b6f..f59150c337 100644 --- a/src/licensedcode/data/rules/gpl-3.0_167.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_167.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -Copyright : GNU GENERAL PUBLIC LICENCE. Version 3.0 \ No newline at end of file +Copyright : {{GNU GENERAL PUBLIC LICENCE. Version 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_169.RULE b/src/licensedcode/data/rules/gpl-3.0_169.RULE index 58c14103a6..19419473e6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_169.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_169.RULE @@ -8,4 +8,4 @@ ignorable_holders: - GNU General --- -copyright: GNU General Public Licence, version 3 (GPL-3.0) \ No newline at end of file +copyright: {{GNU General Public Licence, version 3}} ({{GPL-3.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_171.RULE b/src/licensedcode/data/rules/gpl-3.0_171.RULE index 443421e157..806a67f779 100644 --- a/src/licensedcode/data/rules/gpl-3.0_171.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_171.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.html --- -Copyright: GNU GENERAL PUBLIC LICENCE version 3 (http://www.gnu.org/licenses/gpl.html) \ No newline at end of file +Copyright: {{GNU GENERAL PUBLIC LICENCE version 3}} (http://www.gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_173.RULE b/src/licensedcode/data/rules/gpl-3.0_173.RULE index dc6a050919..94d93d714a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_173.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_173.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -"license": "GPL-3.0" \ No newline at end of file +License: [`gpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_177.RULE b/src/licensedcode/data/rules/gpl-3.0_177.RULE index a6b2402bee..0fe535899b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_177.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_177.RULE @@ -5,14 +5,14 @@ relevance: 100 --- // This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License version 3 +// modify it under the terms of the {{GNU General Public License version 3}} // as published by the Free Software Foundation. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. +// {{GNU General Public License}} for more details. // -// You should have received a copy of the GNU General Public License +// You should have received a copy of the {{GNU General Public License}} // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_19.RULE b/src/licensedcode/data/rules/gpl-3.0_19.RULE index 2c51247a46..bcc2a69065 100644 --- a/src/licensedcode/data/rules/gpl-3.0_19.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_19.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 \ No newline at end of file +{{GNU GENERAL PUBLIC LICENSE Version 3}}, 29 June 2007 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_198.RULE b/src/licensedcode/data/rules/gpl-3.0_198.RULE index 2d4627e2f9..037f3dd720 100644 --- a/src/licensedcode/data/rules/gpl-3.0_198.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_198.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/GPL/3.0/ --- -GNU General Public License 3 (GPLv3) +{{GNU General Public License 3}} (GPLv3) link: http://creativecommons.org/licenses/GPL/3.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_2.RULE b/src/licensedcode/data/rules/gpl-3.0_2.RULE index 3f9d5078b0..92a0583aa2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_2.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- * COPYRIGHT - * This file is distributed under the terms of the GNU General Public - * License (GPL) v3. Copies of the GPL can be obtained from: + * This file is distributed under the terms of the {{GNU General Public + * License}} (GPL) v3. Copies of the GPL can be obtained from: * ftp://prep.ai.mit.edu/pub/gnu/GPL * Each contributing author retains all rights to their own work. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_201.RULE b/src/licensedcode/data/rules/gpl-3.0_201.RULE index 90d880d8f7..28e9fa89e4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_201.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_201.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License, Version 3, +it under the terms of the {{GNU General Public License, Version 3}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_202.RULE b/src/licensedcode/data/rules/gpl-3.0_202.RULE index 2f3e82ff8e..76c2568eec 100644 --- a/src/licensedcode/data/rules/gpl-3.0_202.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_202.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 3 as published by + it under the terms of the {{GNU General Public License version 3}} as published by the Free Software Foundation; is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_204.RULE b/src/licensedcode/data/rules/gpl-3.0_204.RULE index 6f835b8a42..be8b034ed1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_204.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_204.RULE @@ -11,8 +11,8 @@ ignorable_urls: - http://www.gnu.org/philosophy/why-not-lgpl.html --- -GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 +{{GNU GENERAL PUBLIC LICENSE + Version 3}}, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies @@ -20,15 +20,15 @@ GNU GENERAL PUBLIC LICENSE Preamble - The GNU General Public License is a free, copyleft license for + The {{GNU General Public License}} is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to +the {{GNU General Public License}} is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to +{{GNU General Public License}} for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. @@ -85,7 +85,7 @@ modification follow. 0. Definitions. - "This License" refers to version 3 of the GNU General Public License. + "This License" refers to {{version 3 of the GNU General Public License}}. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. @@ -576,21 +576,21 @@ combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will +the {{GNU General Public License}} from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the +Program specifies that a certain numbered version of the {{GNU General +Public License}} "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published +{{GNU General Public License}}, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's +versions of the {{GNU General Public License}} can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. @@ -648,16 +648,16 @@ the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. @@ -679,7 +679,7 @@ if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . - The GNU General Public License does not permit incorporating your program + The {{GNU General Public License}} does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General diff --git a/src/licensedcode/data/rules/gpl-3.0_206.RULE b/src/licensedcode/data/rules/gpl-3.0_206.RULE index e255a9922e..87114556e0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_206.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_206.RULE @@ -1,9 +1,10 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 referenced_filenames: - /licenses/gpl-3.0.txt --- -/licenses/gpl-3.0.txt \ No newline at end of file +licenses/gpl-3-0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_207.RULE b/src/licensedcode/data/rules/gpl-3.0_207.RULE index 02a4057c57..07bdcba788 100644 --- a/src/licensedcode/data/rules/gpl-3.0_207.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_207.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- License: GPL-3 - The complete text of the GNU General Public License version 3 can be found in + The complete text of the {{GNU General Public License version 3}} can be found in the file `/usr/share/common-licenses/GPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_208.RULE b/src/licensedcode/data/rules/gpl-3.0_208.RULE index b796df9111..3aeb5af597 100644 --- a/src/licensedcode/data/rules/gpl-3.0_208.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_208.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- License: GPL-3 - The complete text of the GNU General Public License version 3 can be found in + The complete text of the {{GNU General Public License version 3}} can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_209.RULE b/src/licensedcode/data/rules/gpl-3.0_209.RULE index 5fc55ca12d..cde14e7671 100644 --- a/src/licensedcode/data/rules/gpl-3.0_209.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_209.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://www.gnu.org/licenses/gpl-3.0.html diff --git a/src/licensedcode/data/rules/gpl-3.0_210.RULE b/src/licensedcode/data/rules/gpl-3.0_210.RULE index bfb4a5d4e3..546d548986 100644 --- a/src/licensedcode/data/rules/gpl-3.0_210.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_210.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -gnu.org/licenses/gpl-3.0.html \ No newline at end of file +{{gnu.org/licenses/gpl-3.0}}.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_211.RULE b/src/licensedcode/data/rules/gpl-3.0_211.RULE index 80f75a2678..3ba8840dfd 100644 --- a/src/licensedcode/data/rules/gpl-3.0_211.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_211.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://www.gnu.org/licenses/gpl-3.0.txt diff --git a/src/licensedcode/data/rules/gpl-3.0_212.RULE b/src/licensedcode/data/rules/gpl-3.0_212.RULE index 1d4ad13c02..990f7c3bea 100644 --- a/src/licensedcode/data/rules/gpl-3.0_212.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_212.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -gnu.org/licenses/gpl-3.0.txt \ No newline at end of file +{{gnu.org/licenses/gpl-3.0}}.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_213.RULE b/src/licensedcode/data/rules/gpl-3.0_213.RULE index c3b9934a58..b3a9e5845d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_213.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_213.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://www.gnu.org/licenses/gpl-3.0 diff --git a/src/licensedcode/data/rules/gpl-3.0_214.RULE b/src/licensedcode/data/rules/gpl-3.0_214.RULE index 6b110e9767..b831df6442 100644 --- a/src/licensedcode/data/rules/gpl-3.0_214.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_214.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gnu.org/licenses/gpl-3.0 \ No newline at end of file + gnu.org/licenses/gpl-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_226.RULE b/src/licensedcode/data/rules/gpl-3.0_226.RULE index a66de81093..4fd2305439 100644 --- a/src/licensedcode/data/rules/gpl-3.0_226.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_226.RULE @@ -7,20 +7,20 @@ ignorable_urls: - http://www.gnu.org/philosophy/why-not-lgpl.html --- -GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 +{{GNU GENERAL PUBLIC LICENSE + Version 3}}, 29 June 2007 This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. @@ -30,7 +30,7 @@ if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . - The GNU General Public License does not permit incorporating your program + The {{GNU General Public License}} does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General diff --git a/src/licensedcode/data/rules/gpl-3.0_23.RULE b/src/licensedcode/data/rules/gpl-3.0_23.RULE index 36fee54bd2..beb837100e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_23.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_23.RULE @@ -13,7 +13,7 @@ ignorable_urls: - http://www.gnu.org/philosophy/why-not-lgpl.html --- -{{GNU General Public License v3.0}} - GNU Project - Free Software Foundation (FSF) +GNU General Public License v3.0 - GNU Project - Free Software Foundation (FSF) http://www.gnu.org/licenses/gpl-3.0.rdf GNU GENERAL PUBLIC LICENSE @@ -698,4 +698,4 @@ into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read - "http://www.gnu.org/philosophy/why-not-lgpl.html" http://www.gnu.org/philosophy/why-not-lgpl.html . + "http://www.gnu.org/philosophy/why-not-lgpl.html" http://www.gnu.org/philosophy/why-not-lgpl.html . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_230.RULE b/src/licensedcode/data/rules/gpl-3.0_230.RULE index a7ba95040e..c2d99dac95 100644 --- a/src/licensedcode/data/rules/gpl-3.0_230.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_230.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.html --- -# This software is licensed to you under the GNU General Public License, -# version 3 (GPLv3). There is NO WARRANTY for this software, express or +# This software is licensed to you under the {{GNU General Public License, +# version 3 (GPLv3}}). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. You should have received a copy of GPLv3 along with this # software; if not, see http://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_231.RULE b/src/licensedcode/data/rules/gpl-3.0_231.RULE index bf02fb196f..02c45e62f4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_231.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_231.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -# This software is licensed to you under the GNU General Public License, -# version 3 (GPLv3). There is NO WARRANTY for this software, express or +# This software is licensed to you under the {{GNU General Public License, +# version 3 (GPLv3)}}. There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. You should have received a copy of GPLv3 along with this # software; if not, see https://www.gnu.org/licenses/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_234.RULE b/src/licensedcode/data/rules/gpl-3.0_234.RULE index 5e3e80e7a0..ad90bf1b44 100644 --- a/src/licensedcode/data/rules/gpl-3.0_234.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_234.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-3.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org ignorable_holders: diff --git a/src/licensedcode/data/rules/gpl-3.0_236.RULE b/src/licensedcode/data/rules/gpl-3.0_236.RULE index 9c103e5298..39b2dda79f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_236.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_236.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under version 3 of the GNU General Public License. \ No newline at end of file +released under {{version 3 of the GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_237.RULE b/src/licensedcode/data/rules/gpl-3.0_237.RULE index 39e572a984..64b01e13a2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_237.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_237.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -version 3 of the GNU General Public License. \ No newline at end of file +version 3 of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_239.RULE b/src/licensedcode/data/rules/gpl-3.0_239.RULE index d51d77fccb..65219ca325 100644 --- a/src/licensedcode/data/rules/gpl-3.0_239.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_239.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed under the General -Public License, version 3 (no other versions!). \ No newline at end of file +licensed under the {{General +Public License, version 3}} (no other versions!). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_24.RULE b/src/licensedcode/data/rules/gpl-3.0_24.RULE index 30e48b97c9..af82101fa7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_24.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_24.RULE @@ -1,8 +1,11 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 --- -GNU GENERAL PUBLIC LICENSE Version 3 \ No newline at end of file +GNU GENERAL PUBLIC LICENSE + +Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_242.RULE b/src/licensedcode/data/rules/gpl-3.0_242.RULE index b1fe0999aa..3259aab49e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_242.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_242.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is free software. You can redistribute it and/or modify it under the terms of the GNU General Public License, version 3. \ No newline at end of file +is free software. You can redistribute it and/or modify it under the terms of the {{GNU General Public License, version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_243.RULE b/src/licensedcode/data/rules/gpl-3.0_243.RULE index b5a051cd0c..29f60a6e3f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_243.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_243.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -You can redistribute it and/or modify it under the terms of the GNU General Public License, version 3. \ No newline at end of file +You can redistribute it and/or modify it under the terms of the {{GNU General Public License, version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_244.RULE b/src/licensedcode/data/rules/gpl-3.0_244.RULE index 70d55410fd..d635e4db23 100644 --- a/src/licensedcode/data/rules/gpl-3.0_244.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_244.RULE @@ -5,4 +5,4 @@ relevance: 100 --- * This program is free software, distributed under the terms of - * the GNU General Public License Version 3. \ No newline at end of file + * the {{GNU General Public License Version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_245.RULE b/src/licensedcode/data/rules/gpl-3.0_245.RULE index d40d55fcdc..2dddb9032e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_245.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_245.RULE @@ -8,5 +8,5 @@ referenced_filenames: license License * This program is free software, distributed under the terms of - * the GNU General Public License Version 3. For more details + * the {{GNU General Public License Version 3}}. For more details * see the ef COPYING page. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_257.RULE b/src/licensedcode/data/rules/gpl-3.0_257.RULE index 1b7ef8f87e..b32b88601f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_257.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_257.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-3.0.en.html --- -`GPL-3.0` - [GNU General Public License 3.0](http://www.gnu.org/licenses/gpl-3.0.en.html) \ No newline at end of file +`{{GPL-3.0}}` - [{{GNU General Public License 3.0}}](http://www.gnu.org/licenses/gpl-3.0.en.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_258.RULE b/src/licensedcode/data/rules/gpl-3.0_258.RULE index 5170e4ef59..ee631a0f18 100644 --- a/src/licensedcode/data/rules/gpl-3.0_258.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_258.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://spdx.org/licenses/GPL-3.0-only.html --- -`GPL-3.0-only` - [GNU General Public License 3.0](https://spdx.org/licenses/GPL-3.0-only.html) \ No newline at end of file +`{{GPL-3.0-only}}` - [{{GNU General Public License 3.0}}](https://spdx.org/licenses/GPL-3.0-only.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_259.RULE b/src/licensedcode/data/rules/gpl-3.0_259.RULE index 59f5fef94b..cb96835975 100644 --- a/src/licensedcode/data/rules/gpl-3.0_259.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_259.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-3.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org ignorable_holders: diff --git a/src/licensedcode/data/rules/gpl-3.0_270.RULE b/src/licensedcode/data/rules/gpl-3.0_270.RULE index 28927370e2..d42e643b15 100644 --- a/src/licensedcode/data/rules/gpl-3.0_270.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_270.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify it under the -* terms of the GNU General Public License, version 3 as published by the Free Software +* terms of the {{GNU General Public License, version 3}} as published by the Free Software * Foundation. * -* You should have received a copy of the GNU General Public License along with this +* You should have received a copy of the {{GNU General Public License}} along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/gpl-3.0.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -* See the GNU General Public License for more details. \ No newline at end of file +* See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_271.RULE b/src/licensedcode/data/rules/gpl-3.0_271.RULE index bda6365b00..69d329c6bb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_271.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_271.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or modify it under the -* terms of the GNU General Public License, version 3 as published by the Free Software +* terms of the {{GNU General Public License, version 3}} as published by the Free Software * Foundation. * -* You should have received a copy of the GNU General Public License along with this +* You should have received a copy of the {{GNU General Public License}} along with this * program; if not, you can obtain a copy at https://www.gnu.org/licenses/gpl-3.0.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -* See the GNU General Public License for more details. \ No newline at end of file +* See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_275.RULE b/src/licensedcode/data/rules/gpl-3.0_275.RULE index 61eced5395..ea5cc84d78 100644 --- a/src/licensedcode/data/rules/gpl-3.0_275.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_275.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- # This library is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License}} as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# {{GNU General Public License}} for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the {{GNU General Public License}} # along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_277.RULE b/src/licensedcode/data/rules/gpl-3.0_277.RULE index 13bfa643c2..b57a56dba6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_277.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_277.RULE @@ -9,7 +9,7 @@ referenced_filenames: License This project is free software: you can redistribute it and/or modify it under -the terms of the GNU General Public License Version 3 as published by the Free +the terms of the {{GNU General Public License Version 3}} as published by the Free Software Foundation. No other version currently applies to this project. This project is distributed without any warranty. Please see LICENSE.txt for the full text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_278.RULE b/src/licensedcode/data/rules/gpl-3.0_278.RULE index 99a30d60a1..8561acd167 100644 --- a/src/licensedcode/data/rules/gpl-3.0_278.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_278.RULE @@ -7,7 +7,7 @@ referenced_filenames: --- This project is free software: you can redistribute it and/or modify it under -the terms of the GNU General Public License Version 3 as published by the Free +the terms of the {{GNU General Public License Version 3}} as published by the Free Software Foundation. No other version currently applies to this project. This project is distributed without any warranty. Please see LICENSE.txt for the full text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_279.RULE b/src/licensedcode/data/rules/gpl-3.0_279.RULE index 0d8301cca3..f81b0fe4ab 100644 --- a/src/licensedcode/data/rules/gpl-3.0_279.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_279.RULE @@ -7,6 +7,6 @@ relevance: 100 License This project is free software: you can redistribute it and/or modify it under -the terms of the GNU General Public License Version 3 as published by the Free +the terms of the {{GNU General Public License Version 3}} as published by the Free Software Foundation. No other version currently applies to this project. This project is distributed without any warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_28.RULE b/src/licensedcode/data/rules/gpl-3.0_28.RULE index e7b985d012..f535c285b4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_28.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_28.RULE @@ -6,12 +6,12 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, version 3. + * it under the terms of the {{GNU General Public License as published by + * the Free Software Foundation, version 3}}. * * is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * * For the full text of the license, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_280.RULE b/src/licensedcode/data/rules/gpl-3.0_280.RULE index 3c0d17b77a..f1ef3e279b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_280.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_280.RULE @@ -5,6 +5,6 @@ relevance: 100 --- This project is free software: you can redistribute it and/or modify it under -the terms of the GNU General Public License Version 3 as published by the Free +the terms of the {{GNU General Public License Version 3}} as published by the Free Software Foundation. No other version currently applies to this project. This project is distributed without any warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_283.RULE b/src/licensedcode/data/rules/gpl-3.0_283.RULE index c51aea573e..a494939e12 100644 --- a/src/licensedcode/data/rules/gpl-3.0_283.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_283.RULE @@ -5,5 +5,5 @@ relevance: 100 notes: https://github.com/WinMerge/freeimage/ --- -GNU General Public License, version 3 (GPL-3.0) +{{GNU General Public License, version 3}} ({{GPL-3.0}}) [OSI Approved License] \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_284.RULE b/src/licensedcode/data/rules/gpl-3.0_284.RULE index 4e9f1d17be..f6e077a24b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_284.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_284.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU General Public License, Version 3.0, and a copy of the license is included in this file. \ No newline at end of file +licensed under the {{GNU General Public License, Version 3.0}}, and a copy of the license is included in this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_291.RULE b/src/licensedcode/data/rules/gpl-3.0_291.RULE index 835fbb101e..b843555cd3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_291.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_291.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- * This software may be modified and distributed under the terms of the - * GNU General Public License v3.0. See the LICENSE file for details. \ No newline at end of file + * {{GNU General Public License v3.0}}. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_294.RULE b/src/licensedcode/data/rules/gpl-3.0_294.RULE index 066ae80d6e..545d5e7ed3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_294.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_294.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.html --- -This software is distributed under the terms of the GNU General Public - License v3, dated 2007/06/29 (see http://www.gnu.org/licenses/gpl.html). \ No newline at end of file +This software is distributed under the terms of the {{GNU General Public + License v3}}, dated 2007/06/29 (see http://www.gnu.org/licenses/gpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_295.RULE b/src/licensedcode/data/rules/gpl-3.0_295.RULE index bee73e8ca1..208f75cb2c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_295.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_295.RULE @@ -7,6 +7,6 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -This software is distributed under the terms of the GNU General Public License +This software is distributed under the terms of the {{GNU General Public License}} % as published by the Free Software Foundation. Further details on the GPLv3 % license can be found at http://www.gnu.org/copyleft/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_296.RULE b/src/licensedcode/data/rules/gpl-3.0_296.RULE index 738f8e93af..ce99b0da3d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_296.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_296.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is distributed under the terms of the GNU General Public License version 3 (GPLv3). \ No newline at end of file +This software is distributed under the terms of the {{GNU General Public License version 3 (GPLv3}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_3.RULE b/src/licensedcode/data/rules/gpl-3.0_3.RULE index e7e089b65f..72e4ce1090 100644 --- a/src/licensedcode/data/rules/gpl-3.0_3.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_3.RULE @@ -5,5 +5,5 @@ relevance: 100 --- the -complete text of the GNU General Public License version 3 can be found +complete text of the {{GNU General Public License version 3}} can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_311.RULE b/src/licensedcode/data/rules/gpl-3.0_311.RULE index 57f2d721b2..a81c0de1f6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_311.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_311.RULE @@ -5,4 +5,4 @@ relevance: 99 notes: typo in license id --- -License: GNU General Public License (GPL) (GNU GLP v3) \ No newline at end of file +License: {{GNU General Public License}} (GPL) (GNU GLP v3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_32.RULE b/src/licensedcode/data/rules/gpl-3.0_32.RULE index 7951d4c467..d0e776a6a9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_32.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_32.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0_331.RULE b/src/licensedcode/data/rules/gpl-3.0_331.RULE index 64a9d85aed..348cc8225d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_331.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_331.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-3.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 2007 Free Software Foundation, Inc. https://fsf.org ignorable_holders: diff --git a/src/licensedcode/data/rules/gpl-3.0_332.RULE b/src/licensedcode/data/rules/gpl-3.0_332.RULE index 53a17a95bf..2989874a8f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_332.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_332.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU General Public License version 3 \ No newline at end of file +licensed under the {{GNU General Public License version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_333.RULE b/src/licensedcode/data/rules/gpl-3.0_333.RULE index 93c021e4ef..9c8dcf1f2b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_333.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_333.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 3 as +it under the terms of the {{GNU General Public License version 3}} as published by the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_334.RULE b/src/licensedcode/data/rules/gpl-3.0_334.RULE index e133e9170c..5d8c64c434 100644 --- a/src/licensedcode/data/rules/gpl-3.0_334.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_334.RULE @@ -5,5 +5,5 @@ relevance: 100 --- You can redistribute it and/or modify -it under the terms of the GNU General Public License version 3 as +it under the terms of the {{GNU General Public License version 3}} as published by the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_337.RULE b/src/licensedcode/data/rules/gpl-3.0_337.RULE index 9c7a24ad0e..585bda5815 100644 --- a/src/licensedcode/data/rules/gpl-3.0_337.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_337.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, version 3 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation, version 3}} of the License. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -You should have received a copy of the GNU General Public License +{{GNU General Public License}} for more details. +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_338.RULE b/src/licensedcode/data/rules/gpl-3.0_338.RULE index 84ad807ec3..88f2569a88 100644 --- a/src/licensedcode/data/rules/gpl-3.0_338.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_338.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, version 3 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation, version 3}} of the License. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -You should have received a copy of the GNU General Public License +{{GNU General Public License}} for more details. +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_339.RULE b/src/licensedcode/data/rules/gpl-3.0_339.RULE index dcef5abf25..49c1827dad 100644 --- a/src/licensedcode/data/rules/gpl-3.0_339.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_339.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free Software -Foundation, version 3 of the License. +the terms of the {{GNU General Public License as published by the Free Software +Foundation, version 3}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_343.RULE b/src/licensedcode/data/rules/gpl-3.0_343.RULE index 6fe7ab1e5a..56f01fe0fe 100644 --- a/src/licensedcode/data/rules/gpl-3.0_343.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_343.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the GNU General Public License (GPLv3). \ No newline at end of file +distributed under the {{GNU General Public License}} (GPLv3). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_346.RULE b/src/licensedcode/data/rules/gpl-3.0_346.RULE index b30e6902bb..d9d5180086 100644 --- a/src/licensedcode/data/rules/gpl-3.0_346.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_346.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU General Public License (GPL 3.0) \ No newline at end of file +{{GNU General Public License}} ({{GPL 3.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_347.RULE b/src/licensedcode/data/rules/gpl-3.0_347.RULE index 18261a396c..f3ab42de56 100644 --- a/src/licensedcode/data/rules/gpl-3.0_347.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_347.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU General Public License (GNU) 3.0 \ No newline at end of file +{{GNU General Public License}} (GNU) 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_348.RULE b/src/licensedcode/data/rules/gpl-3.0_348.RULE index 476496a6c5..cf211c7890 100644 --- a/src/licensedcode/data/rules/gpl-3.0_348.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_348.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU General Public licence (GPL 3.0) \ No newline at end of file +GNU General Public licence ({{GPL 3.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_350.RULE b/src/licensedcode/data/rules/gpl-3.0_350.RULE index 1c9c91e914..5d29a1bc22 100644 --- a/src/licensedcode/data/rules/gpl-3.0_350.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_350.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU General Public License Version 3, \ No newline at end of file +licensed under the terms of the {{GNU General Public License Version 3}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_351.RULE b/src/licensedcode/data/rules/gpl-3.0_351.RULE index 7b0e480990..f37f95ce37 100644 --- a/src/licensedcode/data/rules/gpl-3.0_351.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_351.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the terms of the GNU General Public License version 3. \ No newline at end of file +distributed under the terms of the {{GNU General Public License version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_354.RULE b/src/licensedcode/data/rules/gpl-3.0_354.RULE index e4808c97e4..4efd1ed682 100644 --- a/src/licensedcode/data/rules/gpl-3.0_354.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_354.RULE @@ -8,15 +8,15 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License version 3 as published +it under the terms of the {{GNU General Public License version 3}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License with +You should have received a copy of the {{GNU General Public License}} with your Debian GNU system, in /usr/share/common-licenses/GPL-3, or with the Debian GNU source package as the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, diff --git a/src/licensedcode/data/rules/gpl-3.0_355.RULE b/src/licensedcode/data/rules/gpl-3.0_355.RULE index 988535b838..57aa41b1fa 100644 --- a/src/licensedcode/data/rules/gpl-3.0_355.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_355.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 3 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 3}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the complete text of the GNU General Public License +On Debian systems, the complete text of the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_356.RULE b/src/licensedcode/data/rules/gpl-3.0_356.RULE index cc2fbea6f6..e91d6f1a59 100644 --- a/src/licensedcode/data/rules/gpl-3.0_356.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_356.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU General Public License v3 \ No newline at end of file +Licensed under the {{GNU General Public License v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_358.RULE b/src/licensedcode/data/rules/gpl-3.0_358.RULE index e655edb38f..2c4969a6ec 100644 --- a/src/licensedcode/data/rules/gpl-3.0_358.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_358.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -LICENSE INFORMATION: GPL 3.0 \ No newline at end of file +LICENSE INFORMATION: {{GPL 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_359.RULE b/src/licensedcode/data/rules/gpl-3.0_359.RULE index 321d67b4dd..8093dcb8f3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_359.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_359.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 3 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 3}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA / \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_360.RULE b/src/licensedcode/data/rules/gpl-3.0_360.RULE index 0b6f09e4be..c1597883c5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_360.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_360.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License, version 3, +it under the terms of the {{GNU General Public License, version 3}}, as published by the Free Software Foundation. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_361.RULE b/src/licensedcode/data/rules/gpl-3.0_361.RULE index 6e5177684e..8430b39d5e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_361.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_361.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License, version 3, +it under the terms of the {{GNU General Public License, version 3}}, as published by the Free Software Foundation. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_362.RULE b/src/licensedcode/data/rules/gpl-3.0_362.RULE index 856f78a963..9dcec3158f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_362.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_362.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0_37.RULE b/src/licensedcode/data/rules/gpl-3.0_37.RULE index 72569ff654..3d9493fce0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_37.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_37.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU General Public license v3.0 \ No newline at end of file +GNU General Public License v3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_374.RULE b/src/licensedcode/data/rules/gpl-3.0_374.RULE index 28563957b0..b34c0cbee6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_374.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_374.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 3 of the License. \ No newline at end of file +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 3}} of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_375.RULE b/src/licensedcode/data/rules/gpl-3.0_375.RULE index b441645629..d75c7147bd 100644 --- a/src/licensedcode/data/rules/gpl-3.0_375.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_375.RULE @@ -9,14 +9,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 3 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 3}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING3. If not see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_376.RULE b/src/licensedcode/data/rules/gpl-3.0_376.RULE index 27e12f9183..4550725986 100644 --- a/src/licensedcode/data/rules/gpl-3.0_376.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_376.RULE @@ -9,14 +9,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation; version 3 of the License. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation; version 3}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; see the file COPYING3. If not see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_377.RULE b/src/licensedcode/data/rules/gpl-3.0_377.RULE index 826749948c..4bf4d22ee3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_377.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_377.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -UNDER THE TERMS OF THE GPL 3.0 LICENSE \ No newline at end of file +UNDER THE TERMS OF THE {{GPL 3.0}} LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_378.RULE b/src/licensedcode/data/rules/gpl-3.0_378.RULE index 5715f9935a..f4f86a252a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_378.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_378.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GNU General Public License, version 3 \ No newline at end of file +the {{GNU General Public License, version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_38.RULE b/src/licensedcode/data/rules/gpl-3.0_38.RULE index fc0663ecd4..866cadc950 100644 --- a/src/licensedcode/data/rules/gpl-3.0_38.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_38.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU General Public license 3.0 \ No newline at end of file +GNU General Public License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_381.RULE b/src/licensedcode/data/rules/gpl-3.0_381.RULE index 56fe3a9714..7ef06625d9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_381.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_381.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING.GPLv3 --- -COPYING.GPLv3: GNU General Public License version 3 \ No newline at end of file +COPYING.GPLv3: {{GNU General Public License version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_382.RULE b/src/licensedcode/data/rules/gpl-3.0_382.RULE index ed4a64e43d..78ccbe6e15 100644 --- a/src/licensedcode/data/rules/gpl-3.0_382.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_382.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GPL-3.0 \ No newline at end of file +licensed under the terms of the {{GPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_383.RULE b/src/licensedcode/data/rules/gpl-3.0_383.RULE index d9a90a3701..90a663324f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_383.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_383.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed UNDER THE TERMS OF THE GPL 3.0 LICENSE \ No newline at end of file +licensed UNDER THE TERMS OF THE {{GPL 3.0}} LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_384.RULE b/src/licensedcode/data/rules/gpl-3.0_384.RULE index 732ace7042..18406a5d42 100644 --- a/src/licensedcode/data/rules/gpl-3.0_384.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_384.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU General Public License v3 ("GPL v3"). \ No newline at end of file +licensed under the terms of the {{GNU General Public License v3}} ("GPL v3"). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_387.RULE b/src/licensedcode/data/rules/gpl-3.0_387.RULE index 21972dc8f1..f1b55b7cbe 100644 --- a/src/licensedcode/data/rules/gpl-3.0_387.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_387.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of version 3 of the GNU General Public License \ No newline at end of file +licensed under the terms of {{version 3 of the GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_39.RULE b/src/licensedcode/data/rules/gpl-3.0_39.RULE index 8febcb1f6f..b9aa1ad311 100644 --- a/src/licensedcode/data/rules/gpl-3.0_39.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_39.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU General Public license v3 \ No newline at end of file +GNU GENERAL PUBLIC LICENSE v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_392.RULE b/src/licensedcode/data/rules/gpl-3.0_392.RULE index c82ebc970b..99e735fb00 100644 --- a/src/licensedcode/data/rules/gpl-3.0_392.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_392.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the GPL 3.0 \ No newline at end of file +This software is licensed under the {{GPL 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_394.RULE b/src/licensedcode/data/rules/gpl-3.0_394.RULE index 58d932e532..dee66ca1b2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_394.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_394.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-3 --- -On Debian systems, the complete text of the GNU General Public - License version 3 can be found in '/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public + License version 3}} can be found in '/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_395.RULE b/src/licensedcode/data/rules/gpl-3.0_395.RULE index e6e101e334..fa1b2d4bec 100644 --- a/src/licensedcode/data/rules/gpl-3.0_395.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_395.RULE @@ -6,4 +6,4 @@ referenced_filenames: - /usr/share/common-licenses/GPL-3 --- -The GNU General Public License v3 text is contained in /usr/share/common-licenses/GPL-3. \ No newline at end of file +The {{GNU General Public License v3}} text is contained in /usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_396.RULE b/src/licensedcode/data/rules/gpl-3.0_396.RULE index 09b53c695c..39a50d54cb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_396.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_396.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GPL-3.0 \ No newline at end of file +the {{GPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_4.RULE b/src/licensedcode/data/rules/gpl-3.0_4.RULE index 9f4417367d..1e093d427e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_4.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_4.RULE @@ -5,9 +5,9 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -Alternatively, this file may be used under the terms of the GNU - General Public License version 3.0 as published by the Free Software +Alternatively, this file may be used under the terms of the {{GNU + General Public License version 3.0}} as published by the Free Software Foundation and appearing in the file LICENSE.GPL included in the packaging of this file. Please review the following information to - ensure the GNU General Public License version 3.0 requirements will be + ensure the {{GNU General Public License version 3.0}} requirements will be met: http://www.gnu.org/copyleft/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_40.RULE b/src/licensedcode/data/rules/gpl-3.0_40.RULE index 3e26427891..d1fc4ba08c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_40.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_40.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-3.0.en.html --- -All source code writen by me falls under the terms of the GNU General Public Licence Version 3. See: https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file +All source code writen by me falls under the terms of the {{GNU General Public Licence Version 3}}. See: https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_400.RULE b/src/licensedcode/data/rules/gpl-3.0_400.RULE index 2576d76e3e..eb1fe6ae49 100644 --- a/src/licensedcode/data/rules/gpl-3.0_400.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_400.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- is free software: you can redistribute it and/or modify it -under the terms of the GNU General Public License, version 3. The +under the terms of the {{GNU General Public License, version 3}}. The complete license terms can be found in the file GPL3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_403.RULE b/src/licensedcode/data/rules/gpl-3.0_403.RULE index d7130ffbae..a0881045bc 100644 --- a/src/licensedcode/data/rules/gpl-3.0_403.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_403.RULE @@ -8,5 +8,5 @@ notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 --- -On Debian systems, the full text of the GNU General Public License +On Debian systems, the full text of the {{GNU General Public License}} version 2 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_404.RULE b/src/licensedcode/data/rules/gpl-3.0_404.RULE index 1277fe0253..e2f7de8c4a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_404.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_404.RULE @@ -5,10 +5,10 @@ referenced_filenames: - /usr/share/common-licenses/GPL-3 --- -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the full text of the GNU General Public License - version 3 can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file + On Debian systems, the full text of the {{GNU General Public License + version 3}} can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_405.RULE b/src/licensedcode/data/rules/gpl-3.0_405.RULE index 9fc7dd7bf3..52b29217b7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_405.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_405.RULE @@ -3,5 +3,5 @@ license_expression: gpl-3.0 is_license_reference: yes --- -On Debian systems, the full text of the GNU General Public License - version 3 can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file +On Debian systems, the full text of the {{GNU General Public License + version 3}} can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_413.RULE b/src/licensedcode/data/rules/gpl-3.0_413.RULE index 962750d039..77f742e7d8 100644 --- a/src/licensedcode/data/rules/gpl-3.0_413.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_413.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU GENERAL PUBLIC LICENSE v3.0 \ No newline at end of file +Licensed under the {{GNU GENERAL PUBLIC LICENSE v3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_414.RULE b/src/licensedcode/data/rules/gpl-3.0_414.RULE index f317de9b92..241e6c0a5c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_414.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_414.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-3 --- -The complete text of the GNU General Public License can be found +The complete text of the {{GNU General Public License}} can be found in "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_415.RULE b/src/licensedcode/data/rules/gpl-3.0_415.RULE index 71f9b7f110..6f8fce3d0b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_415.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_415.RULE @@ -6,4 +6,4 @@ ignorable_urls: --- General Public License (GPL) Version 3 -Details of these licenses can be found at: www.gnu.org/licenses/gpl-3.0.html \ No newline at end of file +Details of these licenses can be found at: {{ www.gnu.org/licenses/gpl-3.0.html }} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_416.RULE b/src/licensedcode/data/rules/gpl-3.0_416.RULE index cbe4495a46..1f53328fb6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_416.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_416.RULE @@ -5,5 +5,5 @@ referenced_filenames: - COPYING --- -# This software is distributed under the terms of the GNU General Public # -# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". \ No newline at end of file +# This software is distributed under the terms of the {{GNU General Public # +# Licence version 3}} (GPL Version 3), copied verbatim in the file "COPYING". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_417.RULE b/src/licensedcode/data/rules/gpl-3.0_417.RULE index 8383282e6a..feb0350195 100644 --- a/src/licensedcode/data/rules/gpl-3.0_417.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_417.RULE @@ -6,15 +6,15 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License version 3 + modify it under the terms of the {{GNU General Public License version 3}} as published by the Free Software Foundation. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . diff --git a/src/licensedcode/data/rules/gpl-3.0_418.RULE b/src/licensedcode/data/rules/gpl-3.0_418.RULE index 3852d3ccb9..c20ef7c54f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_418.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_418.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License version 3 + modify it under the terms of the {{GNU General Public License version 3}} as published by the Free Software Foundation. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_42.RULE b/src/licensedcode/data/rules/gpl-3.0_42.RULE index 5014c11eff..c1c56fc6e2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_42.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_42.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl-3.0.html --- -code is released under the GNU General Public Licence version 3.0 (http://www.gnu.org/licenses/gpl-3.0.html) \ No newline at end of file +code is released under the {{GNU General Public Licence version 3.0}} (http://www.gnu.org/licenses/gpl-3.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_420.RULE b/src/licensedcode/data/rules/gpl-3.0_420.RULE index 3802094581..685a969eeb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_420.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_420.RULE @@ -6,4 +6,4 @@ ignorable_urls: --- library is released under the -GNU General Public License, version 3 (GPLv3) \ No newline at end of file +{{GNU General Public License, version 3 (GPLv3}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_421.RULE b/src/licensedcode/data/rules/gpl-3.0_421.RULE index a4ad822dea..655c7c889f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_421.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_421.RULE @@ -5,6 +5,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL-3 --- -On Debian GNU/Linux systems, the complete text of the GNU General -Public License is in `/usr/share/common-licenses/GPL', version 3 of this +On Debian GNU/Linux systems, the complete text of the {{GNU General +Public License}} is in `/usr/share/common-licenses/GPL', version 3 of this license in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_425.RULE b/src/licensedcode/data/rules/gpl-3.0_425.RULE index ae7b0884da..be6c1abb6e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_425.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_425.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 3 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 3}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU General Public License +On Debian GNU/Linux systems, the complete text of the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_426.RULE b/src/licensedcode/data/rules/gpl-3.0_426.RULE index 1c9aba6363..1e2ce5a067 100644 --- a/src/licensedcode/data/rules/gpl-3.0_426.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_426.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-3 --- -On Debian GNU/Linux systems, the full text of the GNU General Public License +On Debian GNU/Linux systems, the full text of the {{GNU General Public License}} version 2 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_427.RULE b/src/licensedcode/data/rules/gpl-3.0_427.RULE index 9e07296f28..e98b7507d1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_427.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_427.RULE @@ -7,15 +7,15 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License version 3 + modify it under the terms of the {{GNU General Public License version 3}} as published by the Free Software Foundation. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. . - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . diff --git a/src/licensedcode/data/rules/gpl-3.0_428.RULE b/src/licensedcode/data/rules/gpl-3.0_428.RULE index 2b0435f8b4..a6b30d4129 100644 --- a/src/licensedcode/data/rules/gpl-3.0_428.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_428.RULE @@ -6,10 +6,10 @@ referenced_filenames: - /usr/share/common-licenses/GPL-3 --- -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian GNU/Linux systems, the full text of the GNU General Public License - version 3 can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file + On Debian GNU/Linux systems, the full text of the {{GNU General Public License + version 3}} can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_429.RULE b/src/licensedcode/data/rules/gpl-3.0_429.RULE index 63bfac41d4..92c3521a4d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_429.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_429.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -On Debian GNU/Linux systems, the full text of the GNU General Public License - version 3 can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file +On Debian GNU/Linux systems, the full text of the {{GNU General Public License + version 3}} can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_430.RULE b/src/licensedcode/data/rules/gpl-3.0_430.RULE index a2579058f3..e743d1d993 100644 --- a/src/licensedcode/data/rules/gpl-3.0_430.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_430.RULE @@ -7,5 +7,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-3 --- -On Debian GNU/Linux systems, the complete text of the GNU General Public - License version 3 can be found in '/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU General Public + License version 3}} can be found in '/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_432.RULE b/src/licensedcode/data/rules/gpl-3.0_432.RULE index c1251e49c8..08c387a860 100644 --- a/src/licensedcode/data/rules/gpl-3.0_432.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_432.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -Copyright: GNU GENERAL PUBLIC LICENSE version 3 (https://www.gnu.org/licenses/gpl.html) \ No newline at end of file +Copyright: {{GNU GENERAL PUBLIC LICENSE version 3}} (https://www.gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_433.RULE b/src/licensedcode/data/rules/gpl-3.0_433.RULE index 6e967479c7..b99173be69 100644 --- a/src/licensedcode/data/rules/gpl-3.0_433.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_433.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License, Version 3, +it under the terms of the {{GNU General Public License, Version 3}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_434.RULE b/src/licensedcode/data/rules/gpl-3.0_434.RULE index cb3694e122..f7edad1182 100644 --- a/src/licensedcode/data/rules/gpl-3.0_434.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_434.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or - * modify it under the terms of version 3 of the GNU General Public - * License as published by the Free Software Foundation. + * modify it under the terms of {{version 3 of the GNU General Public + * License}} as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_435.RULE b/src/licensedcode/data/rules/gpl-3.0_435.RULE index 1db632c8b3..f6d7cd32d9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_435.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_435.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- mq_open_tests is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, version 3. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation, version 3}}. mq_open_tests is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. For the full text of the license, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_436.RULE b/src/licensedcode/data/rules/gpl-3.0_436.RULE index 9ba01ef5a7..95d6b35998 100644 --- a/src/licensedcode/data/rules/gpl-3.0_436.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_436.RULE @@ -6,9 +6,9 @@ ignorable_urls: - https://www.gnu.org/licenses --- -* This program is licensed to you under Version 3 only of the GNU General Public License as published by the Free Software Foundation. +* This program is licensed to you under {{Version 3 only of the GNU General Public License}} as published by the Free Software Foundation. * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - * See the GNU General Public License Version 3 for more details. - * You should have received a copy of the GNU General Public License Version 3 along with this program. + * See the {{GNU General Public License Version 3}} for more details. + * You should have received a copy of the {{GNU General Public License Version 3}} along with this program. * If not, see https://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_439.RULE b/src/licensedcode/data/rules/gpl-3.0_439.RULE index 466a42ff2c..eaf04c24ec 100644 --- a/src/licensedcode/data/rules/gpl-3.0_439.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_439.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, version 3. + * it under the terms of the {{GNU General Public License as published by + * the Free Software Foundation, version 3}}. * * is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * * For the full text of the license, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_44.RULE b/src/licensedcode/data/rules/gpl-3.0_44.RULE index 9ebd876bb4..317d103d53 100644 --- a/src/licensedcode/data/rules/gpl-3.0_44.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_44.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- which is licensed under the - * GNU General Public Licence version 3 (GPLv3). You can redistribute + * {{GNU General Public Licence version 3}} (GPLv3). You can redistribute * and/or modify it under the terms of the GPLv3, and you must not use * this file except in compliance with the GPLv3. * diff --git a/src/licensedcode/data/rules/gpl-3.0_440.RULE b/src/licensedcode/data/rules/gpl-3.0_440.RULE index fc871190ce..1ee2a5ed1c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_440.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_440.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- mq_perf_tests is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, version 3. +it under the terms of the {{GNU General Public License as published by +the Free Software Foundation, version 3}}. mq_perf_tests is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. For the full text of the license, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_441.RULE b/src/licensedcode/data/rules/gpl-3.0_441.RULE index ff9c404e5d..1e1b16fb72 100644 --- a/src/licensedcode/data/rules/gpl-3.0_441.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_441.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -This software is distributed under the terms of the GNU General Public - License v3, dated 2007/06/29 (see https://www.gnu.org/licenses/gpl.html). \ No newline at end of file +This software is distributed under the terms of the {{GNU General Public + License v3}}, dated 2007/06/29 (see https://www.gnu.org/licenses/gpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_442.RULE b/src/licensedcode/data/rules/gpl-3.0_442.RULE index 094bc9b2da..86bb83dd61 100644 --- a/src/licensedcode/data/rules/gpl-3.0_442.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_442.RULE @@ -7,20 +7,20 @@ ignorable_urls: - https://www.gnu.org/philosophy/why-not-lgpl.html --- -GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 +{{GNU GENERAL PUBLIC LICENSE + Version 3}}, 29 June 2007 This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by + it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. @@ -30,7 +30,7 @@ if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . - The GNU General Public License does not permit incorporating your program + The {{GNU General Public License}} does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General diff --git a/src/licensedcode/data/rules/gpl-3.0_443.RULE b/src/licensedcode/data/rules/gpl-3.0_443.RULE index c9053ad3c2..3001e23936 100644 --- a/src/licensedcode/data/rules/gpl-3.0_443.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_443.RULE @@ -6,9 +6,9 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -Alternatively, this file may be used under the terms of the GNU - General Public License version 3.0 as published by the Free Software +Alternatively, this file may be used under the terms of the {{GNU + General Public License version 3.0}} as published by the Free Software Foundation and appearing in the file LICENSE.GPL included in the packaging of this file. Please review the following information to - ensure the GNU General Public License version 3.0 requirements will be + ensure the {{GNU General Public License version 3.0}} requirements will be met: https://www.gnu.org/copyleft/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_444.RULE b/src/licensedcode/data/rules/gpl-3.0_444.RULE index 26b5d5b491..c02cc5f4fe 100644 --- a/src/licensedcode/data/rules/gpl-3.0_444.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_444.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-3.0.html --- -code is released under the GNU General Public Licence version 3.0 (https://www.gnu.org/licenses/gpl-3.0.html) \ No newline at end of file +code is released under the {{GNU General Public Licence version 3.0}} (https://www.gnu.org/licenses/gpl-3.0.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_447.RULE b/src/licensedcode/data/rules/gpl-3.0_447.RULE index b3a62f1b09..483136615d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_447.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_447.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-3.0 is_license_text: yes -relevance: 100 notes: this text is damaged by some script... ignorable_urls: - https://www.gnu.org/licenses/ diff --git a/src/licensedcode/data/rules/gpl-3.0_448.RULE b/src/licensedcode/data/rules/gpl-3.0_448.RULE index f8c14fa4c4..dd7c25cfbd 100644 --- a/src/licensedcode/data/rules/gpl-3.0_448.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_448.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-3.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org/ http://fsf.org ignorable_holders: diff --git a/src/licensedcode/data/rules/gpl-3.0_45.RULE b/src/licensedcode/data/rules/gpl-3.0_45.RULE index d26a88d37a..92918b6465 100644 --- a/src/licensedcode/data/rules/gpl-3.0_45.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_45.RULE @@ -8,4 +8,4 @@ ignorable_holders: - GNU General --- -copyright = GNU General Public Licence, version 3, \ No newline at end of file +copyright = {{GNU General Public Licence, version 3}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_450.RULE b/src/licensedcode/data/rules/gpl-3.0_450.RULE index c8ce3601db..ee71bb9ea1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_450.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_450.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-3.0 is_license_text: yes -relevance: 100 notes: a damaged gpl 3 text ignorable_copyrights: - Copyright 2007 Free Software Foundation, Inc. http://fsf.org/ http://fsf.org diff --git a/src/licensedcode/data/rules/gpl-3.0_452.RULE b/src/licensedcode/data/rules/gpl-3.0_452.RULE index cba21314fa..8f22e1cdba 100644 --- a/src/licensedcode/data/rules/gpl-3.0_452.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_452.RULE @@ -7,6 +7,6 @@ ignorable_urls: - https://www.gnu.org/copyleft/gpl.html --- -This software is distributed under the terms of the GNU General Public License +This software is distributed under the terms of the {{GNU General Public License}} % as published by the Free Software Foundation. Further details on the GPLv3 % license can be found at https://www.gnu.org/copyleft/gpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_453.RULE b/src/licensedcode/data/rules/gpl-3.0_453.RULE index 70aaaaa83f..b99410a0ea 100644 --- a/src/licensedcode/data/rules/gpl-3.0_453.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_453.RULE @@ -8,13 +8,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it under -the terms of the GNU General Public License version 3, as published by the +the terms of the {{GNU General Public License version 3}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, -SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_454.RULE b/src/licensedcode/data/rules/gpl-3.0_454.RULE index 0dfc52a5cd..ef0bae91ca 100644 --- a/src/licensedcode/data/rules/gpl-3.0_454.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_454.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- # This library is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# it under the terms of the {{GNU General Public License}} as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# {{GNU General Public License}} for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the {{GNU General Public License}} # along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_455.RULE b/src/licensedcode/data/rules/gpl-3.0_455.RULE index b8a04aca84..f77c2c3ab5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_455.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_455.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-3.0 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 2007 Free Software Foundation, Inc. http://fsf.org ignorable_holders: diff --git a/src/licensedcode/data/rules/gpl-3.0_457.RULE b/src/licensedcode/data/rules/gpl-3.0_457.RULE index 0b9f647f64..d2976e42a3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_457.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_457.RULE @@ -9,15 +9,15 @@ ignorable_urls: License: GPL-3 This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License version 3, as + it under the terms of the {{GNU General Public License version 3}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . The complete text of the GPL version 3 can be seen in diff --git a/src/licensedcode/data/rules/gpl-3.0_458.RULE b/src/licensedcode/data/rules/gpl-3.0_458.RULE index 6f6724e17f..8fae4799b7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_458.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_458.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- which is licensed under the - * GNU General Public Licence version 3 (GPLv3). You can redistribute + * {{GNU General Public Licence version 3}} (GPLv3). You can redistribute * and/or modify it under the terms of the GPLv3, and you must not use * this file except in compliance with the GPLv3. * diff --git a/src/licensedcode/data/rules/gpl-3.0_460.RULE b/src/licensedcode/data/rules/gpl-3.0_460.RULE index e976ed024b..90303f1c45 100644 --- a/src/licensedcode/data/rules/gpl-3.0_460.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_460.RULE @@ -8,6 +8,6 @@ ignorable_urls: - https://www.gnu.org/licenses/ --- -is distributed under the GNU General Public -License (v3). A copy of this can be found in the COPYING.txt file or +is distributed under the {{GNU General Public +License (v3}}). A copy of this can be found in the COPYING.txt file or at https://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_461.RULE b/src/licensedcode/data/rules/gpl-3.0_461.RULE index 79c81a00d1..a95bcb2bc0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_461.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_461.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl.html --- -Copyright: GNU GENERAL PUBLIC LICENCE version 3 (https://www.gnu.org/licenses/gpl.html) \ No newline at end of file +Copyright: {{GNU GENERAL PUBLIC LICENCE version 3}} (https://www.gnu.org/licenses/gpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_462.RULE b/src/licensedcode/data/rules/gpl-3.0_462.RULE index 6393070d03..0a2052001a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_462.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_462.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 3 as published by + it under the terms of the {{GNU General Public License version 3}} as published by the Free Software Foundation; is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_463.RULE b/src/licensedcode/data/rules/gpl-3.0_463.RULE index 8875e3305e..b93eeb35b1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_463.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_463.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-3.0.en.html --- -`GPL-3.0` - [GNU General Public License 3.0](https://www.gnu.org/licenses/gpl-3.0.en.html) \ No newline at end of file +`{{GPL-3.0}}` - [{{GNU General Public License 3.0}}](https://www.gnu.org/licenses/gpl-3.0.en.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_465.RULE b/src/licensedcode/data/rules/gpl-3.0_465.RULE index d98115bf09..9d9ee7857b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_465.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_465.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- LICENSE -GNU General Public Licence, Version 3. https://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file +{{GNU General Public Licence, Version 3}}. https://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_466.RULE b/src/licensedcode/data/rules/gpl-3.0_466.RULE index 254e103120..12d0f50caf 100644 --- a/src/licensedcode/data/rules/gpl-3.0_466.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_466.RULE @@ -1,7 +1,6 @@ --- license_expression: gpl-3.0 is_license_text: yes -relevance: 100 minimum_coverage: 10 notes: license text as published by SPDX ignorable_copyrights: diff --git a/src/licensedcode/data/rules/gpl-3.0_467.RULE b/src/licensedcode/data/rules/gpl-3.0_467.RULE index a65e660c73..3b43554752 100644 --- a/src/licensedcode/data/rules/gpl-3.0_467.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_467.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- library is released under the -GNU General Public License, version 3 (GPLv3) \ No newline at end of file +{{GNU General Public License, version 3 (GPLv3}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_47.RULE b/src/licensedcode/data/rules/gpl-3.0_47.RULE index a397ac7241..9f3d630ed1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_47.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_47.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed under the terms of the GNU General Public Licence version 3 \ No newline at end of file +Distributed under the terms of the {{GNU General Public Licence version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_474.RULE b/src/licensedcode/data/rules/gpl-3.0_474.RULE index 1e57ae4dca..afc8834b08 100644 --- a/src/licensedcode/data/rules/gpl-3.0_474.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_474.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The GNU General Public License v3 \ No newline at end of file +The {{GNU General Public License v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_475.RULE b/src/licensedcode/data/rules/gpl-3.0_475.RULE index 402cc21dd2..73074c04b5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_475.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_475.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 3 of the License. + it under the terms of the {{GNU General Public License as published by + the Free Software Foundation; version 3}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the text of the GNU General Public License +On Debian systems, the text of the {{GNU General Public License}} can be found in /usr/share/common-licenses/GPL-3 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_476.RULE b/src/licensedcode/data/rules/gpl-3.0_476.RULE index 35134c4685..84d96b9935 100644 --- a/src/licensedcode/data/rules/gpl-3.0_476.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_476.RULE @@ -7,5 +7,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-3 --- -On Debian systems, the text of the GNU General Public - License version 3 can be found in '/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian systems, the text of the {{GNU General Public + License version 3}} can be found in '/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_477.RULE b/src/licensedcode/data/rules/gpl-3.0_477.RULE index 7af5052b4c..4b2f14785a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_477.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_477.RULE @@ -8,5 +8,5 @@ notes: the license is a mix of GPL 2 and GPL 3. We take GPL here as it was seen in this context See also https://salsa.debian.org/pombredanne-guest/apache2/-/commit/0711baed327514834751dff77ae37d6b2c6c03c4 --- -On Debian systems, the text of the GNU General Public License +On Debian systems, the text of the {{GNU General Public License}} version 2 can be found in the file `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_478.RULE b/src/licensedcode/data/rules/gpl-3.0_478.RULE index 1754b2a3bc..35ae7d33db 100644 --- a/src/licensedcode/data/rules/gpl-3.0_478.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_478.RULE @@ -6,10 +6,10 @@ referenced_filenames: - /usr/share/common-licenses/GPL-3 --- -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the text of the GNU General Public License - version 3 can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file + On Debian systems, the text of the {{GNU General Public License + version 3}} can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_479.RULE b/src/licensedcode/data/rules/gpl-3.0_479.RULE index fe10d3ab4f..3bb07d9467 100644 --- a/src/licensedcode/data/rules/gpl-3.0_479.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_479.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -On Debian systems, the text of the GNU General Public License - version 3 can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file +On Debian systems, the text of the {{GNU General Public License + version 3}} can be found in the file `/usr/share/common-licenses/GPL-3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_48.RULE b/src/licensedcode/data/rules/gpl-3.0_48.RULE index 4073134e98..dee9208b09 100644 --- a/src/licensedcode/data/rules/gpl-3.0_48.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_48.RULE @@ -5,4 +5,4 @@ relevance: 100 --- LICENCE -Code should be assumed to be under the GNU General Public Licence, version 3. \ No newline at end of file +Code should be assumed to be under the {{GNU General Public Licence, version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_481.RULE b/src/licensedcode/data/rules/gpl-3.0_481.RULE index ad52a79d50..72389d3420 100644 --- a/src/licensedcode/data/rules/gpl-3.0_481.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_481.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-3 --- -On Debian systems, the complete text of the GNU General Public License - version 3 can be found in file "/usr/share/common-licenses/GPL-3". \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public License + version 3}} can be found in file "/usr/share/common-licenses/GPL-3". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_482.RULE b/src/licensedcode/data/rules/gpl-3.0_482.RULE index 9df8f29aa6..e8c5f928e4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_482.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_482.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-3 --- -On Debian systems, the complete text of the GNU General - Public License 3 can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General + Public License 3}} can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_49.RULE b/src/licensedcode/data/rules/gpl-3.0_49.RULE index abe1458cc3..272ef6dc6f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_49.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_49.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is licensed under the terms of the GNU General Public Licence version 3. \ No newline at end of file +is licensed under the terms of the {{GNU General Public Licence version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_491.RULE b/src/licensedcode/data/rules/gpl-3.0_491.RULE index 976b3e8bad..64d7ac291d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_491.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_491.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - The GNU General Public License, Version 3.0 + The {{GNU General Public License, Version 3.0}} http://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_492.RULE b/src/licensedcode/data/rules/gpl-3.0_492.RULE index efda04ecaf..bc1997f16e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_492.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_492.RULE @@ -7,5 +7,5 @@ ignorable_urls: - The GNU General Public License, Version 3.0 + The {{GNU General Public License, Version 3.0}} https://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_493.RULE b/src/licensedcode/data/rules/gpl-3.0_493.RULE index 9ce0c32270..4bd0ad8753 100644 --- a/src/licensedcode/data/rules/gpl-3.0_493.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_493.RULE @@ -7,5 +7,5 @@ ignorable_urls: - The GNU General Public License, Version 3.0 + The {{GNU General Public License, Version 3.0}} http://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_494.RULE b/src/licensedcode/data/rules/gpl-3.0_494.RULE index 94e24bd942..b0d7f523df 100644 --- a/src/licensedcode/data/rules/gpl-3.0_494.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_494.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GPL-3.0 GNU General Public License v3.0 \ No newline at end of file +{{GPL-3.0}} {{GNU General Public License v3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_495.RULE b/src/licensedcode/data/rules/gpl-3.0_495.RULE index a2fb0dc615..88daa3d64b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_495.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_495.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GNU General Public License v3.0 GPL-3.0 \ No newline at end of file +{{GNU General Public License v3.0}} {{GPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_496.RULE b/src/licensedcode/data/rules/gpl-3.0_496.RULE index 06fea907ed..d1430839fe 100644 --- a/src/licensedcode/data/rules/gpl-3.0_496.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_496.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : GPL-3.0 \ No newline at end of file +licenseid : {{GPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_497.RULE b/src/licensedcode/data/rules/gpl-3.0_497.RULE index 062aefdeb1..817b1d876f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_497.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_497.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : GNU General Public License v3.0 \ No newline at end of file +name : {{GNU General Public License v3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_498.RULE b/src/licensedcode/data/rules/gpl-3.0_498.RULE index 84d3fe23ab..8b27e47b44 100644 --- a/src/licensedcode/data/rules/gpl-3.0_498.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_498.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: GNU General Public License v3.0 only \ No newline at end of file +name: {{GNU General Public License v3.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_499.RULE b/src/licensedcode/data/rules/gpl-3.0_499.RULE index fb72b936bb..0fd1c09d3f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_499.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_499.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GPL-3.0-only GNU General Public License v3.0 only \ No newline at end of file +{{GPL-3.0-only}} {{GNU General Public License v3.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_5.RULE b/src/licensedcode/data/rules/gpl-3.0_5.RULE index 53a058abe9..945b841bc2 100644 --- a/src/licensedcode/data/rules/gpl-3.0_5.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_5.RULE @@ -5,7 +5,7 @@ is_license_notice: yes 0. Definitions. - "This License" refers to version 3 of the GNU General Public License. + "This License" refers to {{version 3 of the GNU General Public License}}. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. @@ -496,21 +496,21 @@ combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will +the {{GNU General Public License}} from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the +Program specifies that a certain numbered version of the {{GNU General +Public License}} "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published +{{GNU General Public License}}, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's +versions of the {{GNU General Public License}} can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. diff --git a/src/licensedcode/data/rules/gpl-3.0_501.RULE b/src/licensedcode/data/rules/gpl-3.0_501.RULE index 57d6fd1b1e..82366495b0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_501.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_501.RULE @@ -6,4 +6,4 @@ referenced_filenames: - License.txt --- -Licensed under the GNU GENERAL PUBLIC LICENSE Version 3 . See LICENSE.txt in the project root for license information. \ No newline at end of file +Licensed under the {{GNU GENERAL PUBLIC LICENSE Version 3}} . See LICENSE.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_503.RULE b/src/licensedcode/data/rules/gpl-3.0_503.RULE index 8add84aa29..500c793aa6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_503.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_503.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU General Public License v3.0 only GPL-3.0-only \ No newline at end of file +{{GNU General Public License v3.0 only}} {{GPL-3.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_504.RULE b/src/licensedcode/data/rules/gpl-3.0_504.RULE index ad2e362a37..2b622f2430 100644 --- a/src/licensedcode/data/rules/gpl-3.0_504.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_504.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0 is_license_tag: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/gpl-3.0_505.RULE b/src/licensedcode/data/rules/gpl-3.0_505.RULE index 1da895f2a2..be8d11af9d 100644 --- a/src/licensedcode/data/rules/gpl-3.0_505.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_505.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GNU General Public License v3.0 only \ No newline at end of file +license: {{GNU General Public License v3.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_506.RULE b/src/licensedcode/data/rules/gpl-3.0_506.RULE index 76af1c208e..b4ceac5abe 100644 --- a/src/licensedcode/data/rules/gpl-3.0_506.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_506.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: GPL-3.0-only \ No newline at end of file +licenseId: {{GPL-3.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_507.RULE b/src/licensedcode/data/rules/gpl-3.0_507.RULE index 3b926fa29f..367180b8b3 100644 --- a/src/licensedcode/data/rules/gpl-3.0_507.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_507.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GPL-3.0 GNU General Public License v3.0 only \ No newline at end of file +{{GPL-3.0}} {{GNU General Public License v3.0 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_508.RULE b/src/licensedcode/data/rules/gpl-3.0_508.RULE index 86da064a23..666192d602 100644 --- a/src/licensedcode/data/rules/gpl-3.0_508.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_508.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU General Public License v3.0 only GPL-3.0 \ No newline at end of file +{{GNU General Public License v3.0 only}} {{GPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_509.RULE b/src/licensedcode/data/rules/gpl-3.0_509.RULE index a5247228bd..19079f9016 100644 --- a/src/licensedcode/data/rules/gpl-3.0_509.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_509.RULE @@ -1,7 +1,7 @@ --- license_expression: gpl-3.0 is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0_51.RULE b/src/licensedcode/data/rules/gpl-3.0_51.RULE index fb75c9ae32..4b4939c0ee 100644 --- a/src/licensedcode/data/rules/gpl-3.0_51.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_51.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/quick-guide-gplv3.html --- -Licence: GNU General Public licence version 3 \ No newline at end of file +Licence: {{GNU General Public licence version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_510.RULE b/src/licensedcode/data/rules/gpl-3.0_510.RULE index e95b4a7134..50cba5f280 100644 --- a/src/licensedcode/data/rules/gpl-3.0_510.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_510.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- - GENERAL PUBLIC LICENSE, version 3 (GPL-3.0) + {{GENERAL PUBLIC LICENSE, version 3}} ({{GPL-3.0}}) http://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_511.RULE b/src/licensedcode/data/rules/gpl-3.0_511.RULE index d312454779..5f9820cfa5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_511.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_511.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.txt --- -GENERAL PUBLIC LICENSE, version 3 (GPL-3.0) +{{GENERAL PUBLIC LICENSE, version 3}} ({{GPL-3.0}}) http://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_516.RULE b/src/licensedcode/data/rules/gpl-3.0_516.RULE index d4c5422b8c..2697bc8dd0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_516.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_516.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0_517.RULE b/src/licensedcode/data/rules/gpl-3.0_517.RULE index 38b90699fb..10bb01fe7a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_517.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_517.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.gnu.org/licenses/gpl.txt --- -# Licensed under the GNU General Public License, version 3. +# Licensed under the {{GNU General Public License, version 3}}. # See the file http://www.gnu.org/licenses/gpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_518.RULE b/src/licensedcode/data/rules/gpl-3.0_518.RULE index aba1b53527..33c31a4866 100644 --- a/src/licensedcode/data/rules/gpl-3.0_518.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_518.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0_52.RULE b/src/licensedcode/data/rules/gpl-3.0_52.RULE index 52f601b914..2004cfd865 100644 --- a/src/licensedcode/data/rules/gpl-3.0_52.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_52.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-3.0.html --- -Licence: GNU General Public Licence version 3 \ No newline at end of file +Licence: {{GNU General Public Licence version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_520.RULE b/src/licensedcode/data/rules/gpl-3.0_520.RULE index fa6df7cfe2..42c60fb793 100644 --- a/src/licensedcode/data/rules/gpl-3.0_520.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_520.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0_521.RULE b/src/licensedcode/data/rules/gpl-3.0_521.RULE index ddb5285968..06960ec4c7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_521.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_521.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: GPL-3.0-only \ No newline at end of file +licenses: {{GPL-3.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_529.RULE b/src/licensedcode/data/rules/gpl-3.0_529.RULE index 3560fb7761..e09e3fa093 100644 --- a/src/licensedcode/data/rules/gpl-3.0_529.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_529.RULE @@ -3,4 +3,4 @@ license_expression: gpl-3.0 is_license_notice: yes --- -You are licensed to use this software under the terms of the GNU General Public License (GPL) version 3. \ No newline at end of file +You are licensed to use this software under the terms of the {{GNU General Public License (GPL) version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_530.RULE b/src/licensedcode/data/rules/gpl-3.0_530.RULE index 5749f9cff2..281875c0c4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_530.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_530.RULE @@ -3,4 +3,4 @@ license_expression: gpl-3.0 is_license_notice: yes --- -You are licensed to use this software under the terms of the GNU General Public License (GPL) versions 3. \ No newline at end of file +You are licensed to use this software under the terms of the {{GNU General Public License}} (GPL) versions 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_533.RULE b/src/licensedcode/data/rules/gpl-3.0_533.RULE index 5c9f5ecfa2..d0e43955a4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_533.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_533.RULE @@ -3,4 +3,4 @@ license_expression: gpl-3.0 is_license_notice: yes --- -You are also licensed to use this software under the terms of the GNU General Public License (GPL) version 3. \ No newline at end of file +You are also licensed to use this software under the terms of the {{GNU General Public License (GPL) version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_534.RULE b/src/licensedcode/data/rules/gpl-3.0_534.RULE index 21ee8c9fed..f175529868 100644 --- a/src/licensedcode/data/rules/gpl-3.0_534.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_534.RULE @@ -3,4 +3,4 @@ license_expression: gpl-3.0 is_license_notice: yes --- -You are also licensed to use this software under the terms of the GNU General Public License (GPL) versions 3. \ No newline at end of file +You are also licensed to use this software under the terms of the {{GNU General Public License}} (GPL) versions 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_537.RULE b/src/licensedcode/data/rules/gpl-3.0_537.RULE index 066e64c509..c962ae4c5a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_537.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_537.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU General Public License (GPL) versions 3. \ No newline at end of file +{{GNU General Public License}} (GPL) versions 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_538.RULE b/src/licensedcode/data/rules/gpl-3.0_538.RULE index 5ac256719f..b7a0ebfd41 100644 --- a/src/licensedcode/data/rules/gpl-3.0_538.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_538.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0_54.RULE b/src/licensedcode/data/rules/gpl-3.0_54.RULE index a3790e3051..92be2bb3b7 100644 --- a/src/licensedcode/data/rules/gpl-3.0_54.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_54.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -LICENCE: GNU General Public Licence version 3. \ No newline at end of file +LICENCE: {{GNU General Public Licence version 3}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_540.RULE b/src/licensedcode/data/rules/gpl-3.0_540.RULE index b1363a3b08..89bffd2daf 100644 --- a/src/licensedcode/data/rules/gpl-3.0_540.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_540.RULE @@ -8,5 +8,5 @@ ignorable_urls: --- License -This library and utilities are licensed under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html +This library and utilities are licensed under the [{{GNU General Public License v3.0}}](https://www.gnu.org/licenses/gpl-3.0.en.html also included in the repository in the `COPYING.GPLv3` file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_541.RULE b/src/licensedcode/data/rules/gpl-3.0_541.RULE index c46187d38f..6f6247faa6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_541.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_541.RULE @@ -7,5 +7,5 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-3.0.en.html --- -licensed under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html +licensed under the [{{GNU General Public License v3.0}}](https://www.gnu.org/licenses/gpl-3.0.en.html also included in the repository in the `COPYING.GPLv3` file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_542.RULE b/src/licensedcode/data/rules/gpl-3.0_542.RULE index 3f162debf9..d74b9bb6fc 100644 --- a/src/licensedcode/data/rules/gpl-3.0_542.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_542.RULE @@ -7,4 +7,4 @@ ignorable_urls: License -This library and utilities are licensed under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file +This library and utilities are licensed under the [{{GNU General Public License v3.0}}](https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_543.RULE b/src/licensedcode/data/rules/gpl-3.0_543.RULE index 1e72e130a1..1057b22306 100644 --- a/src/licensedcode/data/rules/gpl-3.0_543.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_543.RULE @@ -5,4 +5,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-3.0.en.html --- -licensed under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file +licensed under the [{{GNU General Public License v3.0}}](https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_544.RULE b/src/licensedcode/data/rules/gpl-3.0_544.RULE index 52ce40d644..947ebc9f6b 100644 --- a/src/licensedcode/data/rules/gpl-3.0_544.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_544.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/gpl-3.0.en.html --- -GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file +{{GNU General Public License v3.0}}](https://www.gnu.org/licenses/gpl-3.0.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_548.RULE b/src/licensedcode/data/rules/gpl-3.0_548.RULE index 62bf0b83a2..e859cf3f0e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_548.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_548.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Licensed under {{GNU General Public License}} (GPL) {{v3}}. -You are free to modify this source. \ No newline at end of file +Licensed under {{GNU General Public License (GPL) v3}}. +You are free to modify this source. diff --git a/src/licensedcode/data/rules/gpl-3.0_55.RULE b/src/licensedcode/data/rules/gpl-3.0_55.RULE index 74d7ca4c36..b5e3efeb9c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_55.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_55.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -license 'GNU General Public Licence, version 3.0' \ No newline at end of file +license '{{GNU General Public Licence, version 3.0}}' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_552.RULE b/src/licensedcode/data/rules/gpl-3.0_552.RULE index ee0d803a06..d4b96f30da 100644 --- a/src/licensedcode/data/rules/gpl-3.0_552.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_552.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License 3.0 \ No newline at end of file +released under the {{GNU General Public License 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_553.RULE b/src/licensedcode/data/rules/gpl-3.0_553.RULE index 6d0f1eadd0..2755752ec6 100644 --- a/src/licensedcode/data/rules/gpl-3.0_553.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_553.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License version 3.0 \ No newline at end of file +released under the {{GNU General Public License version 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_554.RULE b/src/licensedcode/data/rules/gpl-3.0_554.RULE index dce871cf4c..0c98ad6e80 100644 --- a/src/licensedcode/data/rules/gpl-3.0_554.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_554.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License v3.0 \ No newline at end of file +released under the {{GNU General Public License v3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_555.RULE b/src/licensedcode/data/rules/gpl-3.0_555.RULE index bb288ae4c0..1148015df4 100644 --- a/src/licensedcode/data/rules/gpl-3.0_555.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_555.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU General Public License v3 \ No newline at end of file +released under the {{GNU General Public License v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_557.RULE b/src/licensedcode/data/rules/gpl-3.0_557.RULE index 214fdf2332..79d276162e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_557.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_557.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public - License version 3, as published by the Free Software Foundation. + modify it under the terms of the {{GNU General Public + License version 3}}, as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. - You should have received a copy of the GNU General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_559.RULE b/src/licensedcode/data/rules/gpl-3.0_559.RULE index dc3f52ab28..0612370b29 100644 --- a/src/licensedcode/data/rules/gpl-3.0_559.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_559.RULE @@ -12,7 +12,7 @@ ignorable_urls: * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_56.RULE b/src/licensedcode/data/rules/gpl-3.0_56.RULE index ce3951a8cd..d4061e81dc 100644 --- a/src/licensedcode/data/rules/gpl-3.0_56.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_56.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -LICENCE: GNU General Public Licence version 3. See LICENCE file for details. \ No newline at end of file +LICENCE: {{GNU General Public Licence version 3}}. See LICENCE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_560.RULE b/src/licensedcode/data/rules/gpl-3.0_560.RULE index ecd3926866..8472a556cb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_560.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_560.RULE @@ -6,5 +6,5 @@ referenced_filenames: --- you can redistribute it and/or modify it under the terms of -* the GNU General Public License as published by the Free Software Foundation, either version -* 3 of the License.See LICENSE for details \ No newline at end of file +* the {{GNU General Public License}} as published by the Free Software Foundation, either version +* {{3 of the License.}}See LICENSE for details diff --git a/src/licensedcode/data/rules/gpl-3.0_561.RULE b/src/licensedcode/data/rules/gpl-3.0_561.RULE index 8a2d0ad221..d379609c9f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_561.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_561.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- is free software: you can redistribute -it and/or modify it under the terms of the GNU General Public License +it and/or modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, either version 3 of the License. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_562.RULE b/src/licensedcode/data/rules/gpl-3.0_562.RULE index 835df05801..63ceec8790 100644 --- a/src/licensedcode/data/rules/gpl-3.0_562.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_562.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- * is free software: you can redistribute - * it and/or modify it under the terms of the GNU General Public License + * it and/or modify it under the terms of the {{GNU General Public License}} * as published by the Free Software Foundation, either version 3. * * is distributed in the hope that it will * be useful, but WITHOUT ANY WARRANTY; without even the implied warranty * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with . * If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_563.RULE b/src/licensedcode/data/rules/gpl-3.0_563.RULE index 8ca2998f0d..42b4ddf592 100644 --- a/src/licensedcode/data/rules/gpl-3.0_563.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_563.RULE @@ -5,12 +5,12 @@ ignorable_urls: - https://www.gnu.org/licenses/ --- -# This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License +# This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU General Public License}} # as published by the Free Software Foundation, either version 3 of the License # This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; # without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# See the GNU General Public License for more details. +# See the {{GNU General Public License}} for more details. -# You should have received a copy of the GNU General Public License along with this program. +# You should have received a copy of the {{GNU General Public License}} along with this program. # If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_57.RULE b/src/licensedcode/data/rules/gpl-3.0_57.RULE index 82337e460c..089758357a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_57.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_57.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Licensed under GNU General Public Licence version 3 \ No newline at end of file +Licensed under {{GNU General Public Licence version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_572.RULE b/src/licensedcode/data/rules/gpl-3.0_572.RULE index 89c4971589..629039ea81 100644 --- a/src/licensedcode/data/rules/gpl-3.0_572.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_572.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -It under the terms of the GNU General Public License as published by +It under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, either version 3 of the License. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_573.RULE b/src/licensedcode/data/rules/gpl-3.0_573.RULE index f2a291200f..0ee9902833 100644 --- a/src/licensedcode/data/rules/gpl-3.0_573.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_573.RULE @@ -3,6 +3,6 @@ license_expression: gpl-3.0 is_license_notice: yes --- -This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License. +This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, either version 3 of the License. -This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. \ No newline at end of file +This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_574.RULE b/src/licensedcode/data/rules/gpl-3.0_574.RULE index 8e51f90685..e5464f12eb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_574.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_574.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under GPL-3.0 \ No newline at end of file +This software is licensed under {{GPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_576.RULE b/src/licensedcode/data/rules/gpl-3.0_576.RULE index 2c7094c245..e0584f70a1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_576.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_576.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU/General Public License version 3.0) \ No newline at end of file +GNU General Public License, Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_59.RULE b/src/licensedcode/data/rules/gpl-3.0_59.RULE index 0f71b96e4b..d99f374e9a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_59.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_59.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The application is licenced under GNU General Public Licence version 3 \ No newline at end of file +The application is licenced under {{GNU General Public Licence version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_6.RULE b/src/licensedcode/data/rules/gpl-3.0_6.RULE index 0403b00026..9299df0373 100644 --- a/src/licensedcode/data/rules/gpl-3.0_6.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_6.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/gpl-3.0_608.RULE b/src/licensedcode/data/rules/gpl-3.0_608.RULE index 9e882d36fa..a58b65ec2c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_608.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_608.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under the terms and conditions of the GPLv3 \ No newline at end of file +Released {{under the terms and conditions of the GPLv3}} diff --git a/src/licensedcode/data/rules/gpl-3.0_609.RULE b/src/licensedcode/data/rules/gpl-3.0_609.RULE new file mode 100644 index 0000000000..1ecb6105c9 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_609.RULE @@ -0,0 +1,14 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + +License: GPL-3 + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 3. + . + On Debian systems, the complete text of version 3 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-3' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_61.RULE b/src/licensedcode/data/rules/gpl-3.0_61.RULE index b12fc90696..ed1c6f1b51 100644 --- a/src/licensedcode/data/rules/gpl-3.0_61.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_61.RULE @@ -3,5 +3,5 @@ license_expression: gpl-3.0 is_license_notice: yes --- -this software is distributed under the terms of the GNU General Public -Licence version 3 (GPL Version 3), copied verbatim in the file "LICENCE". \ No newline at end of file +this software is distributed under the terms of the {{GNU General Public +Licence version 3}} (GPL Version 3), copied verbatim in the file "LICENCE". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_610.RULE b/src/licensedcode/data/rules/gpl-3.0_610.RULE new file mode 100644 index 0000000000..5d6cd5cd56 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_610.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +{{Samba is Free Software licensed under the GNU General Public License}} diff --git a/src/licensedcode/data/rules/gpl-3.0_611.RULE b/src/licensedcode/data/rules/gpl-3.0_611.RULE new file mode 100644 index 0000000000..3674696e96 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_611.RULE @@ -0,0 +1,13 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +referenced_filenames: + - /usr/share/common-licenses/GPL-3 +--- + +This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 3. + . + On Debian systems, the complete text of version 3 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-3' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_612.RULE b/src/licensedcode/data/rules/gpl-3.0_612.RULE new file mode 100644 index 0000000000..78f5b9ae0d --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_612.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +--- + +License: GPL-3 + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_613.RULE b/src/licensedcode/data/rules/gpl-3.0_613.RULE new file mode 100644 index 0000000000..3087d4e925 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_613.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +--- + +This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 3. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_614.RULE b/src/licensedcode/data/rules/gpl-3.0_614.RULE new file mode 100644 index 0000000000..549df93f31 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_614.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +This file is {{distributed under the same license as the samba}} package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_615.RULE b/src/licensedcode/data/rules/gpl-3.0_615.RULE new file mode 100644 index 0000000000..225bba3716 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_615.RULE @@ -0,0 +1,7 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +relevance: 100 +--- + +This file is {{distributed under the same license as samba}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_616.RULE b/src/licensedcode/data/rules/gpl-3.0_616.RULE new file mode 100644 index 0000000000..6f38872542 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_616.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +is_continuous: yes +relevance: 100 +--- + +{{distributed under the same license as samba}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_62.RULE b/src/licensedcode/data/rules/gpl-3.0_62.RULE index f47ad8f7b4..b72f2e0d16 100644 --- a/src/licensedcode/data/rules/gpl-3.0_62.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_62.RULE @@ -5,5 +5,5 @@ referenced_filenames: - gpl.txt --- -This application is made available under the GNU General Public Licence, -version 3. The full text of this licence can found in the file "gpl-3.0.txt". \ No newline at end of file +This application is made available under the {{GNU General Public Licence, +version 3}}. The full text of this licence can found in the file "{{gpl-3.0}}.txt". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_63.RULE b/src/licensedcode/data/rules/gpl-3.0_63.RULE index 4a0a823be3..cdc0403272 100644 --- a/src/licensedcode/data/rules/gpl-3.0_63.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_63.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- LICENSE -GNU General Public Licence, Version 3. http://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file +{{GNU General Public Licence, Version 3}}. http://www.gnu.org/licenses/gpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_64.RULE b/src/licensedcode/data/rules/gpl-3.0_64.RULE index 82bda17cf8..27939e5a5f 100644 --- a/src/licensedcode/data/rules/gpl-3.0_64.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_64.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Licenced under GNU General Public Licence version 3 \ No newline at end of file +Licenced under {{GNU General Public Licence version 3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_68.RULE b/src/licensedcode/data/rules/gpl-3.0_68.RULE index 4b909c6509..15d36cfa6a 100644 --- a/src/licensedcode/data/rules/gpl-3.0_68.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_68.RULE @@ -5,9 +5,9 @@ ignorable_urls: - http://www.gnu.org/licenses --- -* This program is licensed to you under Version 3 only of the GNU General Public License as published by the Free Software Foundation. +* This program is licensed to you under {{Version 3 only of the GNU General Public License}} as published by the Free Software Foundation. * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - * See the GNU General Public License Version 3 for more details. - * You should have received a copy of the GNU General Public License Version 3 along with this program. + * See the {{GNU General Public License Version 3}} for more details. + * You should have received a copy of the {{GNU General Public License Version 3}} along with this program. * If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_69.RULE b/src/licensedcode/data/rules/gpl-3.0_69.RULE index 95e7e68e81..20cdd53bf0 100644 --- a/src/licensedcode/data/rules/gpl-3.0_69.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_69.RULE @@ -6,5 +6,5 @@ relevance: 100 This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU General Public License Version 3 for more +PARTICULAR PURPOSE. See the {{GNU General Public License Version 3}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_70.RULE b/src/licensedcode/data/rules/gpl-3.0_70.RULE index 15d5d77102..1497c97e45 100644 --- a/src/licensedcode/data/rules/gpl-3.0_70.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_70.RULE @@ -8,6 +8,6 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -is distributed under the GNU General Public -License (v3). A copy of this can be found in the COPYING.txt file or +is distributed under the {{GNU General Public +License (v3}}). A copy of this can be found in the COPYING.txt file or at http://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_71.RULE b/src/licensedcode/data/rules/gpl-3.0_71.RULE index 3d60740b21..6cada4ec69 100644 --- a/src/licensedcode/data/rules/gpl-3.0_71.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_71.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -is available under the terms of the GPL-3.0. See `COPYING` for details. \ No newline at end of file +is available under the terms of the {{GPL-3.0}}. See `COPYING` for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_71_1.RULE b/src/licensedcode/data/rules/gpl-3.0_71_1.RULE index 2aa4d802b5..6ca0eef652 100644 --- a/src/licensedcode/data/rules/gpl-3.0_71_1.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_71_1.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License -is available under the terms of the GPL-3.0. See `COPYING` for details. \ No newline at end of file +is available under the terms of the {{GPL-3.0}}. See `COPYING` for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_72.RULE b/src/licensedcode/data/rules/gpl-3.0_72.RULE index abe120ce67..09991b1cb5 100644 --- a/src/licensedcode/data/rules/gpl-3.0_72.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_72.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the terms of the GPL-3.0 \ No newline at end of file +under the terms of the {{GPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_75.RULE b/src/licensedcode/data/rules/gpl-3.0_75.RULE index 9b085a80ae..50f3ee2bea 100644 --- a/src/licensedcode/data/rules/gpl-3.0_75.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_75.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://choosealicense.com/licenses/gpl-3.0 --- -License: [`gpl-3.0`](http://choosealicense.com/licenses/gpl-3.0/) \ No newline at end of file +{{License: [`gpl-3.0}}`](http://choosealicense.com/licenses/gpl-3.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_78.RULE b/src/licensedcode/data/rules/gpl-3.0_78.RULE index f1d32e7240..db282c26e9 100644 --- a/src/licensedcode/data/rules/gpl-3.0_78.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_78.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU General Public License (GPL) version 3 \ No newline at end of file +GNU General Public License (GPL) Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_8.RULE b/src/licensedcode/data/rules/gpl-3.0_8.RULE index dfa4162167..aabc2b833c 100644 --- a/src/licensedcode/data/rules/gpl-3.0_8.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_8.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -On Debian systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General +Public License}} can be found in `{{/usr/share/common-licenses/GPL-3}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_85.RULE b/src/licensedcode/data/rules/gpl-3.0_85.RULE index 6e21db7df9..0b1cce3ffb 100644 --- a/src/licensedcode/data/rules/gpl-3.0_85.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_85.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU General Public License (v3 or later) \ No newline at end of file +under the {{GNU General Public License (v3 or later}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_88.RULE b/src/licensedcode/data/rules/gpl-3.0_88.RULE index 9ed4ffb02e..06c479e644 100644 --- a/src/licensedcode/data/rules/gpl-3.0_88.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_88.RULE @@ -1,7 +1,9 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -General Public License version 3 \ No newline at end of file +General +Public License, version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_92.RULE b/src/licensedcode/data/rules/gpl-3.0_92.RULE index 7279c158b5..b197a21368 100644 --- a/src/licensedcode/data/rules/gpl-3.0_92.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_92.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The complete text of the GNU General Public License version 3 is as follows: \ No newline at end of file +The complete text of the {{GNU General Public License version 3}} is as follows: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_93.RULE b/src/licensedcode/data/rules/gpl-3.0_93.RULE index f3c3eb2c7b..114abffb12 100644 --- a/src/licensedcode/data/rules/gpl-3.0_93.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_93.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 referenced_filenames: - /usr/share/common-licenses/GPL-3 diff --git a/src/licensedcode/data/rules/gpl-3.0_96.RULE b/src/licensedcode/data/rules/gpl-3.0_96.RULE index 9f5ec3617f..e0b4660083 100644 --- a/src/licensedcode/data/rules/gpl-3.0_96.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_96.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; version 3 of the License. + * it under the terms of the {{GNU General Public License as published by + * the Free Software Foundation; version 3}} of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * {{GNU General Public License}} for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the {{GNU General Public License}} * along with this program. If not, see http://www.gnu.org/licenses/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_97.RULE b/src/licensedcode/data/rules/gpl-3.0_97.RULE index f5d58e8246..82cf200987 100644 --- a/src/licensedcode/data/rules/gpl-3.0_97.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_97.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- # This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License as published by the Free Software -# Foundation; version 3. +# the terms of the {{GNU General Public License as published by the Free Software +# Foundation; version 3}}. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more # details. # -# You should have received a copy of the GNU General Public License along with +# You should have received a copy of the {{GNU General Public License}} along with # this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_98.RULE b/src/licensedcode/data/rules/gpl-3.0_98.RULE index 3be4d6cd85..7b4016bb2e 100644 --- a/src/licensedcode/data/rules/gpl-3.0_98.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_98.RULE @@ -5,10 +5,10 @@ minimum_coverage: 50 --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, version 3 of the License. + * it under the terms of the {{GNU General Public License as published by + * the Free Software Foundation, version 3}} of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. \ No newline at end of file + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_99.RULE b/src/licensedcode/data/rules/gpl-3.0_99.RULE index fea004c830..fea60bd908 100644 --- a/src/licensedcode/data/rules/gpl-3.0_99.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_99.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or - * modify it under the terms of version 3 of the GNU General Public - * License as published by the Free Software Foundation. + * modify it under the terms of {{version 3 of the GNU General Public + * License}} as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * General Public License}} for more details. * - * You should have received a copy of the GNU General Public - * License along with this program; if not, write to the + * You should have received a copy of the {{GNU General Public + * License}} along with this program; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_gpl_30_bare_words.RULE b/src/licensedcode/data/rules/gpl-3.0_gpl_30_bare_words.RULE index 4629fa05ae..f357bc5db1 100644 --- a/src/licensedcode/data/rules/gpl-3.0_gpl_30_bare_words.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_gpl_30_bare_words.RULE @@ -1,8 +1,8 @@ --- license_expression: gpl-3.0 is_license_tag: yes -is_continuous: yes +is_required_phrase: yes relevance: 60 --- -{{gpl 30}} \ No newline at end of file +gpl 30 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_only.RULE b/src/licensedcode/data/rules/gpl-3.0_only.RULE index e2dbbd9ce9..c79b6abe38 100644 --- a/src/licensedcode/data/rules/gpl-3.0_only.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_only.RULE @@ -7,13 +7,13 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it under -the terms of the GNU General Public License version 3, as published by the +the terms of the {{GNU General Public License version 3}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranties of MERCHANTABILITY, -SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -General Public License for more details. +SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +General Public License}} for more details. -You should have received a copy of the GNU General Public License along with +You should have received a copy of the {{GNU General Public License}} along with this program. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_only_2.RULE b/src/licensedcode/data/rules/gpl-3.0_only_2.RULE index c77db0aaf7..d87477ab07 100644 --- a/src/licensedcode/data/rules/gpl-3.0_only_2.RULE +++ b/src/licensedcode/data/rules/gpl-3.0_only_2.RULE @@ -8,15 +8,15 @@ ignorable_urls: License: GPL-3 This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License version 3, as + it under the terms of the {{GNU General Public License version 3}}, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program. If not, see . The complete text of the GPL version 3 can be seen in diff --git a/src/licensedcode/data/rules/gpl-3.0_required_phrase_1.RULE b/src/licensedcode/data/rules/gpl-3.0_required_phrase_1.RULE new file mode 100644 index 0000000000..129e148e13 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_required_phrase_1.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_required_phrase_2.RULE b/src/licensedcode/data/rules/gpl-3.0_required_phrase_2.RULE new file mode 100644 index 0000000000..ef92092666 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_required_phrase_2.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by +the Free Software Foundation, version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_required_phrase_3.RULE b/src/licensedcode/data/rules/gpl-3.0_required_phrase_3.RULE new file mode 100644 index 0000000000..e4643809ac --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_required_phrase_3.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU GENERAL PUBLIC LICENCE Version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_required_phrase_4.RULE b/src/licensedcode/data/rules/gpl-3.0_required_phrase_4.RULE new file mode 100644 index 0000000000..2b1c5c8d25 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_required_phrase_4.RULE @@ -0,0 +1,9 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License, +# version 3 (GPLv3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_required_phrase_5.RULE b/src/licensedcode/data/rules/gpl-3.0_required_phrase_5.RULE new file mode 100644 index 0000000000..f8c72686a1 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_required_phrase_5.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +Version 3 only of the GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_required_phrase_6.RULE b/src/licensedcode/data/rules/gpl-3.0_required_phrase_6.RULE new file mode 100644 index 0000000000..e424be76a2 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_required_phrase_6.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU GENERAL PUBLIC LICENCE. Version 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_required_phrase_7.RULE b/src/licensedcode/data/rules/gpl-3.0_required_phrase_7.RULE new file mode 100644 index 0000000000..6e42b660af --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_required_phrase_7.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Public License as published by Free Software Foundation, version 3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_required_phrase_8.RULE b/src/licensedcode/data/rules/gpl-3.0_required_phrase_8.RULE new file mode 100644 index 0000000000..dccda90c43 --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_required_phrase_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +Version 3 only of GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl-3.0_required_phrase_9.RULE b/src/licensedcode/data/rules/gpl-3.0_required_phrase_9.RULE new file mode 100644 index 0000000000..b7a5f2b75f --- /dev/null +++ b/src/licensedcode/data/rules/gpl-3.0_required_phrase_9.RULE @@ -0,0 +1,8 @@ +--- +license_expression: gpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +version 3 of GNU General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl2_bare_word_only.RULE b/src/licensedcode/data/rules/gpl2_bare_word_only.RULE index 61ee1d8882..fb9b8b5ef2 100644 --- a/src/licensedcode/data/rules/gpl2_bare_word_only.RULE +++ b/src/licensedcode/data/rules/gpl2_bare_word_only.RULE @@ -1,6 +1,6 @@ --- license_expression: gpl-2.0 -is_license_reference: yes +is_license_clue: yes relevance: 50 --- diff --git a/src/licensedcode/data/rules/gpl_1.RULE b/src/licensedcode/data/rules/gpl_1.RULE index ed0be49722..64cc895ce1 100644 --- a/src/licensedcode/data/rules/gpl_1.RULE +++ b/src/licensedcode/data/rules/gpl_1.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is licenced under the GPL \ No newline at end of file +This code is licenced {{under the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_10.RULE b/src/licensedcode/data/rules/gpl_10.RULE index 4a0a8e04bc..bae50126e9 100644 --- a/src/licensedcode/data/rules/gpl_10.RULE +++ b/src/licensedcode/data/rules/gpl_10.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All code released under the GPL, see /usr/share/common-licenses/GPL \ No newline at end of file +All code released {{under the GPL}}, see {{/usr/share/common-licenses/GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_102.RULE b/src/licensedcode/data/rules/gpl_102.RULE index c82fa6ad55..d203422399 100644 --- a/src/licensedcode/data/rules/gpl_102.RULE +++ b/src/licensedcode/data/rules/gpl_102.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This file is licenced under the GPL. \ No newline at end of file +This file is licenced {{under the GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_106.RULE b/src/licensedcode/data/rules/gpl_106.RULE index 4f494f08ef..a0d8724ccb 100644 --- a/src/licensedcode/data/rules/gpl_106.RULE +++ b/src/licensedcode/data/rules/gpl_106.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Distribute under GPL. \ No newline at end of file +Distribute {{under GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_114.RULE b/src/licensedcode/data/rules/gpl_114.RULE index ad669d5f07..47d2112ac3 100644 --- a/src/licensedcode/data/rules/gpl_114.RULE +++ b/src/licensedcode/data/rules/gpl_114.RULE @@ -6,4 +6,4 @@ minimum_coverage: 80 --- This software may be used and distributed according to the terms -of the GNU General Public License, incorporated herein by reference. \ No newline at end of file +of the {{GNU General Public License}}, incorporated herein by reference. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_115.RULE b/src/licensedcode/data/rules/gpl_115.RULE index bf3e3cd0f7..95ed1fddb3 100644 --- a/src/licensedcode/data/rules/gpl_115.RULE +++ b/src/licensedcode/data/rules/gpl_115.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 90 --- -This code is placed under the terms of the GNU General Public License \ No newline at end of file +This code is placed under the terms of the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_116.RULE b/src/licensedcode/data/rules/gpl_116.RULE index 4d478544bd..b2053f9ba5 100644 --- a/src/licensedcode/data/rules/gpl_116.RULE +++ b/src/licensedcode/data/rules/gpl_116.RULE @@ -4,8 +4,8 @@ is_license_notice: yes --- This software may be used and distributed according to the terms of - the GNU General Public License (GPL), incorporated herein by reference. - Drivers based on or derived from this code fall under the GPL and must + the {{GNU General Public License (GPL}}), incorporated herein by reference. + Drivers based on or derived from this code fall {{under the GPL}} and must retain the authorship, copyright and license notice. This file is not a complete program and may only be used when the entire operating - system is licensed under the GPL. \ No newline at end of file + system is licensed {{under the GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_117.RULE b/src/licensedcode/data/rules/gpl_117.RULE index 315bd1b8a7..e6b1f92be9 100644 --- a/src/licensedcode/data/rules/gpl_117.RULE +++ b/src/licensedcode/data/rules/gpl_117.RULE @@ -8,5 +8,5 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -* You should have received a copy of the GNU General Public License +* You should have received a copy of the {{GNU General Public License}} * (for example COPYING); If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_118.RULE b/src/licensedcode/data/rules/gpl_118.RULE index e619702fd0..e9278e07e3 100644 --- a/src/licensedcode/data/rules/gpl_118.RULE +++ b/src/licensedcode/data/rules/gpl_118.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- COPYRIGHT - This file is distributed under the terms of the GNU General Public - License (GPL). Copies of the GPL can be obtained from: + This file is distributed under the terms of the {{GNU General Public + License (GPL}}). Copies of the GPL can be obtained from: ftp://prep.ai.mit.edu/pub/gnu/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_118_2.RULE b/src/licensedcode/data/rules/gpl_118_2.RULE index ca0bf9aed0..90069bc2e7 100644 --- a/src/licensedcode/data/rules/gpl_118_2.RULE +++ b/src/licensedcode/data/rules/gpl_118_2.RULE @@ -6,6 +6,6 @@ ignorable_urls: - ftp://prep.ai.mit.edu/pub/gnu/GPL --- -This file is distributed under the terms of the GNU General Public - License (GPL). Copies of the GPL can be obtained from: +This file is distributed under the terms of the {{GNU General Public + License (GPL}}). Copies of the GPL can be obtained from: ftp://prep.ai.mit.edu/pub/gnu/GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_119.RULE b/src/licensedcode/data/rules/gpl_119.RULE index c3d5ccec3a..3e218135f4 100644 --- a/src/licensedcode/data/rules/gpl_119.RULE +++ b/src/licensedcode/data/rules/gpl_119.RULE @@ -5,5 +5,5 @@ relevance: 100 --- COPYRIGHT - This file is distributed under the terms of the GNU General Public - License (GPL). Copies of the GPL can be obtained from: \ No newline at end of file + This file is distributed under the terms of the {{GNU General Public + License (GPL}}). Copies of the GPL can be obtained from: \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_12.RULE b/src/licensedcode/data/rules/gpl_12.RULE index 5c904355c0..1e49ef24e9 100644 --- a/src/licensedcode/data/rules/gpl_12.RULE +++ b/src/licensedcode/data/rules/gpl_12.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL file. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_120.RULE b/src/licensedcode/data/rules/gpl_120.RULE index e9a6775244..f15d94df83 100644 --- a/src/licensedcode/data/rules/gpl_120.RULE +++ b/src/licensedcode/data/rules/gpl_120.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This file is distributed under the terms of the GNU General Public -License (GPL). Copies of the GPL can be obtained from gnu.org/gpl. \ No newline at end of file +This file is distributed under the terms of the {{GNU General Public +License (GPL}}). Copies of the GPL can be obtained from gnu.org/gpl. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_121.RULE b/src/licensedcode/data/rules/gpl_121.RULE index 01dd449963..509b457b77 100644 --- a/src/licensedcode/data/rules/gpl_121.RULE +++ b/src/licensedcode/data/rules/gpl_121.RULE @@ -5,4 +5,4 @@ relevance: 100 --- This file may be distributed under the terms of the -GNU General Public License. \ No newline at end of file +{{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_122.RULE b/src/licensedcode/data/rules/gpl_122.RULE index c39ab04f96..85fd90ebf3 100644 --- a/src/licensedcode/data/rules/gpl_122.RULE +++ b/src/licensedcode/data/rules/gpl_122.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -May be copied or modified under the terms of the GNU General Public License \ No newline at end of file +May be copied or modified under the terms of the {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_124.RULE b/src/licensedcode/data/rules/gpl_124.RULE index a5576ea9ae..8a134f972f 100644 --- a/src/licensedcode/data/rules/gpl_124.RULE +++ b/src/licensedcode/data/rules/gpl_124.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -This file is subject to the terms and conditions of the GNU General Public -License. \ No newline at end of file +This file is subject to the terms and conditions of the {{GNU General Public +License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_125.RULE b/src/licensedcode/data/rules/gpl_125.RULE index b723bd58a1..2d2403fcbf 100644 --- a/src/licensedcode/data/rules/gpl_125.RULE +++ b/src/licensedcode/data/rules/gpl_125.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Under the terms of the GNU General Public License. \ No newline at end of file +Under {{the terms of the GNU General Public License}}. diff --git a/src/licensedcode/data/rules/gpl_126.RULE b/src/licensedcode/data/rules/gpl_126.RULE index bf3cf819df..b223ccae6e 100644 --- a/src/licensedcode/data/rules/gpl_126.RULE +++ b/src/licensedcode/data/rules/gpl_126.RULE @@ -5,4 +5,4 @@ relevance: 100 --- This software may be used and distributed according to the terms of -the GNU General Public License. \ No newline at end of file +the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_131.RULE b/src/licensedcode/data/rules/gpl_131.RULE index 37c566814b..06a7b75864 100644 --- a/src/licensedcode/data/rules/gpl_131.RULE +++ b/src/licensedcode/data/rules/gpl_131.RULE @@ -4,8 +4,8 @@ is_license_notice: yes --- This program can be redistributed or modified under the terms of the - GNU General Public License as published by the Free Software Foundation. + {{GNU General Public License}} as published by the Free Software Foundation. This program is distributed without any warranty or implied warranty of merchantability or fitness for a particular purpose. - See the GNU General Public License for more details. \ No newline at end of file + See the {{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_133.RULE b/src/licensedcode/data/rules/gpl_133.RULE index 877f5ca529..5ce2248282 100644 --- a/src/licensedcode/data/rules/gpl_133.RULE +++ b/src/licensedcode/data/rules/gpl_133.RULE @@ -5,12 +5,12 @@ is_license_notice: yes This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License along with + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA - The full GNU General Public License is included in this distribution in the + The full {{GNU General Public License}} is included in this distribution in the file called LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_134.RULE b/src/licensedcode/data/rules/gpl_134.RULE index 823d75a816..0f85b8b247 100644 --- a/src/licensedcode/data/rules/gpl_134.RULE +++ b/src/licensedcode/data/rules/gpl_134.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This software may be used and distributed according to the terms - of the GNU General Public License (GPL), incorporated herein by reference. - Drivers based on this skeleton fall under the GPL and must retain + of the {{GNU General Public License (GPL}}), incorporated herein by reference. + Drivers based on this skeleton fall {{under the GPL}} and must retain the authorship (implicit copyright) notice. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_137.RULE b/src/licensedcode/data/rules/gpl_137.RULE index b5ec5b8fa5..88469bf027 100644 --- a/src/licensedcode/data/rules/gpl_137.RULE +++ b/src/licensedcode/data/rules/gpl_137.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License. \ No newline at end of file +modify it under the terms of the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_138.RULE b/src/licensedcode/data/rules/gpl_138.RULE index 97424ca2da..9d74b6f97b 100644 --- a/src/licensedcode/data/rules/gpl_138.RULE +++ b/src/licensedcode/data/rules/gpl_138.RULE @@ -6,8 +6,8 @@ is_license_notice: yes This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. + {{GNU General Public License}} for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_14.RULE b/src/licensedcode/data/rules/gpl_14.RULE index ba6257c338..fa027db87e 100644 --- a/src/licensedcode/data/rules/gpl_14.RULE +++ b/src/licensedcode/data/rules/gpl_14.RULE @@ -5,5 +5,5 @@ notes: gpl in wpa supplicant variant2 --- please note that these -# libraries are licensed under GPL and as such, BSD license may not apply for +# libraries are licensed {{under GPL}} and as such, BSD license may not apply for # the resulting binary. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_140.RULE b/src/licensedcode/data/rules/gpl_140.RULE index db2f54c900..12d3559391 100644 --- a/src/licensedcode/data/rules/gpl_140.RULE +++ b/src/licensedcode/data/rules/gpl_140.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -May be used under the terms of the GNU General Public License (GPL) \ No newline at end of file +May be used under the terms of the {{GNU General Public License (GPL}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_141.RULE b/src/licensedcode/data/rules/gpl_141.RULE index 3b02008d29..edf46dcabb 100644 --- a/src/licensedcode/data/rules/gpl_141.RULE +++ b/src/licensedcode/data/rules/gpl_141.RULE @@ -3,5 +3,5 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -The project team have placed their code under the GPL. The +The project team have placed their code {{under the GPL}}. The software is provided "as is" and without warranty express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_143.RULE b/src/licensedcode/data/rules/gpl_143.RULE index e96fcb50ef..066abcb356 100644 --- a/src/licensedcode/data/rules/gpl_143.RULE +++ b/src/licensedcode/data/rules/gpl_143.RULE @@ -3,6 +3,6 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -This driver is provided under the GNU General Public License, +This driver is provided under the {{GNU General Public License}}, incorporated herein by reference. The driver is provided without warranty or support. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_145.RULE b/src/licensedcode/data/rules/gpl_145.RULE index 366c310904..72e9172025 100644 --- a/src/licensedcode/data/rules/gpl_145.RULE +++ b/src/licensedcode/data/rules/gpl_145.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Licensed and distributed under the GPL \ No newline at end of file +Licensed and distributed {{under the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_147.RULE b/src/licensedcode/data/rules/gpl_147.RULE index 6e26d695d4..1b92a829dc 100644 --- a/src/licensedcode/data/rules/gpl_147.RULE +++ b/src/licensedcode/data/rules/gpl_147.RULE @@ -6,4 +6,4 @@ ignorable_urls: --- This is free software. You may redistribute copies of it under the terms of -the GNU General Public License . \ No newline at end of file +the {{GNU General Public License}} . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_148.RULE b/src/licensedcode/data/rules/gpl_148.RULE index 1488f770ae..fe50e4e3fb 100644 --- a/src/licensedcode/data/rules/gpl_148.RULE +++ b/src/licensedcode/data/rules/gpl_148.RULE @@ -4,8 +4,8 @@ is_license_notice: yes --- This software may be freely redistributed under the terms of the -GNU General Public License. +{{GNU General Public License}}. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_149.RULE b/src/licensedcode/data/rules/gpl_149.RULE index c3558faca3..cde1a9d476 100644 --- a/src/licensedcode/data/rules/gpl_149.RULE +++ b/src/licensedcode/data/rules/gpl_149.RULE @@ -5,6 +5,6 @@ minimum_coverage: 70 --- This software may be used and distributed according to the terms -of the GNU General Public License (GPL), incorporated herein by reference. -Drivers based on this skeleton fall under the GPL and must retain +of the {{GNU General Public License (GPL}}), incorporated herein by reference. +Drivers based on this skeleton fall {{under the GPL}} and must retain the authorship (implicit copyright) notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_15.RULE b/src/licensedcode/data/rules/gpl_15.RULE index 68c02dc700..bc321f4c4a 100644 --- a/src/licensedcode/data/rules/gpl_15.RULE +++ b/src/licensedcode/data/rules/gpl_15.RULE @@ -4,4 +4,4 @@ is_license_notice: yes notes: BCM GPL notice --- -This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, located in the file LICENSE. \ No newline at end of file +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation, located in the file LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_150.RULE b/src/licensedcode/data/rules/gpl_150.RULE index 4ddc5e4757..04a5994f74 100644 --- a/src/licensedcode/data/rules/gpl_150.RULE +++ b/src/licensedcode/data/rules/gpl_150.RULE @@ -6,11 +6,11 @@ referenced_filenames: - COPYING --- -This file is subject to the terms and conditions of the GNU General -Public License. See the file "COPYING" in the main directory of this +This file is subject to the terms and conditions of the {{GNU General +Public License}}. See the file "COPYING" in the main directory of this archive for more details. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_151.RULE b/src/licensedcode/data/rules/gpl_151.RULE index 0efb7d59ef..5e334e3b64 100644 --- a/src/licensedcode/data/rules/gpl_151.RULE +++ b/src/licensedcode/data/rules/gpl_151.RULE @@ -6,8 +6,8 @@ is_license_notice: yes * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. +* {{GNU General Public License}} for more details. * -* You should have received a copy of the GNU General Public License +* You should have received a copy of the {{GNU General Public License}} * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_152.RULE b/src/licensedcode/data/rules/gpl_152.RULE index f7111a4cb7..04136bae4f 100644 --- a/src/licensedcode/data/rules/gpl_152.RULE +++ b/src/licensedcode/data/rules/gpl_152.RULE @@ -7,4 +7,4 @@ minimum_coverage: 70 This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_155.RULE b/src/licensedcode/data/rules/gpl_155.RULE index bfa2323a5a..fdfc994c52 100644 --- a/src/licensedcode/data/rules/gpl_155.RULE +++ b/src/licensedcode/data/rules/gpl_155.RULE @@ -4,7 +4,7 @@ is_license_notice: yes minimum_coverage: 98 --- -This code is released under the GNU General Public License (GPL) +This code is released under the {{GNU General Public License (GPL}}) THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES diff --git a/src/licensedcode/data/rules/gpl_158.RULE b/src/licensedcode/data/rules/gpl_158.RULE index d51fa8d3fd..20c295debc 100644 --- a/src/licensedcode/data/rules/gpl_158.RULE +++ b/src/licensedcode/data/rules/gpl_158.RULE @@ -3,4 +3,4 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -Files in the following subdirectories are covered by the GNU General Public License (see GPL.txt for text): \ No newline at end of file +Files in the following subdirectories are covered by the {{GNU General Public License}} (see GPL.txt for text): \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_16.RULE b/src/licensedcode/data/rules/gpl_16.RULE index 036fefe3e9..b17e52565e 100644 --- a/src/licensedcode/data/rules/gpl_16.RULE +++ b/src/licensedcode/data/rules/gpl_16.RULE @@ -5,4 +5,4 @@ notes: No version gpl declaration --- The rest of the code is released under the terms of the GPL license, -see /usr/share/common-licenses/GPL for the full license. \ No newline at end of file +see {{/usr/share/common-licenses/GPL}} for the full license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_163.RULE b/src/licensedcode/data/rules/gpl_163.RULE index 635d812803..3ae2936b5a 100644 --- a/src/licensedcode/data/rules/gpl_163.RULE +++ b/src/licensedcode/data/rules/gpl_163.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is published unser the GNU General Public License in \ No newline at end of file +is published unser the {{GNU General Public License}} in \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_164.RULE b/src/licensedcode/data/rules/gpl_164.RULE index acacf73a8a..28e5e9e876 100644 --- a/src/licensedcode/data/rules/gpl_164.RULE +++ b/src/licensedcode/data/rules/gpl_164.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is free software distributed under the GPL(General Public Licence). \ No newline at end of file +is free software distributed {{under the GPL}}(General Public Licence). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_171.RULE b/src/licensedcode/data/rules/gpl_171.RULE index f3372dbabb..ce1299700c 100644 --- a/src/licensedcode/data/rules/gpl_171.RULE +++ b/src/licensedcode/data/rules/gpl_171.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is free software distributed under the GPL(General Public License). \ No newline at end of file +is free software distributed {{under the GPL}}(General Public License). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_18.RULE b/src/licensedcode/data/rules/gpl_18.RULE index 278cc0f98c..c94d420bd7 100644 --- a/src/licensedcode/data/rules/gpl_18.RULE +++ b/src/licensedcode/data/rules/gpl_18.RULE @@ -6,4 +6,4 @@ notes: GPL license declaration The code provided here will not assemble out of the box using the GNU assembler, however it is being included in order to comply with the -GNU General Public License \ No newline at end of file +{{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_182.RULE b/src/licensedcode/data/rules/gpl_182.RULE index d7f9a3616b..0577199007 100644 --- a/src/licensedcode/data/rules/gpl_182.RULE +++ b/src/licensedcode/data/rules/gpl_182.RULE @@ -6,4 +6,4 @@ is_license_notice: yes You are free to distribute this software under the terms of the GNU General Public Licence. On Debian systems, the complete text of the GNU General Public -Licence can be found in /usr/share/common-licenses/GPL. \ No newline at end of file +Licence can be found in {{/usr/share/common-licenses/GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_187.RULE b/src/licensedcode/data/rules/gpl_187.RULE index 5bf227a678..5538585dd7 100644 --- a/src/licensedcode/data/rules/gpl_187.RULE +++ b/src/licensedcode/data/rules/gpl_187.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Full source released under GPL \ No newline at end of file +Full source released {{under GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_190.RULE b/src/licensedcode/data/rules/gpl_190.RULE index 2377de9973..bff952d03a 100644 --- a/src/licensedcode/data/rules/gpl_190.RULE +++ b/src/licensedcode/data/rules/gpl_190.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributable under GPL. \ No newline at end of file +Distributable {{under GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_192.RULE b/src/licensedcode/data/rules/gpl_192.RULE index 03e4e6497e..2da30a7cdc 100644 --- a/src/licensedcode/data/rules/gpl_192.RULE +++ b/src/licensedcode/data/rules/gpl_192.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This file is under the GPL. \ No newline at end of file +This file is {{under the GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_194.RULE b/src/licensedcode/data/rules/gpl_194.RULE index 8de8c47785..d893e8c0c8 100644 --- a/src/licensedcode/data/rules/gpl_194.RULE +++ b/src/licensedcode/data/rules/gpl_194.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -released under the GPL \ No newline at end of file +released {{under the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_194_1.RULE b/src/licensedcode/data/rules/gpl_194_1.RULE index f0b0061c2a..766fb67e86 100644 --- a/src/licensedcode/data/rules/gpl_194_1.RULE +++ b/src/licensedcode/data/rules/gpl_194_1.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -released under the GPL (See file COPYING for details). \ No newline at end of file +released {{under the GPL}} (See file COPYING for details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_20.RULE b/src/licensedcode/data/rules/gpl_20.RULE index 6823239272..7eb7619635 100644 --- a/src/licensedcode/data/rules/gpl_20.RULE +++ b/src/licensedcode/data/rules/gpl_20.RULE @@ -5,5 +5,5 @@ notes: gpl in wpa supplicant --- # When building a binary for distribution, please note that these -# libraries are licensed under GPL and as such, BSD license may not apply for +# libraries are licensed {{under GPL}} and as such, BSD license may not apply for # the resulting binary. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_208.RULE b/src/licensedcode/data/rules/gpl_208.RULE index 7a5c04b6b0..1291536210 100644 --- a/src/licensedcode/data/rules/gpl_208.RULE +++ b/src/licensedcode/data/rules/gpl_208.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Licensed under GPL \ No newline at end of file +Licensed {{under GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_209.RULE b/src/licensedcode/data/rules/gpl_209.RULE index 769588088e..cc80c3723b 100644 --- a/src/licensedcode/data/rules/gpl_209.RULE +++ b/src/licensedcode/data/rules/gpl_209.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -Licenced under GPL \ No newline at end of file +Licenced {{under GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_21.RULE b/src/licensedcode/data/rules/gpl_21.RULE index 6941389a94..e6a7251186 100644 --- a/src/licensedcode/data/rules/gpl_21.RULE +++ b/src/licensedcode/data/rules/gpl_21.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- ALTERNATIVELY, provided that this notice is retained in full, this product - may be distributed under the terms of the GNU General Public License (GPL), + may be distributed under the terms of the {{GNU General Public License (GPL}}), in which case the provisions of the GPL apply INSTEAD OF those given above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_210.RULE b/src/licensedcode/data/rules/gpl_210.RULE index 3245a9115b..c2eb71565f 100644 --- a/src/licensedcode/data/rules/gpl_210.RULE +++ b/src/licensedcode/data/rules/gpl_210.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -It is distributed under the GPL, \ No newline at end of file +It is distributed {{under the GPL}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_211.RULE b/src/licensedcode/data/rules/gpl_211.RULE index 7fce69b83d..98c8e4e914 100644 --- a/src/licensedcode/data/rules/gpl_211.RULE +++ b/src/licensedcode/data/rules/gpl_211.RULE @@ -3,5 +3,5 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -project team have placed their code under the GPL. The +project team have placed their code {{under the GPL}}. The software is provided "as is" and without warranty express or implied. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_212.RULE b/src/licensedcode/data/rules/gpl_212.RULE index 5d5dea00be..1cab8862c4 100644 --- a/src/licensedcode/data/rules/gpl_212.RULE +++ b/src/licensedcode/data/rules/gpl_212.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-1.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU General Public License (GPL) \ No newline at end of file +GNU GENERAL PUBLIC LICENSE (GPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_213.RULE b/src/licensedcode/data/rules/gpl_213.RULE index 0cf9f005e1..e4a509e6f8 100644 --- a/src/licensedcode/data/rules/gpl_213.RULE +++ b/src/licensedcode/data/rules/gpl_213.RULE @@ -5,4 +5,4 @@ relevance: 100 --- This software is distributed under the following licenses: -GNU General Public License (GPL) \ No newline at end of file +{{GNU General Public License (GPL}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_215.RULE b/src/licensedcode/data/rules/gpl_215.RULE index d6f4d9ee87..f2266aca27 100644 --- a/src/licensedcode/data/rules/gpl_215.RULE +++ b/src/licensedcode/data/rules/gpl_215.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- All the drivers and utilities are published in form of source code under -GNU General Public License in this version. Please refer to GNU General -Public License announcement in each source code file for more detail. \ No newline at end of file +{{GNU General Public License}} in this version. Please refer to {{GNU General +Public License}} announcement in each source code file for more detail. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_217.RULE b/src/licensedcode/data/rules/gpl_217.RULE index 7dbcaedbd6..5cf9cd5a48 100644 --- a/src/licensedcode/data/rules/gpl_217.RULE +++ b/src/licensedcode/data/rules/gpl_217.RULE @@ -6,5 +6,5 @@ referenced_filenames: --- There is NO warranty. You may redistribute this software -under the terms of the GNU General Public License. +under the terms of the {{GNU General Public License}}. For more information about these matters, see the files named COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_219.RULE b/src/licensedcode/data/rules/gpl_219.RULE index 524d070410..18076ec34d 100644 --- a/src/licensedcode/data/rules/gpl_219.RULE +++ b/src/licensedcode/data/rules/gpl_219.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is (c) under GNU General Public License \ No newline at end of file +This file is (c) under {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_220.RULE b/src/licensedcode/data/rules/gpl_220.RULE index b4dabfa4b5..68e78c069d 100644 --- a/src/licensedcode/data/rules/gpl_220.RULE +++ b/src/licensedcode/data/rules/gpl_220.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under terms of the GNU General Public License. \ No newline at end of file +Released under terms of the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_221.RULE b/src/licensedcode/data/rules/gpl_221.RULE index dc335ba9ba..e570c956f1 100644 --- a/src/licensedcode/data/rules/gpl_221.RULE +++ b/src/licensedcode/data/rules/gpl_221.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. The \ No newline at end of file +{{GNU General Public License}} for more details. The \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_223.RULE b/src/licensedcode/data/rules/gpl_223.RULE index 23fc5d5830..d0dddc539f 100644 --- a/src/licensedcode/data/rules/gpl_223.RULE +++ b/src/licensedcode/data/rules/gpl_223.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- the -`GNU General Public License . \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_36.RULE b/src/licensedcode/data/rules/gpl_36.RULE index d5ec78e9cf..41ffc48a72 100644 --- a/src/licensedcode/data/rules/gpl_36.RULE +++ b/src/licensedcode/data/rules/gpl_36.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: This software is released under the GPL. --- -This software is released under the GPL. \ No newline at end of file +This software is released {{under the GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_37.RULE b/src/licensedcode/data/rules/gpl_37.RULE index 989c921587..28133fa31e 100644 --- a/src/licensedcode/data/rules/gpl_37.RULE +++ b/src/licensedcode/data/rules/gpl_37.RULE @@ -5,4 +5,4 @@ notes: Debian GPL --- GPL, on Debian systems you can find the full text of the GPL in -/usr/share/common-licenses/GPL \ No newline at end of file +{{/usr/share/common-licenses/GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_38.RULE b/src/licensedcode/data/rules/gpl_38.RULE index bee158f6d0..899e0947a8 100644 --- a/src/licensedcode/data/rules/gpl_38.RULE +++ b/src/licensedcode/data/rules/gpl_38.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Distributed under the GNU General Public License. \ No newline at end of file +Distributed under the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_41.RULE b/src/licensedcode/data/rules/gpl_41.RULE index 1c6e65d4ca..ca6bc91dc4 100644 --- a/src/licensedcode/data/rules/gpl_41.RULE +++ b/src/licensedcode/data/rules/gpl_41.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: gpl no verson constraints --- -"GPL": The GNU General Public License, without versioning constraints. \ No newline at end of file +"GPL": The {{GNU General Public License}}, without versioning constraints. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_42.RULE b/src/licensedcode/data/rules/gpl_42.RULE index c543a76156..a704fc55bd 100644 --- a/src/licensedcode/data/rules/gpl_42.RULE +++ b/src/licensedcode/data/rules/gpl_42.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -and is licensed under the GPL \ No newline at end of file +and is licensed {{under the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_44.RULE b/src/licensedcode/data/rules/gpl_44.RULE index d80508c918..faf9f2704b 100644 --- a/src/licensedcode/data/rules/gpl_44.RULE +++ b/src/licensedcode/data/rules/gpl_44.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -licensed under the terms of the pure GNU General Public License. \ No newline at end of file +licensed under the terms of the pure {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_45.RULE b/src/licensedcode/data/rules/gpl_45.RULE index 537309a1da..8e89744912 100644 --- a/src/licensedcode/data/rules/gpl_45.RULE +++ b/src/licensedcode/data/rules/gpl_45.RULE @@ -3,4 +3,4 @@ license_expression: gpl-1.0-plus is_license_reference: yes --- -distributed under the GPL \ No newline at end of file +distributed {{under the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_47.RULE b/src/licensedcode/data/rules/gpl_47.RULE index 3ed205b8bf..2685271250 100644 --- a/src/licensedcode/data/rules/gpl_47.RULE +++ b/src/licensedcode/data/rules/gpl_47.RULE @@ -6,8 +6,8 @@ is_license_notice: yes Trademarks and the GPL AbiSource software products, such as AbiWord, are copyrighted works -released under the terms of the GNU General Public License -(GPL). Verbatim copies of such works may be made and distributed, by +released under the terms of the {{GNU General Public License +(GPL}}). Verbatim copies of such works may be made and distributed, by anyone, in accordance with the terms of the GPL without violating the AbiSource trademarks. The GPL also grants you certain rights to make and distribute derivative works based on the source code to AbiSource diff --git a/src/licensedcode/data/rules/gpl_48.RULE b/src/licensedcode/data/rules/gpl_48.RULE index aa4148e51b..3e649ec6c1 100644 --- a/src/licensedcode/data/rules/gpl_48.RULE +++ b/src/licensedcode/data/rules/gpl_48.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 90 --- -is licensed under the GPL \ No newline at end of file +is licensed {{under the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_50.RULE b/src/licensedcode/data/rules/gpl_50.RULE index b270eff3cf..639d3a090b 100644 --- a/src/licensedcode/data/rules/gpl_50.RULE +++ b/src/licensedcode/data/rules/gpl_50.RULE @@ -5,4 +5,4 @@ relevance: 100 --- The Debian packaging is (C) and -is licensed under the GPL, see `/usr/share/common-licenses/GPL'. \ No newline at end of file +is licensed {{under the GPL}}, see `{{/usr/share/common-licenses/GPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_52.RULE b/src/licensedcode/data/rules/gpl_52.RULE index 5080877826..7fa68dc5d3 100644 --- a/src/licensedcode/data/rules/gpl_52.RULE +++ b/src/licensedcode/data/rules/gpl_52.RULE @@ -18,8 +18,8 @@ notes: | is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or -works at all, unless he says so in writing. Refer to the GNU General Public -License (the "GPL") for full details. +works at all, unless he says so in writing. Refer to the {{GNU General Public +License}} (the "GPL") for full details. Everyone is granted permission to copy, modify and redistribute ansi2knr, but only under the conditions described in the GPL. A copy of this license @@ -32,7 +32,7 @@ copies. We explicitly state here what we believe is already implied by the GPL: if the ansi2knr program is distributed as a separate set of sources and a separate executable file which are aggregated on a storage medium together -with another program, this in itself does not bring the other program under -the GPL, nor does the mere fact that such a program or the procedures for +with another program, this in itself does not bring the other program {{under +the GPL}}, nor does the mere fact that such a program or the procedures for constructing it invoke the ansi2knr executable bring any other part of the -program under the GPL. \ No newline at end of file +program {{under the GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_53.RULE b/src/licensedcode/data/rules/gpl_53.RULE index 783ad031e8..4d0a133eed 100644 --- a/src/licensedcode/data/rules/gpl_53.RULE +++ b/src/licensedcode/data/rules/gpl_53.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: debian packaging simple gpl --- -The Debian packaging is licensed under the GPL. \ No newline at end of file +The Debian packaging is licensed {{under the GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_55.RULE b/src/licensedcode/data/rules/gpl_55.RULE index 703e1b92fa..c9f948bd59 100644 --- a/src/licensedcode/data/rules/gpl_55.RULE +++ b/src/licensedcode/data/rules/gpl_55.RULE @@ -5,7 +5,7 @@ referenced_filenames: - COPYING --- -Backend libraries are protected by the GNU General Public License (see +Backend libraries are protected by the {{GNU General Public License}} (see file COPYING), but as an exception, it is permissible to link against such a library without affecting the licensing status of the program that uses the libraries. For details, see the copyright notice at the diff --git a/src/licensedcode/data/rules/gpl_57.RULE b/src/licensedcode/data/rules/gpl_57.RULE index 392b4d54a1..addf44b67b 100644 --- a/src/licensedcode/data/rules/gpl_57.RULE +++ b/src/licensedcode/data/rules/gpl_57.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU General Public License (GPL). +Licensed under the {{GNU General Public License (GPL}}). This comes with NO WARRANTY, see file license.txt. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_58.RULE b/src/licensedcode/data/rules/gpl_58.RULE index 03c383bff1..92c0563fec 100644 --- a/src/licensedcode/data/rules/gpl_58.RULE +++ b/src/licensedcode/data/rules/gpl_58.RULE @@ -4,4 +4,4 @@ is_license_reference: yes --- The Debian packaging is (C) and -is licensed under the GPL, see above. \ No newline at end of file +is licensed {{under the GPL}}, see above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_6.RULE b/src/licensedcode/data/rules/gpl_6.RULE index 91d5ee9fd7..b38df07aca 100644 --- a/src/licensedcode/data/rules/gpl_6.RULE +++ b/src/licensedcode/data/rules/gpl_6.RULE @@ -7,4 +7,4 @@ notes: GPL on debian copyrights Copyright: GPL, on Debian systems you can find the full text of the GPL in -/usr/share/common-licenses/GPL \ No newline at end of file +{{/usr/share/common-licenses/GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_63.RULE b/src/licensedcode/data/rules/gpl_63.RULE index d2a07cd223..1426c057c4 100644 --- a/src/licensedcode/data/rules/gpl_63.RULE +++ b/src/licensedcode/data/rules/gpl_63.RULE @@ -2,8 +2,8 @@ license_expression: gpl-1.0-plus is_license_reference: yes relevance: 100 -minimum_coverage: 100 notes: No version gpl declaration +skip_for_required_phrase_generation: yes --- -GNU General Public License \ No newline at end of file +{{GNU General Public License}} diff --git a/src/licensedcode/data/rules/gpl_64.RULE b/src/licensedcode/data/rules/gpl_64.RULE index b7c50f360a..cdc6e4fe5f 100644 --- a/src/licensedcode/data/rules/gpl_64.RULE +++ b/src/licensedcode/data/rules/gpl_64.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -Licensed under the http://www.gnu.org/copyleft/gpl.html GNU General Public License \ No newline at end of file +Licensed under the http://www.gnu.org/copyleft/gpl.html {{GNU General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_65.RULE b/src/licensedcode/data/rules/gpl_65.RULE index 8ead6173df..83a34cf170 100644 --- a/src/licensedcode/data/rules/gpl_65.RULE +++ b/src/licensedcode/data/rules/gpl_65.RULE @@ -4,4 +4,4 @@ is_license_notice: yes notes: No version gpl declaration --- -This is licensed under the GNU General Public License (GPL) and comes with NO WARRANTY. See file license.txt for details \ No newline at end of file +This is licensed under the {{GNU General Public License (GPL}}) and comes with NO WARRANTY. See file license.txt for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_66.RULE b/src/licensedcode/data/rules/gpl_66.RULE index dc2bfd1fc6..0c12d0bac9 100644 --- a/src/licensedcode/data/rules/gpl_66.RULE +++ b/src/licensedcode/data/rules/gpl_66.RULE @@ -3,5 +3,5 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_67.RULE b/src/licensedcode/data/rules/gpl_67.RULE index 9a73082e33..62249e8658 100644 --- a/src/licensedcode/data/rules/gpl_67.RULE +++ b/src/licensedcode/data/rules/gpl_67.RULE @@ -5,5 +5,5 @@ is_license_notice: yes The C# Compiler is released under the terms of the GNU GPL. -On Debian systems, the complete text of the GNU General Public -License can be found in /usr/share/common-licenses/GPL file. \ No newline at end of file +On Debian systems, the complete text of the {{GNU General Public +License}} can be found in {{/usr/share/common-licenses/GPL}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_69.RULE b/src/licensedcode/data/rules/gpl_69.RULE index 2b8ae03429..fe3945bdd2 100644 --- a/src/licensedcode/data/rules/gpl_69.RULE +++ b/src/licensedcode/data/rules/gpl_69.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Licensed under the GNU General Public License (GPL). \ No newline at end of file +Licensed under the {{GNU General Public License (GPL}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_7.RULE b/src/licensedcode/data/rules/gpl_7.RULE index 0efdb76118..1d2f54b4cd 100644 --- a/src/licensedcode/data/rules/gpl_7.RULE +++ b/src/licensedcode/data/rules/gpl_7.RULE @@ -5,4 +5,4 @@ relevance: 100 --- Redistribution of this file is - * permitted under the GNU General Public License. \ No newline at end of file + * permitted under the {{GNU General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_70.RULE b/src/licensedcode/data/rules/gpl_70.RULE index eb8942c67c..9041c6ff54 100644 --- a/src/licensedcode/data/rules/gpl_70.RULE +++ b/src/licensedcode/data/rules/gpl_70.RULE @@ -1,6 +1,7 @@ --- license_expression: gpl-1.0-plus is_license_notice: yes +is_required_phrase: yes relevance: 90 --- diff --git a/src/licensedcode/data/rules/gpl_71.RULE b/src/licensedcode/data/rules/gpl_71.RULE index 96e64e5d83..da3a945e00 100644 --- a/src/licensedcode/data/rules/gpl_71.RULE +++ b/src/licensedcode/data/rules/gpl_71.RULE @@ -6,4 +6,4 @@ referenced_filenames: - /usr/share/common-licenses/GPL --- -is licensed under the GPL, see `/usr/share/common-licenses/GPL' \ No newline at end of file +is licensed {{under the GPL}}, see `/usr/share/common-licenses/GPL' \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_74.RULE b/src/licensedcode/data/rules/gpl_74.RULE index 057c0c496f..95729d008f 100644 --- a/src/licensedcode/data/rules/gpl_74.RULE +++ b/src/licensedcode/data/rules/gpl_74.RULE @@ -3,6 +3,6 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -A. gpl (GNU General Public License) +A. {{gpl (GNU General Public License}}) -The full text of the GPL is given in /usr/share/common-licenses/GPL. \ No newline at end of file +The full text of the GPL is given in {{/usr/share/common-licenses/GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_75.RULE b/src/licensedcode/data/rules/gpl_75.RULE index b8086d8c43..f888adbdb0 100644 --- a/src/licensedcode/data/rules/gpl_75.RULE +++ b/src/licensedcode/data/rules/gpl_75.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This file is under GPL licence \ No newline at end of file +This file is {{under GPL}} licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_76.RULE b/src/licensedcode/data/rules/gpl_76.RULE index a3f69d2203..5a46e08783 100644 --- a/src/licensedcode/data/rules/gpl_76.RULE +++ b/src/licensedcode/data/rules/gpl_76.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -This file is under GPL \ No newline at end of file +This file is {{under GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_77.RULE b/src/licensedcode/data/rules/gpl_77.RULE index b430ad54bf..bee631646c 100644 --- a/src/licensedcode/data/rules/gpl_77.RULE +++ b/src/licensedcode/data/rules/gpl_77.RULE @@ -6,7 +6,7 @@ minimum_coverage: 90 License: GPL-any # You may freely redistribute, use and modify this software under the terms - # of the GNU General Public License. + # of the {{GNU General Public License}}. . - On Debian systems, the complete text of the GNU General Public License - can be found in file "/usr/share/common-licenses/GPL". \ No newline at end of file + On Debian systems, the complete text of the {{GNU General Public License}} + can be found in file "{{/usr/share/common-licenses/GPL}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_79.RULE b/src/licensedcode/data/rules/gpl_79.RULE index 26f34b6557..64c8e541dd 100644 --- a/src/licensedcode/data/rules/gpl_79.RULE +++ b/src/licensedcode/data/rules/gpl_79.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/gpl-license.php --- -Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php) \ No newline at end of file +Licensed {{under GPL}} (http://www.opensource.org/licenses/gpl-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_8.RULE b/src/licensedcode/data/rules/gpl_8.RULE index a6d17c74d2..ad4bc7115a 100644 --- a/src/licensedcode/data/rules/gpl_8.RULE +++ b/src/licensedcode/data/rules/gpl_8.RULE @@ -5,6 +5,6 @@ referenced_filenames: - /usr/share/common-licenses/GPL --- -On Debian systems, the complete text of the GNU General Public License (the +On Debian systems, the complete text of the {{GNU General Public License}} (the "COPYING" file referred to above) can be found in the /usr/share/common-licenses/GPL file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_80.RULE b/src/licensedcode/data/rules/gpl_80.RULE index 3e2de3cd68..f58f96762f 100644 --- a/src/licensedcode/data/rules/gpl_80.RULE +++ b/src/licensedcode/data/rules/gpl_80.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under GPL License. \ No newline at end of file +Released {{under GPL}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_81.RULE b/src/licensedcode/data/rules/gpl_81.RULE index 16fca6fb0c..29345797d1 100644 --- a/src/licensedcode/data/rules/gpl_81.RULE +++ b/src/licensedcode/data/rules/gpl_81.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Distributed under the GPL, Copyleft \ No newline at end of file +Distributed {{under the GPL}}, Copyleft \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_82.RULE b/src/licensedcode/data/rules/gpl_82.RULE index f25190f736..897e2bb524 100644 --- a/src/licensedcode/data/rules/gpl_82.RULE +++ b/src/licensedcode/data/rules/gpl_82.RULE @@ -3,6 +3,6 @@ license_expression: gpl-1.0-plus is_license_notice: yes --- -is free software, covered by the GNU General Public License, and you are +is free software, covered by the {{GNU General Public License}}, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_84.RULE b/src/licensedcode/data/rules/gpl_84.RULE index 1661f38baf..d86ee22fc3 100644 --- a/src/licensedcode/data/rules/gpl_84.RULE +++ b/src/licensedcode/data/rules/gpl_84.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -GNU General Public License for more details. \ No newline at end of file +{{GNU General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_85.RULE b/src/licensedcode/data/rules/gpl_85.RULE index e773830c04..6518cc9240 100644 --- a/src/licensedcode/data/rules/gpl_85.RULE +++ b/src/licensedcode/data/rules/gpl_85.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GPL \ No newline at end of file +Licensed {{under the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_86.RULE b/src/licensedcode/data/rules/gpl_86.RULE index c5663123eb..9d43556b1a 100644 --- a/src/licensedcode/data/rules/gpl_86.RULE +++ b/src/licensedcode/data/rules/gpl_86.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This code is released under the GNU General Public License (GPL) \ No newline at end of file +This code is released under the {{GNU General Public License (GPL}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_88.RULE b/src/licensedcode/data/rules/gpl_88.RULE index b5f4b6b101..711871edac 100644 --- a/src/licensedcode/data/rules/gpl_88.RULE +++ b/src/licensedcode/data/rules/gpl_88.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -# This code is released under the GPL \ No newline at end of file +# This code is released {{under the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_9.RULE b/src/licensedcode/data/rules/gpl_9.RULE index 3c9da45f2b..d74b16954a 100644 --- a/src/licensedcode/data/rules/gpl_9.RULE +++ b/src/licensedcode/data/rules/gpl_9.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Released under the terms of the GNU General Public license \ No newline at end of file +Released under the terms of the {{GNU General Public license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_91.RULE b/src/licensedcode/data/rules/gpl_91.RULE index 0dc5024d01..f746e3cfe6 100644 --- a/src/licensedcode/data/rules/gpl_91.RULE +++ b/src/licensedcode/data/rules/gpl_91.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by +it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_92.RULE b/src/licensedcode/data/rules/gpl_92.RULE index 3695833f42..8e3e0cd643 100644 --- a/src/licensedcode/data/rules/gpl_92.RULE +++ b/src/licensedcode/data/rules/gpl_92.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -This file may be redistributed under the terms of the GNU General Public - License. \ No newline at end of file +This file may be redistributed under the terms of the {{GNU General Public + License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_94.RULE b/src/licensedcode/data/rules/gpl_94.RULE index fdab98164d..0d0cd318cd 100644 --- a/src/licensedcode/data/rules/gpl_94.RULE +++ b/src/licensedcode/data/rules/gpl_94.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -This file is licensed under the GPL. See COPYING in the package. \ No newline at end of file +This file is licensed {{under the GPL}}. See COPYING in the package. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_97.RULE b/src/licensedcode/data/rules/gpl_97.RULE index e34f8e8dd4..78dd7df02e 100644 --- a/src/licensedcode/data/rules/gpl_97.RULE +++ b/src/licensedcode/data/rules/gpl_97.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This file is released under the GPL. \ No newline at end of file +This file is released {{under the GPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_99.RULE b/src/licensedcode/data/rules/gpl_99.RULE index 5ac6f1689d..cecfa4e7d4 100644 --- a/src/licensedcode/data/rules/gpl_99.RULE +++ b/src/licensedcode/data/rules/gpl_99.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This file is licenced under GPL \ No newline at end of file +This file is licenced {{under GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_bare_gnu_gpl.RULE b/src/licensedcode/data/rules/gpl_bare_gnu_gpl.RULE index 7c73f647be..aedc63e157 100644 --- a/src/licensedcode/data/rules/gpl_bare_gnu_gpl.RULE +++ b/src/licensedcode/data/rules/gpl_bare_gnu_gpl.RULE @@ -1,7 +1,8 @@ --- license_expression: gpl-1.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU GPL \ No newline at end of file +GNU GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_bare_word_only.RULE b/src/licensedcode/data/rules/gpl_bare_word_only.RULE index dd3e5ad52a..a573469257 100644 --- a/src/licensedcode/data/rules/gpl_bare_word_only.RULE +++ b/src/licensedcode/data/rules/gpl_bare_word_only.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 50 --- -GPL \ No newline at end of file +GPL diff --git a/src/licensedcode/data/rules/gpl_debian.RULE b/src/licensedcode/data/rules/gpl_debian.RULE index 8ecc401c7f..02f927a488 100644 --- a/src/licensedcode/data/rules/gpl_debian.RULE +++ b/src/licensedcode/data/rules/gpl_debian.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -- GPL: /usr/share/common-licenses/GPL \ No newline at end of file +- GPL: {{/usr/share/common-licenses/GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_debian2.RULE b/src/licensedcode/data/rules/gpl_debian2.RULE index 6d769444fc..635ccc57ec 100644 --- a/src/licensedcode/data/rules/gpl_debian2.RULE +++ b/src/licensedcode/data/rules/gpl_debian2.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://www.gnu.org/copyleft/gpl.html --- -A copy of the GNU General Public License is available as -/usr/share/common-licenses/GPL in the Debian GNU/Linux distribution or on +A copy of the {{GNU General Public License}} is available as +{{/usr/share/common-licenses/GPL}} in the Debian GNU/Linux distribution or on the World Wide Web at http://www.gnu.org/copyleft/gpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_may.RULE b/src/licensedcode/data/rules/gpl_may.RULE index d35bad104a..965a745598 100644 --- a/src/licensedcode/data/rules/gpl_may.RULE +++ b/src/licensedcode/data/rules/gpl_may.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -May be used/distributed under the GPL \ No newline at end of file +May be used/distributed {{under the GPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/gpl_not_lgpl_lesser.RULE b/src/licensedcode/data/rules/gpl_not_lgpl_lesser.RULE index 4f49ca7ec6..ea0d608707 100644 --- a/src/licensedcode/data/rules/gpl_not_lgpl_lesser.RULE +++ b/src/licensedcode/data/rules/gpl_not_lgpl_lesser.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License +modify it under the terms of the {{GNU General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. +{{GNU General Public License}} for more details. -You should have received a copy of the GNU General Public License +You should have received a copy of the {{GNU General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/imagemagick_11.RULE b/src/licensedcode/data/rules/imagemagick_11.RULE index ce43ce7638..14fd31c502 100644 --- a/src/licensedcode/data/rules/imagemagick_11.RULE +++ b/src/licensedcode/data/rules/imagemagick_11.RULE @@ -2,8 +2,9 @@ license_expression: imagemagick is_license_notice: yes minimum_coverage: 100 +skip_for_required_phrase_generation: yes --- -ImageMagick is free software delivered as a ready-to-run binary distribution or +{{ImageMagick is free software delivered}} as a ready-to-run binary distribution or as source code that you may use, copy, modify, and distribute in both open and -proprietary applications. It is distributed under the Apache 2.0 \ No newline at end of file +proprietary applications. It is {{distributed under the Apache 2.0}} diff --git a/src/licensedcode/data/rules/imagemagick_12.RULE b/src/licensedcode/data/rules/imagemagick_12.RULE index ac285b3d02..6a684a7a36 100644 --- a/src/licensedcode/data/rules/imagemagick_12.RULE +++ b/src/licensedcode/data/rules/imagemagick_12.RULE @@ -8,10 +8,10 @@ ignorable_urls: # You may not use this file except in compliance with the License. # obtain a copy of the License at # -# http://www.imagemagick.org/script/license.php +# {{ http://www.imagemagick.org/script/license.php }} # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and -# limitations under the License. \ No newline at end of file +# limitations under the License. diff --git a/src/licensedcode/data/rules/imagemagick_13.RULE b/src/licensedcode/data/rules/imagemagick_13.RULE index a61a7981dd..cf22f11f95 100644 --- a/src/licensedcode/data/rules/imagemagick_13.RULE +++ b/src/licensedcode/data/rules/imagemagick_13.RULE @@ -8,10 +8,10 @@ ignorable_urls: You may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.imagemagick.org/MagicksToolkit/script/license.php +{{ http://www.imagemagick.org/MagicksToolkit/script/license.php }} Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. \ No newline at end of file +limitations under the License. diff --git a/src/licensedcode/data/rules/imagemagick_14.RULE b/src/licensedcode/data/rules/imagemagick_14.RULE index 86e2442623..01391e8061 100644 --- a/src/licensedcode/data/rules/imagemagick_14.RULE +++ b/src/licensedcode/data/rules/imagemagick_14.RULE @@ -3,8 +3,8 @@ license_expression: imagemagick is_license_notice: yes --- -ImageMagick is freely available without charge; +{{ImageMagick is freely available without charge; }} you may include ImageMagick on any digital media as long as you comply with the terms of the license; - you can give modified code away for free or sell it under the terms of the ImageMagick license or distribute the result under a different license, but you need to acknowledge the use of the ImageMagick software; + you can give modified code away for free or sell it under the terms of the {{ImageMagick license}} or distribute the result under a different license, but you need to acknowledge the use of the ImageMagick software; the license is compatible with the GPL V3. - when exporting the ImageMagick software, review its export classification \ No newline at end of file + when exporting the ImageMagick software, review its export classification diff --git a/src/licensedcode/data/rules/imagemagick_15.RULE b/src/licensedcode/data/rules/imagemagick_15.RULE index 71fd26108b..a7f70c2a9c 100644 --- a/src/licensedcode/data/rules/imagemagick_15.RULE +++ b/src/licensedcode/data/rules/imagemagick_15.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://imagemagick.org/script/license.php --- -ImageMagick -is licensed with a derived Apache license 2.0. See -http://imagemagick.org/script/license.php for more details. \ No newline at end of file +{{ ImageMagick +is licensed with a derived Apache license 2.0. }} See +{{ http://imagemagick.org/script/license.php }} for more details. diff --git a/src/licensedcode/data/rules/imagemagick_16.RULE b/src/licensedcode/data/rules/imagemagick_16.RULE index 0e08ede438..8a28d70e81 100644 --- a/src/licensedcode/data/rules/imagemagick_16.RULE +++ b/src/licensedcode/data/rules/imagemagick_16.RULE @@ -4,6 +4,6 @@ is_license_reference: yes minimum_coverage: 80 --- -ImageMagick is free software delivered as a ready-to-run binary distribution or +{{ImageMagick is free software}} delivered as a ready-to-run binary distribution or as source code that you may use, copy, modify, and distribute in both open and -proprietary applications. It is distributed under a dervived Apache 2.0 license. \ No newline at end of file +proprietary applications. {{It is distributed under a dervived Apache 2.0 license.}} diff --git a/src/licensedcode/data/rules/imagemagick_17.RULE b/src/licensedcode/data/rules/imagemagick_17.RULE index 2301320485..448fd14330 100644 --- a/src/licensedcode/data/rules/imagemagick_17.RULE +++ b/src/licensedcode/data/rules/imagemagick_17.RULE @@ -8,10 +8,10 @@ ignorable_urls: # You may not use this file except in compliance with the License. You may # obtain a copy of the License at # -# https://imagemagick.org/script/license.php +# {{ https://imagemagick.org/script/license.php }} # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and -# limitations under the License. \ No newline at end of file +# limitations under the License. diff --git a/src/licensedcode/data/rules/imagemagick_18.RULE b/src/licensedcode/data/rules/imagemagick_18.RULE index f4553f1ea3..b6adb99b63 100644 --- a/src/licensedcode/data/rules/imagemagick_18.RULE +++ b/src/licensedcode/data/rules/imagemagick_18.RULE @@ -4,6 +4,6 @@ is_license_notice: yes minimum_coverage: 80 --- -ImageMagick is free software delivered as a ready-to-run binary distribution or +{{ImageMagick is free software}} delivered as a ready-to-run binary distribution or as source code that you may use, copy, modify, and distribute in both open and -proprietary applications. It is distributed under a derived Apache 2.0 license. \ No newline at end of file +proprietary applications. It is {{distributed under a derived Apache 2.0 license.}} diff --git a/src/licensedcode/data/rules/imagemagick_2.RULE b/src/licensedcode/data/rules/imagemagick_2.RULE index b3254a81c2..46c33a6d5d 100644 --- a/src/licensedcode/data/rules/imagemagick_2.RULE +++ b/src/licensedcode/data/rules/imagemagick_2.RULE @@ -9,10 +9,10 @@ ignorable_urls: You may not use this file except in compliance with the License. You may obtain a copy of the License at - https://www.imagemagick.org/script/license.php + {{ https://www.imagemagick.org/script/license.php }} Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. \ No newline at end of file + limitations under the License. diff --git a/src/licensedcode/data/rules/imagemagick_20.RULE b/src/licensedcode/data/rules/imagemagick_20.RULE index de673cd00a..5e38cf7efb 100644 --- a/src/licensedcode/data/rules/imagemagick_20.RULE +++ b/src/licensedcode/data/rules/imagemagick_20.RULE @@ -1,10 +1,10 @@ --- license_expression: imagemagick is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -ImageMagick License \ No newline at end of file +ImageMagick License diff --git a/src/licensedcode/data/rules/imagemagick_21.RULE b/src/licensedcode/data/rules/imagemagick_21.RULE index 4f36a708eb..7dfdcbb5af 100644 --- a/src/licensedcode/data/rules/imagemagick_21.RULE +++ b/src/licensedcode/data/rules/imagemagick_21.RULE @@ -1,10 +1,10 @@ --- license_expression: imagemagick -is_license_reference: yes +is_license_tag: yes is_continuous: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: ImageMagick License \ No newline at end of file +name: {{ ImageMagick License }} diff --git a/src/licensedcode/data/rules/imagemagick_22.RULE b/src/licensedcode/data/rules/imagemagick_22.RULE index 4b2ff29bf7..9ff0d577ae 100644 --- a/src/licensedcode/data/rules/imagemagick_22.RULE +++ b/src/licensedcode/data/rules/imagemagick_22.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -ImageMagick ImageMagick License \ No newline at end of file +ImageMagick {{ ImageMagick License }} diff --git a/src/licensedcode/data/rules/imagemagick_23.RULE b/src/licensedcode/data/rules/imagemagick_23.RULE index d9a4d75088..7f0e8df5fb 100644 --- a/src/licensedcode/data/rules/imagemagick_23.RULE +++ b/src/licensedcode/data/rules/imagemagick_23.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -ImageMagick License ImageMagick \ No newline at end of file +{{ImageMagick License }} ImageMagick diff --git a/src/licensedcode/data/rules/imagemagick_24.RULE b/src/licensedcode/data/rules/imagemagick_24.RULE index fb7e3142ac..c3a7db468a 100644 --- a/src/licensedcode/data/rules/imagemagick_24.RULE +++ b/src/licensedcode/data/rules/imagemagick_24.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: ImageMagick \ No newline at end of file +{{ license: ImageMagick }} diff --git a/src/licensedcode/data/rules/imagemagick_25.RULE b/src/licensedcode/data/rules/imagemagick_25.RULE index 50b1a54aa7..6bc114f312 100644 --- a/src/licensedcode/data/rules/imagemagick_25.RULE +++ b/src/licensedcode/data/rules/imagemagick_25.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: ImageMagick License \ No newline at end of file +license: {{ ImageMagick License }} diff --git a/src/licensedcode/data/rules/imagemagick_26.RULE b/src/licensedcode/data/rules/imagemagick_26.RULE index 6d862995ef..e1acc43158 100644 --- a/src/licensedcode/data/rules/imagemagick_26.RULE +++ b/src/licensedcode/data/rules/imagemagick_26.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: ImageMagick \ No newline at end of file +{{licenseId: ImageMagick }} diff --git a/src/licensedcode/data/rules/imagemagick_29.RULE b/src/licensedcode/data/rules/imagemagick_29.RULE index e01d0ba569..b8c759cab7 100644 --- a/src/licensedcode/data/rules/imagemagick_29.RULE +++ b/src/licensedcode/data/rules/imagemagick_29.RULE @@ -5,11 +5,11 @@ ignorable_urls: - http://www.imagemagick.org/www/license.html --- -Licensed under the ImageMagick License (the "License"); you may not use +{{Licensed under the ImageMagick License}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy -of the License at http://www.imagemagick.org/www/license.html +of the License at {{ http://www.imagemagick.org/www/license.html }} Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations -under the License. \ No newline at end of file +under the License. diff --git a/src/licensedcode/data/rules/imagemagick_3.RULE b/src/licensedcode/data/rules/imagemagick_3.RULE index 9bd1d495f8..bef8351f64 100644 --- a/src/licensedcode/data/rules/imagemagick_3.RULE +++ b/src/licensedcode/data/rules/imagemagick_3.RULE @@ -9,10 +9,10 @@ ignorable_urls: You may not use this file except in compliance with the License. obtain a copy of the License at - https://www.imagemagick.org/script/license.php + {{ https://www.imagemagick.org/script/license.php }} Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. \ No newline at end of file + limitations under the License. diff --git a/src/licensedcode/data/rules/imagemagick_31.RULE b/src/licensedcode/data/rules/imagemagick_31.RULE index f0f291f253..8526aed258 100644 --- a/src/licensedcode/data/rules/imagemagick_31.RULE +++ b/src/licensedcode/data/rules/imagemagick_31.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/ImageMagick \ No newline at end of file +{{ licenses.nuget.org/ImageMagick }} diff --git a/src/licensedcode/data/rules/imagemagick_32.RULE b/src/licensedcode/data/rules/imagemagick_32.RULE index db32d424a8..684018738f 100644 --- a/src/licensedcode/data/rules/imagemagick_32.RULE +++ b/src/licensedcode/data/rules/imagemagick_32.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://spdx.org/licenses/ImageMagick --- -LICENSE {{ImageMagick}} https://spdx.org/licenses/ImageMagick \ No newline at end of file +{{ LICENSE ImageMagick }} https://spdx.org/licenses/ImageMagick diff --git a/src/licensedcode/data/rules/imagemagick_33.RULE b/src/licensedcode/data/rules/imagemagick_33.RULE index be9a60148f..d07089bbe0 100644 --- a/src/licensedcode/data/rules/imagemagick_33.RULE +++ b/src/licensedcode/data/rules/imagemagick_33.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://spdx.org/licenses/ImageMagick --- -{{ImageMagick}} https://spdx.org/licenses/ImageMagick \ No newline at end of file +ImageMagick {{ https://spdx.org/licenses/ImageMagick }} diff --git a/src/licensedcode/data/rules/imagemagick_4.RULE b/src/licensedcode/data/rules/imagemagick_4.RULE index 02b238b08d..13936ff696 100644 --- a/src/licensedcode/data/rules/imagemagick_4.RULE +++ b/src/licensedcode/data/rules/imagemagick_4.RULE @@ -4,6 +4,6 @@ is_license_notice: yes minimum_coverage: 100 --- -ImageMagick is free software delivered as a ready-to-run binary distribution or +{{ImageMagick is free software }} delivered as a ready-to-run binary distribution or as source code that you may use, copy, modify, and distribute in both open and -proprietary applications. It is distributed under the Apache 2.0 [license] \ No newline at end of file +proprietary applications. It is {{distributed under the Apache 2.0 [license] }} diff --git a/src/licensedcode/data/rules/imagemagick_5.RULE b/src/licensedcode/data/rules/imagemagick_5.RULE index f93336c950..d97277be0e 100644 --- a/src/licensedcode/data/rules/imagemagick_5.RULE +++ b/src/licensedcode/data/rules/imagemagick_5.RULE @@ -9,10 +9,10 @@ ignorable_urls: You may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.imagemagick.org/script/license.php +{{ http://www.imagemagick.org/script/license.php }} Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. \ No newline at end of file +limitations under the License. diff --git a/src/licensedcode/data/rules/imagemagick_6.RULE b/src/licensedcode/data/rules/imagemagick_6.RULE index 235e25f5fc..c956b9a1cd 100644 --- a/src/licensedcode/data/rules/imagemagick_6.RULE +++ b/src/licensedcode/data/rules/imagemagick_6.RULE @@ -3,4 +3,4 @@ license_expression: imagemagick is_license_notice: yes --- -ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you can freely use, copy, modify, and distribute. Its license is compatible with the GPL. It runs on all major operating systems. \ No newline at end of file +{{ImageMagick is free software delivered }} as a ready-to-run binary distribution or as source code that {{you can freely use, copy, modify, and distribute}}. Its license is compatible with the GPL. It runs on all major operating systems. diff --git a/src/licensedcode/data/rules/imagemagick_8.RULE b/src/licensedcode/data/rules/imagemagick_8.RULE index 71edd5e5c1..a44a67acfd 100644 --- a/src/licensedcode/data/rules/imagemagick_8.RULE +++ b/src/licensedcode/data/rules/imagemagick_8.RULE @@ -9,10 +9,10 @@ ignorable_urls: You may not use this file except in compliance with the License. obtain a copy of the License at - http://www.imagemagick.org/MagicksToolkit/script/license.php +{{ http://www.imagemagick.org/MagicksToolkit/script/license.php }} Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. \ No newline at end of file +limitations under the License. diff --git a/src/licensedcode/data/rules/imagemagick_9.RULE b/src/licensedcode/data/rules/imagemagick_9.RULE index c457fdce77..7c99826218 100644 --- a/src/licensedcode/data/rules/imagemagick_9.RULE +++ b/src/licensedcode/data/rules/imagemagick_9.RULE @@ -5,6 +5,5 @@ ignorable_urls: - http://www.imagemagick.org/script/license.php --- -ImageMagick -is licensed with the Apache license 2.0. See -http://www.imagemagick.org/script/license.php for more details \ No newline at end of file +ImageMagick is licensed with the Apache license 2.0. See +{{ http://www.imagemagick.org/script/license.php }} for more details diff --git a/src/licensedcode/data/rules/imagemagick_url_1.RULE b/src/licensedcode/data/rules/imagemagick_url_1.RULE index 35a3511be6..4611389a5b 100644 --- a/src/licensedcode/data/rules/imagemagick_url_1.RULE +++ b/src/licensedcode/data/rules/imagemagick_url_1.RULE @@ -1,9 +1,10 @@ --- license_expression: imagemagick is_license_reference: yes +is_required_phrase: yes relevance: 95 ignorable_urls: - https://spdx.org/licenses/imagemagick --- -https://spdx.org/licenses/imagemagick \ No newline at end of file +https://spdx.org/licenses/imagemagick diff --git a/src/licensedcode/data/rules/imagemagick_url_2.RULE b/src/licensedcode/data/rules/imagemagick_url_2.RULE index 4caa888cc4..adecebe71f 100644 --- a/src/licensedcode/data/rules/imagemagick_url_2.RULE +++ b/src/licensedcode/data/rules/imagemagick_url_2.RULE @@ -1,9 +1,10 @@ --- license_expression: imagemagick is_license_reference: yes +is_required_phrase: yes relevance: 95 ignorable_urls: - https://spdx.org/licenses/imagemagick.html --- -https://spdx.org/licenses/imagemagick.html \ No newline at end of file +https://spdx.org/licenses/imagemagick.html diff --git a/src/licensedcode/data/rules/isc-ormlite_2.RULE b/src/licensedcode/data/rules/isc-ormlite_2.RULE index dbe9c5aca4..1747104a1e 100644 --- a/src/licensedcode/data/rules/isc-ormlite_2.RULE +++ b/src/licensedcode/data/rules/isc-ormlite_2.RULE @@ -6,7 +6,7 @@ minimum_coverage: 95 notes: this is mostly the same as the ISC but there is one sentence removed see https://github.com/j256/ormlite-core/blob/master/LICENSE.txt --- -ISC License +{{ISC License}} Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that this permission notice appear in all copies. diff --git a/src/licensedcode/data/rules/isc.RULE b/src/licensedcode/data/rules/isc.RULE index 4533cb78cb..76b23aae3b 100644 --- a/src/licensedcode/data/rules/isc.RULE +++ b/src/licensedcode/data/rules/isc.RULE @@ -7,8 +7,8 @@ ignorable_urls: --- * Use is subject to license terms which appear in the file named - * ISC-LICENSE that should have accompanied this file when you - * received it. If a file named ISC-LICENSE did not accompany this + * {{ISC-LICENSE}} that should have accompanied this file when you + * received it. If a file named {{ISC-LICENSE}} did not accompany this * file, or you are not sure the one you have is correct, you may * obtain an applicable copy of the license at: * diff --git a/src/licensedcode/data/rules/isc_0.RULE b/src/licensedcode/data/rules/isc_0.RULE index 8fe4cbb282..22249d99ea 100644 --- a/src/licensedcode/data/rules/isc_0.RULE +++ b/src/licensedcode/data/rules/isc_0.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This is free software, licensed under the ISC License. \ No newline at end of file +This is free software, licensed under the {{ISC License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_10.RULE b/src/licensedcode/data/rules/isc_10.RULE index f5ff07ed51..bbd3122eb3 100644 --- a/src/licensedcode/data/rules/isc_10.RULE +++ b/src/licensedcode/data/rules/isc_10.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -ISC License (Bind,DHCP Server) \ No newline at end of file +{{ISC License}} (Bind,DHCP Server) \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_103.RULE b/src/licensedcode/data/rules/isc_103.RULE index 3362115ce3..3f25cd7ac9 100644 --- a/src/licensedcode/data/rules/isc_103.RULE +++ b/src/licensedcode/data/rules/isc_103.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the copyfree ISC License. \ No newline at end of file +licensed under the copyfree {{ISC License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_104.RULE b/src/licensedcode/data/rules/isc_104.RULE index d71c3063ce..4ac7fea53a 100644 --- a/src/licensedcode/data/rules/isc_104.RULE +++ b/src/licensedcode/data/rules/isc_104.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed under the liberal ISC license, so it may be used in +licensed under the liberal {{ISC license}}, so it may be used in open source or commercial projects. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_105.RULE b/src/licensedcode/data/rules/isc_105.RULE index ff931b2e76..e49da71076 100644 --- a/src/licensedcode/data/rules/isc_105.RULE +++ b/src/licensedcode/data/rules/isc_105.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -files are licensed under the ISC license. \ No newline at end of file +files are licensed under the {{ISC license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_11.RULE b/src/licensedcode/data/rules/isc_11.RULE index ef29f1f4d7..963f78fb48 100644 --- a/src/licensedcode/data/rules/isc_11.RULE +++ b/src/licensedcode/data/rules/isc_11.RULE @@ -4,7 +4,7 @@ is_license_text: yes minimum_coverage: 100 --- -The ISC License +The {{ISC License}} Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/src/licensedcode/data/rules/isc_112.RULE b/src/licensedcode/data/rules/isc_112.RULE index 7098fcdc8a..b51a4611ab 100644 --- a/src/licensedcode/data/rules/isc_112.RULE +++ b/src/licensedcode/data/rules/isc_112.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -are under the ISC license: \ No newline at end of file +are under the {{ISC license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_114.RULE b/src/licensedcode/data/rules/isc_114.RULE new file mode 100644 index 0000000000..b43898f571 --- /dev/null +++ b/src/licensedcode/data/rules/isc_114.RULE @@ -0,0 +1,10 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 99 +referenced_filenames: + - LICENSE +--- + +* This program is made available under an {{ISC-style license}}. See the + * accompanying file LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_115.RULE b/src/licensedcode/data/rules/isc_115.RULE new file mode 100644 index 0000000000..cbc2be6ebd --- /dev/null +++ b/src/licensedcode/data/rules/isc_115.RULE @@ -0,0 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 99 +--- + +* This program is made available under an {{ISC-style license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_116.RULE b/src/licensedcode/data/rules/isc_116.RULE new file mode 100644 index 0000000000..922336d508 --- /dev/null +++ b/src/licensedcode/data/rules/isc_116.RULE @@ -0,0 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 99 +--- + +available under an {{ISC-style license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_117.RULE b/src/licensedcode/data/rules/isc_117.RULE new file mode 100644 index 0000000000..bd35892f4b --- /dev/null +++ b/src/licensedcode/data/rules/isc_117.RULE @@ -0,0 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + +This program is made available under an {{ISC license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_118.RULE b/src/licensedcode/data/rules/isc_118.RULE new file mode 100644 index 0000000000..d3304163e1 --- /dev/null +++ b/src/licensedcode/data/rules/isc_118.RULE @@ -0,0 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + +made available under an {{ISC license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_119.RULE b/src/licensedcode/data/rules/isc_119.RULE new file mode 100644 index 0000000000..fdd945d94f --- /dev/null +++ b/src/licensedcode/data/rules/isc_119.RULE @@ -0,0 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + +available under an {{ISC license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_12.RULE b/src/licensedcode/data/rules/isc_12.RULE index 3f24bb6cc6..a091d9c5d6 100644 --- a/src/licensedcode/data/rules/isc_12.RULE +++ b/src/licensedcode/data/rules/isc_12.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -ISC License (ISCL) \ No newline at end of file +{{ISC License (ISCL)}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_120.RULE b/src/licensedcode/data/rules/isc_120.RULE new file mode 100644 index 0000000000..10f25ce162 --- /dev/null +++ b/src/licensedcode/data/rules/isc_120.RULE @@ -0,0 +1,7 @@ +--- +license_expression: isc +is_license_notice: yes +relevance: 100 +--- + +under an {{ISC license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_13.RULE b/src/licensedcode/data/rules/isc_13.RULE index 368eb6d5ca..374357e9bc 100644 --- a/src/licensedcode/data/rules/isc_13.RULE +++ b/src/licensedcode/data/rules/isc_13.RULE @@ -4,7 +4,7 @@ is_license_text: yes minimum_coverage: 100 --- -ISC License +{{ISC License}} Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice diff --git a/src/licensedcode/data/rules/isc_17.RULE b/src/licensedcode/data/rules/isc_17.RULE index 4a2ebad481..3f1419c51b 100644 --- a/src/licensedcode/data/rules/isc_17.RULE +++ b/src/licensedcode/data/rules/isc_17.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -fall under the ISC license. \ No newline at end of file +fall under the {{ISC license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_22.RULE b/src/licensedcode/data/rules/isc_22.RULE index 0cbcc9759e..f4e866277f 100644 --- a/src/licensedcode/data/rules/isc_22.RULE +++ b/src/licensedcode/data/rules/isc_22.RULE @@ -1,7 +1,8 @@ --- license_expression: isc is_license_reference: yes +is_required_phrase: yes relevance: 99 --- -ISC License \ No newline at end of file +{{ISC License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_23.RULE b/src/licensedcode/data/rules/isc_23.RULE index 4978ce2ae5..14ebf9d195 100644 --- a/src/licensedcode/data/rules/isc_23.RULE +++ b/src/licensedcode/data/rules/isc_23.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the ISC license. \ No newline at end of file +Licensed under the {{ISC license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_26.RULE b/src/licensedcode/data/rules/isc_26.RULE index 8bdadc93de..f36f7354f7 100644 --- a/src/licensedcode/data/rules/isc_26.RULE +++ b/src/licensedcode/data/rules/isc_26.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -project contains or reuses code that is licensed under the ISC license from the following projects. \ No newline at end of file +project contains or reuses code that is licensed under the {{ISC license}} from the following projects. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_27.RULE b/src/licensedcode/data/rules/isc_27.RULE index f4ad18fa63..7db8deedcb 100644 --- a/src/licensedcode/data/rules/isc_27.RULE +++ b/src/licensedcode/data/rules/isc_27.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This is free software, licensed under The ISC License. \ No newline at end of file +This is free software, licensed under The {{ISC License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_29.RULE b/src/licensedcode/data/rules/isc_29.RULE index d102671137..3ab66c7e6e 100644 --- a/src/licensedcode/data/rules/isc_29.RULE +++ b/src/licensedcode/data/rules/isc_29.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -is licensed under the liberal ISC license, so it may be used in +is licensed under the liberal {{ISC license}}, so it may be used in open source or commercial projects. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_30.RULE b/src/licensedcode/data/rules/isc_30.RULE index a161c57eff..ff23851719 100644 --- a/src/licensedcode/data/rules/isc_30.RULE +++ b/src/licensedcode/data/rules/isc_30.RULE @@ -8,4 +8,4 @@ ignorable_urls: ## License - is licensed under the [copyfree](http://copyfree.org) ISC License. \ No newline at end of file + is licensed under the [copyfree](http://copyfree.org) {{ISC License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_31.RULE b/src/licensedcode/data/rules/isc_31.RULE index 3ce0dd15e8..78bb2054a2 100644 --- a/src/licensedcode/data/rules/isc_31.RULE +++ b/src/licensedcode/data/rules/isc_31.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://copyfree.org/ --- -is licensed under the [copyfree](http://copyfree.org) ISC License. \ No newline at end of file +is licensed under the [copyfree](http://copyfree.org) {{ISC License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_46.RULE b/src/licensedcode/data/rules/isc_46.RULE index f42f97319d..7e2b5ed96d 100644 --- a/src/licensedcode/data/rules/isc_46.RULE +++ b/src/licensedcode/data/rules/isc_46.RULE @@ -5,7 +5,7 @@ relevance: 100 minimum_coverage: 99 --- -The README, CHANGES, FAQ and TODO files are licensed under the ISC license. All +The README, CHANGES, FAQ and TODO files are licensed under the {{ISC license}}. All other files have a license and copyright notice at their start, typically: Permission to use, copy, modify, and distribute this software for any diff --git a/src/licensedcode/data/rules/isc_47.RULE b/src/licensedcode/data/rules/isc_47.RULE index 51c35cedd3..946b5917fe 100644 --- a/src/licensedcode/data/rules/isc_47.RULE +++ b/src/licensedcode/data/rules/isc_47.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Open Source Software Licensed Under the ISC License: \ No newline at end of file +Open Source Software Licensed Under the {{ISC License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_48.RULE b/src/licensedcode/data/rules/isc_48.RULE index 3ac83dfef1..55f656d91a 100644 --- a/src/licensedcode/data/rules/isc_48.RULE +++ b/src/licensedcode/data/rules/isc_48.RULE @@ -5,7 +5,7 @@ relevance: 100 minimum_coverage: 100 --- -Terms of the ISC License: +Terms of the {{ISC License}}: Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_49.RULE b/src/licensedcode/data/rules/isc_49.RULE index 068223aaf6..77e26fcace 100644 --- a/src/licensedcode/data/rules/isc_49.RULE +++ b/src/licensedcode/data/rules/isc_49.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the ISC license \ No newline at end of file +under the {{ISC license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_51.RULE b/src/licensedcode/data/rules/isc_51.RULE index ab4dc04dfc..37c097cb8a 100644 --- a/src/licensedcode/data/rules/isc_51.RULE +++ b/src/licensedcode/data/rules/isc_51.RULE @@ -8,4 +8,4 @@ referenced_filenames: --- # This software may be modified and distributed under the terms -# of the ISC license. See the LICENSE file for details. \ No newline at end of file +# of the {{ISC license}}. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_53.RULE b/src/licensedcode/data/rules/isc_53.RULE index 079913b316..b0970797a4 100644 --- a/src/licensedcode/data/rules/isc_53.RULE +++ b/src/licensedcode/data/rules/isc_53.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -this software may be distributed under the terms of ISC -license, see COPYING for more details. \ No newline at end of file +this software may be distributed under the terms of {{ISC +license}}, see COPYING for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_55.RULE b/src/licensedcode/data/rules/isc_55.RULE index ab573637f6..e26e419a5b 100644 --- a/src/licensedcode/data/rules/isc_55.RULE +++ b/src/licensedcode/data/rules/isc_55.RULE @@ -6,7 +6,7 @@ referenced_filenames: - LICENSE.txt --- -Licensed under the ISC License (the "License"). You may not use this file +Licensed under the {{ISC License}} (the "License"). You may not use this file except in compliance with the License. A copy of the License is in the LICENSE.txt file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR diff --git a/src/licensedcode/data/rules/isc_56.RULE b/src/licensedcode/data/rules/isc_56.RULE index f6322ba05c..a1a11ff0bd 100644 --- a/src/licensedcode/data/rules/isc_56.RULE +++ b/src/licensedcode/data/rules/isc_56.RULE @@ -8,4 +8,4 @@ referenced_filenames: License -This software is licensed under the ISC License, the text of which can be found in [LICENSE.txt](LICENSE.txt). \ No newline at end of file +This software is licensed under the {{ISC License}}, the text of which can be found in [LICENSE.txt](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_57.RULE b/src/licensedcode/data/rules/isc_57.RULE index e2f360d4f2..7450d95bb4 100644 --- a/src/licensedcode/data/rules/isc_57.RULE +++ b/src/licensedcode/data/rules/isc_57.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -This software is licensed under the ISC License, the text of which can be found in [LICENSE.txt](LICENSE.txt). \ No newline at end of file +This software is licensed under the {{ISC License}}, the text of which can be found in [LICENSE.txt](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_58.RULE b/src/licensedcode/data/rules/isc_58.RULE index 759617555d..6553a2d4fc 100644 --- a/src/licensedcode/data/rules/isc_58.RULE +++ b/src/licensedcode/data/rules/isc_58.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the ISC License \ No newline at end of file +This software is licensed under the {{ISC License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_59.RULE b/src/licensedcode/data/rules/isc_59.RULE index 8696c44fe3..a829569aa7 100644 --- a/src/licensedcode/data/rules/isc_59.RULE +++ b/src/licensedcode/data/rules/isc_59.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -This software is licensed under the ISC License, the text of which can be found in [LICENSE.txt] \ No newline at end of file +This software is licensed under the {{ISC License}}, the text of which can be found in [LICENSE.txt] \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_60.RULE b/src/licensedcode/data/rules/isc_60.RULE index 58c0118e95..6403ea68a1 100644 --- a/src/licensedcode/data/rules/isc_60.RULE +++ b/src/licensedcode/data/rules/isc_60.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.isc.org/downloads/software-support-policy/isc-license/ --- -; Licensed under the ISC License, ( the "License"); +; Licensed under the {{ISC License}}, ( the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; diff --git a/src/licensedcode/data/rules/isc_61.RULE b/src/licensedcode/data/rules/isc_61.RULE index 402e330cff..0760df37ed 100644 --- a/src/licensedcode/data/rules/isc_61.RULE +++ b/src/licensedcode/data/rules/isc_61.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.isc.org/downloads/software-support-policy/isc-license/ --- -; Licensed under the ISC License, ( the "License"); +; Licensed under the {{ISC License}}, ( the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; diff --git a/src/licensedcode/data/rules/isc_65.RULE b/src/licensedcode/data/rules/isc_65.RULE index c254d4090d..9739d93e0b 100644 --- a/src/licensedcode/data/rules/isc_65.RULE +++ b/src/licensedcode/data/rules/isc_65.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -Unless otherwise marked, everything in this repo is licensed under the [ISC License]. \ No newline at end of file +Unless otherwise marked, everything in this repo is licensed under the [{{ISC License}}]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_66.RULE b/src/licensedcode/data/rules/isc_66.RULE index 9a2173080b..f375495c58 100644 --- a/src/licensedcode/data/rules/isc_66.RULE +++ b/src/licensedcode/data/rules/isc_66.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Unless otherwise marked, everything in this repo is licensed under the [ISC License]. \ No newline at end of file +Unless otherwise marked, everything in this repo is licensed under the [{{ISC License}}]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_67.RULE b/src/licensedcode/data/rules/isc_67.RULE index 2011a46bca..08246f0137 100644 --- a/src/licensedcode/data/rules/isc_67.RULE +++ b/src/licensedcode/data/rules/isc_67.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -everything in this repo is licensed under the [ISC License]. \ No newline at end of file +everything in this repo is licensed under the [{{ISC License}}]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_68.RULE b/src/licensedcode/data/rules/isc_68.RULE index a56fee9b44..5fff983505 100644 --- a/src/licensedcode/data/rules/isc_68.RULE +++ b/src/licensedcode/data/rules/isc_68.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.isc.org/downloads/software-support-policy/isc-license/ --- -licensed under the ISC License, ( the "License"); +licensed under the {{ISC License}}, ( the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/isc_69.RULE b/src/licensedcode/data/rules/isc_69.RULE index 84b0461fdb..a3e923e785 100644 --- a/src/licensedcode/data/rules/isc_69.RULE +++ b/src/licensedcode/data/rules/isc_69.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The following libraries are licensed under the ISC License: \ No newline at end of file +The following libraries are licensed under the {{ISC License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_70.RULE b/src/licensedcode/data/rules/isc_70.RULE index 9372222ce4..5bf8513db6 100644 --- a/src/licensedcode/data/rules/isc_70.RULE +++ b/src/licensedcode/data/rules/isc_70.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the ISC license, the full text of which is reproduced below: \ No newline at end of file +licensed under the {{ISC license}}, the full text of which is reproduced below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_71.RULE b/src/licensedcode/data/rules/isc_71.RULE index eae4b6d330..f0c6a61849 100644 --- a/src/licensedcode/data/rules/isc_71.RULE +++ b/src/licensedcode/data/rules/isc_71.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -licensed under the ISC license. The license can be found in the COPYING file that should have accompanied this release. \ No newline at end of file +licensed under the {{ISC license}}. The license can be found in the COPYING file that should have accompanied this release. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_72.RULE b/src/licensedcode/data/rules/isc_72.RULE index 15db41af2c..b61af5801b 100644 --- a/src/licensedcode/data/rules/isc_72.RULE +++ b/src/licensedcode/data/rules/isc_72.RULE @@ -8,4 +8,4 @@ referenced_filenames: License -This software is licenced under the ISC License, the text of which can be found in [LICENSE.txt](LICENSE.txt). \ No newline at end of file +This software is licenced under the {{ISC License}}, the text of which can be found in [LICENSE.txt](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_73.RULE b/src/licensedcode/data/rules/isc_73.RULE index bc2c7a215b..7ca3329eca 100644 --- a/src/licensedcode/data/rules/isc_73.RULE +++ b/src/licensedcode/data/rules/isc_73.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -This software is licenced under the ISC License, the text of which can be found in [LICENSE.txt](LICENSE.txt). \ No newline at end of file +This software is licenced under the {{ISC License}}, the text of which can be found in [LICENSE.txt](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_74.RULE b/src/licensedcode/data/rules/isc_74.RULE index 39ef1f7203..98c4deb049 100644 --- a/src/licensedcode/data/rules/isc_74.RULE +++ b/src/licensedcode/data/rules/isc_74.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licenced under the ISC License \ No newline at end of file +This software is licenced under the {{ISC License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_75.RULE b/src/licensedcode/data/rules/isc_75.RULE index 089fac5a96..1c499d5db3 100644 --- a/src/licensedcode/data/rules/isc_75.RULE +++ b/src/licensedcode/data/rules/isc_75.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -This software is licenced under the ISC License, the text of which can be found in [LICENSE.txt] \ No newline at end of file +This software is licenced under the {{ISC License}}, the text of which can be found in [LICENSE.txt] \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_76.RULE b/src/licensedcode/data/rules/isc_76.RULE index e5c8d8443c..74cd979d99 100644 --- a/src/licensedcode/data/rules/isc_76.RULE +++ b/src/licensedcode/data/rules/isc_76.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licenced under the ISC License \ No newline at end of file +licenced under the {{ISC License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_77.RULE b/src/licensedcode/data/rules/isc_77.RULE index cefd397109..3062d62360 100644 --- a/src/licensedcode/data/rules/isc_77.RULE +++ b/src/licensedcode/data/rules/isc_77.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -Unless otherwise marked, everything in this repo is licenced under the [ISC License]. \ No newline at end of file +Unless otherwise marked, everything in this repo is licenced under the [{{ISC License}}]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_78.RULE b/src/licensedcode/data/rules/isc_78.RULE index dae8c0a54a..2e148ac2a2 100644 --- a/src/licensedcode/data/rules/isc_78.RULE +++ b/src/licensedcode/data/rules/isc_78.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Unless otherwise marked, everything in this repo is licenced under the [ISC License]. \ No newline at end of file +Unless otherwise marked, everything in this repo is licenced under the [{{ISC License}}]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_79.RULE b/src/licensedcode/data/rules/isc_79.RULE index 987cadf476..4ee834ec2a 100644 --- a/src/licensedcode/data/rules/isc_79.RULE +++ b/src/licensedcode/data/rules/isc_79.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -everything in this repo is licenced under the [ISC License]. \ No newline at end of file +everything in this repo is licenced under the [{{ISC License}}]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_80.RULE b/src/licensedcode/data/rules/isc_80.RULE index 712fdc82ef..1379054b16 100644 --- a/src/licensedcode/data/rules/isc_80.RULE +++ b/src/licensedcode/data/rules/isc_80.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The following libraries are licenced under the ISC License: \ No newline at end of file +The following libraries are licenced under the {{ISC License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_81.RULE b/src/licensedcode/data/rules/isc_81.RULE index a20caa0836..cbda23d95f 100644 --- a/src/licensedcode/data/rules/isc_81.RULE +++ b/src/licensedcode/data/rules/isc_81.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licenced under the ISC license, the full text of which is reproduced below: \ No newline at end of file +licenced under the {{ISC license}}, the full text of which is reproduced below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_82.RULE b/src/licensedcode/data/rules/isc_82.RULE index 93e1695207..30f7f37a15 100644 --- a/src/licensedcode/data/rules/isc_82.RULE +++ b/src/licensedcode/data/rules/isc_82.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -licenced under the ISC license. The license can be found in the COPYING file that should have accompanied this release. \ No newline at end of file +licenced under the {{ISC license}}. The license can be found in the COPYING file that should have accompanied this release. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_84.RULE b/src/licensedcode/data/rules/isc_84.RULE index 6cb24ae85b..1cd800c351 100644 --- a/src/licensedcode/data/rules/isc_84.RULE +++ b/src/licensedcode/data/rules/isc_84.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -ISC License (MIT- Style) \ No newline at end of file +{{ISC License}} (MIT- Style) \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_85.RULE b/src/licensedcode/data/rules/isc_85.RULE index 00e0370f3c..c7dd338ce5 100644 --- a/src/licensedcode/data/rules/isc_85.RULE +++ b/src/licensedcode/data/rules/isc_85.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://opensource.org/licenses/isc-license.txt --- -ISC LICENSE +{{ISC LICENSE}} This license is approved by the OSI and FSF as GPL-compatible. http://opensource.org/licenses/isc-license.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_86.RULE b/src/licensedcode/data/rules/isc_86.RULE index 1d8503d179..21d7bb2ec6 100644 --- a/src/licensedcode/data/rules/isc_86.RULE +++ b/src/licensedcode/data/rules/isc_86.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ISC license used for completely new code \ No newline at end of file +{{ISC license}} used for completely new code \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_87.RULE b/src/licensedcode/data/rules/isc_87.RULE index c937e014bf..ec1e57b2f1 100644 --- a/src/licensedcode/data/rules/isc_87.RULE +++ b/src/licensedcode/data/rules/isc_87.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://copyfree.org/ --- -licensed under the [copyfree](http://copyfree.org) ISC License. \ No newline at end of file +licensed under the [copyfree](http://copyfree.org) {{ISC License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_89.RULE b/src/licensedcode/data/rules/isc_89.RULE index 645566f6ed..e0a529389c 100644 --- a/src/licensedcode/data/rules/isc_89.RULE +++ b/src/licensedcode/data/rules/isc_89.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: ISC License \ No newline at end of file +name: {{ISC License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_90.RULE b/src/licensedcode/data/rules/isc_90.RULE index 8521d679ba..be13ee70dd 100644 --- a/src/licensedcode/data/rules/isc_90.RULE +++ b/src/licensedcode/data/rules/isc_90.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -ISC ISC License \ No newline at end of file +ISC {{ISC License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_91.RULE b/src/licensedcode/data/rules/isc_91.RULE index 21df93c6f8..01555c6817 100644 --- a/src/licensedcode/data/rules/isc_91.RULE +++ b/src/licensedcode/data/rules/isc_91.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -ISC License ISC \ No newline at end of file +{{ISC License}} ISC \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_92.RULE b/src/licensedcode/data/rules/isc_92.RULE index 1c024864c7..4793b3086b 100644 --- a/src/licensedcode/data/rules/isc_92.RULE +++ b/src/licensedcode/data/rules/isc_92.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: ISC License \ No newline at end of file +license: {{ISC License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/isc_94.RULE b/src/licensedcode/data/rules/isc_94.RULE index a6b125abb6..adc3ed16cc 100644 --- a/src/licensedcode/data/rules/isc_94.RULE +++ b/src/licensedcode/data/rules/isc_94.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -wikipedia.org/wiki/ISC_license \ No newline at end of file +wikipedia.org/wiki/{{ISC_license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus.RULE index 920c5c6e4b..64bff34ad6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus.RULE @@ -4,4 +4,4 @@ is_license_notice: yes minimum_coverage: 50 --- -under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. \ No newline at end of file +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_0.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_0.RULE index 76560cc261..bb60149157 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_0.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_0.RULE @@ -8,15 +8,15 @@ relevance: 100 ;;;; ;;;; ;;;; This library is free software; you can redistribute it and/or -;;;; modify it under the terms of the GNU Lesser General Public +;;;; modify it under the terms of the {{GNU Lesser General Public ;;;; License as published by the Free Software Foundation; either -;;;; version 2 of the License, or (at your option) any later version. +;;;; version 2 of the License, or (at your option) any later version}}. ;;;; ;;;; This library is distributed in the hope that it will be useful, ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;;;; Lesser General Public License for more details. +;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +;;;; Lesser General Public License}} for more details. ;;;; -;;;; You should have received a copy of the GNU Lesser General Public -;;;; License along with this library; if not, write to the Free Software +;;;; You should have received a copy of the {{GNU Lesser General Public +;;;; License}} along with this library; if not, write to the Free Software ;;;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_1.RULE index b1545e7c62..0abc2c4a7b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_1.RULE @@ -6,12 +6,12 @@ notes: this is a confused notice mixing v2 and v2.1 references --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as published by +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at -your option) any later version. +your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy -of the GNU Lesser General Public License \ No newline at end of file +of the {{GNU Lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_10.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_10.RULE index 4b65a64f03..0bc9b990cd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_10.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_10.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU Library General Public License as published by + * under the terms of the {{GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or (at your - * option) any later version. + * option) any later version}}. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License + * FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Library General Public License}} * for more details. * - * You should have received a copy of the GNU Library General Public License + * You should have received a copy of the {{GNU Library General Public License}} * along with this program; if not, write to the Free Software Foundation, * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_102.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_102.RULE index 05ecf63dcc..ac4e85d3e6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_102.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_102.RULE @@ -7,23 +7,23 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Library General Public License}} for more details. In this library we denote the Java package ' to be the library under the GNU LGPL. Where the GNU LGPL refers to object files these should be understood to be files with the extension .class - You should have received a copy of the GNU Library General Public - License along with this library; if not, write to the Free + You should have received a copy of the {{GNU Library General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - A copy of the GNU Library General Public License is also available + A copy of the {{GNU Library General Public License}} is also available on the world-wide-web at ftp://prep.ai.mit.edu/pub/gnu/GNUinfo/LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_11.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_11.RULE index 126950341a..d5ce373565 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_11.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_11.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public + * modify it under the terms of the {{GNU Library General Public * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. + * version 2 of the License, or (at your option) any later version}}. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Library General Public License}} for more details. * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the Free + * You should have received a copy of the {{GNU Library General Public + * License}} along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_110.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_110.RULE index d9b5a4031f..76e6edc5ab 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_110.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_110.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-2.0-plus -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -lgpl 2+ \ No newline at end of file +lgpl 2+ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_117.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_117.RULE index 86497623e5..ce660e58ea 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_117.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_117.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -lgpl 2.0 plus \ No newline at end of file +{{lgpl 2.0}} plus \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_12.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_12.RULE index 414ac17fb8..dac797c607 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_12.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_12.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -# This file is part of a program licensed under the terms of the GNU Lesser -# General Public License version 2 (or at your option any later version) +# This file is part of a program licensed under the terms of the {{GNU Lesser +# General Public License version 2}} (or at your option any later version) # as published by the Free Software Foundation: http://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_13.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_13.RULE index 41b883ba90..59daeec90d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_13.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_13.RULE @@ -3,8 +3,8 @@ license_expression: lgpl-2.0-plus is_license_notice: yes --- -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. -This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. +This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation \ No newline at end of file +You should have received a copy of the {{GNU Library General Public License}} along with this library; if not, write to the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_14.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_14.RULE index 46f2d8c27a..d6d8b25b56 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_14.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_14.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU Library General Public License as published by + * under the terms of the {{GNU Library General Public License as published by * the Free Software Foundation; either version 2 of the License, or (at your - * option) any later version. + * option) any later version}}. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License + * FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Library General Public License}} * for more details. * - * You should have received a copy of the GNU Library General Public License + * You should have received a copy of the {{GNU Library General Public License}} * along with this program; if not, write to the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_15.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_15.RULE index f4a8dbabe2..cf90b1db96 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_15.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_15.RULE @@ -4,18 +4,18 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by the + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your - option) any later version. + option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - See /usr/share/common-licenses/LGPL-2 on your debian system. \ No newline at end of file + See {{/usr/share/common-licenses/LGPL-2}} on your debian system. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_157.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_157.RULE index 443e6d893e..ad456cf683 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_157.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_157.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -gnu lgpl 2+ \ No newline at end of file +gnu {{lgpl 2+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_16.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_16.RULE index 9c6dfb9846..f1359f6f70 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_16.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_16.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. -On Debian systems, the complete text of the GNU Library General Public -License can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file +On Debian systems, the complete text of the {{GNU Library General Public +License}} can be found in {{/usr/share/common-licenses/LGPL-2}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_160.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_160.RULE index bf75564079..40e873749b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_160.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_160.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -gnu lgpl 2.0+ \ No newline at end of file +gnu {{lgpl 2.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_165.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_165.RULE index b7cd93a20f..fe96067ab5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_165.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_165.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-2.0-plus -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gnu lgpl 2.0 plus \ No newline at end of file +gnu lgpl 2.0 plus diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_17.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_17.RULE index 49230007fd..08af33794e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_17.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_17.RULE @@ -8,18 +8,18 @@ referenced_filenames: --- This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this package; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU Lesser General +Public License}} can be found in `/usr/share/common-licenses/LGPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_172.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_172.RULE index fe3fdac3e6..1286ba8d0d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_172.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_172.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- # This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Library General Public +# modify it under the terms of the {{GNU Library General Public # License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# version 2 of the License, or (at your option) any later version}}. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Library General Public License for more details. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +# Library General Public License}} for more details. # -# You should have received a copy of the GNU Library General Public -# License along with this library. If not, see . \ No newline at end of file +# You should have received a copy of the {{GNU Library General Public +# License}} along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_173.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_173.RULE index 2563c970ff..0178d639ce 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_173.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_173.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- # This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public +# modify it under the terms of the {{GNU Lesser General Public # License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# version 2 of the License, or (at your option) any later version}}. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +# Lesser General Public License}} for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with this library. If not, see . \ No newline at end of file +# You should have received a copy of the {{GNU Lesser General Public +# License}} along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_177.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_177.RULE index bb26cfd601..03a1000960 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_177.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_177.RULE @@ -6,4 +6,4 @@ relevance: 100 License -All source code is licensed under the GNU Lesser General Public License \ No newline at end of file +All source code is licensed under the {{GNU Lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_178.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_178.RULE index 5faefa92f7..d263bed5f1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_178.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_178.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- ## License -All source code is licensed under the [GNU Lesser General Public License](http://www.gnu.org/licenses/lgpl.html) \ No newline at end of file +All source code is licensed under the [{{GNU Lesser General Public License}}](http://www.gnu.org/licenses/lgpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_18.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_18.RULE index bd653d6e24..1ab409cdf8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_18.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_18.RULE @@ -4,18 +4,18 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this package; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the complete text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_181.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_181.RULE index 0210fc322d..fd287d8011 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_181.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_181.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/lgpl-license.php --- -The distribution is licensed under the terms of the GNU Lesser General Public License (http://www.opensource.org/licenses/lgpl-license.php). \ No newline at end of file +The distribution is licensed under the terms of the {{GNU Lesser General Public License}} (http://www.opensource.org/licenses/lgpl-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_183.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_183.RULE index 95b54ba862..c64cd152d5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_183.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_183.RULE @@ -6,6 +6,6 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2 --- -License: LGPL-2+ +{{License: LGPL-2+}} On Debian systems the full text of the GNU LGPL v2 can be found in the `/usr/share/common-licenses/LGPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_184.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_184.RULE index cf47288726..81e06701d7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_184.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_184.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- // This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU Lesser General Public License +// modify it under the terms of the {{GNU Lesser General Public License // as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. +// of the License, or (at your option) any later version}}. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// {{GNU Lesser General Public License}} for more details. // -// You should have received a copy of the GNU Lesser General Public License +// You should have received a copy of the {{GNU Lesser General Public License}} // along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_185.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_185.RULE index 7704a4cbb9..6320a70735 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_185.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_185.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU Library General Public License \ No newline at end of file +under the {{GNU Library General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_186.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_186.RULE index d66affdfca..61335d1c84 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_186.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_186.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_19.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_19.RULE index 126c6666fd..0dde2a6ed1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_19.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_19.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this package; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_2.RULE index 5e2197be10..8915d5409c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_2.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_20.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_20.RULE index e82443b2e2..4580c333a8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_20.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_20.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- you can redistribute it and/or modify it -under the terms of the GNU Library General Public License as published +under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_21.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_21.RULE index 51c2a53feb..fe09ce61ba 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_21.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_21.RULE @@ -10,18 +10,18 @@ referenced_filenames: Copyright: This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this package; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU Lesser General +Public License}} can be found in `/usr/share/common-licenses/LGPL'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_215.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_215.RULE index b3aa78c089..540a83b0f1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_215.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_215.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GNU Library General Public License \ No newline at end of file +the {{GNU Library General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_216.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_216.RULE index 731ca7fb43..06775bc860 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_216.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_216.RULE @@ -4,8 +4,8 @@ is_license_notice: yes relevance: 99 --- -Of course you have to respect the GNU Library General Public -License which covers the use of the GNU `gettext' library. This means +Of course you have to respect the {{GNU Library General Public +License}} which covers the use of the GNU `gettext' library. This means in particular that even non-free programs can use `libintl' as a shared library, whereas only free software can use `libintl' as a static library or use modified versions of `libintl'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_22.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_22.RULE index 31b8cf8a1c..fd5d74bdcb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_22.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_22.RULE @@ -10,17 +10,17 @@ referenced_filenames: License: This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by the + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your - option) any later version. + option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_227.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_227.RULE index dfd70c8a51..58ede7c242 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_227.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_227.RULE @@ -5,11 +5,11 @@ relevance: 100 --- # This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public +# modify it under the terms of the {{GNU Lesser General Public # License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# version 2 of the License, or (at your option) any later version}}. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. \ No newline at end of file +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +# Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_23.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_23.RULE index 26f0cf3420..a81aa866f5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_23.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_23.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public + * modify it under the terms of the {{GNU Library General Public * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. + * version 2 of the License, or (at your option) any later version}}. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Library General Public License}} for more details. * - * You should have received a copy of the GNU Library General Public License + * You should have received a copy of the {{GNU Library General Public License}} * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_234.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_234.RULE index a7af93b67e..13f559fe81 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_234.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_234.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public License as + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Library General Public License}} for more details. - You should have received a copy of the GNU Library General Public - License along with the GNU C Library; see the file COPYING.LIB. If not, + You should have received a copy of the {{GNU Library General Public + License}} along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_235.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_235.RULE index 3f6136cbd0..102ea1b406 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_235.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_235.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with the GNU C Library; see the file COPYING.LIB. If +You should have received a copy of the {{GNU Library General Public +License}} along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_236.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_236.RULE index 7279bf9f1b..0a21cda9e1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_236.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_236.RULE @@ -8,17 +8,17 @@ notes: contains a repeated trailing address fragment --- The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with the GNU C Library; see the file COPYING.LIB. If +You should have received a copy of the {{GNU Library General Public +License}} along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ Cambridge, MA 02139, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_238.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_238.RULE index ab065b9af5..4fd076d1e6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_238.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_238.RULE @@ -18,19 +18,19 @@ ignorable_urls: * under the following terms: * * This is free software. It is licensed for use, modification and - * redistribution under the terms of the GNU Lesser General Public License, - * version 2 or later + * redistribution under the terms of the {{GNU Lesser General Public License, + * version 2}} or later * * The genshellopt library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public License as + * modify it under the terms of the {{GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. + * License, or (at your option) any later version}}. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Library General Public License}} for more details. * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, see + * You should have received a copy of the {{GNU Library General Public + * License}} along with this library; if not, see * \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_239.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_239.RULE index d063d53d19..64e983c18a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_239.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_239.RULE @@ -18,19 +18,19 @@ ignorable_urls: * under the following terms: * * This is free software. It is licensed for use, modification and - * redistribution under the terms of the GNU Lesser General Public License, - * version 2 or later + * redistribution under the terms of the {{GNU Lesser General Public License, + * version 2}} or later * * The genshellopt library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public License as + * modify it under the terms of the {{GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. + * License, or (at your option) any later version}}. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Library General Public License}} for more details. * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, see + * You should have received a copy of the {{GNU Library General Public + * License}} along with this library; if not, see * \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_24.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_24.RULE index d5498050c8..414e28f6af 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_24.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_24.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- Libiberty is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. Libiberty is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with libiberty; see the file COPYING.LIB. If +You should have received a copy of the {{GNU Library General Public +License}} along with libiberty; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_25.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_25.RULE index deab4e19ff..bc983ff99b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_25.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_25.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- # This program is free software; you can redistribute it and/or modify it -# under the terms of the GNU Library General Public License as published +# under the terms of the {{GNU Library General Public License as published # by the Free Software Foundation; either version 2, or (at your option) -# any later version. +# any later version}}. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Library General Public License for more details. \ No newline at end of file +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +# Library General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_28.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_28.RULE index ad6f8b5c8b..320402aa51 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_28.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_28.RULE @@ -7,14 +7,14 @@ is_license_notice: yes Copyright (C) year This library is free software; you can redistribute it and/or modify it under -the terms of the GNU Library General Public License as published by the Free +the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) -any later version. +any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU Library General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public License along +You should have received a copy of the {{GNU Library General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_29.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_29.RULE index 935a1ec110..e3cb4771bd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_29.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_29.RULE @@ -8,19 +8,19 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems, the complete text of the GNU Library General Public -License can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file +On Debian systems, the complete text of the {{GNU Library General Public +License}} can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_3.RULE index 48f205225f..3600a66aa9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_3.RULE @@ -7,16 +7,16 @@ notes: GNU C Library variant --- The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public License as + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Library General Public License}} for more details. - You should have received a copy of the GNU Library General Public - License along with the GNU C Library; see the file COPYING.LIB. If not, + You should have received a copy of the {{GNU Library General Public + License}} along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_30.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_30.RULE index e74bcced2e..1a1af3d27e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_30.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_30.RULE @@ -5,6 +5,6 @@ referenced_filenames: - COPYING --- -This file is placed under the conditions of the GNU Library -General Public License, version 2, or any later version. +This file is placed under the conditions of the {{GNU Library +General Public License, version 2, or any later version}}. See file COPYING for information on distribution conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_308.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_308.RULE index b57f7927a8..d43f325575 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_308.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_308.RULE @@ -2,6 +2,7 @@ license_expression: lgpl-2.0-plus is_license_notice: yes relevance: 100 +is_deprecated: yes --- licensed under terms of the GNU General Public License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_32.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_32.RULE index 8610e4bc9c..f44de2c155 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_32.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_32.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this package; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_33.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_33.RULE index c7d0a78d1f..54ead8654f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_33.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_33.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Library General Public License}} for more details. - You should have received a copy of the GNU Library General Public - License along with this library; if not, write to the Free + You should have received a copy of the {{GNU Library General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_331.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_331.RULE index 9735603459..b80b3758e7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_331.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_331.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License}} as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_336.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_336.RULE index 9620e6ca42..cd3f987b46 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_336.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_336.RULE @@ -7,6 +7,6 @@ referenced_filenames: --- ## License -This project as a whole is licensed under the **LGPL 2.0+** license - see the [LICENSE](LICENSE.txt) file for details. +This project as a whole is licensed under the **{{LGPL 2.0+}}** license - see the [LICENSE](LICENSE.txt) file for details. Individual source files contain the following tag instead of the full license text: \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_337.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_337.RULE index 879f55dd3b..f0f7ef9222 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_337.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_337.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; \ No newline at end of file +You should have received a copy of the {{GNU Library General Public +License}} along with this library; \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_339.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_339.RULE index ff97dc4661..125879d194 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_339.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_339.RULE @@ -7,11 +7,11 @@ notes: in newlib --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Library General Public License for more details. \ No newline at end of file +{{GNU Library General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_34.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_34.RULE index 0f29fc5117..4d59759c17 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_34.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_34.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- The Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public License as + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. The Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Library General Public License}} for more details. - You should have received a copy of the GNU Library General Public - License along with the Library; see the file COPYING.LIB. If not, + You should have received a copy of the {{GNU Library General Public + License}} along with the Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_345.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_345.RULE index f95140770d..8f97ba13a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_345.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_345.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the LGPL 2+ license. \ No newline at end of file +distributed under the {{LGPL 2+ license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_347.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_347.RULE index fd92acb2c2..e0ab2b2bd3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_347.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_347.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under LGPL 2+ \ No newline at end of file +distributed under {{LGPL 2+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_35.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_35.RULE index e4e1bbd485..3d92b54b85 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_35.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_35.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- The Gnome Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public License as + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. The Gnome Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Library General Public License}} for more details. - You should have received a copy of the GNU Library General Public - License along with the Gnome Library; see the file COPYING.LIB. If not, + You should have received a copy of the {{GNU Library General Public + License}} along with the Gnome Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_354.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_354.RULE index 5f358c7425..cb0e4f3f56 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_354.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_354.RULE @@ -8,15 +8,15 @@ notes: this is a notice mixing some (mistaken?) GPL and LGPL references and is s uses this LGPLv2 (or later) license: PulseAudio is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. PulseAudio is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with PulseAudio; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_355.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_355.RULE index ac31bde537..73dcd20561 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_355.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_355.RULE @@ -8,15 +8,15 @@ notes: this is a notice mixing some (mistaken?) GPL and LGPL references and is s uses this LGPLv2 (or later) license: is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with ; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_357.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_357.RULE index be9eb4fa41..c877231d39 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_357.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_357.RULE @@ -6,15 +6,15 @@ notes: this is a notice mixing GPL and LGPL references from Pulseaudio --- PulseAudio is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. PulseAudio is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with PulseAudio; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_358.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_358.RULE index aa454dedba..dcc66ec90d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_358.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_358.RULE @@ -6,15 +6,15 @@ notes: this is a notice mixing GPL and LGPL references from Pulseaudio --- is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. Audio is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with ; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_36.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_36.RULE index bf4dbc3ce1..a06b595a4e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_36.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_36.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_361.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_361.RULE index d09dc19a75..551d19233e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_361.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_361.RULE @@ -6,14 +6,14 @@ minimum_coverage: 80 --- This library is free software; you can redistribute it and/or modify it under -the terms of the GNU Library General Public License as published by the Free +the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any -later version. +later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU Library General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public License along +You should have received a copy of the {{GNU Library General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_363.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_363.RULE index 290cd39298..de06e6cb51 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_363.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_363.RULE @@ -11,17 +11,17 @@ ignorable_urls: /*****************************************************************************/ /* */ /* This library is free software; you can redistribute it and/or */ -/* modify it under the terms of the GNU Library General Public */ +/* modify it under the terms of the {{GNU Library General Public */ /* License as published by the Free Software Foundation; either */ -/* version 2 of the License, or (at your option) any later version. */ +/* version 2 of the License, or (at your option) any later version}}. */ /* */ /* This library is distributed in the hope that it will be useful, */ /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ -/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */ -/* Library General Public License for more details. */ +/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU */ +/* Library General Public License}} for more details. */ /* */ -/* You should have received a copy of the GNU Library General Public */ -/* License along with this library; if not, write to the */ +/* You should have received a copy of the {{GNU Library General Public */ +/* License}} along with this library; if not, write to the */ /* Free Software Foundation, Inc., */ /* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* or download a copy from ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_364.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_364.RULE index d01214d90e..2e95fe001e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_364.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_364.RULE @@ -9,16 +9,16 @@ notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9 /*****************************************************************************/ /* */ /* This library is free software; you can redistribute it and/or */ -/* modify it under the terms of the GNU Library General Public */ +/* modify it under the terms of the {{GNU Library General Public */ /* License as published by the Free Software Foundation; either */ -/* version 2 of the License, or (at your option) any later version. */ +/* version 2 of the License, or (at your option) any later version}}. */ /* */ /* This library is distributed in the hope that it will be useful, */ /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ -/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */ -/* Library General Public License for more details. */ +/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU */ +/* Library General Public License}} for more details. */ /* */ -/* You should have received a copy of the GNU Library General Public */ -/* License along with this library; if not, write to the */ +/* You should have received a copy of the {{GNU Library General Public */ +/* License}} along with this library; if not, write to the */ /* Free Software Foundation, Inc., */ /* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_365.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_365.RULE index 124e028d86..89b5f82966 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_365.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_365.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- /* This library is free software; you can redistribute it and/or */ -/* modify it under the terms of the GNU Library General Public */ +/* modify it under the terms of the {{GNU Library General Public */ /* License as published by the Free Software Foundation; either */ -/* version 2 of the License, or (at your option) any later version. */ +/* version 2 of the License, or (at your option) any later version}}. */ /* */ /* This library is distributed in the hope that it will be useful, */ /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ -/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */ -/* Library General Public License for more details. */ +/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU */ +/* Library General Public License}} for more details. */ /* */ -/* You should have received a copy of the GNU Library General Public */ -/* License along with this library; if not, write to the */ +/* You should have received a copy of the {{GNU Library General Public */ +/* License}} along with this library; if not, write to the */ /* Free Software Foundation, Inc., */ /* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* or download a copy from ftp://ftp.gnu.org/pub/gnu/COPYING.LIB-2.0 */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_366.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_366.RULE index cdfea80c3d..14cdb9ccec 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_366.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_366.RULE @@ -10,17 +10,17 @@ ignorable_urls: LICENSE: This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public -License as published by the Free Software Foundation; either +modify it under the terms of the {{GNU Library General Public +License}} as published by the Free Software Foundation; either version 2 of the License, || (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY || FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY || FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_367.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_367.RULE index 3ba79b805a..6944b58156 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_367.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_367.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public -License as published by the Free Software Foundation; either +modify it under the terms of the {{GNU Library General Public +License}} as published by the Free Software Foundation; either version 2 of the License, || (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY || FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY || FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_368.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_368.RULE index b4b5a89544..7a392b5597 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_368.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_368.RULE @@ -8,16 +8,16 @@ notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9 LICENSE: This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public -License as published by the Free Software Foundation; either +modify it under the terms of the {{GNU Library General Public +License}} as published by the Free Software Foundation; either version 2 of the License, || (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY || FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY || FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_369.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_369.RULE index db4c5cec82..6bd65df6d2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_369.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_369.RULE @@ -6,16 +6,16 @@ notes: https://github.com/dark777/standard-cxx/blob/5ee9301639fd32d10e6b4a6365a9 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public -License as published by the Free Software Foundation; either +modify it under the terms of the {{GNU Library General Public +License}} as published by the Free Software Foundation; either version 2 of the License, || (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY || FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY || FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_37.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_37.RULE index 859963f524..df17950710 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_37.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_37.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; see the file COPYING.LIB. If +You should have received a copy of the {{GNU Library General Public +License}} along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_370.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_370.RULE index 8f2f3afdfd..7f66c7cc19 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_370.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_370.RULE @@ -7,20 +7,20 @@ ignorable_urls: --- /*****************************************************************************/ -/* GNU LIBRARY GENERAL PUBLIC LICENSE: */ +/* {{GNU LIBRARY GENERAL PUBLIC LICENSE}}: */ /*****************************************************************************/ /* This library is free software; you can redistribute it and/or */ -/* modify it under the terms of the GNU Library General Public */ +/* modify it under the terms of the {{GNU Library General Public */ /* License as published by the Free Software Foundation; either */ -/* version 2 of the License, or (at your option) any later version. */ +/* version 2 of the License, or (at your option) any later version}}. */ /* */ /* This library is distributed in the hope that it will be useful, */ /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ -/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */ -/* Library General Public License for more details. */ +/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU */ +/* Library General Public License}} for more details. */ /* */ -/* You should have received a copy of the GNU Library General Public */ -/* License along with this library; if not, write to the */ +/* You should have received a copy of the {{GNU Library General Public */ +/* License}} along with this library; if not, write to the */ /* Free Software Foundation, Inc., */ /* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* */ diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_371.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_371.RULE index 54846e23f4..461205454d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_371.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_371.RULE @@ -5,19 +5,19 @@ relevance: 100 --- /*****************************************************************************/ -/* GNU LIBRARY GENERAL PUBLIC LICENSE: */ +/* {{GNU LIBRARY GENERAL PUBLIC LICENSE}}: */ /*****************************************************************************/ /* This library is free software; you can redistribute it and/or */ -/* modify it under the terms of the GNU Library General Public */ +/* modify it under the terms of the {{GNU Library General Public */ /* License as published by the Free Software Foundation; either */ -/* version 2 of the License, or (at your option) any later version. */ +/* version 2 of the License, or (at your option) any later version}}. */ /* */ /* This library is distributed in the hope that it will be useful, */ /* but WITHOUT ANY WARRANTY; without even the implied warranty of */ -/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU */ -/* Library General Public License for more details. */ +/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU */ +/* Library General Public License}} for more details. */ /* */ -/* You should have received a copy of the GNU Library General Public */ -/* License along with this library; if not, write to the */ +/* You should have received a copy of the {{GNU Library General Public */ +/* License}} along with this library; if not, write to the */ /* Free Software Foundation, Inc., */ /* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_373.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_373.RULE index 57439dba0f..55f7d04186 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_373.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_373.RULE @@ -8,4 +8,4 @@ notes: https://github.com/yasm/yasm/blob/009450c7ad4d425fa5a10ac4bd6efbd25248d82 /* The C library at the core of this Perl module can additionally */ /* be used, modified and redistributed under the terms of the */ -/* "GNU Library General Public License". */ \ No newline at end of file +/* "{{GNU Library General Public License}}". */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_38.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_38.RULE index 63499f4edc..dface95d83 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_38.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_38.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or modify -it under the terms of the GNU Library General Public License as +it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Library General Public License for more details. +{{GNU Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_380.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_380.RULE index e06bbd56c5..f97d282218 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_380.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_380.RULE @@ -1,6 +1,8 @@ --- license_expression: lgpl-2.0-plus is_license_reference: yes +is_required_phrase: yes +is_continuous: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_381.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_381.RULE index fb1b42ae76..c351e40b74 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_381.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_381.RULE @@ -1,6 +1,8 @@ --- license_expression: lgpl-2.0-plus is_license_reference: yes +is_required_phrase: yes +is_continuous: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_382.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_382.RULE index 072dad9e33..0393140cae 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_382.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_382.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_39.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_39.RULE index c27df0b956..bf0b0eb436 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_39.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_39.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public License as + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Library General Public License}} for more details. - You should have received a copy of the GNU Library General Public - License along with the GNU C Library; see the file COPYING.LIB. If not, + You should have received a copy of the {{GNU Library General Public + License}} along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_394.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_394.RULE index 28825fe412..e8562ffc19 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_394.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_394.RULE @@ -8,7 +8,7 @@ notes: conflicting references to GPL in the LGPL notice --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Library General Public License as published by +it under the terms of the {{GNU Library General Public License}} as published by the Free Software Foundation; either version 2.0 of the License, or (at your option) any later version. See the file COPYING for details. @@ -17,6 +17,6 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. -You should have received a copy of the GNU Library General Public License +You should have received a copy of the {{GNU Library General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_395.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_395.RULE index 7c966130db..34e941d640 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_395.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_395.RULE @@ -8,16 +8,16 @@ notes: typo in andor --- The GNU C Library is free software you can redistribute it andor -modify it under the terms of the GNU Library General Public License as +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with the GNU C Library see the file COPYING.LIB. If not, +You should have received a copy of the {{GNU Library General Public +License}} along with the GNU C Library see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_398.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_398.RULE index 67e0d8e67b..4d445612b9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_398.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_398.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU Library General Public License as published +under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this program; if not, write to the Free Software +You should have received a copy of the {{GNU Library General Public +License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_399.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_399.RULE index eb91f6329f..65e11c3601 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_399.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_399.RULE @@ -5,6 +5,6 @@ relevance: 100 --- is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. \ No newline at end of file + version 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_4.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_4.RULE index 90ec651d49..913a661b08 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_4.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. \ No newline at end of file + version 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_40.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_40.RULE index 72b6dbd91a..8c9aadbd84 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_40.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_40.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_400.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_400.RULE index 7231ade771..fa6ad881cf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_400.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_400.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -under the terms of the GNU Library General Public +under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. \ No newline at end of file + version 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_401.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_401.RULE index 5f3f5f5609..6e1376f7b9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_401.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_401.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -under the terms of the GNU Library General Public -License as published by the Free Software Foundation \ No newline at end of file +under the terms of the {{GNU Library General Public +License}} as published by the Free Software Foundation \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_402.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_402.RULE index cdb6bc75f7..f4f233fa12 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_402.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_402.RULE @@ -6,11 +6,11 @@ minimum_coverage: 80 --- is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Library General Public License for more details. \ No newline at end of file + {{GNU Library General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_403.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_403.RULE index 63e7774d73..4bf2329848 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_403.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_403.RULE @@ -7,4 +7,4 @@ relevance: 100 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Library General Public License for more details. \ No newline at end of file + {{GNU Library General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_404.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_404.RULE index 7a47d792c2..89962176c4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_404.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_404.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Library General Public License for more details. + {{GNU Library General Public License}} for more details. - You should have received a copy of the GNU Library General Public License + You should have received a copy of the {{GNU Library General Public License}} along with ; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_407.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_407.RULE index 9e4628e312..7586ee25f6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_407.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_407.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either +modify it under the terms of the {{GNU Lesser General Public +License}} as published by the Free Software Foundation; either version 2 of the licence, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_408.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_408.RULE index eb84a96408..011d0ddc50 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_408.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_408.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either +modify it under the terms of the {{GNU Lesser General Public +License}} as published by the Free Software Foundation; either version 2.0 of the licence, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_409.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_409.RULE index 74cf329575..f79660d333 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_409.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_409.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either +modify it under the terms of the {{GNU Lesser General Public +License}} as published by the Free Software Foundation; either version 2.0 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this library, in a file named COPYING; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_41.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_41.RULE index 4600196733..76c8dd5929 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_41.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_41.RULE @@ -5,9 +5,9 @@ notes: the wording of this notice is uncommon but the license terms seem to be c --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_410.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_410.RULE index ca4541899a..61e48de3a4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_410.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_410.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this library, in a file named COPYING; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_411.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_411.RULE index e75ea21b73..412c8d230c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_411.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_411.RULE @@ -5,9 +5,9 @@ relevance: 100 --- This file may be used subject to the terms and conditions of the -GNU Library General Public License Version 2, or any later version +{{GNU Library General Public License Version 2, or any later version}} at your option, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Library General Public License for more details. \ No newline at end of file +{{GNU Library General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_413.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_413.RULE index 3c1dee0c0c..3131e81367 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_413.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_413.RULE @@ -7,19 +7,19 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU Lesser General Public License, -version 2 or later +redistribution under the terms of the {{GNU Lesser General Public License, +version 2}} or later The library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, see +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_415.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_415.RULE index 839f2b684a..2c7a939d26 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_415.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_415.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GNU Library General Public License, version 2.0 or later \ No newline at end of file +the {{GNU Library General Public License, version 2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_416.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_416.RULE index 678760628e..448b6e3546 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_416.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_416.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GNU Lesser General Public License, version 2.0 or later \ No newline at end of file +the {{GNU Lesser General Public License, version 2.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_418.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_418.RULE index 02510a4066..5f6995639c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_418.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_418.RULE @@ -7,16 +7,16 @@ referenced_filenames: --- The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public License +You should have received a copy of the {{GNU Library General Public License}} along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_419.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_419.RULE index 2e698e4981..3d54c46a7d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_419.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_419.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the terms of the GNU Library General Public License \ No newline at end of file +under the terms of the {{GNU Library General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_42.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_42.RULE index df1130e9aa..26672647f5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_42.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_42.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. \ No newline at end of file +License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_424.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_424.RULE index b597a5c48e..b0e2ce7953 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_424.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_424.RULE @@ -7,16 +7,16 @@ notes: the relevance is not 100 because the license uses "lesser" and a v2 but t --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General -Public License along with this library; if not, write to the +You should have received a copy of the {{GNU Lesser General +Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_426.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_426.RULE index 6079e267f6..168c9f22cf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_426.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_426.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -You can Freely distribute this program under the GNU Library General Public -License. See the file "COPYING" for the exact licensing terms. \ No newline at end of file +You can Freely distribute this program under the {{GNU Library General Public +License}}. See the file "COPYING" for the exact licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_43.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_43.RULE index 94961ba883..e5dfe73fcd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_43.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_43.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This file is free software; you can redistribute it and/or modify -it under the terms of the GNU Library General Public License as published by +it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your -option) any later version. +option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public -License for more details. +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Library General Public +License}} for more details. -You should have received a copy of the GNU Library General Public License +You should have received a copy of the {{GNU Library General Public License}} along with this file; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_432.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_432.RULE index 99413da3b3..affb899dc8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_432.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_432.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU Library General Public License \ No newline at end of file +licensed under the terms of the {{GNU Library General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_436.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_436.RULE index 5d50c08b34..977063a3bf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_436.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_436.RULE @@ -11,13 +11,13 @@ notes: Seen in libguestfs real license is covered in the modules/X file. The real license for this file is LGPLv2+, not GPL. - RWMJ) This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_437.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_437.RULE index 1cc2562a1e..5d94755e7c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_437.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_437.RULE @@ -6,4 +6,4 @@ referenced_filenames: - /usr/share/common-licenses/LGPL --- -On Debian systems, the complete text of the GNU Lesser General Public License can be found in usr/share/common-licenses/LGPL. \ No newline at end of file +On Debian systems, the complete text of the {{GNU Lesser General Public License}} can be found in usr/share/common-licenses/LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_439.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_439.RULE index 60fa0b53f0..aa2ca6f974 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_439.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_439.RULE @@ -5,6 +5,6 @@ referenced_filenames: - COPYING.LIB --- -The library is distributed under the terms of the GNU Lesser - General Public License (LGPL); see the file COPYING.LIB for the +The library is distributed under the terms of the {{GNU Lesser + General Public License (LGPL)}}; see the file COPYING.LIB for the actual terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_45.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_45.RULE index e4c65c382b..eab89d37e5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_45.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_45.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Library General Public License as published by + under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at - your option) any later version. + your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library - General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Library + General Public License}} for more details. - You should have received a copy of the GNU Library General Public License + You should have received a copy of the {{GNU Library General Public License}} along with this software, usually in a file named COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_451.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_451.RULE index b234c8a6ed..affcd063c9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_451.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_451.RULE @@ -3,7 +3,7 @@ license_expression: lgpl-2.0-plus is_license_notice: yes --- -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_452.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_452.RULE index 8057811c79..f18b2c184e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_452.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_452.RULE @@ -5,10 +5,10 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2 --- -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the full text of the GNU Lesser General Public License - version 2 can be found in the file `/usr/share/common-licenses/LGPL-2'. \ No newline at end of file + On Debian systems, the full text of the {{GNU Lesser General Public License + version 2}} can be found in the file `/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_456.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_456.RULE index 8873b559e3..420e1e648b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_456.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_456.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_457.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_457.RULE index 0619c7ea42..98758f1244 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_457.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_457.RULE @@ -6,14 +6,14 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - On Debian systems, the complete text of the GNU Library General Public - License version 2 can be found in "/usr/share/common-licenses/LGPL-2". \ No newline at end of file + On Debian systems, the complete text of the {{GNU Library General Public + License}} version 2 can be found in "/usr/share/common-licenses/LGPL-2". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_458.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_458.RULE index 2c5a14f7a4..0f9284152a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_458.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_458.RULE @@ -6,21 +6,21 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2 --- -License: LGPL-2+ +{{License: LGPL-2+}} This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Library General Public License as published by + it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Library General Public License for more details. + {{GNU Library General Public License}} for more details. . - You should have received a copy of the GNU Library General Public License + You should have received a copy of the {{GNU Library General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian GNU/Linux systems, the complete text of the GNU Library - General Public License, version 2, can be found in + On Debian GNU/Linux systems, the complete text of the {{GNU Library + General Public License}}, version 2, can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_459.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_459.RULE index cb68763ca3..335b99d417 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_459.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_459.RULE @@ -3,17 +3,17 @@ license_expression: lgpl-2.0-plus is_license_notice: yes --- -License: LGPL-2+ +{{License: LGPL-2+}} This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Library General Public License as published by + it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Library General Public License for more details. + {{GNU Library General Public License}} for more details. . - You should have received a copy of the GNU Library General Public License + You should have received a copy of the {{GNU Library General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_460.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_460.RULE index 7c9cfd332a..6d7ed8ff1e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_460.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_460.RULE @@ -6,19 +6,19 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Library General Public License as published by + it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Library General Public License for more details. + {{GNU Library General Public License}} for more details. . - You should have received a copy of the GNU Library General Public License + You should have received a copy of the {{GNU Library General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian GNU/Linux systems, the complete text of the GNU Library - General Public License, version 2, can be found in + On Debian GNU/Linux systems, the complete text of the {{GNU Library + General Public License}}, version 2, can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_461.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_461.RULE index f561278d91..5305eaaea2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_461.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_461.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Library General Public License as published by + it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Library General Public License for more details. + {{GNU Library General Public License}} for more details. . - You should have received a copy of the GNU Library General Public License + You should have received a copy of the {{GNU Library General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_462.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_462.RULE index 1b2f695918..90c76969b6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_462.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_462.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_463.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_463.RULE index 24e87a2ef3..a1f2c87084 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_463.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_463.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_466.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_466.RULE index b08edd7b27..6bb7e73cea 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_466.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_466.RULE @@ -7,5 +7,5 @@ referenced_filenames: . On Debian GNU/Linux systems, the complete text of the newest version - of the GNU Lesser General Public License can be found in + of the {{GNU Lesser General Public License}} can be found in /usr/share/common-licenses/LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_468.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_468.RULE index 439934d19a..06c000db09 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_468.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_468.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. You should have received a copy of the GNU Lesser General Public Lice along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_469.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_469.RULE index ca4488bd13..dd0e003671 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_469.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_469.RULE @@ -5,11 +5,11 @@ is_license_notice: yes This file is part of the libiberty library. Libiberty is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. Libiberty is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_47.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_47.RULE index 1f4b3992d9..e219cbd553 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_47.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_47.RULE @@ -8,16 +8,16 @@ notes: there is a likely typo in the referenced filename --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Library General Public License}} for more details. - You should have received a copy of the GNU Library General Public License + You should have received a copy of the {{GNU Library General Public License}} along with this library; see the file COPYING.LIother.m_ If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USm_ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_470.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_470.RULE index 31d62bfe7e..41d721bb18 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_470.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_470.RULE @@ -7,20 +7,20 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2 --- -License: LGPL-2+ +{{License: LGPL-2+}} This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Library General Public License}} for more details. . - You should have received a copy of the GNU Library General Public - License along with this library; if not, write to the Free + You should have received a copy of the {{GNU Library General Public + License}} along with this library; if not, write to the Free Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian GNU/Linux systems, the complete text of the GNU Library General Public License + On Debian GNU/Linux systems, the complete text of the {{GNU Library General Public License}} can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_471.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_471.RULE index c6ff205801..9836a95952 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_471.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_471.RULE @@ -6,6 +6,6 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2 --- -License: LGPL-2+ +{{License: LGPL-2+}} On Debian GNU/Linux systems the full text of the GNU LGPL v2 can be found in the `/usr/share/common-licenses/LGPL-2' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_472.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_472.RULE index af284a28e4..aec658450d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_472.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_472.RULE @@ -7,14 +7,14 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - On Debian GNU/Linux systems, the complete text of the GNU Library General Public - License version 2 can be found in "/usr/share/common-licenses/LGPL-2". \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU Library General Public + License}} version 2 can be found in "/usr/share/common-licenses/LGPL-2". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_473.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_473.RULE index 501df8ee71..6fcdb852fb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_473.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_473.RULE @@ -5,9 +5,9 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. -On Debian GNU/Linux systems, the complete text of the GNU Library General Public -License can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU Library General Public +License}} can be found in {{/usr/share/common-licenses/LGPL-2}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_474.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_474.RULE index 3b0447657b..9556ebd16b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_474.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_474.RULE @@ -8,19 +8,19 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian GNU/Linux systems, the complete text of the GNU Library General Public -License can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU Library General Public +License}} can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_475.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_475.RULE index f6ab7cc40a..cbc640552d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_475.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_475.RULE @@ -6,10 +6,10 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2 --- -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian GNU/Linux systems, the full text of the GNU Lesser General Public License - version 2 can be found in the file `/usr/share/common-licenses/LGPL-2'. \ No newline at end of file + On Debian GNU/Linux systems, the full text of the {{GNU Lesser General Public License + version 2}} can be found in the file `/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_476.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_476.RULE index 4c7f1291d0..d58ad13929 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_476.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_476.RULE @@ -9,14 +9,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_477.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_477.RULE index 89b15b7ee5..e1ef8de266 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_477.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_477.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this program. If not, see . . - The complete text of the GNU Lesser General Public License + The complete text of the {{GNU Lesser General Public License}} can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_479.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_479.RULE index 4cfeb2b0bd..ce419a878e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_479.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_479.RULE @@ -7,6 +7,6 @@ ignorable_urls: - https://www.gnu.org/licenses/ --- -# This file is part of a program licensed under the terms of the GNU Lesser -# General Public License version 2 (or at your option any later version) +# This file is part of a program licensed under the terms of the {{GNU Lesser +# General Public License version 2}} (or at your option any later version) # as published by the Free Software Foundation: https://www.gnu.org/licenses/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_48.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_48.RULE index 6ccc06f885..127120e65d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_48.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_48.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public License +You should have received a copy of the {{GNU Library General Public License}} along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_480.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_480.RULE index fcc1d65b15..10e142ffb2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_480.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_480.RULE @@ -7,17 +7,17 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU Lesser General Public License, -version 2 or later +redistribution under the terms of the {{GNU Lesser General Public License, +version 2}} or later "The library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, -or (at your option) any later version. +or (at your option) any later version}}. "This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public -License for more details. -"You should have received a copy of the GNU Library General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Library General Public +License}} for more details. +"You should have received a copy of the {{GNU Library General Public License}} along with this library; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_481.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_481.RULE index bfddc65964..4f578117c9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_481.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_481.RULE @@ -7,19 +7,19 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU Lesser General Public License, -version 2 or later +redistribution under the terms of the {{GNU Lesser General Public License, +version 2}} or later The genshellopt library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, see +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_482.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_482.RULE index dedcb0f347..da03a18428 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_482.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_482.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public + * modify it under the terms of the {{GNU Lesser General Public * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. + * version 2 of the License, or (at your option) any later version}}. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Lesser General Public License}} for more details. * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, see . \ No newline at end of file + * You should have received a copy of the {{GNU Lesser General Public + * License}} along with this library; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_483.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_483.RULE index db72b6a43f..07c67892dd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_483.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_483.RULE @@ -7,10 +7,10 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl.html --- -The Java library is covered by the GNU Lesser General Public License: +The Java library is covered by the {{GNU Lesser General Public License}}: -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. -This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from https://www.gnu.org/licenses/lgpl.html https://www.gnu.org/licenses/lgpl.html \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from https://www.gnu.org/licenses/lgpl.html https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_484.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_484.RULE index 4c006c1a8b..f577d21fde 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_484.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_484.RULE @@ -6,10 +6,10 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl.html --- -covered by the GNU Lesser General Public License: +covered by the {{GNU Lesser General Public License}}: -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. -This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from https://www.gnu.org/licenses/lgpl.html https://www.gnu.org/licenses/lgpl.html \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from https://www.gnu.org/licenses/lgpl.html https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_485.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_485.RULE index cc24f5054e..76d40ef5f5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_485.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_485.RULE @@ -12,14 +12,14 @@ ignorable_urls: ** under the LGPL This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_486.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_486.RULE index 9be55ae353..bb69505549 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_486.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_486.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl.html --- -

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

+

This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}.

-

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

+

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details.

-

You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from https://www.gnu.org/licenses/lgpl.html

\ No newline at end of file +

You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from https://www.gnu.org/licenses/lgpl.html

\ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_487.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_487.RULE index c701775957..1a05e8d739 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_487.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_487.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU Lesser General Public License, -version 2 or later \ No newline at end of file +redistribution under the terms of the {{GNU Lesser General Public License, +version 2}} or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_488.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_488.RULE index 345641e9fe..2ac8a63d31 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_488.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_488.RULE @@ -6,18 +6,18 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl.html --- -library is covered by the GNU Lesser General Public License: +library is covered by the {{GNU Lesser General Public License}}: This library is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License as published by the Free +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any -later version. +later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_489.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_489.RULE index 514d8c2cbf..023418c3c2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_489.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_489.RULE @@ -8,7 +8,7 @@ ignorable_urls: - https://www.gnu.org/licenses/licenses.html#LGPL --- -is available under the terms of the GNU Library General Public License (LGPL), +is available under the terms of the {{GNU Library General Public License}} (LGPL), version 2 (or at your discretion any later version). A copy of the LGPL should be included with this library in the file COPYING. If not, write to https://www.gnu.org/licenses/licenses.html#LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_49.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_49.RULE index d79093e6d7..0b2bb004b1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_49.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_49.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public License +You should have received a copy of the {{GNU Library General Public License}} aint with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_490.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_490.RULE index 9e4db9596b..fcca4b6d9d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_490.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_490.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with . If not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_491.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_491.RULE index b77358206b..b49b8c1800 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_491.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_491.RULE @@ -6,18 +6,18 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl.html --- -The Java library is covered by the GNU Lesser General Public License: +The Java library is covered by the {{GNU Lesser General Public License}}: This library is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License as published by the Free +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any -later version. +later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_492.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_492.RULE index 88fa1e1d25..25a813d21a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_492.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_492.RULE @@ -7,10 +7,10 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl.html --- -library is covered by the GNU Lesser General Public License: +library is covered by the {{GNU Lesser General Public License}}: -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. -This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from + * redistribution under the terms of the {{GNU Lesser General Public License, + * version 2}} or later * * The genshellopt library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public License as + * modify it under the terms of the {{GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. + * License, or (at your option) any later version}}. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Library General Public License}} for more details. * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, see + * You should have received a copy of the {{GNU Library General Public + * License}} along with this library; if not, see * \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_494.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_494.RULE index 6786c65638..a01d4d1bbe 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_494.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_494.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- # This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Library General Public +# modify it under the terms of the {{GNU Library General Public # License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# version 2 of the License, or (at your option) any later version}}. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Library General Public License for more details. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +# Library General Public License}} for more details. # -# You should have received a copy of the GNU Library General Public -# License along with this library. If not, see . \ No newline at end of file +# You should have received a copy of the {{GNU Library General Public +# License}} along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_496.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_496.RULE index 25923ab0ec..7f7392bee5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_496.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_496.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- ## License -All source code is licensed under the [GNU Lesser General Public License](https://www.gnu.org/licenses/lgpl.html) \ No newline at end of file +All source code is licensed under the [{{GNU Lesser General Public License}}](https://www.gnu.org/licenses/lgpl.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_498.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_498.RULE index 28c88616ea..99f9d5233b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_498.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_498.RULE @@ -7,16 +7,16 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not see +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not see or write to the Free Software Foundation, Inc., 51 Franklin St., Fifth Floor, Boston, MA 02110, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_499.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_499.RULE index f901b0b7f8..180c47aab4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_499.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_499.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this program. If not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_50.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_50.RULE index 860f94beff..de4f6f42bd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_50.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_50.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at - your option) any later version. + your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser - General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser + General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_500.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_500.RULE index 84b9d3e98c..cf220a0b26 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_500.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_500.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- // This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU Lesser General Public License +// modify it under the terms of the {{GNU Lesser General Public License // as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. +// of the License, or (at your option) any later version}}. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU Lesser General Public License for more details. +// {{GNU Lesser General Public License}} for more details. // -// You should have received a copy of the GNU Lesser General Public License +// You should have received a copy of the {{GNU Lesser General Public License}} // along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_502.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_502.RULE index 2008da8e1c..a05188612d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_502.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_502.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_504.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_504.RULE index 1afc3a569c..37f47a22cf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_504.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_504.RULE @@ -7,8 +7,8 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl.html --- -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. -This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from https://www.gnu.org/licenses/lgpl.html https://www.gnu.org/licenses/lgpl.html \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from https://www.gnu.org/licenses/lgpl.html https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_505.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_505.RULE index 8a3995735d..544775ca0c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_505.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_505.RULE @@ -7,10 +7,10 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl.html --- -

The Java library is covered by the GNU Lesser General Public License:

+

The Java library is covered by the {{GNU Lesser General Public License}}:

-

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

+

This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}.

-

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

+

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details.

-

You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from https://www.gnu.org/licenses/lgpl.html

\ No newline at end of file +

You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from https://www.gnu.org/licenses/lgpl.html

\ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_506.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_506.RULE index 5c99b91e20..be5d4d69ec 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_506.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_506.RULE @@ -7,19 +7,19 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU Lesser General Public License, -version 2 or later +redistribution under the terms of the {{GNU Lesser General Public License, +version 2}} or later The library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, see +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_507.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_507.RULE index 3879fcf27a..666e7a15dd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_507.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_507.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this program. If not, see . . - The complete text of the GNU Lesser General Public License + The complete text of the {{GNU Lesser General Public License}} can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_510.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_510.RULE index 31e0871917..732f31dc35 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_510.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_510.RULE @@ -9,14 +9,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_511.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_511.RULE index 9fea94fd99..d0012c62ea 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_511.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_511.RULE @@ -18,19 +18,19 @@ ignorable_urls: * under the following terms: * * This is free software. It is licensed for use, modification and - * redistribution under the terms of the GNU Lesser General Public License, - * version 2 or later + * redistribution under the terms of the {{GNU Lesser General Public License, + * version 2}} or later * * The genshellopt library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public License as + * modify it under the terms of the {{GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the - * License, or (at your option) any later version. + * License, or (at your option) any later version}}. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Library General Public License}} for more details. * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, see + * You should have received a copy of the {{GNU Library General Public + * License}} along with this library; if not, see * \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_512.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_512.RULE index 16302a6e1c..03262eff00 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_512.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_512.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License}} as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_513.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_513.RULE index d2cff36fc8..acc1b34ccf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_513.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_513.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- # This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public +# modify it under the terms of the {{GNU Lesser General Public # License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. +# version 2 of the License, or (at your option) any later version}}. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +# Lesser General Public License}} for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with this library. If not, see . \ No newline at end of file +# You should have received a copy of the {{GNU Lesser General Public +# License}} along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_514.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_514.RULE index ec9bf4e652..830c05512f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_514.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_514.RULE @@ -9,14 +9,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_517.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_517.RULE index ebc9753a31..8f3f022c61 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_517.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_517.RULE @@ -7,4 +7,4 @@ referenced_filenames: - /usr/share/common-licenses/LGPL --- -On Debian systems, the text of the GNU Lesser General Public License can be found in usr/share/common-licenses/LGPL. \ No newline at end of file +On Debian systems, the text of the {{GNU Lesser General Public License}} can be found in usr/share/common-licenses/LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_518.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_518.RULE index 65f180f344..0ec343b240 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_518.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_518.RULE @@ -7,20 +7,20 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2 --- -License: LGPL-2+ +{{License: LGPL-2+}} This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Library General Public License}} for more details. . - You should have received a copy of the GNU Library General Public - License along with this library; if not, write to the Free + You should have received a copy of the {{GNU Library General Public + License}} along with this library; if not, write to the Free Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the text of the GNU Library General Public License + On Debian systems, the text of the {{GNU Library General Public License}} can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_519.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_519.RULE index c11baab38d..d3344b90cc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_519.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_519.RULE @@ -5,18 +5,18 @@ relevance: 100 --- This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this package; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL'. \ No newline at end of file +On Debian systems, the text of the {{GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL'}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_52.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_52.RULE index 373b73db24..47868e1e88 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_52.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_52.RULE @@ -6,19 +6,19 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU Lesser General Public License, -version 2 or later +redistribution under the terms of the {{GNU Lesser General Public License, +version 2}} or later The genshellopt library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, see +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_520.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_520.RULE index 2250ae7d3b..65b46966e6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_520.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_520.RULE @@ -7,14 +7,14 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - On Debian systems, the text of the GNU Library General Public - License version 2 can be found in "/usr/share/common-licenses/LGPL-2". \ No newline at end of file + On Debian systems, the text of the {{GNU Library General Public + License}} version 2 can be found in "/usr/share/common-licenses/LGPL-2". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_521.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_521.RULE index aab1f6ac25..464516c49e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_521.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_521.RULE @@ -5,9 +5,9 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. -On Debian systems, the text of the GNU Library General Public -License can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file +On Debian systems, the text of the {{GNU Library General Public +License}} can be found in {{/usr/share/common-licenses/LGPL-2}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_522.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_522.RULE index 5d89639863..8aece3e858 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_522.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_522.RULE @@ -9,14 +9,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_523.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_523.RULE index e668c55dc6..5f1fff4b6c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_523.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_523.RULE @@ -8,19 +8,19 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems, the text of the GNU Library General Public -License can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file +On Debian systems, the text of the {{GNU Library General Public +License}} can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_524.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_524.RULE index 0637edafdc..e2bfafc90c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_524.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_524.RULE @@ -9,14 +9,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_525.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_525.RULE index 72eb2febcb..a72cb198af 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_525.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_525.RULE @@ -6,10 +6,10 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2 --- -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the text of the GNU Lesser General Public License - version 2 can be found in the file `/usr/share/common-licenses/LGPL-2'. \ No newline at end of file + On Debian systems, the text of the {{GNU Lesser General Public License + version 2}} can be found in the file `/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_526.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_526.RULE index 5a02af052f..50e1f8077c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_526.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_526.RULE @@ -6,9 +6,9 @@ referenced_filenames: --- This module is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. This module is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_527.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_527.RULE index 3bf41f9f9e..c2b12c546a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_527.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_527.RULE @@ -6,7 +6,7 @@ referenced_filenames: --- This module is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License version 2 + it under the terms of the {{GNU Lesser General Public License version 2}} as published by the Free Software Foundation. This module is distributed in the hope that it will be useful, but diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_528.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_528.RULE index 9f5a756c74..f5d4f3454c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_528.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_528.RULE @@ -5,6 +5,6 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2 --- -License: LGPL-2+ +{{License: LGPL-2+}} On Debian systems, the complete text of the LGPL-2 can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_529.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_529.RULE index 419c64575b..c331f0ffc9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_529.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_529.RULE @@ -6,14 +6,14 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - On Debian systems, the complete text of the GNU Lesser General Public - License version 2 can be found in "/usr/share/common-licenses/LGPL-2". \ No newline at end of file + On Debian systems, the complete text of the {{GNU Lesser General Public + License version 2}} can be found in "/usr/share/common-licenses/LGPL-2". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_53.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_53.RULE index faa46f307b..c366a71561 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_53.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_53.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU Lesser General Public License, -version 2 or later \ No newline at end of file +redistribution under the terms of the {{GNU Lesser General Public License, +version 2}} or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_530.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_530.RULE index 2708603a9d..60e20a5391 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_530.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_530.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_534.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_534.RULE index 9631ebead2..fef513422f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_534.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_534.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -LGPL-2.0+ GNU Library General Public License v2 or later \ No newline at end of file +{{LGPL-2.0+}} {{GNU Library General Public License v2 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_535.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_535.RULE index f5153c113f..ab8cbf8ac6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_535.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_535.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GNU Library General Public License v2 or later LGPL-2.0+ \ No newline at end of file +{{GNU Library General Public License v2 or later}} {{LGPL-2.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_536.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_536.RULE index 88674abcb8..fded1648bf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_536.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_536.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -license : LGPL-2.0+ \ No newline at end of file +license : {{LGPL-2.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_537.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_537.RULE index 3cc0d75df2..84a1de4332 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_537.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_537.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : LGPL-2.0+ \ No newline at end of file +licenseid : {{LGPL-2.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_538.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_538.RULE index 15c31ac25d..02a6ca28ce 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_538.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_538.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : GNU Library General Public License v2 or later \ No newline at end of file +name : {{GNU Library General Public License v2 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_539.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_539.RULE index 54d8090a1e..80bc0b42ca 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_539.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_539.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -LGPL-2.0-or-later GNU Library General Public License v2 or later \ No newline at end of file +{{LGPL-2.0-or-later}} {{GNU Library General Public License v2 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_54.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_54.RULE index 1480b7e15a..287a150f31 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_54.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_54.RULE @@ -6,17 +6,17 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU Lesser General Public License, -version 2 or later +redistribution under the terms of the {{GNU Lesser General Public License, +version 2}} or later "The library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License as +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, -or (at your option) any later version. +or (at your option) any later version}}. "This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public -License for more details. -"You should have received a copy of the GNU Library General Public License +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Library General Public +License}} for more details. +"You should have received a copy of the {{GNU Library General Public License}} along with this library; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_540.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_540.RULE index aa5d1fdb0a..c0c8038397 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_540.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_540.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU Library General Public License v2 or later LGPL-2.0-or-later \ No newline at end of file +{{GNU Library General Public License v2 or later}} {{LGPL-2.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_541.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_541.RULE index aef4e6c006..5d6dd50743 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_541.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_541.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: LGPL-2.0-or-later \ No newline at end of file +license: {{LGPL-2.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_542.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_542.RULE index a3c5f96cdb..866ffac6dc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_542.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_542.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GNU Library General Public License v2 or later \ No newline at end of file +license: {{GNU Library General Public License v2 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_543.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_543.RULE index 2eb37dfa51..172f0bc0e6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_543.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_543.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: LGPL-2.0-or-later \ No newline at end of file +licenseId: {{LGPL-2.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_546.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_546.RULE index 08b73b93e2..0b2cd04b7d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_546.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_546.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_547.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_547.RULE index 282bb481cf..5d2e46820b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_547.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_547.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: LGPL-2.0-or-later \ No newline at end of file +licenses: {{LGPL-2.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_55.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_55.RULE index f31e7b305a..9676991fa1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_55.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_55.RULE @@ -9,15 +9,15 @@ LGPL Copyright This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_558.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_558.RULE index 023eecb668..47d03b392e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_558.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_558.RULE @@ -3,5 +3,5 @@ license_expression: lgpl-2.0-plus is_license_notice: yes --- -License: GNU Lesser General Public License +License: {{GNU Lesser General Public License}} Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_559.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_559.RULE index 18d20ce2ac..07c3bc03a1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_559.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_559.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -License: GNU Lesser General Public License \ No newline at end of file +License: {{GNU Lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_56.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_56.RULE index 1c5793fdb9..b4f7b5a410 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_56.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_56.RULE @@ -6,18 +6,18 @@ is_license_notice: yes ("LGPL2" t "This library is free software; you can redistribute it and/or" - "modify it under the terms of the GNU Lesser General Public" + "modify it under the terms of the {{GNU Lesser General Public" "License as published by the Free Software Foundation; either" "version 2 of the License, or (at your option) any later" - "version." + "version}}." "" "This library is distributed in the hope that it will be" "useful, but WITHOUT ANY WARRANTY; without even the implied" "warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR" - "PURPOSE. See the GNU Lesser General Public License for more" + "PURPOSE. See the {{GNU Lesser General Public License}} for more" "details." "" - "You should have received a copy of the GNU Lesser General" - "Public License along with this library; if not, write to the" + "You should have received a copy of the {{GNU Lesser General" + "Public License}} along with this library; if not, write to the" "Free Software Foundation, Inc., 59 Temple Place, Suite 330," "Boston, MA 02111-1307 USA") \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_560.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_560.RULE index eb65653d60..b51e58c842 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_560.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_560.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- free software; you can redistribute it and\/or modify * -it under the terms of the GNU Lesser General Public License version * -2 or higher as published by the Free Software Foundation. * +it under the terms of the {{GNU Lesser General Public License version * +2}} or higher as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * -Lesser General Public License for more details. * +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU * +Lesser General Public License}} for more details. * * -You should have received a copy of the GNU Lesser General Public * -License along with this library; if not, write to the Free Software * +You should have received a copy of the {{GNU Lesser General Public * +License}} along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, 5th fl, Boston, MA 02110-1301, * USA, or check http://www.fsf.org/aboutcontact.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_561.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_561.RULE index 79863e018f..3592f03e77 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_561.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_561.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, 5th Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_562.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_562.RULE index 127a7c0dc5..6c52126f95 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_562.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_562.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU Library General Public License as published +under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_563.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_563.RULE index 941152ef3d..f860d716f9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_563.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_563.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This file is free software; you can redistribute it and/or modify it -under the terms of the GNU Library General Public License as published +under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) -any later version. +any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this file; if not, write to the Free Software +You should have received a copy of the {{GNU Library General Public +License}} along with this file; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_565.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_565.RULE index 74f379d841..9e3a09fd1d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_565.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_565.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- is free software; you can redistribute it and/or modify it - under the terms of the GNU Library General Public License as published + under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version; see file 'Copying'. + (at your option) any later version}}; see file 'Copying'. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Library General Public License for more details. + {{GNU Library General Public License}} for more details. - You should have received a copy of the GNU Library General Public License + You should have received a copy of the {{GNU Library General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_568.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_568.RULE index eadd361db7..a1aebc01a0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_568.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_568.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The GNU Library General Public License v2+ \ No newline at end of file +The {{GNU Library General Public License v2+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_569.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_569.RULE index 489cf6b0cc..12e7607cda 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_569.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_569.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Library General Public License as published by + it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Library General Public License for more details. + {{GNU Library General Public License}} for more details. - You should have received a copy of the GNU Library General Public License along + You should have received a copy of the {{GNU Library General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_57.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_57.RULE index 1de61bbf1d..609f915f97 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_57.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_57.RULE @@ -8,15 +8,15 @@ LGPL Copyright This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_574.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_574.RULE index 367749b9c4..2e862cdb9c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_574.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_574.RULE @@ -6,11 +6,11 @@ is_license_notice: yes LGPL License (i[3456]86-*-linux* targets only) This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Library General Public License for more details. \ No newline at end of file +{{GNU Library General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_579.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_579.RULE index 6374c65f53..7ba855c94b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_579.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_579.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- The Library is free software; you can redistribute it and/or -modify it under the terms of the {{GNU Library General Public License}} as -published by the Free Software Foundation; either {{version 2 of the +modify it under the terms of the {{GNU Library General Public License as +published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_58.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_58.RULE index f20fe2682d..92d47c9792 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_58.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_58.RULE @@ -5,18 +5,18 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.html --- -library is covered by the GNU Lesser General Public License: +library is covered by the {{GNU Lesser General Public License}}: This library is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License as published by the Free +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any -later version. +later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_580.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_580.RULE index da8cb9fcea..2f7e9e13a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_580.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_580.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- Library is free software; you can redistribute it and/or -modify it under the terms of the {{GNU Library General Public License}} as -published by the Free Software Foundation; either {{version 2 of the +modify it under the terms of the {{GNU Library General Public License as +published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_59.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_59.RULE index e96d32222a..a83207653d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_59.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_59.RULE @@ -5,18 +5,18 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.html --- -The Java library is covered by the GNU Lesser General Public License: +The Java library is covered by the {{GNU Lesser General Public License}}: This library is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License as published by the Free +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any -later version. +later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_590.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_590.RULE index 1884071362..f88afe2048 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_590.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_590.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this software; if not, write to the +You should have received a copy of the {{GNU Library General Public +License}} along with this software; if not, write to the Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_6.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_6.RULE index 831f86779c..9c86c90a18 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_6.RULE @@ -5,15 +5,15 @@ minimum_coverage: 100 --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_60.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_60.RULE index 158d03a6b3..d6e0d5c08d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_60.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_60.RULE @@ -6,10 +6,10 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.html --- -library is covered by the GNU Lesser General Public License: +library is covered by the {{GNU Lesser General Public License}}: -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. -This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from The Java library is covered by the GNU Lesser General Public License:

+

The Java library is covered by the {{GNU Lesser General Public License}}:

-

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

+

This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}.

-

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

+

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details.

-

You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from http://www.gnu.org/licenses/lgpl.html

\ No newline at end of file +

You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from http://www.gnu.org/licenses/lgpl.html

\ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_60_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_60_2.RULE index 57371cfd49..4fe16fb156 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_60_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_60_2.RULE @@ -6,10 +6,10 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.html --- -The Java library is covered by the GNU Lesser General Public License: +The Java library is covered by the {{GNU Lesser General Public License}}: -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. -This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from http://www.gnu.org/licenses/lgpl.html http://www.gnu.org/licenses/lgpl.html \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from http://www.gnu.org/licenses/lgpl.html http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_60_3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_60_3.RULE index dc7732b5db..a5fb7854be 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_60_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_60_3.RULE @@ -5,8 +5,8 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.html --- -

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

+

This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}.

-

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

+

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details.

-

You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from http://www.gnu.org/licenses/lgpl.html

\ No newline at end of file +

You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from http://www.gnu.org/licenses/lgpl.html

\ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_60_4.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_60_4.RULE index ff10370fed..da65419fa5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_60_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_60_4.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.html --- -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. -This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from http://www.gnu.org/licenses/lgpl.html http://www.gnu.org/licenses/lgpl.html \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from http://www.gnu.org/licenses/lgpl.html http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_61.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_61.RULE index f00e422b0d..d944f96cf0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_61.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_61.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.0-plus is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_64.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_64.RULE index c99fe2c442..cf13648d9d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_64.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_64.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Library General Public License as published + under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) - any later version. + any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Library General Public License}} for more details. - You should have received a copy of the GNU Library General Public - License along with this program; if not, write to the Free Software + You should have received a copy of the {{GNU Library General Public + License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_65.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_65.RULE index f98c49e397..dc7daae145 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_65.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_65.RULE @@ -8,15 +8,15 @@ is_license_notice: yes ** under the LGPL This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_66.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_66.RULE index 799ee2470a..2ee0d674a3 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_66.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_66.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://www.gnu.org/licenses/licenses.html#LGPL --- -is available under the terms of the GNU Library General Public License (LGPL), +is available under the terms of the {{GNU Library General Public License}} (LGPL), version 2 (or at your discretion any later version). A copy of the LGPL should be included with this library in the file COPYING. If not, write to http://www.gnu.org/licenses/licenses.html#LGPL diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_67.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_67.RULE index 592a3a54a9..8a976c771f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_67.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_67.RULE @@ -6,16 +6,16 @@ is_license_notice: yes /* LGPL * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public + * modify it under the terms of the {{GNU Library General Public * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. + * version 2 of the License, or (at your option) any later version}}. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Library General Public License}} for more details. * - * You should have received a copy of the GNU Library General Public - * License along with this library; if not, write to the + * You should have received a copy of the {{GNU Library General Public + * License}} along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_7.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_7.RULE index a7d6673b25..97cb167a3a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_7.RULE @@ -10,20 +10,20 @@ referenced_filenames: --- | This library is free software; you can redistribute it and/or - | modify it under the terms of the GNU Library General Public + | modify it under the terms of the {{GNU Library General Public | License as published by the Free Software Foundation; either - | version 2 of the License, or (at your option) any later version. + | version 2 of the License, or (at your option) any later version}}. | This library is distributed in the hope that it will be useful, | but WITHOUT ANY WARRANTY; without even the implied warranty of - | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - | Library General Public License for more details. + | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + | Library General Public License}} for more details. - | You should have received a copy of the GNU Library General Public License + | You should have received a copy of the {{GNU Library General Public License}} | along with this library; see the file COPYING.LIB. If not, write to | the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, | MA 02110-1301, USA. - On Debian GNU/Linux systems, the complete text of the GNU Library General - Public License can be found in /usr/share/common-licenses/LGPL-2 and version 3 + On Debian GNU/Linux systems, the complete text of the {{GNU Library General + Public License}} can be found in /usr/share/common-licenses/LGPL-2 and version 3 in /usr/share/common-licenses/LGPL-3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_72.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_72.RULE index c9f5784625..f868050399 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_72.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_72.RULE @@ -5,15 +5,15 @@ minimum_coverage: 20 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_73.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_73.RULE index 4e641d9c1f..2de1fc9de1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_73.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_73.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the Free +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_75.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_75.RULE index 76c36d2698..c0a8b31879 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_75.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_75.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this program. If not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_76.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_76.RULE index 0ec554aa20..e305bc2474 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_76.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_76.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with . If not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_77.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_77.RULE index 31e7da6ef9..d15752c9c1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_77.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_77.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. \ No newline at end of file +{{GNU Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_79.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_79.RULE index bd58d76fcb..9e52785d9f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_79.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_79.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Library General Public License as published by +it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Library General Public License for more details. +{{GNU Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public License +You should have received a copy of the {{GNU Library General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_8.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_8.RULE index 0b64c5f345..7d8fddfd29 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_8.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_8.RULE @@ -5,6 +5,6 @@ notes: Diff format declaration --- * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public + * modify it under the terms of the {{GNU Library General Public * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. \ No newline at end of file + * version 2 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_87.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_87.RULE index 3bdb5a9b1c..5dbe78b289 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_87.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_87.RULE @@ -1,7 +1,9 @@ --- license_expression: lgpl-2.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU Lesser General Public License \ No newline at end of file +GNU + Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_9.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_9.RULE index 76fdfb0570..31757646dc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_9.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_9.RULE @@ -7,20 +7,20 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2 --- -License: LGPL-2+ +{{License: LGPL-2+}} This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Library General Public License}} for more details. . - You should have received a copy of the GNU Library General Public - License along with this library; if not, write to the Free + You should have received a copy of the {{GNU Library General Public + License}} along with this library; if not, write to the Free Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems, the complete text of the GNU Library General Public License + On Debian systems, the complete text of the {{GNU Library General Public License}} can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_97.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_97.RULE index 026d9b300a..1d64ae28a8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_97.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_97.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public + * modify it under the terms of the {{GNU Lesser General Public * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. + * version 2 of the License, or (at your option) any later version}}. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Lesser General Public License}} for more details. * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, see . \ No newline at end of file + * You should have received a copy of the {{GNU Lesser General Public + * License}} along with this library; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_98.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_98.RULE index ed98b2768b..107dfcc548 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_98.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_98.RULE @@ -7,16 +7,16 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not see +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not see or write to the Free Software Foundation, Inc., 51 Franklin St., Fifth Floor, Boston, MA 02110, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_99.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_99.RULE index 5a819d02f3..17f40a56a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_99.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_99.RULE @@ -9,15 +9,15 @@ relevance: 100 ;;;; ;;;; ;;;; This library is free software; you can redistribute it and/or -;;;; modify it under the terms of the GNU Lesser General Public +;;;; modify it under the terms of the {{GNU Lesser General Public ;;;; License as published by the Free Software Foundation; either -;;;; version 2 of the License, or (at your option) any later version. +;;;; version 2 of the License, or (at your option) any later version}}. ;;;; ;;;; This library is distributed in the hope that it will be useful, ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -;;;; Lesser General Public License for more details. +;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +;;;; Lesser General Public License}} for more details. ;;;; -;;;; You should have received a copy of the GNU Lesser General Public -;;;; License along with this library; if not, write to the Free Software +;;;; You should have received a copy of the {{GNU Lesser General Public +;;;; License}} along with this library; if not, write to the Free Software ;;;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver3.RULE index 0f5ec2c3f2..77143dbb33 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_cbcserver3.RULE @@ -6,15 +6,15 @@ is_license_notice: yes Free for private and comercial use This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public License + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Library General Public License for more details. + {{GNU Library General Public License}} for more details. - You should have received a copy of the GNU Library General Public License + You should have received a copy of the {{GNU Library General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_debian.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_debian.RULE index 19b957db31..755a477b6a 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_debian.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_debian.RULE @@ -3,5 +3,5 @@ license_expression: lgpl-2.0-plus is_license_notice: yes --- -the complete text of the GNU Library General Public -License can be found in /usr/share/common-licenses/LGPL-2 file. \ No newline at end of file +the complete text of the {{GNU Library General Public +License}} can be found in {{/usr/share/common-licenses/LGPL-2}} file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_newlib2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_newlib2.RULE index 1d1bf5e607..45333132db 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_newlib2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_newlib2.RULE @@ -8,11 +8,11 @@ notes: seen in newlib LGPL License This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public License +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Library General Public License for more details. \ No newline at end of file +{{GNU Library General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_1.RULE index 8267d7dcfa..2df952e456 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_1.RULE @@ -11,14 +11,14 @@ ignorable_urls: ** under the LGPL This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. +version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_2.RULE index 974593f45d..c6e84c3f7c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_not_3_2.RULE @@ -9,15 +9,15 @@ minimum_coverage: 95 ** under the LGPL This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. + version 2 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_not_gpl_100.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_not_gpl_100.RULE index b9a1365d9e..cdd05f05ea 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_not_gpl_100.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_not_gpl_100.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- permission is hereby granted to copy, modify and redistribute this code -in terms of the GNU Library General Public License, Version 2 or later, +in terms of the {{GNU Library General Public License, Version 2 or later,}} at your option. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_notice_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_notice_1.RULE index 746bea8d8d..c274362913 100644 --- a/src/licensedcode/data/rules/lgpl-2.0-plus_notice_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_notice_1.RULE @@ -5,10 +5,10 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.html --- -covered by the GNU Lesser General Public License: +covered by the {{GNU Lesser General Public License}}: -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. +This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version}}. -This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from http://www.gnu.org/licenses/lgpl.html http://www.gnu.org/licenses/lgpl.html \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or download it from http://www.gnu.org/licenses/lgpl.html http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_1.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_1.RULE new file mode 100644 index 0000000000..fee080a159 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_1.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_10.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_10.RULE new file mode 100644 index 0000000000..af25fe5d0b --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_10.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_11.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_11.RULE new file mode 100644 index 0000000000..673b299419 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_11.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public + License version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_12.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_12.RULE new file mode 100644 index 0000000000..4a9fac2fc4 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_12.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +is_continuous: yes +relevance: 100 +--- + +gnu lesser general public license as published by free software foundation eir version 2 of license or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_13.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_13.RULE new file mode 100644 index 0000000000..dc28e67aed --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_13.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +is_continuous: yes +relevance: 100 +--- + +gnu library general public license as published by free software foundation eir version 2 of license or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_14.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_14.RULE new file mode 100644 index 0000000000..c42f7d23f7 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_14.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +is_continuous: yes +relevance: 100 +--- + +gnu library general public license as published by free software foundation eir version 2 or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_15.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_15.RULE new file mode 100644 index 0000000000..e600efc5c9 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_15.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Library General Public License as published by Free Software Foundation; either version 2, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_16.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_16.RULE new file mode 100644 index 0000000000..d78dee57ed --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_16.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Library General Public License as published by * Free Software Foundation; either version 2 of License, or (at your * option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_17.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_17.RULE new file mode 100644 index 0000000000..c34dece684 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_17.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License as published by Free Software Foundation; either version 2 of License, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_19.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_19.RULE new file mode 100644 index 0000000000..b357aa6d10 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_19.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License, version 2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_2.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_2.RULE new file mode 100644 index 0000000000..5a794e4d2a --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_2.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Library General Public License as published by + * the Free Software Foundation; either version 2 of the License, or (at your + * option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_20.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_20.RULE new file mode 100644 index 0000000000..d9e49161c1 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_20.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +LGPL 2+ license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_23.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_23.RULE new file mode 100644 index 0000000000..201ed225e7 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_23.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Library General Public License, version 2.0 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_3.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_3.RULE new file mode 100644 index 0000000000..11e7cca6ec --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_3.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu library general public license as published by free software foundation either version 2 of the license or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_4.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_4.RULE new file mode 100644 index 0000000000..8b5a8feb27 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_4.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Library General Public License v2+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_5.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_5.RULE new file mode 100644 index 0000000000..8ef1f82fac --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_5.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Library General Public License as published +by the Free Software Foundation; either version 2, or (at your option) +any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_6.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_6.RULE new file mode 100644 index 0000000000..223e715a0a --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_6.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Library General Public License, Version 2 or later, \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_7.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_7.RULE new file mode 100644 index 0000000000..f7fd350e86 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_7.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu lesser general public license as published by free software foundation either version 2 of the license or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_8.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_8.RULE new file mode 100644 index 0000000000..5a38466c6c --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +/usr/share/common-licenses/LGPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_9.RULE b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_9.RULE new file mode 100644 index 0000000000..f43cd081a9 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0-plus_required_phrase_9.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Library +General Public License, version 2, or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_10.RULE b/src/licensedcode/data/rules/lgpl-2.0_10.RULE index 9b447b952b..725f4d3f64 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_10.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -which are made available under the GNU Library General Public License Version 2 \ No newline at end of file +which are made available under the {{GNU Library General Public License Version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_109.RULE b/src/licensedcode/data/rules/lgpl-2.0_109.RULE index f9a8106638..5eb77dddad 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_109.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_109.RULE @@ -7,6 +7,6 @@ referenced_filenames: --- All other software is copyright by their authors and redistributable under -the terms of the GNU Library General Public License. On Debian Linux -systems, the complete text of the GNU Library General Public License can +the terms of the {{GNU Library General Public License}}. On Debian Linux +systems, the complete text of the {{GNU Library General Public License}} can be found in `/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_11.RULE b/src/licensedcode/data/rules/lgpl-2.0_11.RULE index 33b4b37871..db1c1c52b0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_11.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_11.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0_112.RULE b/src/licensedcode/data/rules/lgpl-2.0_112.RULE index 6dea6851bf..f442d332b8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_112.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_112.RULE @@ -5,9 +5,9 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation version 2 -of the License. +of the License.}} This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -16,4 +16,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/lgpl-2.0_113.RULE b/src/licensedcode/data/rules/lgpl-2.0_113.RULE index 724097f110..d17386c9e8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_113.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_113.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation version 2 -of the License. +of the License}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_118.RULE b/src/licensedcode/data/rules/lgpl-2.0_118.RULE index d796ca8cab..6ce1fbe0c5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_118.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_118.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0_12.RULE b/src/licensedcode/data/rules/lgpl-2.0_12.RULE index 227af774b1..a0faca1331 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_12.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_12.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-2.0 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -License: LGPL-2 \ No newline at end of file +license: LGPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_120.RULE b/src/licensedcode/data/rules/lgpl-2.0_120.RULE index 6ccc28881f..4a563f63cb 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_120.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_120.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the LGPL 2 license. \ No newline at end of file +distributed under the {{LGPL 2 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_124.RULE b/src/licensedcode/data/rules/lgpl-2.0_124.RULE index 2736ba5bf3..2b5dd89326 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_124.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_124.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0_125.RULE b/src/licensedcode/data/rules/lgpl-2.0_125.RULE index 5ce04482e8..93a918ea65 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_125.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_125.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0_126.RULE b/src/licensedcode/data/rules/lgpl-2.0_126.RULE index 0b7e5b3ce2..6511a3da17 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_126.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_126.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -GNU Library General Public License, V2.0 is applicable to the following component(s). \ No newline at end of file +{{GNU Library General Public License, V2.0}} is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_127.RULE b/src/licensedcode/data/rules/lgpl-2.0_127.RULE index a2894acfea..80153dcdd0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_127.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_127.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE LGPL 2.0. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{LGPL 2.0}}. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE {{LGPL 2.0}}. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_128.RULE b/src/licensedcode/data/rules/lgpl-2.0_128.RULE index 6e15ee9732..59f1a7dcdd 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_128.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_128.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.0. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE LGPL 2.0. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{LGPL 2.0}}. PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE {{LGPL 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_129.RULE b/src/licensedcode/data/rules/lgpl-2.0_129.RULE index dcc59c5a51..a81d3135ef 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_129.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_129.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -UNDER THE TERMS OF THE LGPL 2.0 \ No newline at end of file +UNDER THE TERMS OF THE {{LGPL 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_130.RULE b/src/licensedcode/data/rules/lgpl-2.0_130.RULE index 2f87143b2c..d56ed1a8f0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_130.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_130.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; version 2 -of the License. +of the License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the Free +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_131.RULE b/src/licensedcode/data/rules/lgpl-2.0_131.RULE index 4586972698..4e4fbd4df9 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_131.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_131.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; version 2 -of the License. +of the License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the Free +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_132.RULE b/src/licensedcode/data/rules/lgpl-2.0_132.RULE index 6198fe9d6c..962b2f5bbe 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_132.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_132.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; version 2 -of the License. +of the License}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this program; if not, write to the Free +You should have received a copy of the {{GNU Library General Public +License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_133.RULE b/src/licensedcode/data/rules/lgpl-2.0_133.RULE index 6cf9551fd8..7e0c8c7b37 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_133.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_133.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; version 2 -of the License. +of the License}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this program; if not, write to the Free +You should have received a copy of the {{GNU Library General Public +License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_148.RULE b/src/licensedcode/data/rules/lgpl-2.0_148.RULE index 3306abf383..84cae0d4ea 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_148.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_148.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GNU Library General Public License, version 2.0 \ No newline at end of file +the {{GNU Library General Public License, version 2}}.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_151.RULE b/src/licensedcode/data/rules/lgpl-2.0_151.RULE index 22e63fac54..d1fc4984c5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_151.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_151.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0_153.RULE b/src/licensedcode/data/rules/lgpl-2.0_153.RULE index a096cb55c8..2619580e65 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_153.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_153.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0_156.RULE b/src/licensedcode/data/rules/lgpl-2.0_156.RULE index cda0551b44..08a775efc2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_156.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_156.RULE @@ -6,4 +6,4 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2 --- -On Debian systems, the complete text of the GNU Library General Public License, version 2, can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file +On Debian systems, the complete text of the {{GNU Library General Public License, version 2}}, can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_16.RULE b/src/licensedcode/data/rules/lgpl-2.0_16.RULE index e2cbd309db..428f0e88e1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_16.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_16.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public License as + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; version 2 of the - License. + License.}} This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -16,4 +16,4 @@ This program is free software; you can redistribute it and/or You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. \ No newline at end of file + Boston, MA 02111-1307, USA. diff --git a/src/licensedcode/data/rules/lgpl-2.0_165.RULE b/src/licensedcode/data/rules/lgpl-2.0_165.RULE index f210290550..721c04a328 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_165.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_165.RULE @@ -5,6 +5,6 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2 --- -On Debian GNU/Linux systems, the complete text of the GNU Library - General Public License, version 2, can be found in +On Debian GNU/Linux systems, the complete text of the {{GNU Library + General Public License, version 2}}, can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_168.RULE b/src/licensedcode/data/rules/lgpl-2.0_168.RULE index 28863910da..b4fd9f0582 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_168.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_168.RULE @@ -7,5 +7,5 @@ relevance: 100 You are free to distribute this software under the terms of the GNU Lesser (Library) General Public License. -On Debian GNU/Linux systems, the complete text of the GNU Lesser (Library) -General Public License can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU Lesser (Library) +General Public License can be found in /usr/share/common-licenses/LGPL-2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_17.RULE b/src/licensedcode/data/rules/lgpl-2.0_17.RULE index 8062d32c3c..284c0af7ad 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_17.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_17.RULE @@ -5,16 +5,16 @@ minimum_coverage: 97 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public +modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; version 2 -of the License. +of the License}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Library General Public License}} for more details. -You should have received a copy of the GNU Library General Public -License along with this library; if not, write to the Free +You should have received a copy of the {{GNU Library General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_181.RULE b/src/licensedcode/data/rules/lgpl-2.0_181.RULE index 97ddb23628..f00a6b01d2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_181.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_181.RULE @@ -7,5 +7,5 @@ relevance: 100 You are free to distribute this software under the terms of the GNU Lesser (Library) General Public License. -On Debian systems, the text of the GNU Lesser (Library) -General Public License can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file +On Debian systems, the text of the {{GNU Lesser (Library) +General Public License can be found in /usr/share/common-licenses/LGPL-2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_183.RULE b/src/licensedcode/data/rules/lgpl-2.0_183.RULE index 9342277239..e4acbc5a79 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_183.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_183.RULE @@ -7,4 +7,4 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2 --- -On Debian systems, the text of the GNU Library General Public License, version 2, can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file +On Debian systems, the text of the {{GNU Library General Public License, version 2}}, can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_189.RULE b/src/licensedcode/data/rules/lgpl-2.0_189.RULE index a2184b4835..850403234e 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_189.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_189.RULE @@ -6,20 +6,20 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public + modify it under the terms of the {{GNU Library General Public License as published by the Free Software Foundation; version 2 - of the License. + of the License}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Library General Public License}} for more details. - You should have received a copy of the GNU Library General Public - License along with this library; if not, write to the Free + You should have received a copy of the {{GNU Library General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - On Debian and systems the full text of the GNU Library General Public - License version 2 can be found in the file + On Debian and systems the full text of the {{GNU Library General Public + License version 2}} can be found in the file `/usr/share/common-licenses/LGPL-2` \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_190.RULE b/src/licensedcode/data/rules/lgpl-2.0_190.RULE index 87377764d8..2250bb9bcf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_190.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_190.RULE @@ -5,6 +5,6 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2 --- -On Debian and systems the full text of the GNU Library General Public - License version 2 can be found in the file +On Debian and systems the full text of the {{GNU Library General Public + License version 2}} can be found in the file `/usr/share/common-licenses/LGPL-2` \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_193.RULE b/src/licensedcode/data/rules/lgpl-2.0_193.RULE index b9b66414b0..e6ed8b99ce 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_193.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_193.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl-2.0_194.RULE b/src/licensedcode/data/rules/lgpl-2.0_194.RULE index b82f0eb46a..11275bd528 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_194.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_194.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GNU Library General Public License v2 only LGPL-2.0 \ No newline at end of file +{{GNU Library General Public License v2 only}} {{LGPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_195.RULE b/src/licensedcode/data/rules/lgpl-2.0_195.RULE index 2265fdc194..a9a1ca3944 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_195.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_195.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -license : LGPL-2.0 \ No newline at end of file +license : {{LGPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_196.RULE b/src/licensedcode/data/rules/lgpl-2.0_196.RULE index c89a522121..66927b48c1 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_196.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_196.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : LGPL-2.0 \ No newline at end of file +licenseid : {{LGPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_197.RULE b/src/licensedcode/data/rules/lgpl-2.0_197.RULE index a1a32313eb..af2b315cf7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_197.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_197.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : GNU Library General Public License v2 only \ No newline at end of file +name : {{GNU Library General Public License v2 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_198.RULE b/src/licensedcode/data/rules/lgpl-2.0_198.RULE index 0404163b1f..1cea7873c7 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_198.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_198.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -LGPL-2.0-only GNU Library General Public License v2 only \ No newline at end of file +{{LGPL-2.0-only}} {{GNU Library General Public License v2 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_199.RULE b/src/licensedcode/data/rules/lgpl-2.0_199.RULE index 277b6e6d74..900a596b5f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_199.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_199.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU Library General Public License v2 only LGPL-2.0-only \ No newline at end of file +{{GNU Library General Public License v2 only}} {{LGPL-2.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_200.RULE b/src/licensedcode/data/rules/lgpl-2.0_200.RULE index 165efb2c18..a4f01cbf7b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_200.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_200.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: LGPL-2.0-only \ No newline at end of file +{{license: LGPL-2}}.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_201.RULE b/src/licensedcode/data/rules/lgpl-2.0_201.RULE index 9d729d294e..c770e24c9d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_201.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_201.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GNU Library General Public License v2 only \ No newline at end of file +license: {{GNU Library General Public License v2 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_202.RULE b/src/licensedcode/data/rules/lgpl-2.0_202.RULE index 027208a21b..bd9a6f75ab 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_202.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_202.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: LGPL-2.0-only \ No newline at end of file +licenseId: {{LGPL-2.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_203.RULE b/src/licensedcode/data/rules/lgpl-2.0_203.RULE index b58b0ebfe0..0552ad43ba 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_203.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_203.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -- LicenseRef-LGPL-2 \ No newline at end of file +- LicenseRef-{{LGPL-2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_204.RULE b/src/licensedcode/data/rules/lgpl-2.0_204.RULE index beeaccacae..0c0b38e161 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_204.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_204.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -- LicenseRef-LGPL-2.0 \ No newline at end of file +- LicenseRef-{{LGPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_205.RULE b/src/licensedcode/data/rules/lgpl-2.0_205.RULE index 69a41054e0..bd9a330b45 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_205.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_205.RULE @@ -7,8 +7,8 @@ notes: https://github.com/libigl/libigl/blob/21acee15fe4451e828b52bedcdba53b79d8 * License * * * * This library is free software; you can redistribute it and/or modify it * - * under the terms of the {{GNU Library General Public License}} as published * - * by the Free Software Foundation, {{version 2}}. * + * under the terms of the {{GNU Library General Public License as published * + * by the Free Software Foundation, version 2}}. * * * * This library is distributed in the hope that it will be useful, but * * WITHOUT ANY WARRANTY; without even the implied warranty of * diff --git a/src/licensedcode/data/rules/lgpl-2.0_206.RULE b/src/licensedcode/data/rules/lgpl-2.0_206.RULE index d6ff6bb811..da22d4d37c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_206.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_206.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0_21.RULE b/src/licensedcode/data/rules/lgpl-2.0_21.RULE index bb7f4285ab..ef551201ee 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_21.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_21.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This code is distributed "AS IS" without warranty of any kind under -the terms of the GNU Library General Public License Version 2, as +the terms of the {{GNU Library General Public License Version 2}}, as shown in the file LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_210.RULE b/src/licensedcode/data/rules/lgpl-2.0_210.RULE index 6f2f96b392..8b1e2a0492 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_210.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_210.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.0_211.RULE b/src/licensedcode/data/rules/lgpl-2.0_211.RULE index cddcdc4cd3..e80d500e83 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_211.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_211.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: LGPL-2.0 \ No newline at end of file +licenses: {{LGPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_212.RULE b/src/licensedcode/data/rules/lgpl-2.0_212.RULE index 059d1cf274..c0668ddaae 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_212.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_212.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: lGPL-2.0-only \ No newline at end of file +licenses: {{lGPL-2.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_219.RULE b/src/licensedcode/data/rules/lgpl-2.0_219.RULE index f0bfb917d8..6cca333542 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_219.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_219.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- The Library is free software; you can redistribute it and/or -modify it under the terms of the {{GNU Library General Public License}} as -published by the Free Software Foundation; {{version 2 of the +modify it under the terms of the {{GNU Library General Public License as +published by the Free Software Foundation; version 2 of the License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_220.RULE b/src/licensedcode/data/rules/lgpl-2.0_220.RULE index 4dce429c73..224dfafaee 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_220.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_220.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- Library is free software; you can redistribute it and/or -modify it under the terms of the {{GNU Library General Public License}} as -published by the Free Software Foundation; {{version 2 of the +modify it under the terms of the {{GNU Library General Public License as +published by the Free Software Foundation; version 2 of the License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_221.RULE b/src/licensedcode/data/rules/lgpl-2.0_221.RULE index 294aca9bd2..6b9129caa5 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_221.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_221.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This Library is free software; you can redistribute it and/or -modify it under the terms of the {{GNU Library General Public License}} as -published by the Free Software Foundation; {{version 2 of the +modify it under the terms of the {{GNU Library General Public License as +published by the Free Software Foundation; version 2 of the License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_24.RULE b/src/licensedcode/data/rules/lgpl-2.0_24.RULE index 6f21e27412..891a02a356 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_24.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_24.RULE @@ -7,4 +7,4 @@ You are free to distribute this software under the terms of the GNU Lesser (Library) General Public License. On Debian systems, the complete text of the GNU Lesser (Library) -General Public License can be found in /usr/share/common-licenses/LGPL-2. \ No newline at end of file +General Public License can be found in {{/usr/share/common-licenses/LGPL-2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_25.RULE b/src/licensedcode/data/rules/lgpl-2.0_25.RULE index b0f59ad599..0a28e8ea37 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_25.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_25.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This file may be redistributed under the terms of the GNU Library -General Public License, version 2. \ No newline at end of file +This file may be redistributed under the terms of the {{GNU Library +General Public License, version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_27.RULE b/src/licensedcode/data/rules/lgpl-2.0_27.RULE index d84c830c97..15e47e7625 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_27.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_27.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -This file may be redistributed under the terms of the GNU Library -General Public License, v2. \ No newline at end of file +This file may be redistributed under the terms of the {{GNU Library +General Public License, v2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_29.RULE b/src/licensedcode/data/rules/lgpl-2.0_29.RULE index 5df9ecd271..ab8bcc1639 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_29.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_29.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- * %Begin-Header% - * This file may be redistributed under the terms of the GNU Library - * General Public License, version 2. + * This file may be redistributed under the terms of the {{GNU Library + * General Public License, version 2}}. * %End-Header% \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_31.RULE b/src/licensedcode/data/rules/lgpl-2.0_31.RULE index 633025db52..9a8eda23fc 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_31.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_31.RULE @@ -5,8 +5,8 @@ relevance: 100 --- * This program is free software; you can redistribute it and/or -* modify it under the terms of version 2 of the GNU Lesser General Public -* License as published by the Free Software Foundation. +* modify it under the terms of {{version 2 of the GNU Lesser General Public +* License}} as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -16,4 +16,4 @@ relevance: 100 * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, -* Boston, MA 02110-1301, USA. \ No newline at end of file +* Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/rules/lgpl-2.0_32.RULE b/src/licensedcode/data/rules/lgpl-2.0_32.RULE index 0583e9f8b7..0cad2d2af4 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_32.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_32.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- # This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU Library General Public License as published by -# the Free Software Foundation; version 2 only +# it under the terms of the {{GNU Library General Public License as published by +# the Free Software Foundation; version 2}} only # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Library General Public License for more details. +# {{GNU Library General Public License}} for more details. # -# You should have received a copy of the GNU Library General Public License +# You should have received a copy of the {{GNU Library General Public License}} # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_37.RULE b/src/licensedcode/data/rules/lgpl-2.0_37.RULE index 9f1d436fee..c368403b68 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_37.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_37.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-2.0 -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -lgpl 2 \ No newline at end of file +LGPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_5.RULE b/src/licensedcode/data/rules/lgpl-2.0_5.RULE index 630cb6bc81..88e59f8598 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_5.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Declaration variant --- -This program is licensed under the GNU Library General Public License, v2 \ No newline at end of file +This program is licensed under the {{GNU Library General Public License, v2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_56.RULE b/src/licensedcode/data/rules/lgpl-2.0_56.RULE index 8e30cc8283..ac97463b19 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_56.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_56.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-2.0 -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gnu lgpl 2 \ No newline at end of file +gnu lgpl 2 diff --git a/src/licensedcode/data/rules/lgpl-2.0_60.RULE b/src/licensedcode/data/rules/lgpl-2.0_60.RULE index f9e9d1a21c..182f2bf23b 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_60.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_60.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-2.0 -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gnu lgpl 2.0 \ No newline at end of file +gnu lgpl 2.0 diff --git a/src/licensedcode/data/rules/lgpl-2.0_63.RULE b/src/licensedcode/data/rules/lgpl-2.0_63.RULE index 0b43eb0a6b..b09ccb0752 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_63.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_63.RULE @@ -8,7 +8,7 @@ referenced_filenames: --- The C library "libftdi" is distributed under the -GNU Library General Public License version 2. +{{GNU Library General Public License version 2}}. -A copy of the GNU Library General Public License (LGPL) is included +A copy of the {{GNU Library General Public License (LGPL)}} is included in this distribution, in the file COPYING.LIB. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_66.RULE b/src/licensedcode/data/rules/lgpl-2.0_66.RULE index 56ea319cc4..c83bfc9ba6 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_66.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_66.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -portions licensed under the GNU Library General Public License Version 2 \ No newline at end of file +portions licensed under the {{GNU Library General Public License Version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_67.RULE b/src/licensedcode/data/rules/lgpl-2.0_67.RULE index ef3a269c6b..9e23adf6e2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_67.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_67.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU Library General Public License Version 2 \ No newline at end of file +licensed under the {{GNU Library General Public License Version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_68.RULE b/src/licensedcode/data/rules/lgpl-2.0_68.RULE index 86d50fb021..5d6ab84eb8 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_68.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_68.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -software is released under the GNU Library General Public License Version 2. \ No newline at end of file +software is released under the {{GNU Library General Public License Version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_69.RULE b/src/licensedcode/data/rules/lgpl-2.0_69.RULE index 5da2731d1d..f6e0be4e2c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_69.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_69.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU Library General Public License Version 2. \ No newline at end of file +released under the {{GNU Library General Public License Version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_70.RULE b/src/licensedcode/data/rules/lgpl-2.0_70.RULE index 23003a5b92..5e78b54331 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_70.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_70.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU Library General Public License Version 2. \ No newline at end of file +under the {{GNU Library General Public License Version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_71.RULE b/src/licensedcode/data/rules/lgpl-2.0_71.RULE index bdaa06fd0f..9792d730d0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_71.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_71.RULE @@ -1,7 +1,10 @@ --- license_expression: lgpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU Library General Public License Version 2. \ No newline at end of file +GNU LIBRARY GENERAL PUBLIC LICENSE + +Version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_73.RULE b/src/licensedcode/data/rules/lgpl-2.0_73.RULE index 55aabea624..ec9b329530 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_73.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_73.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -owned by the FSF and licensed under the terms of the GNU Library General Public License, Version 2 (LGPL). You may obtain a complete machine-readable copy of the source code for the libiconv software under the terms of LGPL, without charge except for the cost of media, shipping, and handling, upon written request to Apple. The libiconv software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LGPL for more details; a copy of the LGPL is included with this product. \ No newline at end of file +owned by the FSF and licensed under the terms of the {{GNU Library General Public License, Version 2}} (LGPL). You may obtain a complete machine-readable copy of the source code for the libiconv software under the terms of LGPL, without charge except for the cost of media, shipping, and handling, upon written request to Apple. The libiconv software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LGPL for more details; a copy of the LGPL is included with this product. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_74.RULE b/src/licensedcode/data/rules/lgpl-2.0_74.RULE index 5edfffaca4..8e132a73db 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_74.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_74.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -owned by the FSF and licensed under the terms of the GNU Library General Public License, Version 2 (LGPL). \ No newline at end of file +owned by the FSF and licensed under the terms of the {{GNU Library General Public License, Version 2}} (LGPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_75.RULE b/src/licensedcode/data/rules/lgpl-2.0_75.RULE index 7b1f340fec..55d40de6b0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_75.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_75.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -owned by the FSF and licensed under the terms of the GNU Library General Public License, Version 2 (LGPL). You may obtain a complete machine-readable copy of the source code for the software under the terms of LGPL, without charge except for the cost of media, shipping, and handling, upon written request. The software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LGPL for more details; a copy of the LGPL is included with this product. \ No newline at end of file +owned by the FSF and licensed under the terms of the {{GNU Library General Public License, Version 2}} (LGPL). You may obtain a complete machine-readable copy of the source code for the software under the terms of LGPL, without charge except for the cost of media, shipping, and handling, upon written request. The software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LGPL for more details; a copy of the LGPL is included with this product. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_76.RULE b/src/licensedcode/data/rules/lgpl-2.0_76.RULE index ae22fd51b6..5b4e52f48d 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_76.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_76.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU Library General Public License, Version 2 (LGPL). \ No newline at end of file +licensed under the terms of the {{GNU Library General Public License, Version 2}} (LGPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_77.RULE b/src/licensedcode/data/rules/lgpl-2.0_77.RULE index 89013878ec..9b56e8cf70 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_77.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_77.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU Library General Public License, Version 2 (LGPL). \ No newline at end of file +{{GNU Library General Public License, Version 2}} (LGPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_78.RULE b/src/licensedcode/data/rules/lgpl-2.0_78.RULE index e199dafc04..e336437f2f 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_78.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_78.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -GNU libiconv is owned by the FSF and licensed under the terms of the GNU Library General Public License, Version 2 (LGPL). You may obtain a complete machine-readable copy of the source code for the libiconv software under the terms of LGPL, without charge except for the cost of media, shipping, and handling, upon written request to Apple. The libiconv software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LGPL for more details; a copy of the LGPL is included with this product. \ No newline at end of file +GNU libiconv is owned by the FSF and licensed under the terms of the {{GNU Library General Public License, Version 2}} (LGPL). You may obtain a complete machine-readable copy of the source code for the libiconv software under the terms of LGPL, without charge except for the cost of media, shipping, and handling, upon written request to Apple. The libiconv software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LGPL for more details; a copy of the LGPL is included with this product. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_79.RULE b/src/licensedcode/data/rules/lgpl-2.0_79.RULE index c1b0f00f2f..4c89a858d2 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_79.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_79.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -GNU LIBRARY GENERAL PUBLIC LICENSE -Version 2, June 1991 \ No newline at end of file +{{GNU LIBRARY GENERAL PUBLIC LICENSE +Version 2}}, June 1991 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_bare_id.RULE b/src/licensedcode/data/rules/lgpl-2.0_bare_id.RULE index 4c90b37c11..369e762fab 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_bare_id.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_bare_id.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-2.0 -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 80 --- -LGPL-2.0 \ No newline at end of file +lgpl 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_debian.RULE b/src/licensedcode/data/rules/lgpl-2.0_debian.RULE index a19ba1e83b..7e55802892 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_debian.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_debian.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -- LGPLv2: /usr/share/common-licenses/LGPL-2 \ No newline at end of file +- LGPLv2: {{/usr/share/common-licenses/LGPL-2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_debian_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_debian_1.RULE index 9b26603546..b4cd7673cf 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_debian_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_debian_1.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- You can find multiple versions of the LGPL in /usr/share/common-licenses; -in particular, /usr/share/common-licenses/LGPL-2 contains version 2. \ No newline at end of file +in particular, {{/usr/share/common-licenses/LGPL-2}} contains version 2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_other.RULE b/src/licensedcode/data/rules/lgpl-2.0_other.RULE index 7cbdce5a4f..aff33d49f0 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_other.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_other.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- * This file is part of GATE (see http://gate.ac.uk/), and is free -* software, licenced under the GNU Library General Public License, -* Version 2, June 1991 (in the distribution as file licence.html, +* software, licenced under the {{GNU Library General Public License, +* Version 2}}, June 1991 (in the distribution as file licence.html, * and also available at http://gate.ac.uk/gate/licence.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_readme.RULE b/src/licensedcode/data/rules/lgpl-2.0_readme.RULE index 21a15fae61..11f63fed5c 100644 --- a/src/licensedcode/data/rules/lgpl-2.0_readme.RULE +++ b/src/licensedcode/data/rules/lgpl-2.0_readme.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -([LGPL 2.0](/legal/LGPLv2.0)) \ No newline at end of file +([{{LGPL 2.0}}](/legal/LGPLv2.0)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_required_phrase_1.RULE b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_1.RULE new file mode 100644 index 0000000000..2e35851483 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_1.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser (Library) +General Public License can be found in /usr/share/common-licenses/LGPL-2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_required_phrase_10.RULE b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_10.RULE new file mode 100644 index 0000000000..7ba6fba69a --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_10.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu library general public license as published by free software foundation version 2 of the license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_required_phrase_11.RULE b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_11.RULE new file mode 100644 index 0000000000..dece295c23 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_11.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under terms of lgpl 2 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_required_phrase_12.RULE b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_12.RULE new file mode 100644 index 0000000000..139aa1520b --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_12.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Library General Public License as published by Free Software Foundation version 2 of License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_required_phrase_3.RULE b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_3.RULE new file mode 100644 index 0000000000..581bc01d85 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_3.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Library General Public License as published * + * by the Free Software Foundation, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_required_phrase_4.RULE b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_4.RULE new file mode 100644 index 0000000000..ef74864b5c --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_4.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +LGPL 2 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_required_phrase_5.RULE b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_5.RULE new file mode 100644 index 0000000000..39655046eb --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_5.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Library General Public License (LGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_required_phrase_6.RULE b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_6.RULE new file mode 100644 index 0000000000..377a4fc74c --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_6.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Library General Public +License as published by the Free Software Foundation version 2 +of the License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_required_phrase_7.RULE b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_7.RULE new file mode 100644 index 0000000000..6a77b1a654 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_7.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Library +General Public License, v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_required_phrase_8.RULE b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_8.RULE new file mode 100644 index 0000000000..a1d7a7fbc7 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under terms of the lgpl 2 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.0_required_phrase_9.RULE b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_9.RULE new file mode 100644 index 0000000000..68129109b4 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.0_required_phrase_9.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Library General Public License as published * * by Free Software Foundation, version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus.RULE index 7893a6e4f4..0e99a48b2e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. \ No newline at end of file +version 2.1 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_1.RULE index 69298b99e0..4c1854869f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_1.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free + You should have received a copy of the {{GNU Lesser General Public + License}} along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_10.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_10.RULE index 960a533f4c..950b201143 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_10.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_10.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. (See .) \ No newline at end of file + (at your option) any later version}}. (See .) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_100.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_100.RULE index a7c8bffa76..282156e540 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_100.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_100.RULE @@ -8,16 +8,16 @@ referenced_filenames: --- is free software; you can redistribute it and/or modify it under the -terms of the GNU Lesser General Public License as published by the Free +terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) -any later version. +any later version}}. is distrubuted in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with ; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_102.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_102.RULE index 6ce26d46bc..28d56e7b1a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_102.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_102.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All Icons are free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. \ No newline at end of file +All Icons are free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_104.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_104.RULE index e5125f84de..482547c771 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_104.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_104.RULE @@ -6,17 +6,17 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published + it under the terms of the {{GNU Lesser General Public License}} as published by the Free Software Foundation; either version 2.1 of License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should also have received a copy of the GNU Lesser General Public - License along with this library in the file named "LICENSE". + You should also have received a copy of the {{GNU Lesser General Public + License}} along with this library in the file named "LICENSE". If not, write to the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA or visit their web page on the internet at http://www.fsf.org/licenses/lgpl.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_105.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_105.RULE index 48da407231..c3b0f19096 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_105.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_105.RULE @@ -7,6 +7,6 @@ referenced_filenames: - COPYING.LESSER --- -Free use of this software is granted under the terms of the GNU Lesser General -Public License (LGPL v2.1+). For details see the files `COPYING` and +Free use of this software is granted under the terms of the {{GNU Lesser General +Public License (LGPL}} v2.1+). For details see the files `COPYING` and `COPYING.LESSER` included with the distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_106.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_106.RULE index 836e668d90..bc29a7e98a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_106.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_106.RULE @@ -6,4 +6,4 @@ is_license_notice: yes The source code for GNU is licensed under the Lesser GNU Public License (LGPL). -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file +This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_107.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_107.RULE index e8cd5ea647..e6af655107 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_107.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_107.RULE @@ -5,15 +5,15 @@ relevance: 100 --- * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public + * modify it under the terms of the {{GNU Lesser General Public * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. + * version 2.1 of the License, or (at your option) any later version}}. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Lesser General Public License}} for more details. * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software + * You should have received a copy of the {{GNU Lesser General Public + * License}} along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_108.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_108.RULE index 29d7a73d63..9c99a9704f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_108.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_108.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1-plus is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_109.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_109.RULE index 4e2eb22ef2..ed28d66415 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_109.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_109.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You can receive a copy of the GNU Lesser General Public License from +You can receive a copy of the {{GNU Lesser General Public License}} from http://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_11.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_11.RULE index fedd69bbb6..e0d3b806a4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_11.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_11.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_111.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_111.RULE index 8732ee0472..10ecfd5a8b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_111.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_111.RULE @@ -8,6 +8,6 @@ referenced_filenames: COPYING ------- -Free use of this software is granted under the terms of the GNU Lesser General -Public License (LGPL v2.1+). For details see the files `COPYING` and +Free use of this software is granted under the terms of the {{GNU Lesser General +Public License (LGPL}} v2.1+). For details see the files `COPYING` and `COPYING.LESSER` included with the distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_112.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_112.RULE index c7da909544..11baaf8907 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_112.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_112.RULE @@ -8,7 +8,7 @@ ignorable_urls: - GNU LESSER GENERAL PUBLIC LICENSE + {{GNU LESSER GENERAL PUBLIC LICENSE}} http://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_114.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_114.RULE index b08d4accf2..8fc0957eab 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_114.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_114.RULE @@ -11,14 +11,14 @@ LGPL 2.1 LGPL-2.1 This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library. If not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_115.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_115.RULE index 671764ccd5..04dac72f5e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_115.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_115.RULE @@ -5,15 +5,15 @@ relevance: 100 --- # is free software; you can redistribute it and/or modify it under the -# terms of the GNU Lesser General Public License as published by the Free +# terms of the {{GNU Lesser General Public License as published by the Free # Software Foundation; either version 2.1 of the License, or (at your option) -# any later version. +# any later version}}. # # is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more # details. # -# You should have received a copy of the GNU Lesser General Public License +# You should have received a copy of the {{GNU Lesser General Public License}} # along with ; if not, write to the Free Software Foundation, Inc., # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_116.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_116.RULE index 2c3d093b57..ffae6c5684 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_116.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_116.RULE @@ -1,8 +1,9 @@ --- license_expression: lgpl-2.1-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- version 2.1 or later of the GNU Lesser General - Public License. \ No newline at end of file + Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_117.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_117.RULE index 8721dba7de..0288a990e7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_117.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_117.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -available under version 2.1 or later of the GNU Lesser General - Public License. \ No newline at end of file +available under {{version 2.1 or later of the GNU Lesser General + Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_118.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_118.RULE index d2f032ba1d..69270a2067 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_118.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_118.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -and available under version 2.1 or later of the GNU Lesser General - Public License. \ No newline at end of file +and available under {{version 2.1 or later of the GNU Lesser General + Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_119.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_119.RULE index 2defca2bb5..1651ce8e5e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_119.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_119.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -GNU Lesser General Public License version 2.1 or later applies. \ No newline at end of file +{{GNU Lesser General Public License version 2.1 or later}} applies. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_12.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_12.RULE index 1f7ce170a2..81d20673f3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_12.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_12.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free + You should have received a copy of the {{GNU Lesser General Public + License}} along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_13.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_13.RULE index c88bb81697..f5f5e13239 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_13.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_13.RULE @@ -6,6 +6,6 @@ notes: MP variant originally with "dnl" comment markers --- The GNU MP Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License as +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the -License, or (at your option) any later version. \ No newline at end of file +License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_14.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_14.RULE index d0eec28c8d..308ba6f4f6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_14.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_14.RULE @@ -6,5 +6,5 @@ referenced_filenames: --- Some of the -files are licensed under the GNU Lesser General Public License which +files are licensed under the {{GNU Lesser General Public License}} which can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_149.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_149.RULE index ed4a9f405d..7cbff6a1e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_149.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_149.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-2.1-plus -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gnu lgpl 2.1+ \ No newline at end of file +gnu lgpl 2.1+ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_15.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_15.RULE index 474c5d77d8..f22190bb76 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_15.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_15.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -20,5 +20,5 @@ This library is free software; you can redistribute it and/or modify along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the complete text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU Lesser General +Public License}} can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_155.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_155.RULE index 14d19fab04..26bd222f9e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_155.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_155.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either +modify it under the terms of the {{GNU Lesser General Public +License}} as published by the Free Software Foundation; either version 2.1 of the License, or any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_159.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_159.RULE index 1ad1eb1cd7..17494b597d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_159.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_159.RULE @@ -8,4 +8,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/lesser.html --- -License:: GNU Lesser General Public License (COPYING, http://www.gnu.org/copyleft/lesser.html) \ No newline at end of file +License:: {{GNU Lesser General Public License}} (COPYING, http://www.gnu.org/copyleft/lesser.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_16.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_16.RULE index cf6d1bc9b5..2c5ed97565 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_16.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_16.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - On Debian GNU/Linux systems, the complete text of the GNU Lesser General - Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU Lesser General + Public License}} can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_160.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_160.RULE index 8ee692de53..daa72ffea2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_160.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_160.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -software is released under the GNU lesser General Public License \ No newline at end of file +software is released under the {{GNU lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_161.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_161.RULE index bb5f96c434..efe8d845aa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_161.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_161.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU lesser General Public License \ No newline at end of file +released under the {{GNU lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_162.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_162.RULE index d6d95bfebd..5d22456c57 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_162.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_162.RULE @@ -2,6 +2,8 @@ license_expression: lgpl-2.1-plus is_license_reference: yes relevance: 100 +notes: lesser implies 2.1 or later +skip_for_required_phrase_generation: yes --- -lesser General Public License \ No newline at end of file +{{lesser General Public License}} diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_163.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_163.RULE index 28f31a6f21..37cc76f948 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_163.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_163.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.gnu.org/copyleft/lesser.html --- -@license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License +@license http://www.gnu.org/copyleft/lesser.html {{GNU Lesser General Public License}} @note This program is distributed in the hope that it will be useful - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_164.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_164.RULE index 2293344580..2147b89287 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_164.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_164.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/copyleft/lesser.html --- -@license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License \ No newline at end of file +@license http://www.gnu.org/copyleft/lesser.html {{GNU Lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_17.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_17.RULE index e6559be441..504251eb46 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_17.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_17.RULE @@ -5,6 +5,6 @@ notes: lgpl with markup --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as + * it under the terms of the {{GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of the - * License, or (at your option) any later version. \ No newline at end of file + * License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_170.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_170.RULE index 47c5c39603..920de2e472 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_170.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_170.RULE @@ -8,6 +8,6 @@ ignorable_urls: - http://ffmpeg.org/legal.html --- -FFmpeg is licensed under the GNU Lesser General Public License (LGPL) version 2.1 or later. +FFmpeg is licensed under the {{GNU Lesser General Public License (LGPL) version 2.1 or later}}. See `OPENCV_SOURCE_CODE/3rdparty/ffmpeg/readme.txt` and http://ffmpeg.org/legal.html for details and licensing information \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_171.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_171.RULE index 96ff347598..5249e38a7a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_171.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_171.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -FFmpeg is licensed under the GNU Lesser General Public License (LGPL) version 2.1 or later. \ No newline at end of file +FFmpeg is licensed under the {{GNU Lesser General Public License (LGPL) version 2.1 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_172.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_172.RULE index af6f75f987..15ab8ac2ac 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_172.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_172.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU Lesser General Public License (LGPL) version 2.1 or later. \ No newline at end of file +licensed under the {{GNU Lesser General Public License (LGPL) version 2.1 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_173.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_173.RULE index 8ba6989f78..7ccd20ef2f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_173.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_173.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU Lesser General Public License (LGPL) version 2.1 or later. \ No newline at end of file +under the {{GNU Lesser General Public License (LGPL) version 2.1 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_175.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_175.RULE index db35f57d19..a5a4de5458 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_175.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_175.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-2.1-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU Lesser General Public License, version 2.1 or later \ No newline at end of file +GNU Lesser General Public License version 2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_177.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_177.RULE index cdd840319a..d476ab04d3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_177.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_177.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -This file is distributed under the terms of the GNU Lesser General -Public License, version 2.1 or later - see the file COPYING.LIB for details. +This file is distributed under the terms of the {{GNU Lesser General +Public License, version 2.1 or later}} - see the file COPYING.LIB for details. If you did not receive a copy of the license with this program, please see to obtain a copy. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_178.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_178.RULE index 33667f6158..053da66d6c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_178.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_178.RULE @@ -8,7 +8,7 @@ ignorable_urls: - https://www.gnu.org/licenses/ --- -This file is distributed under the terms of the GNU Lesser General -Public License, version 2.1 or later - see the file COPYING.LIB for details. +This file is distributed under the terms of the {{GNU Lesser General +Public License, version 2.1 or later}} - see the file COPYING.LIB for details. If you did not receive a copy of the license with this program, please see to obtain a copy. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_179.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_179.RULE index 00d72d6147..8637b68a9b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_179.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_179.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This file is distributed under the terms of the GNU Lesser General -Public License, version 2.1 or later \ No newline at end of file +This file is distributed under the terms of the {{GNU Lesser General +Public License, version 2.1 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_18.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_18.RULE index 29a637ab8a..9cf93ee08a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_18.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_18.RULE @@ -6,16 +6,16 @@ notes: LGPL 2.1 or later notice, alternate formatting, debian style license // This library is free software; you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as +// it under the terms of the {{GNU Lesser General Public License as // published by the Free Software Foundation; either version 2.1 of the -// License, or (at your option) any later version. +// License, or (at your option) any later version}}. // // This library is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Lesser General Public License for more details. +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +// Lesser General Public License}} for more details. // -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software +// You should have received a copy of the {{GNU Lesser General Public +// License}} along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_180.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_180.RULE index 8e5bb3314f..d3b36a3ca1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_180.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_180.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- GNU is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. GNU is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with GNU; if not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with GNU; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_181.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_181.RULE index 0bbfb13da8..d33bcc7024 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_181.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_181.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- GNU is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. GNU is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with GNU; if not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with GNU; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_184.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_184.RULE index 61ff413491..b8ec92a0b9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_184.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_184.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license GNU Lesser General Public License, version 2.1 or later \ No newline at end of file +license {{GNU Lesser General Public License, version 2.1 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_186.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_186.RULE index 8da7306cce..99eb8d2bb5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_186.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_186.RULE @@ -8,5 +8,5 @@ referenced_filenames: # License -Most files in FFmpeg are under the GNU Lesser General Public License version 2.1 -or later (LGPL v2.1+). Read the file `COPYING.LGPLv2.1` for details. \ No newline at end of file +Most files in FFmpeg are under the {{GNU Lesser General Public License version 2.1 +or later}} (LGPL v2.1+). Read the file `COPYING.LGPLv2.1` for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_187.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_187.RULE index b524dfc6b0..cff107ab6c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_187.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_187.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING.LGPLv2.1 --- -Most files in FFmpeg are under the GNU Lesser General Public License version 2.1 -or later (LGPL v2.1+). Read the file `COPYING.LGPLv2.1` for details. \ No newline at end of file +Most files in FFmpeg are under the {{GNU Lesser General Public License version 2.1 +or later}} (LGPL v2.1+). Read the file `COPYING.LGPLv2.1` for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_188.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_188.RULE index ee7f25f821..97e79b9093 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_188.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_188.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -under the GNU Lesser General Public License version 2.1 -or later (LGPL v2.1+). \ No newline at end of file +under the {{GNU Lesser General Public License version 2.1 +or later}} (LGPL v2.1+). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_189.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_189.RULE index c58a71ea49..da9fbf3021 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_189.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_189.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -are under the GNU Lesser General Public License version 2.1 -or later (LGPL v2.1+) \ No newline at end of file +are under the {{GNU Lesser General Public License version 2.1 +or later}} (LGPL v2.1+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_19.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_19.RULE index 054be7db5c..8155e24276 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_19.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_19.RULE @@ -9,18 +9,18 @@ referenced_filenames: License: This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - On Debian GNU/Linux systems, the complete text of the GNU Lesser General - Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU Lesser General + Public License}} can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_190.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_190.RULE index e41f99a847..05ea757e4c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_190.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_190.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GNU Lesser General Public License version 2.1 or later (LGPL v2.1+). \ No newline at end of file +the {{GNU Lesser General Public License version 2.1 or later}} (LGPL v2.1+). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_191.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_191.RULE index 63bdfa7149..affc266cfb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_191.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_191.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GNU Lesser General Public License version 2.1 or later \ No newline at end of file +the {{GNU Lesser General Public License version 2.1 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_198.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_198.RULE index 6b6f59d8b7..864d35898e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_198.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_198.RULE @@ -5,4 +5,4 @@ relevance: 100 --- # This software may be modified and distributed under the terms of the -# GNU Lesser General Public License v2.1 or any later version. \ No newline at end of file +# {{GNU Lesser General Public License}} v2.1 or any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_199.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_199.RULE index 6b96abdbf5..fbf094e656 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_199.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_199.RULE @@ -5,4 +5,4 @@ relevance: 100 --- * This software may be modified and distributed under the terms of the - * GNU Lesser General Public Licence v2.1 or any later version. \ No newline at end of file + * {{GNU Lesser General Public Licence}} v2.1 or any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_2.RULE index 753ea2974e..1cae8cc670 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_2.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- ALTERNATIVELY, the code may be distributed under the terms of the -GNU Lesser General Public License, version 2.1 or any later version +{{GNU Lesser General Public License, version 2.1 or any later version}} published by the Free Software Foundation, in which case the provisions of the GNU LGPL are required INSTEAD OF the above restrictions. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_20.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_20.RULE index cdd5adbb81..8d97ac0203 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_20.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_20.RULE @@ -9,9 +9,9 @@ referenced_filenames: License: This library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -22,8 +22,8 @@ License: along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the complete text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. +On Debian systems, the complete text of the {{GNU Lesser General +Public License}} can be found in `/usr/share/common-licenses/LGPL-2.1'. The Debian packaging is: diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_200.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_200.RULE index 119797e878..6674264a03 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_200.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_200.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -This Software is distributed under the terms of the GNU Lesser -General Public License version 2.1 (included below), or (at your +This Software is distributed under the terms of the {{GNU Lesser +General Public License}} version 2.1 (included below), or (at your option) any later version. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_201.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_201.RULE index 3e225d0365..0570dff719 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_201.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_201.RULE @@ -7,12 +7,12 @@ referenced_filenames: --- distributed under -the terms of the GNU Lesser General Public License as published by the +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at -your option) any later version. +your option) any later version}}. -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, write to +You should have received a copy of the {{GNU Lesser General Public +License}} along with the GNU C Library; if not, write to Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_202.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_202.RULE index 5e284cb840..226fc651c6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_202.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_202.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This module is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. . This module is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_203.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_203.RULE index f4f904ca2c..e6041db01d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_203.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_203.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU Lesser General Public License, version 2.1 (or any later version, at your choice). \ No newline at end of file +licensed under the {{GNU Lesser General Public License, version 2.1 (or any later version}}, at your choice). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_204.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_204.RULE index 3d64fca348..8c7b3c0fb1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_204.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_204.RULE @@ -5,10 +5,10 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation. +modify it under the terms of the {{GNU Lesser General Public +License}} as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_205.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_205.RULE index ed570ca7db..ed4b5aa7ad 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_205.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_205.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License 2.1 along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} 2.1 along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_21.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_21.RULE index 5f2e4b7720..b791e33a94 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_21.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_21.RULE @@ -7,16 +7,16 @@ notes: Variants of lgpl-2.1-plus --- The GNU MP Library is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your -option) any later version. +option) any later version}}. The GNU MP Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public -License for more details. +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public +License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with the GNU MP Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_212.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_212.RULE index 46fbfbcced..16f66a0f0e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_212.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_212.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the LGPL 2.1+ license. \ No newline at end of file +distributed under the {{LGPL 2.1+ license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_214.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_214.RULE index a098aff56f..10c9b29c27 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_214.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_214.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under LGPL 2.1+ \ No newline at end of file +distributed under {{LGPL 2.1+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_22.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_22.RULE index 795b463bb4..f3c295c16c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_22.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_22.RULE @@ -5,15 +5,15 @@ notes: Variants of lgpl-2.1-plus --- * FFmpeg is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public + * modify it under the terms of the {{GNU Lesser General Public * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. + * version 2.1 of the License, or (at your option) any later version}}. * * FFmpeg is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Lesser General Public License}} for more details. * - * You should have received a copy of the GNU Lesser General Public - * License along with FFmpeg; if not, write to the Free Software + * You should have received a copy of the {{GNU Lesser General Public + * License}} along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_220.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_220.RULE index 2f83061509..38c845bd56 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_220.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_220.RULE @@ -6,15 +6,15 @@ notes: Seen in FFmpeg binaries as injected at build time per https://github.com/ --- %s is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. %s is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with %s; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with %s; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA, \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_223.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_223.RULE index 1b5646953d..2a377c8849 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_223.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_223.RULE @@ -5,10 +5,10 @@ relevance: 100 --- This work is free software: you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as published by +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or (at -your option) any later version. +your option) any later version}}. This work is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public -License for more details. \ No newline at end of file +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public +License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_224.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_224.RULE index fc6f690226..e79a561f77 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_224.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_224.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- This work is free software: you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as published by +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or (at -your option) any later version. +your option) any later version}}. This work is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public -License for more details. +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public +License}} for more details. https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_225.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_225.RULE index 35c8a07c59..70514ab0e1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_225.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_225.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- License -GNU Lesser General Public License (LGPL), version 2.1 or later. +{{GNU Lesser General Public License (LGPL), version 2.1 or later}}. See COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_226.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_226.RULE index de01b9e144..bf755fd517 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_226.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_226.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-2.1-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU Lesser General Public License (LGPL), version 2.1 or later. \ No newline at end of file +GNU Lesser General Public License (LGPL) version 2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_227.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_227.RULE index 6515666d2b..63a60f3c76 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_227.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_227.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -GNU Lesser General Public License (LGPL), version 2.1 or later. +{{GNU Lesser General Public License (LGPL), version 2.1 or later}}. See COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_23.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_23.RULE index c1875acedf..9f8b17adf0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_23.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_23.RULE @@ -9,14 +9,14 @@ GNU LGPL information -------------------- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You can receive a copy of the GNU Lesser General Public License from + You can receive a copy of the {{GNU Lesser General Public License}} from http://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_231.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_231.RULE index 992ca75e02..0ee6b91013 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_231.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_231.RULE @@ -6,7 +6,7 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -License: LGPL-2.1+ +{{License: LGPL-2.1+}} - On Debian systems, the complete text of the LGPL-2.1 can be found in + On Debian systems, the {{complete text of the LGPL-2.1}} can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_232.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_232.RULE index 0aaff898f7..1e7d16abe0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_232.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_232.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian systems, the complete text of the LGPL-2.1 can be found in +On Debian systems, the {{complete text of the LGPL-2.1}} can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_233.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_233.RULE index fbc25cfa0f..c0e6c8194c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_233.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_233.RULE @@ -5,15 +5,15 @@ relevance: 100 --- * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either + * modify it under the terms of the {{GNU Lesser General Public + * License}} as published by the Free Software Foundation; either * version 2.1 of the License, or any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Lesser General Public License}} for more details. * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software + * You should have received a copy of the {{GNU Lesser General Public + * License}} along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_234.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_234.RULE index d5f94caeb7..ed4dc4c2ab 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_234.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_234.RULE @@ -6,8 +6,8 @@ notes: http://accord-framework.net/license.txt --- This library is free software; you can redistribute it and/or modify it under the terms of - the GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + the {{GNU Lesser General Public License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version}}. The copyright holders provide no reassurances that the source code provided does not infringe any patent, copyright, or any other intellectual property rights of @@ -17,4 +17,4 @@ This library is free software; you can redistribute it and/or modify it under th This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU Lesser General Public License for more details. \ No newline at end of file + See the {{GNU Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_235.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_235.RULE index 7ddf5e1414..7281a21d81 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_235.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_235.RULE @@ -8,15 +8,15 @@ notes: https://github.com/jirkamarsik/quex/tree/9e9846c87b3383fd24f3b240ba02089b The LGPL: Quex is free software; you can redistribute it and/or modify it under the -terms of the GNU Lesser General Public License as published by the Free +terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) -any later version. +any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_236.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_236.RULE index ef9fa03fc3..c8367836ec 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_236.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_236.RULE @@ -8,16 +8,16 @@ notes: See in https://github.com/mplucinski/quex/blob/7865d0a37a57738c7a33781b23 LICENSE: Quex is free software; you can redistribute it and/or modify it under the -terms of the GNU Lesser General Public License as published by the Free +terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) -any later version. +any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_237.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_237.RULE index ecf578c92f..d4104a2f78 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_237.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_237.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.fsf.org/ --- -Licensed under GNU LGPL 2.1 or later. See . \ No newline at end of file +Licensed under GNU {{LGPL 2.1 or later}}. See . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_238.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_238.RULE index f65192bfe3..426f71613f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_238.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_238.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under GNU LGPL 2.1 or later. \ No newline at end of file +Licensed under GNU {{LGPL 2.1 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_239.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_239.RULE index e2ca6dd89f..43f2fd09ac 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_239.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_239.RULE @@ -5,14 +5,14 @@ relevance: 100 --- This library is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License as published by the Free +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any -later version. +later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_24.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_24.RULE index 961c7a1171..2441fed789 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_24.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_24.RULE @@ -4,8 +4,8 @@ is_license_notice: yes notes: LGPL 2.1 or later notice, alternate formatting, debian style --- -License: LGPL-2.1+ +{{License: LGPL-2.1+}} This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. \ No newline at end of file + version 2.1 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_240.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_240.RULE index 192b905117..1002de2937 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_240.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_240.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -"GNU Lesser General Public Licence, version 2.1 or later"); \ No newline at end of file +"{{GNU Lesser General Public Licence}}, version 2.1 or later"); \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_241.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_241.RULE index 66c87cbe3e..e4eab130d6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_241.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_241.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -License: LGPL-2.1+ - On Debian GNU/Linux systems, the complete text of the LGPL 2.1 - license can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +{{License: LGPL-2.1+}} + On Debian GNU/Linux systems, the {{complete text of the LGPL 2.1}} + license can be found in `{{/usr/share/common-licenses/LGPL-2}}.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_242.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_242.RULE index 97160e4196..822cb84d09 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_242.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_242.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU Lesser General Public License \ No newline at end of file +Licensed under the {{GNU Lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_243.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_243.RULE index a63e98bf7f..9bb688f4fe 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_243.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_243.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. You should have received a copy of the GNU General Public License along with this. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_244.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_244.RULE index e4ef83120e..859e25c904 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_244.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_244.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. You should have received a copy of the GNU General Public License along with this. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_245.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_245.RULE index 8e78b11113..622a652ce2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_245.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_245.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. You should have received a copy of the GNU General Public License along with this. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_246.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_246.RULE index dab4b0156e..ee213aad51 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_246.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_246.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. You should have received a copy of the GNU General Public License along with this. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_247.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_247.RULE index 07430c8f2f..4426813afb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_247.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_247.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. You should have received a copy of the GNU General Public License along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_248.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_248.RULE index 9fba6c2b6e..2d99140434 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_248.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_248.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. You should have received a copy of the GNU General Public License along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_249.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_249.RULE index fbe6f58d7e..c5aab7a4f6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_249.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_249.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. You should have received a copy of the GNU General Public License along with this file. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_250.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_250.RULE index 0b24d3e624..441a3b1fea 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_250.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_250.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This file is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. You should have received a copy of the GNU General Public License along with this file. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_251.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_251.RULE index 47cb4e89a2..fba5fe57eb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_251.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_251.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. You should have received a copy of the GNU General Public License along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_252.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_252.RULE index 0138054db2..6c2e7763e2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_252.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_252.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. You should have received a copy of the GNU General Public License along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_255.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_255.RULE index f5675048f2..e4b22c4004 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_255.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_255.RULE @@ -7,6 +7,6 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or -(at your option) any later version. See the file COPYING for details. \ No newline at end of file +(at your option) any later version}}. See the file COPYING for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_256.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_256.RULE index 490fd2fcff..cc22347a2d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_256.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_256.RULE @@ -8,15 +8,15 @@ notes: conflicting references to GPL in the LGPL notice --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or -(at your option) any later version. See the file COPYING for details. +(at your option) any later version}}. See the file COPYING for details. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_257.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_257.RULE index e727b0f3ee..64db268b7e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_257.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_257.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- The GnuTLS is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_259.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_259.RULE index 39c7ed25ac..a814326de3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_259.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_259.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_260.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_260.RULE index ee045ee5ec..eda472a77a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_260.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_260.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this program; if not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_261.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_261.RULE index f150e14579..ac51b4d102 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_261.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_261.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License version 2.1 as published +the terms of the {{GNU Lesser General Public License}} version 2.1 as published by the Free Software Foundation. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_262.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_262.RULE index c77b063c00..9bd2e6682b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_262.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_262.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this program; if not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_263.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_263.RULE index ec9d9345ec..ed381628e5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_263.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_263.RULE @@ -7,15 +7,15 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License as published by the Free +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any -later version. +later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_264.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_264.RULE index 99de121de5..faf88f50ab 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_264.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_264.RULE @@ -6,14 +6,14 @@ notes: typo in andor --- is free software you can redistribute it andor modify -it under the terms of the GNU Lesser general Public License as +it under the terms of the {{GNU Lesser general Public License as published by the Free Software Foundation either version 2.1 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this program if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this program if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_266.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_266.RULE index 7c04ec9d7d..08fc966374 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_266.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_266.RULE @@ -5,6 +5,6 @@ relevance: 100 minimum_coverage: 95 --- -License: LGPL-2.1+ - On Debian systems, the complete text of the LGPL-2.1 can be found in - /usr/share/common-licenses/LGPL-2. \ No newline at end of file +{{License: LGPL-2.1+}} + On Debian systems, the {{complete text of the LGPL-2.1}} can be found in + {{/usr/share/common-licenses/LGPL-2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_267.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_267.RULE index c961af604e..74475ca1b3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_267.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_267.RULE @@ -10,8 +10,8 @@ The upstream license clarifies pretty well that the sources of pulseaudio are effectively GPL since they rely on GPL libraries, quoting the upstream LICENSE: - """All PulseAudio source files are licensed under the GNU Lesser General - Public License. (see file LGPL for details) + """All PulseAudio source files are licensed under the {{GNU Lesser General + Public License}}. (see file LGPL for details) However, the server side links to the GPL-only library 'libsamplerate' which practically downgrades the license of the server part to GPL (see diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_268.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_268.RULE index 3e93cc8680..8382b95c36 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_268.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_268.RULE @@ -5,4 +5,4 @@ relevance: 100 --- * This file may be redistributed under the terms of the - * GNU Lesser General Public License. \ No newline at end of file + * {{GNU Lesser General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_269.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_269.RULE index bb16b5b407..8509cec7f9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_269.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_269.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License}} as published by the Free Software Foundation; either version 2.1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_27.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_27.RULE index 433b44ef8d..98111a33aa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_27.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_27.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- free software; you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the -License, or (at your option) any later version. \ No newline at end of file +License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_270.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_270.RULE index fb52d3a676..5d1edba453 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_270.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_270.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License as published by the +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at -your option) any later version. +your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public -License for more details. +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public +License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this program. If not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_281.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_281.RULE index 8dff8e45b9..af54328a12 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_281.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_281.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- error is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. error is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this program; if not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_282.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_282.RULE index 9c74582e0b..ed483f749c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_282.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_282.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License, version 2.1 +it under the terms of the {{GNU Lesser General Public License}}, version 2.1 as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this program; if not, write to +You should have received a copy of the {{GNU Lesser General Public +License}} along with this program; if not, write to Free Software Foundation, Inc. 51 Franklin St., Fifth Floor Boston, MA 02110, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_283.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_283.RULE index 380bbe8851..a586a12422 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_283.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_283.RULE @@ -1,10 +1,11 @@ --- license_expression: lgpl-2.1-plus is_license_notice: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 referenced_filenames: - INHERIT_LICENSE_FROM_PACKAGE --- -This file is distributed under the same license as the {{dialog}} package. \ No newline at end of file +{{This file is distributed under the same license as the dialog package.}} diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_284.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_284.RULE index 44ad79fc9b..721dc08e8f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_284.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_284.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, see +You should have received a copy of the {{GNU Lesser General Public +License}} along with the GNU C Library; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_285.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_285.RULE index c6c28123d1..7940df4bfe 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_285.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_285.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Seen in pacemaker HTML doc --- -less restrictive GNU Lesser General Public License (LGPLv2.1+) \ No newline at end of file +less restrictive {{GNU Lesser General Public License (LGPLv2.1+}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_286.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_286.RULE index 0c38b8f8f2..f0bb43d9d5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_286.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_286.RULE @@ -1,8 +1,9 @@ --- license_expression: lgpl-2.1-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 notes: Seen in pacemaker HTML doc --- -GNU Lesser General Public License (LGPLv2.1+) \ No newline at end of file +GNU Lesser General Public License (LGPLv2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_288.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_288.RULE index 7913433ebf..b17936ac59 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_288.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_288.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms and conditions of the GNU Lesser General Public License, \ No newline at end of file +licensed under the terms and conditions of the {{GNU Lesser General Public License}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_289.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_289.RULE index 9aa2525943..688ef428b5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_289.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_289.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the GNU Lesser General Public License (LGPL) \ No newline at end of file +licensed under the terms of the {{GNU Lesser General Public License (LGPL}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_292.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_292.RULE index 74564423ef..d75c601ac7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_292.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_292.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This package is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this package; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_293.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_293.RULE index 3d7a4faf55..3ac02d220d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_293.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_293.RULE @@ -5,18 +5,18 @@ relevance: 100 --- This package is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this package; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - On Debian systems, the complete text of the GNU Lesser General Public - License v2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file + On Debian systems, the complete text of the {{GNU Lesser General Public + License}} v2.1 can be found in `{{/usr/share/common-licenses/LGPL-2}}.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_294.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_294.RULE index 5ce5f5ef15..6a5f522f50 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_294.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_294.RULE @@ -6,14 +6,14 @@ notes: Seen in mariadb --- * This library is free software; you can redistribute it and/or modify it under - * the terms of the GNU Lesser General Public License as published by the Free + * the terms of the {{GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) - * any later version. + * any later version}}. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + * FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} * for more details. * - * You should have received a copy of the GNU Lesser General Public License along + * You should have received a copy of the {{GNU Lesser General Public License}} along * with this library; if not, write to \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_295.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_295.RULE index ee6e3b724e..8e5e24addc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_295.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_295.RULE @@ -6,14 +6,14 @@ notes: Seen in mariadb --- * This library is free software; you can redistribute it and/or modify it under - * the terms of the GNU Lesser General Public License as published by the Free + * the terms of the {{GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) - * any later version. + * any later version}}. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + * FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} * for more details. * - * You should have received a copy of the GNU Lesser General Public License along + * You should have received a copy of the {{GNU Lesser General Public License}} along * with this library \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_296.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_296.RULE index 3b27fc8d34..2057cb047f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_296.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_296.RULE @@ -9,14 +9,14 @@ ignorable_urls: This file is part of. is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with ; if not, see . \ No newline at end of file + You should have received a copy of the {{GNU Lesser General Public + License}} along with ; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_298.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_298.RULE index 40c1a0d39b..236c51b472 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_298.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_298.RULE @@ -6,17 +6,17 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian GNU/Linux systems, the complete text of the Lesser GNU General diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_3.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_3.RULE index 79555d151a..1ede45a8e0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_3.RULE @@ -5,15 +5,15 @@ notes: LGPL 2.1 or later notice, alternate formatting, debian style --- This library is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_30.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_30.RULE index 09c9f388b3..a938ca1b95 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_30.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_30.RULE @@ -19,7 +19,7 @@ below. It can also be found at: ---------------------------------------------------------------------- -GNU LESSER GENERAL PUBLIC LICENSE +{{GNU LESSER GENERAL PUBLIC LICENSE}} Version 2.1, February 1999 @@ -86,8 +86,8 @@ obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary -GNU General Public License. This license, the GNU Lesser General Public -License, applies to certain designated libraries, and is quite different +GNU General Public License. This license, the {{GNU Lesser General Public +License}}, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_300.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_300.RULE index 1447f0b077..1741664e8e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_300.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_300.RULE @@ -5,18 +5,18 @@ relevance: 100 --- This package is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this package; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - On Debian systems, the text of the GNU Lesser General Public - License v2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file + On Debian systems, the text of the {{GNU Lesser General Public + License}} v2.1 can be found in `{{/usr/share/common-licenses/LGPL-2}}.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_301.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_301.RULE index 97e80cbd46..52919411a3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_301.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_301.RULE @@ -6,18 +6,18 @@ minimum_coverage: 95 notes: found in libdnf --- -Licensed under the GNU Lesser General Public License Version 2.1 +Licensed under the {{GNU Lesser General Public License}} Version 2.1 This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_303.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_303.RULE index 0c4dcbf6bf..9ab1ff8e39 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_303.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_303.RULE @@ -3,13 +3,13 @@ license_expression: lgpl-2.1-plus is_license_notice: yes --- -License: LGPL-2.1+ +{{License: LGPL-2.1+}} This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_304.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_304.RULE index 07e016b464..cd55920d9c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_304.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_304.RULE @@ -5,16 +5,16 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -License: LGPL-2.1+ +{{License: LGPL-2.1+}} This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. On Debian systems, the complete text of the GNU Library General Public License can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_305.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_305.RULE index dd94ed2aa6..d1631a349d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_305.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_305.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU Lesser General Public License, version 2.1 (or any later version \ No newline at end of file +licensed under the {{GNU Lesser General Public License, version 2.1 (or any later version}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_306.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_306.RULE index e919603941..9d564e4907 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_306.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_306.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . \ No newline at end of file + You should have received a copy of the {{GNU Lesser General Public + License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_307.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_307.RULE index 51bb02891f..1ad5d95896 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_307.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_307.RULE @@ -8,18 +8,18 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . + You should have received a copy of the {{GNU Lesser General Public + License}} along with this program; if not, see . . - On Debian systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file + On Debian systems, the full text of the {{GNU Lesser General Public + License}} version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_308.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_308.RULE index 8495a40077..b9620805a9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_308.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_308.RULE @@ -5,21 +5,21 @@ referenced_filenames: - /usr/share/common-licenses/LGPL --- -License: LGPL-2.1+ +{{License: LGPL-2.1+}} The library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your - option) any later version. + option) any later version}}. . The library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public - License for more details. + or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public + License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian GNU/Linux systems, the complete text of the newest version - of the GNU Lesser General Public License can be found in + of the {{GNU Lesser General Public License}} can be found in /usr/share/common-licenses/LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_309.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_309.RULE index 25b6125e9b..5722f89a41 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_309.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_309.RULE @@ -6,19 +6,19 @@ referenced_filenames: --- The library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your - option) any later version. + option) any later version}}. . The library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public - License for more details. + or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public + License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA . On Debian GNU/Linux systems, the complete text of the newest version - of the GNU Lesser General Public License can be found in + of the {{GNU Lesser General Public License}} can be found in /usr/share/common-licenses/LGPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_31.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_31.RULE index 3851bd0225..8b7a2dd6c6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_31.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_31.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- is free software; you can redistribute it and/or modify it under the -# terms of the GNU Lesser General Public License as published by the Free +# terms of the {{GNU Lesser General Public License as published by the Free # Software Foundation; either version 2.1 of the License, or (at your option) -# any later version. +# any later version}}. # # is distrubuted in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more # details. # -# You should have received a copy of the GNU Lesser General Public License +# You should have received a copy of the {{GNU Lesser General Public License}} # along with ; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_312.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_312.RULE index f66b348b21..fbda64547c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_312.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_312.RULE @@ -8,22 +8,22 @@ notes: See in LIBTASN1 --- * The library is free software; you can redistribute it - * and/or modify it under the terms of the GNU Lesser General Public + * and/or modify it under the terms of the {{GNU Lesser General Public * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. + * version 2.1 of the License, or (at your option) any later version}}. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Lesser General Public License}} for more details. * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software + * You should have received a copy of the {{GNU Lesser General Public + * License}} along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA */ - On Debian GNU/Linux systems, the complete text of the GNU Lesser - General Public License can be found in + On Debian GNU/Linux systems, the complete text of the {{GNU Lesser + General Public License}} can be found in `/usr/share/common-licenses/LGPL'; the text of the earliest applying version - of the license (2.1) can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file + of the license (2.1) can be found in {{ /usr/share/common-licenses/LGPL-2.1 }} diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_313.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_313.RULE index 84e2ab2251..2962876dfd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_313.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_313.RULE @@ -5,16 +5,16 @@ notes: See in LIBTASN1 --- * The library is free software; you can redistribute it - * and/or modify it under the terms of the GNU Lesser General Public + * and/or modify it under the terms of the {{GNU Lesser General Public * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. + * version 2.1 of the License, or (at your option) any later version}}. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Lesser General Public License}} for more details. * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software + * You should have received a copy of the {{GNU Lesser General Public + * License}} along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_314.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_314.RULE index 53df03fdbb..982ba0bd7f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_314.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_314.RULE @@ -7,20 +7,20 @@ notes: See in LIBTASN1 --- The library is free software; you can redistribute it -and/or modify it under the terms of the GNU Lesser General Public +and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA -On Debian GNU/Linux systems, the complete text of the GNU Lesser -General Public License can be found in +On Debian GNU/Linux systems, the complete text of the {{GNU Lesser +General Public License}} can be found in `/usr/share/common-licenses/LGPL-2.1' \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_315.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_315.RULE index af63ff9376..5dd64b4d9a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_315.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_315.RULE @@ -7,7 +7,7 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian GNU/Linux systems, the complete text of the GNU Lesser -General Public License can be found in +On Debian GNU/Linux systems, the complete text of the {{GNU Lesser +General Public License}} can be found in `/usr/share/common-licenses/LGPL'; the text of the earliest applying version of the license (2.1) can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_316.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_316.RULE index cc98e3bb60..7ebfa8a40a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_316.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_316.RULE @@ -5,5 +5,5 @@ referenced_filenames: - COPYING.LIB --- -The C library is licensed under the GNU Lesser General -Public License version 2.1 or later. See the file COPYING.LIB. \ No newline at end of file +The C library is licensed under the {{GNU Lesser General +Public License version 2.1 or later}}. See the file COPYING.LIB. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_317.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_317.RULE index 07eae91544..6730ed86a1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_317.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_317.RULE @@ -5,4 +5,4 @@ referenced_filenames: - COPYING.LIB --- -licensed under the GNU Lesser General Public License version 2.1 or later. See the file COPYING.LIB. \ No newline at end of file +licensed under the {{GNU Lesser General Public License version 2.1 or later}}. See the file COPYING.LIB. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_318.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_318.RULE index 9d1e797a73..67156a5122 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_318.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_318.RULE @@ -3,4 +3,4 @@ license_expression: lgpl-2.1-plus is_license_notice: yes --- -The library is released under the GNU Lesser General Public License (LGPL), version 2.1 or (at your option) any later version, this open-source license allows anyone to use the library, on any vendors processor/FPGA/SoC, which may be controlling any vendors peripheral device (ADC, DAC, etc) either locally or remotely. This includes closed or open-source, commercial or non-commercial applications (subject to the LGPL license freedoms, obligations and restrictions). \ No newline at end of file +The library is released under the {{GNU Lesser General Public License (LGPL), version 2.1 or (at your option) any later version}}, this open-source license allows anyone to use the library, on any vendors processor/FPGA/SoC, which may be controlling any vendors peripheral device (ADC, DAC, etc) either locally or remotely. This includes closed or open-source, commercial or non-commercial applications (subject to the LGPL license freedoms, obligations and restrictions). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_319.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_319.RULE index d234aa3550..30ef3aa078 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_319.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_319.RULE @@ -3,4 +3,4 @@ license_expression: lgpl-2.1-plus is_license_notice: yes --- -The library is released under the GNU Lesser General Public License (LGPL), version 2.1 or (at your option) any later version, \ No newline at end of file +The library is released under the {{GNU Lesser General Public License (LGPL), version 2.1 or (at your option) any later version}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_320.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_320.RULE index 60c6a5859a..25ca02d699 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_320.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_320.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- Libgcrypt is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. Libgcrypt is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . \ No newline at end of file + You should have received a copy of the {{GNU Lesser General Public + License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_321.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_321.RULE index 8b6047028c..0cc58d01b9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_321.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_321.RULE @@ -8,14 +8,14 @@ ignorable_urls: --- Libgcrypt is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. Libgcrypt is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . \ No newline at end of file + You should have received a copy of the {{GNU Lesser General Public + License}} along with this program; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_322.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_322.RULE index 8a1ed8aebb..3791c889a2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_322.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_322.RULE @@ -8,18 +8,18 @@ ignorable_urls: --- Libgcrypt is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. Libgcrypt is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . + You should have received a copy of the {{GNU Lesser General Public + License}} along with this program; if not, see . -On Debian GNU/Linux systems, the complete text of the GNU Lesser -General Public License can be found in +On Debian GNU/Linux systems, the complete text of the {{GNU Lesser +General Public License}} can be found in `/usr/share/common-licenses/LGPL'; \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_323.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_323.RULE index acd0e8d5ce..f9efd521ba 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_323.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_323.RULE @@ -5,6 +5,6 @@ referenced_filenames: - /usr/share/common-licenses/LGPL --- -On Debian GNU/Linux systems, the complete text of the GNU Lesser -General Public License can be found in +On Debian GNU/Linux systems, the complete text of the {{GNU Lesser +General Public License}} can be found in `/usr/share/common-licenses/LGPL'; \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_324.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_324.RULE index 91c2174d87..d3c25e6db2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_324.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_324.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this program. If not, see . - On Debian systems, the full text of the GNU Lesser General Public License + On Debian systems, the full text of the {{GNU Lesser General Public License}} can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_325.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_325.RULE index 01eaa15fd9..13f512466a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_325.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_325.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian systems, the full text of the GNU Lesser General Public License +On Debian systems, the full text of the {{GNU Lesser General Public License}} can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_326.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_326.RULE index a4e385452c..3699bedb2d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_326.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_326.RULE @@ -5,5 +5,5 @@ is_license_notice: yes This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_327.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_327.RULE index e07f4ecf13..a9c346327f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_327.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_327.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_329.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_329.RULE index 7e37d80dec..c4c00ab0e8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_329.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_329.RULE @@ -6,19 +6,19 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA . - On Debian GNU/Linux systems, the complete text of the GNU Lesser General - Public License can be found in `/usr/share/common-licenses/LGPL-2.1 \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU Lesser General + Public License}} can be found in `/usr/share/common-licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_33.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_33.RULE index 6ddb65d4bb..e927f97a1a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_33.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_33.RULE @@ -6,16 +6,16 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this program. If not, see . See LICENSE.TXT file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_330.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_330.RULE index 4b48ea5113..61cf2c4c86 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_330.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_330.RULE @@ -6,19 +6,19 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA . - On Debian GNU/Linux systems, the complete text of the GNU Lesser General - Public License can be found in `/usr/share/common-licenses/LGPL \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU Lesser General + Public License}} can be found in `/usr/share/common-licenses/LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_331.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_331.RULE index 238765caa1..75fc3a417a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_331.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_331.RULE @@ -5,18 +5,18 @@ relevance: 100 --- This package is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this package; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - On Debian GNU/Linux systems, the complete text of the GNU Lesser General Public - License v2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file + On Debian GNU/Linux systems, the complete text of the {{GNU Lesser General Public + License}} v2.1 can be found in `{{/usr/share/common-licenses/LGPL-2}}.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_332.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_332.RULE index 19cc4aeac7..c6d1d21e8e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_332.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_332.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian GNU/Linux systems, the full text of the GNU Lesser General Public License +On Debian GNU/Linux systems, the full text of the {{GNU Lesser General Public License}} can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_333.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_333.RULE index ab3645fb48..134c2d5b9d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_333.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_333.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This module is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. . This module is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_334.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_334.RULE index 9030b04876..785508a857 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_334.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_334.RULE @@ -8,17 +8,17 @@ referenced_filenames: --- The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free + You should have received a copy of the {{GNU Lesser General Public + License}} along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_335.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_335.RULE index 4a5509f5d9..c10383187b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_335.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_335.RULE @@ -7,12 +7,12 @@ referenced_filenames: --- distributed under -the terms of the GNU Lesser General Public License as published by the +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at -your option) any later version. +your option) any later version}}. -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, write to +You should have received a copy of the {{GNU Lesser General Public +License}} along with the GNU C Library; if not, write to Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_336.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_336.RULE index 6f5baa172a..a8a2ac5e60 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_336.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_336.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian GNU/Linux systems, the complete text of the LGPL-2.1 can be found in +On Debian GNU/Linux systems, the {{complete text of the LGPL-2.1}} can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_337.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_337.RULE index 91a4acb01d..2b146dcfc0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_337.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_337.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this program. If not, see . - On Debian GNU/Linux systems, the full text of the GNU Lesser General Public License + On Debian GNU/Linux systems, the full text of the {{GNU Lesser General Public License}} can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_338.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_338.RULE index a68b64f317..af0872f201 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_338.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_338.RULE @@ -6,16 +6,16 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -License: LGPL-2.1+ +{{License: LGPL-2.1+}} This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. On Debian GNU/Linux systems, the complete text of the GNU Library General Public License can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_339.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_339.RULE index b4ca9625c2..1f0b86ef34 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_339.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_339.RULE @@ -10,9 +10,9 @@ referenced_filenames: License: This library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -23,8 +23,8 @@ License: along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. +On Debian GNU/Linux systems, the complete text of the {{GNU Lesser General +Public License}} can be found in `/usr/share/common-licenses/LGPL-2.1'. The Debian packaging is: diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_34.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_34.RULE index 307fe55693..0c164570a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_34.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_34.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or -(at your option) any later version. +(at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See -the GNU Lesser General Public License for more details. \ No newline at end of file +the {{GNU Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_340.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_340.RULE index 746ebd1e9a..69c0d6e92e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_340.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_340.RULE @@ -5,6 +5,6 @@ relevance: 100 minimum_coverage: 95 --- -License: LGPL-2.1+ - On Debian GNU/Linux systems, the complete text of the LGPL-2.1 can be found in - /usr/share/common-licenses/LGPL-2. \ No newline at end of file +{{License: LGPL-2.1+}} + On Debian GNU/Linux systems, the {{complete text of the LGPL-2.1}} can be found in + {{/usr/share/common-licenses/LGPL-2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_341.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_341.RULE index 253d779ea5..745452b70a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_341.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_341.RULE @@ -9,18 +9,18 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . + You should have received a copy of the {{GNU Lesser General Public + License}} along with this program; if not, see . . - On Debian GNU/Linux systems, the full text of the GNU Lesser General Public - License version 2.1 can be found in the file + On Debian GNU/Linux systems, the full text of the {{GNU Lesser General Public + License}} version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_342.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_342.RULE index e814360320..33e64ec2a2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_342.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_342.RULE @@ -6,7 +6,7 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -License: LGPL-2.1+ +{{License: LGPL-2.1+}} - On Debian GNU/Linux systems, the complete text of the LGPL-2.1 can be found in + On Debian GNU/Linux systems, the {{complete text of the LGPL-2.1}} can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_343.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_343.RULE index ad788ab1e8..e357d3b7b2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_343.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_343.RULE @@ -8,9 +8,9 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -21,5 +21,5 @@ This library is free software; you can redistribute it and/or modify along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian GNU/Linux systems, the complete text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU Lesser General +Public License}} can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_344.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_344.RULE index 59cd026c01..3f561fc208 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_344.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_344.RULE @@ -6,18 +6,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License}} as published by the Free Software Foundation; either version 2.1, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public License along + You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. \ No newline at end of file + On Debian systems, the complete text of the {{GNU Lesser General Public + License}} version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_345.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_345.RULE index b981032acf..d1f335a72c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_345.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_345.RULE @@ -6,7 +6,7 @@ referenced_filenames: --- This file may be redistributed under the terms of the - GNU Lesser General Public License. + {{GNU Lesser General Public License}}. . - On Debian systems, the complete text of the GNU Lesser General Public - License can be found in ‘/usr/share/common-licenses/LGPL’. \ No newline at end of file + On Debian systems, the complete text of the {{GNU Lesser General Public + License}} can be found in ‘/usr/share/common-licenses/LGPL’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_346.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_346.RULE index b33f08255e..525b713263 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_346.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_346.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- The GnuTLS is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_347.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_347.RULE index 0b63394c5d..55efe718e7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_347.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_347.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/copyleft/lesser.html --- -is available under the GNU Lesser General Public license (LGPL). +is available under the {{GNU Lesser General Public license (LGPL}}). See https://www.gnu.org/copyleft/lesser.html for the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_348.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_348.RULE index 06c7bfca1f..e5440699bb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_348.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_348.RULE @@ -8,4 +8,4 @@ ignorable_urls: - https://www.gnu.org/copyleft/lesser.html --- -License:: GNU Lesser General Public License (COPYING, https://www.gnu.org/copyleft/lesser.html) \ No newline at end of file +License:: {{GNU Lesser General Public License}} (COPYING, https://www.gnu.org/copyleft/lesser.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_349.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_349.RULE index e332399cf4..e449c288e6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_349.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_349.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this manual. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_35.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_35.RULE index b163069510..375cb28355 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_35.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_35.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_350.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_350.RULE index fa9da046f8..5455b444e9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_350.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_350.RULE @@ -10,14 +10,14 @@ GNU LGPL information -------------------- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You can receive a copy of the GNU Lesser General Public License from + You can receive a copy of the {{GNU Lesser General Public License}} from https://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_352.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_352.RULE index 6ce4300c85..31a13c3add 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_352.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_352.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl.html --- -licence GNU Lesser General Public Licence see LICENCE file or https://www.gnu.org/licenses/lgpl.html \ No newline at end of file +licence {{GNU Lesser General Public Licence}} see LICENCE file or https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_353.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_353.RULE index 97bffd5f5e..ee227de0d6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_353.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_353.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License as published by the +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at -your option) any later version. +your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or -FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public -License for more details. +FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public +License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this program. If not, see . \ No newline at end of file + You should have received a copy of the {{GNU Lesser General Public + License}} along with ; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_355.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_355.RULE index 5474bab14c..c027a5c4d2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_355.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_355.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License version 2.1 as published +the terms of the {{GNU Lesser General Public License}} version 2.1 as published by the Free Software Foundation. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with . If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_356.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_356.RULE index e6d80a207f..670d27f5df 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_356.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_356.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/copyleft/lesser.html --- -is available under the GNU Lesser General Public Licence (LGPL). +is available under the {{GNU Lesser General Public Licence}} (LGPL). See https://www.gnu.org/copyleft/lesser.html for the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_357.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_357.RULE index 2e29cef398..0073fcf2a2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_357.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_357.RULE @@ -18,14 +18,14 @@ is distributed under the GNU LGPL license -------------------- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You can receive a copy of the GNU Lesser General Public License from + You can receive a copy of the {{GNU Lesser General Public License}} from https://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_358.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_358.RULE index f4688a1df6..39c9863935 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_358.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_358.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl.html --- -licence https://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file \ No newline at end of file +licence https://www.gnu.org/licenses/lgpl.html {{GNU Lesser General Public Licence}}, see LICENCE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_36.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_36.RULE index 6f4327331a..00cb66ed2b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_36.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_36.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or -(at your option) any later version. +(at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See -the GNU Lesser General Public License for more details. +the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_360.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_360.RULE index 64ec08b3a7..61eeaac86b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_360.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_360.RULE @@ -8,7 +8,7 @@ ignorable_urls: - GNU LESSER GENERAL PUBLIC LICENSE + {{GNU LESSER GENERAL PUBLIC LICENSE}} https://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_361.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_361.RULE index 02cda2f1cc..0efafb576e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_361.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_361.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License}} as published by the Free Software Foundation; either version 2.1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_362.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_362.RULE index d2d3264fae..0ea405190d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_362.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_362.RULE @@ -10,7 +10,7 @@ ignorable_urls: is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY EXPRESS OR IMPLIED, INCLUDING ANY WARRANTY OF MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE OR USE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with . If not, see https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_364.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_364.RULE index 8a661c4523..48d3052c5b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_364.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_364.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.gnu.org/copyleft/lesser.html --- -@license https://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License +@license https://www.gnu.org/copyleft/lesser.html {{GNU Lesser General Public License}} @note This program is distributed in the hope that it will be useful - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_365.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_365.RULE index 907c9631ad..870aaa6180 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_365.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_365.RULE @@ -8,4 +8,4 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl.html --- -license https://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file \ No newline at end of file +license https://www.gnu.org/licenses/lgpl.html {{GNU Lesser General Public Licence}}, see LICENCE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_366.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_366.RULE index ea169216b2..c818087012 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_366.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_366.RULE @@ -7,16 +7,16 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this program. If not, see . See LICENSE.TXT file for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_369.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_369.RULE index abcfbfd696..92de11df20 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_369.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_369.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl.html --- -license GNU Lesser General Public license see license file or https://www.gnu.org/licenses/lgpl.html \ No newline at end of file +license {{GNU Lesser General Public license}} see license file or https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_37.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_37.RULE index a56a5e8bf2..fc8cdff473 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_37.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_37.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_370.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_370.RULE index fae89e6bcb..55d48fcae8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_370.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_370.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- # This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public +# modify it under the terms of the {{GNU Lesser General Public # License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. +# version 2.1 of the License, or (at your option) any later version}}. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +# Lesser General Public License}} for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with this library. If not, see . \ No newline at end of file +# You should have received a copy of the {{GNU Lesser General Public +# License}} along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_371.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_371.RULE index bddc4a450c..4c6e0f0bcf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_371.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_371.RULE @@ -9,18 +9,18 @@ ignorable_urls: --- Libgcrypt is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. Libgcrypt is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . + You should have received a copy of the {{GNU Lesser General Public + License}} along with this program; if not, see . -On Debian GNU/Linux systems, the complete text of the GNU Lesser -General Public License can be found in +On Debian GNU/Linux systems, the complete text of the {{GNU Lesser +General Public License}} can be found in `/usr/share/common-licenses/LGPL'; \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_372.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_372.RULE index 2ef69b2adb..6a3f65ee64 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_372.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_372.RULE @@ -20,7 +20,7 @@ below. It can also be found at: ---------------------------------------------------------------------- -GNU LESSER GENERAL PUBLIC LICENSE +{{GNU LESSER GENERAL PUBLIC LICENSE}} Version 2.1, February 1999 @@ -87,8 +87,8 @@ obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the ordinary -GNU General Public License. This license, the GNU Lesser General Public -License, applies to certain designated libraries, and is quite different +GNU General Public License. This license, the {{GNU Lesser General Public +License}}, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_373.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_373.RULE index a280c697e0..30ad1f9e63 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_373.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_373.RULE @@ -7,11 +7,11 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as published by +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or -(at your option) any later version. (See .) +(at your option) any later version}}. (See .) This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU Lesser General Public License for more details. \ No newline at end of file +See the {{GNU Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_374.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_374.RULE index b3138c02ee..c20971b769 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_374.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_374.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl.html --- -GNU Lesser General Public Licence' (LGPL): https://www.gnu.org/licenses/lgpl.html \ No newline at end of file +{{GNU Lesser General Public Licence}}' (LGPL): https://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_375.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_375.RULE index 33c2918546..cd0eb29376 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_375.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_375.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You can receive a copy of the GNU Lesser General Public License from +You can receive a copy of the {{GNU Lesser General Public License}} from https://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_376.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_376.RULE index c86604864f..7690fb1387 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_376.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_376.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program. If not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_378.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_378.RULE index fd8354b886..32e438d246 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_378.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_378.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/copyleft/lesser.html --- -@license https://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License \ No newline at end of file +@license https://www.gnu.org/copyleft/lesser.html {{GNU Lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_379.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_379.RULE index 543e4db664..61d2d0a316 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_379.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_379.RULE @@ -10,15 +10,15 @@ ignorable_urls: * ==================================================================== * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 or - * the GNU Lesser General Public License version 2.1 as published by + * the {{GNU Lesser General Public License}} version 2.1 as published by * the Free Software Foundation (your choice between the two). * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License or GNU Lesser General Public License for more details. + * GNU General Public License or {{GNU Lesser General Public License}} for more details. * * You should have received a copy of the GNU General Public License - * or GNU Lesser General Public License along with this program; if not, + * or {{GNU Lesser General Public License}} along with this program; if not, * write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * or visit https://www.gnu.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_38.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_38.RULE index ade62b319a..e3db6da4db 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_38.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_38.RULE @@ -5,15 +5,15 @@ minimum_coverage: 95 --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_380.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_380.RULE index ca13d1f6b2..b89dfa1e65 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_380.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_380.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. (See .) \ No newline at end of file + (at your option) any later version}}. (See .) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_381.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_381.RULE index 78e6840a2a..36c2b41bd5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_381.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_381.RULE @@ -12,14 +12,14 @@ LGPL 2.1 LGPL-2.1 This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library. If not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_382.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_382.RULE index 371635c5cb..9454a0eb39 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_382.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_382.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or -(at your option) any later version. +(at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See -the GNU Lesser General Public License for more details. +the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_383.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_383.RULE index bcaaa1d0de..e7582e211b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_383.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_383.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- The GNU C Library is distributed under -the terms of the GNU Lesser General Public License as published by the +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at -your option) any later version. +your option) any later version}}. -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, write to +You should have received a copy of the {{GNU Lesser General Public +License}} along with the GNU C Library; if not, write to Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_384.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_384.RULE index bc62d39d48..04de253f1a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_384.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_384.RULE @@ -6,12 +6,12 @@ referenced_filenames: --- The GNU C Library is distributed under -the terms of the GNU Lesser General Public License as published by the +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at -your option) any later version. +your option) any later version}}. -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, write to +You should have received a copy of the {{GNU Lesser General Public +License}} along with the GNU C Library; if not, write to Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_385.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_385.RULE index 5acfc1fae1..b328096157 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_385.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_385.RULE @@ -6,17 +6,17 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1 On Debian GNU/Linux systems, the complete text of the Lesser GNU General diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_386.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_386.RULE index e32fdbfcd4..07ea27ce4f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_386.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_386.RULE @@ -8,10 +8,10 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -This file is distributed under the terms of the GNU Lesser General - Public License, version 2.1 or later - see the file COPYING.LIB for details. +This file is distributed under the terms of the {{GNU Lesser General + Public License, version 2.1 or later}} - see the file COPYING.LIB for details. If you did not receive a copy of the license with this program, please see to obtain a copy. . - On Debian systems, the complete text of the GNU Lesser General Public License + On Debian systems, the complete text of the {{GNU Lesser General Public License}} Version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_387.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_387.RULE index 5205a0f543..b7fe433dfb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_387.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_387.RULE @@ -8,18 +8,18 @@ ignorable_urls: --- The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. . The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see + You should have received a copy of the {{GNU Lesser General Public + License}} along with the GNU C Library; if not, see . . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file + On Debian systems, the complete text of the {{GNU Lesser General Public + License}} version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_388.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_388.RULE index 38e5cfbd8d..9e3eb3e68a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_388.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_388.RULE @@ -8,17 +8,17 @@ referenced_filenames: License: This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_39.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_39.RULE index 8af3e36eef..e77e1a138f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_39.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_39.RULE @@ -5,16 +5,16 @@ minimum_coverage: 95 --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. It is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this software; if not, write to the Free + You should have received a copy of the {{GNU Lesser General Public + License}} along with this software; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_390.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_390.RULE index 7919e91ca9..6b6ce56d38 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_390.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_390.RULE @@ -6,18 +6,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the complete text of the GNU Lesser General Public License + On Debian systems, the complete text of the {{GNU Lesser General Public License}} version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_391.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_391.RULE index 9e4dad7f30..8299f82063 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_391.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_391.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU Lesser General Public License (LGPL) version 2.1 or later. \ No newline at end of file +released under the {{GNU Lesser General Public License (LGPL) version 2.1 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_396.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_396.RULE index 850fc6314e..b923d485da 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_396.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_396.RULE @@ -3,7 +3,7 @@ license_expression: lgpl-2.1-plus is_license_notice: yes --- -License: LGPL-2.1+ +{{License: LGPL-2.1+}} This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_397.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_397.RULE index ef3a6e9d8d..ab72f70d3f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_397.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_397.RULE @@ -7,12 +7,12 @@ referenced_filenames: --- The GNU C Library is distributed under -the terms of the GNU Lesser General Public License as published by the +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at -your option) any later version. +your option) any later version}}. -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, write to +You should have received a copy of the {{GNU Lesser General Public +License}} along with the GNU C Library; if not, write to Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_398.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_398.RULE index 9ddcbec40f..0866fdb1be 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_398.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_398.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This module is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the - License, or (at your option) any later version. + License, or (at your option) any later version}}. . This module is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_399.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_399.RULE index 1ead97845e..35e2e7cd7b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_399.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_399.RULE @@ -8,17 +8,17 @@ referenced_filenames: --- The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free + You should have received a copy of the {{GNU Lesser General Public + License}} along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_4.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_4.RULE index 25979f9be2..14728c0497 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_4.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU Lesser General Public License Version 2.1 or later (the "LGPL") \ No newline at end of file +{{GNU Lesser General Public License Version 2.1 or later}} (the "LGPL") \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_40.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_40.RULE index e6cdf72168..f5105afefe 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_40.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_40.RULE @@ -5,15 +5,15 @@ minimum_coverage: 95 --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Lesser Public License + modify it under the terms of the {{GNU General Lesser Public License as published by the Free Software Foundation; either version 2.1 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_400.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_400.RULE index 9a815765a9..95b4f92381 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_400.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_400.RULE @@ -7,12 +7,12 @@ referenced_filenames: --- distributed under -the terms of the GNU Lesser General Public License as published by the +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at -your option) any later version. +your option) any later version}}. -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, write to +You should have received a copy of the {{GNU Lesser General Public +License}} along with the GNU C Library; if not, write to Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_402.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_402.RULE index d31e367481..a403c4a46d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_402.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_402.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the text of the GNU Lesser General Public License + On Debian systems, the text of the {{GNU Lesser General Public License}} version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_403.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_403.RULE index 1dd7a6b3d7..c1687e1960 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_403.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_403.RULE @@ -9,10 +9,10 @@ ignorable_urls: - http://www.gnu.org/licenses/ --- -This file is distributed under the terms of the GNU Lesser General - Public License, version 2.1 or later - see the file COPYING.LIB for details. +This file is distributed under the terms of the {{GNU Lesser General + Public License, version 2.1 or later}} - see the file COPYING.LIB for details. If you did not receive a copy of the license with this program, please see to obtain a copy. . - On Debian systems, the text of the GNU Lesser General Public License + On Debian systems, the text of the {{GNU Lesser General Public License}} Version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_404.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_404.RULE index c24b4a6a91..71c3bb9318 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_404.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_404.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License}} as published by the Free Software Foundation; either version 2.1, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public License along + You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the text of the GNU Lesser General Public - License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. \ No newline at end of file + On Debian systems, the text of the {{GNU Lesser General Public + License}} version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_405.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_405.RULE index b89d8a3b42..bbe91597cc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_405.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_405.RULE @@ -6,16 +6,16 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -License: LGPL-2.1+ +{{License: LGPL-2.1+}} This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. On Debian systems, the text of the GNU Library General Public License can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_406.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_406.RULE index 834467c1de..5726337359 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_406.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_406.RULE @@ -10,9 +10,9 @@ referenced_filenames: License: This library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -23,8 +23,8 @@ License: along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. +On Debian systems, the text of the {{GNU Lesser General +Public License}} can be found in `/usr/share/common-licenses/LGPL-2.1'. The Debian packaging is: diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_407.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_407.RULE index 9a6a3f3627..db0a10fe70 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_407.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_407.RULE @@ -5,6 +5,6 @@ relevance: 100 minimum_coverage: 95 --- -License: LGPL-2.1+ +{{License: LGPL-2.1+}} On Debian systems, the text of the LGPL-2.1 can be found in - /usr/share/common-licenses/LGPL-2. \ No newline at end of file + {{/usr/share/common-licenses/LGPL-2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_408.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_408.RULE index aa40cbc1dc..f16308752d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_408.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_408.RULE @@ -7,7 +7,7 @@ referenced_filenames: --- This file may be redistributed under the terms of the - GNU Lesser General Public License. + {{GNU Lesser General Public License}}. . - On Debian systems, the text of the GNU Lesser General Public - License can be found in ‘/usr/share/common-licenses/LGPL’. \ No newline at end of file + On Debian systems, the text of the {{GNU Lesser General Public + License}} can be found in ‘/usr/share/common-licenses/LGPL’. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_409.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_409.RULE index 3c1849dd93..98e46773cb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_409.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_409.RULE @@ -6,7 +6,7 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -License: LGPL-2.1+ +{{License: LGPL-2.1+}} On Debian systems, the text of the LGPL-2.1 can be found in /usr/share/common-licenses/LGPL-2.1. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_41.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_41.RULE index 4ba864e6e2..5c7567e471 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_41.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_41.RULE @@ -5,15 +5,15 @@ minimum_coverage: 95 --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_410.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_410.RULE index 244234e69b..2822d594a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_410.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_410.RULE @@ -9,18 +9,18 @@ ignorable_urls: --- The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. . The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, see + You should have received a copy of the {{GNU Lesser General Public + License}} along with the GNU C Library; if not, see . . - On Debian systems, the text of the GNU Lesser General Public - License version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file + On Debian systems, the text of the {{GNU Lesser General Public + License}} version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_411.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_411.RULE index fbd35159de..3120a03c53 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_411.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_411.RULE @@ -8,9 +8,9 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -21,5 +21,5 @@ This library is free software; you can redistribute it and/or modify along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -On Debian systems, the text of the GNU Lesser General -Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian systems, the text of the {{GNU Lesser General +Public License}} can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_412.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_412.RULE index 736386f648..9b4927d428 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_412.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_412.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian systems, the text of the GNU Lesser General Public License +On Debian systems, the text of the {{GNU Lesser General Public License}} can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_413.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_413.RULE index 6bfbe02e15..b7d50abcc5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_413.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_413.RULE @@ -9,17 +9,17 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published by + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this program. If not, see . - On Debian systems, the text of the GNU Lesser General Public License + On Debian systems, the text of the {{GNU Lesser General Public License}} can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_414.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_414.RULE index af1e48fe01..215aa1827e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_414.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_414.RULE @@ -9,18 +9,18 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, see . + You should have received a copy of the {{GNU Lesser General Public + License}} along with this program; if not, see . . - On Debian systems, the text of the GNU Lesser General Public - License version 2.1 can be found in the file + On Debian systems, the text of the {{GNU Lesser General Public + License}} version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_415.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_415.RULE index c8197ee8d6..53193db1a0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_415.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_415.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License}} as published by the Free Software Foundation; either version 2.1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public License along + You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_416.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_416.RULE index 15c7bed91b..d38d3419e2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_416.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_416.RULE @@ -8,17 +8,17 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . - On Debian systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file + On Debian systems, the complete text of the {{GNU Lesser General + Public License}} can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_417.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_417.RULE index a3cf607adf..c86e449fab 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_417.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_417.RULE @@ -6,11 +6,11 @@ referenced_filenames: --- This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_418.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_418.RULE index fc4ffee2be..2a0cae5f12 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_418.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_418.RULE @@ -6,20 +6,20 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - On Debian systems, the full text of the GNU Lesser General Public - License version 2,1 can be found in the file + On Debian systems, the full text of the {{GNU Lesser General Public + License}} version 2,1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_419.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_419.RULE index 4e6401a813..e75e8557c3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_419.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_419.RULE @@ -6,9 +6,9 @@ referenced_filenames: --- This program is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at - your option) any later version. + your option) any later version}}. . - On Debian systems, the complete text of version 2 of the GNU Lesser - General Public License can be found in '/usr/share/common-licenses/LGPL-2'. \ No newline at end of file + On Debian systems, the complete text of version 2 of the {{GNU Lesser + General Public License}} can be found in '/usr/share/common-licenses/LGPL-2'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_42.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_42.RULE index 7dfe6f8fb7..c7c35037a2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_42.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_42.RULE @@ -5,15 +5,15 @@ minimum_coverage: 95 --- This library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_420.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_420.RULE index 79c9c5ce39..dcfd7a602a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_420.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_420.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This file is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this file; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this file; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_421.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_421.RULE index 15819dd51f..1491bbfdce 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_421.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_421.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -LGPL-2.1+ GNU Library General Public License v2.1 or later \ No newline at end of file +{{LGPL-2.1+}} {{GNU Library General Public License v2.1 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_422.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_422.RULE index 1b3a2d4506..378896cae0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_422.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_422.RULE @@ -1,7 +1,7 @@ --- license_expression: lgpl-2.1-plus is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_423.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_423.RULE index 96ce64f21a..ca68cbe8de 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_423.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_423.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GNU Library General Public License v2.1 or later LGPL-2.1+ \ No newline at end of file +{{GNU Library General Public License v2.1 or later}} {{LGPL-2.1+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_424.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_424.RULE index 27e3d0f39c..898a8bf87d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_424.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_424.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : LGPL-2.1+ \ No newline at end of file +licenseid : {{LGPL-2.1+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_425.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_425.RULE index 011abedb64..3ccaf4a922 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_425.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_425.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : GNU Library General Public License v2.1 or later \ No newline at end of file +name : {{GNU Library General Public License v2.1 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_426.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_426.RULE index 2481fbc494..c6572ad55e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_426.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_426.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: GNU Lesser General Public License v2.1 or later \ No newline at end of file +name: {{GNU Lesser General Public License v2.1 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_427.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_427.RULE index 577497045f..f44ee5eae0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_427.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_427.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -LGPL-2.1-or-later GNU Lesser General Public License v2.1 or later \ No newline at end of file +{{LGPL-2.1-or-later}} {{GNU Lesser General Public License v2.1 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_428.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_428.RULE index 715698ef2b..836b1f09cf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_428.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_428.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU Lesser General Public License v2.1 or later LGPL-2.1-or-later \ No newline at end of file +{{GNU Lesser General Public License v2.1 or later}} {{LGPL-2.1-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_429.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_429.RULE index c58b595de5..063d0d219a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_429.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_429.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: LGPL-2.1-or-later \ No newline at end of file +license: {{LGPL-2.1-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_43.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_43.RULE index d855047198..972170c441 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_43.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_43.RULE @@ -3,5 +3,5 @@ license_expression: lgpl-2.1-plus is_license_notice: yes --- -Files in the following subdirectories are covered by the GNU Lesser General -Public License (see LGPL.txt for text) \ No newline at end of file +Files in the following subdirectories are covered by the {{GNU Lesser General +Public License}} (see LGPL.txt for text) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_430.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_430.RULE index 4eb52cd579..23b10ab7da 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_430.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_430.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GNU Lesser General Public License v2.1 or later \ No newline at end of file +license: {{GNU Lesser General Public License v2.1 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_431.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_431.RULE index 3811c266a7..87cf1fc813 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_431.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_431.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: LGPL-2.1-or-later \ No newline at end of file +licenseId: {{LGPL-2.1-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_432.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_432.RULE index b4357b0822..c806ff5272 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_432.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_432.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_44.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_44.RULE index f27c414310..c04ecb6c6f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_44.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_44.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.html --- -GNU Lesser General Public Licence' (LGPL): http://www.gnu.org/licenses/lgpl.html \ No newline at end of file +{{GNU Lesser General Public Licence}}' (LGPL): http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_440.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_440.RULE index b4c3e8f082..5d79335f8f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_440.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_440.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_441.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_441.RULE index d7d6caa033..951287bf7e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_441.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_441.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: LGPL-2.1-or-later \ No newline at end of file +licenses: {{LGPL-2.1-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_446.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_446.RULE index 09703fba85..28570cd28e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_446.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_446.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_447.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_447.RULE index e675ca3acf..2f90ded58d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_447.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_447.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- * This library is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as + * it under the terms of the {{GNU Lesser General Public License as * published by the Free Software Foundation, either version 2.1 of the - * License, or (at your option) any later version. + * License, or (at your option) any later version}}. * s * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * - * You should have received a copy of the GNU Lesser General Public - * License along with this program; if not, write to the Free Software + * You should have received a copy of the {{GNU Lesser General Public + * License}} along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_449.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_449.RULE index eb508d639e..1e16cea52c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_449.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_449.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- FFmpeg is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. FFmpeg is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with FFmpeg; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with FFmpeg; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_45.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_45.RULE index 51d8a07825..c6d5504acb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_45.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_45.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is published unser the GNU Lesser General Public Licence in \ No newline at end of file +is published unser the {{GNU Lesser General Public Licence}} in \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_450.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_450.RULE index 24b1c0384a..aed6b108ef 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_450.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_450.RULE @@ -5,15 +5,15 @@ notes: weird mildly danaged text --- FFmpeg is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. FFmpeg is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with FFmpeg; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with FFmpeg; if not, write to the Free Software 51, Inc., Foundation Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_451.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_451.RULE index 196d1a51a1..8623e3651e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_451.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_451.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- MPlayer is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. MPlayer is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with MPlayer; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with MPlayer; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_452.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_452.RULE index bb02a0bdb1..f6fe815f6a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_452.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_452.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- libswresample is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. libswresample is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with libswresample; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with libswresample; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_453.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_453.RULE index a205119e22..0a92da2d69 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_453.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_453.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_454.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_454.RULE index a89691218b..f0c6f7f174 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_454.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_454.RULE @@ -7,4 +7,4 @@ ignorable_urls: License This program is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License;see www.gnu.org/copyleft/lesser.html. \ No newline at end of file +the terms of the {{GNU Lesser General Public License}};see www.gnu.org/copyleft/lesser.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_455.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_455.RULE index 70be714dbe..3d9aa86608 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_455.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_455.RULE @@ -6,4 +6,4 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License;see www.gnu.org/copyleft/lesser.html. \ No newline at end of file +the terms of the {{GNU Lesser General Public License}};see www.gnu.org/copyleft/lesser.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_456.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_456.RULE index 27a23c1913..c4193b2c5a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_456.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_456.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License \ No newline at end of file +the terms of the {{GNU Lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_457.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_457.RULE index 47c64f5491..cf527e57b5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_457.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_457.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License \ No newline at end of file +the terms of the {{GNU Lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_458.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_458.RULE index 139b2e730f..601b468e6a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_458.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_458.RULE @@ -8,11 +8,11 @@ distributed under LGPL license. Disclaimer This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_459.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_459.RULE index 7e7739ec65..d307c94993 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_459.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_459.RULE @@ -8,6 +8,6 @@ ignorable_urls: --- // * This library is free software; you can redistribute it and/or modify it -// * under the terms of the GNU Lesser General Public License 2.1 or later, as +// * under the terms of the {{GNU Lesser General Public License}} 2.1 or later, as // * published by the Free Software Foundation. See the included license.txt // * or http://www.gnu.org/copyleft/lesser.html for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_46.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_46.RULE index 963b69243e..75f12d74dc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_46.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_46.RULE @@ -8,4 +8,4 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.html --- -license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file \ No newline at end of file +license http://www.gnu.org/licenses/lgpl.html {{GNU Lesser General Public Licence}}, see LICENCE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_460.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_460.RULE index cd91825670..d6ffe9c988 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_460.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_460.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/lgpl-2.1 --- -License LGPL-2.1-or-later (https://www.gnu.org/licenses/old-licenses/lgpl-2.1) \ No newline at end of file +License {{LGPL-2.1-or-later}} (https://www.gnu.org/licenses/old-licenses/lgpl-2.1) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_461.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_461.RULE index db6f50e6b7..cc997779ad 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_461.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_461.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/lgpl-2.1 --- -LGPL-2.1-or-later (https://www.gnu.org/licenses/old-licenses/lgpl-2.1) \ No newline at end of file +{{LGPL-2.1-or-later}} (https://www.gnu.org/licenses/old-licenses/lgpl-2.1) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_464.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_464.RULE index 8f5618870e..2c35c7c772 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_464.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_464.RULE @@ -4,5 +4,5 @@ is_license_tag: yes relevance: 100 --- - - LGPL-2.1-or-later \ No newline at end of file +<{{license> + LGPL-2.1-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_466.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_466.RULE index 40fbac2f52..3917467082 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_466.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_466.RULE @@ -5,6 +5,6 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/lgpl-2.1 --- - - LGPL-2.1-or-later +{{ + LGPL-2.1-or-later}} (https://www.gnu.org/licenses/old-licenses/lgpl-2.1) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_469.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_469.RULE index 2db7f8324f..31bd88fd13 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_469.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_469.RULE @@ -6,17 +6,17 @@ ignorable_urls: --- XMLPULL V1 API TESTS are free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. XMLPULL V1 API TESTS are distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA (see below and at http://www.gnu.org/copyleft/lesser.html). diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_47.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_47.RULE index 22b6f0eb2c..e596c53e4b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_47.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_47.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.html --- -licence http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file \ No newline at end of file +licence http://www.gnu.org/licenses/lgpl.html {{GNU Lesser General Public Licence}}, see LICENCE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_474.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_474.RULE index 8ad3cf4f6f..02780f6c1f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_474.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_474.RULE @@ -4,13 +4,13 @@ is_license_notice: yes --- * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public + * modify it under the terms of the {{GNU Lesser General Public * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. + * version 2.1 of the License, or (at your option) any later version}}. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Lesser General Public License}} for more details. * * Below is a copy of the GNU Lesser General Public Licens \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_475.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_475.RULE index fd8d782d26..0b3dc33743 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_475.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_475.RULE @@ -7,5 +7,5 @@ ignorable_urls: - GNU Lesser General Public Licence + {{GNU Lesser General Public Licence}} http://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_476.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_476.RULE index 32d96c7f5e..b719367338 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_476.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_476.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- - GNU Lesser General Public Licence + {{GNU Lesser General Public Licence}} http://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_477.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_477.RULE index 3273aee482..6dfc6b6eb1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_477.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_477.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- - GNU Lesser General Public Licence + {{GNU Lesser General Public Licence}} http://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_478.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_478.RULE index 882c66bb3f..72820fc822 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_478.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_478.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.txt --- -GNU Lesser General Public Licence +{{GNU Lesser General Public Licence}} http://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_479.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_479.RULE index deb266daa7..5d868606ac 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_479.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_479.RULE @@ -7,7 +7,7 @@ ignorable_urls: - GNU Lesser General Public license + {{GNU Lesser General Public license}} http://www.gnu.org/licenses/lgpl.txt repo diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_48.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_48.RULE index 037c1fddb4..e652096824 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_48.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_48.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.html --- -licence GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html \ No newline at end of file +licence {{GNU Lesser General Public Licence}} see LICENCE file or http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_480.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_480.RULE index 308a0441b4..3c529be4d4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_480.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_480.RULE @@ -7,5 +7,5 @@ ignorable_urls: - GNU Lesser General Public license + {{GNU Lesser General Public license}} http://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_481.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_481.RULE index dd304f22aa..452d23491c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_481.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_481.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- - GNU Lesser General Public license + {{GNU Lesser General Public license}} http://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_482.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_482.RULE index c09358ed23..59207417d7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_482.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_482.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.txt --- -GNU Lesser General Public license +{{GNU Lesser General Public license}} http://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_483.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_483.RULE index aecec78fa9..18939a4a08 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_483.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_483.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- - GNU Lesser General Public license + {{GNU Lesser General Public license}} http://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_484.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_484.RULE index 20daebd4d7..8648655fca 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_484.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_484.RULE @@ -7,7 +7,7 @@ ignorable_urls: - GNU Lesser General Public Licence + {{GNU Lesser General Public Licence}} http://www.gnu.org/licenses/lgpl.txt repo diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_485.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_485.RULE index e7cd0f0d8d..09f628e168 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_485.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_485.RULE @@ -1,8 +1,8 @@ --- license_expression: lgpl-2.1-plus is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 --- -{{GNU Lesser General Public Licence}} \ No newline at end of file +GNU Lesser General Public Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_486.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_486.RULE index 66578fb23f..5d3a9ef579 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_486.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_486.RULE @@ -8,7 +8,7 @@ ignorable_urls: - GNU Library General Public License v2.1 or later + {{GNU Library General Public License v2.1 or later}} http://www.opensource.org/licenses/LGPL-2.1 repo See discussion at http://hibernate.org/community/license/ for more details. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_487.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_487.RULE index 10ecd6d3d5..2851d6e2de 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_487.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_487.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- - GNU Library General Public License v2.1 or later + {{GNU Library General Public License v2.1 or later}} http://www.opensource.org/licenses/LGPL-2.1 repo See discussion at http://hibernate.org/community/license/ for more details. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_488.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_488.RULE index 1d08cb55a9..fade9c0cb6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_488.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_488.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - GNU Library General Public License v2.1 or later + {{GNU Library General Public License v2.1 or later}} http://www.opensource.org/licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_489.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_489.RULE index d444771ca7..fc73315edc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_489.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_489.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - GNU Library General Public License v2.1 or later + {{GNU Library General Public License v2.1 or later}} http://www.opensource.org/licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_49.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_49.RULE index e65a68fcd8..6cc8c8c4c8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_49.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_49.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This file is under LGPL, the GNU Lesser General Public Licence \ No newline at end of file +This file is under LGPL, the {{GNU Lesser General Public Licence}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_491.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_491.RULE index 810b54308b..2aab587b32 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_491.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_491.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- GNU Libidn is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. GNU Libidn is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with GNU Libidn; if not, see . \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with GNU Libidn; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_492.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_492.RULE index ae160b4b84..2363a3caf7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_492.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_492.RULE @@ -13,16 +13,16 @@ Copyright (C) Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, write to the Free +You should have received a copy of the {{GNU Lesser General Public +License}} along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_493.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_493.RULE index c60702a267..4269553ad8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_493.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_493.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is available under the GNU Lesser General Public License (LGPL). \ No newline at end of file +is available under the {{GNU Lesser General Public License (LGPL}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_494.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_494.RULE index ca2e297b37..c559d0a327 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_494.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_494.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under the GNU Lesser General Public License (LGPL). \ No newline at end of file +available under the {{GNU Lesser General Public License (LGPL}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_495.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_495.RULE index d16e22db48..8d39fbe52e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_495.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_495.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under the GNU Lesser General Public License \ No newline at end of file +available under the {{GNU Lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_496.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_496.RULE index 4a0ff3c020..75863990f5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_496.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_496.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- is -available under the https://www.gnu.org/copyleft/lesser.html GNU Lesser -General Public License Lesser General Public License LGPL \ No newline at end of file +available under the https://www.gnu.org/copyleft/lesser.html {{GNU Lesser +General Public License}} Lesser General Public License LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_497.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_497.RULE index 857f558143..7b80d3023e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_497.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_497.RULE @@ -5,5 +5,5 @@ ignorable_urls: - https://www.gnu.org/copyleft/lesser.html --- -available under the https://www.gnu.org/copyleft/lesser.html GNU Lesser -General Public License Lesser General Public License LGPL \ No newline at end of file +available under the https://www.gnu.org/copyleft/lesser.html {{GNU Lesser +General Public License}} Lesser General Public License LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_498.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_498.RULE index 70c3d119a9..fadabeeebf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_498.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_498.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/copyleft/lesser.html --- -available under the https://www.gnu.org/copyleft/lesser.html GNU Lesser -General Public License \ No newline at end of file +available under the https://www.gnu.org/copyleft/lesser.html {{GNU Lesser +General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_499.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_499.RULE index c4d8cdf5f4..4b0f00e9f2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_499.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_499.RULE @@ -2,9 +2,10 @@ license_expression: lgpl-2.1-plus is_license_notice: yes relevance: 99 +skip_for_required_phrase_generation: yes --- NOTE: Only {{certain parts}} of the ScummVM project are {{under the GNU LGPL.}} The majority of the files are {{under the GNU GPL}}. See the headers of the -individual files to find out the exact license. \ No newline at end of file +individual files to find out the exact license. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_5.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_5.RULE index 234999a99c..57b5e46650 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_5.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_5.RULE @@ -6,9 +6,9 @@ notes: This was used by Kaboom and is an LGPL 2.1 with some mistake and disclaim --- This library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or - (at your option) any later version. + (at your option) any later version}}. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_50.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_50.RULE index d8ca7b5c1f..578ad92cde 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_50.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_50.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -The library is distrubuted under the GNU Lesser General Public Licence. See the COPYING file for details. \ No newline at end of file +The library is distrubuted under the {{GNU Lesser General Public Licence}}. See the COPYING file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_51.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_51.RULE index ff59298c36..c48d00c124 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_51.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_51.RULE @@ -3,4 +3,4 @@ license_expression: lgpl-2.1-plus is_license_notice: yes --- -This software is distributed under the terms of the GNU Lesser General Public Licence (LGPL) See LICENSE.txt for further details \ No newline at end of file +This software is distributed under the terms of the {{GNU Lesser General Public Licence}} (LGPL) See LICENSE.txt for further details \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_52.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_52.RULE index fa8e7be6b0..8a64a3bab7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_52.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_52.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.html --- -license GNU Lesser General Public license see license file or http://www.gnu.org/licenses/lgpl.html \ No newline at end of file +license {{GNU Lesser General Public license}} see license file or http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_53.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_53.RULE index 368184f63b..bd78d1bea7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_53.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_53.RULE @@ -6,6 +6,6 @@ referenced_filenames: - COPYING --- -This software is distributed under the GNU Lesser General Public Licence +This software is distributed under the {{GNU Lesser General Public Licence}} as published by the Free Software Foundation. Please see the file COPYING.LESSER and COPYING for the exact licensing terms and conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_54.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_54.RULE index 35e3106f80..d9c504c73a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_54.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_54.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.gnu.org/copyleft/lesser.html --- -is available under the GNU Lesser General Public Licence (LGPL). +is available under the {{GNU Lesser General Public Licence}} (LGPL). See http://www.gnu.org/copyleft/lesser.html for the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_55.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_55.RULE index b1714fc3bc..a52aabd646 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_55.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_55.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.gnu.org/copyleft/lesser.html --- -is available under the GNU Lesser General Public license (LGPL). +is available under the {{GNU Lesser General Public license (LGPL)}}. See http://www.gnu.org/copyleft/lesser.html for the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_56.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_56.RULE index eb0cc4edbf..0b3bfa71da 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_56.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_56.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; if not, see +You should have received a copy of the {{GNU Lesser General Public +License}} along with the GNU C Library; if not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_57.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_57.RULE index f8cf3b0289..4dac8f8556 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_57.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_57.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 -of the licence, or (at your option) any later version. \ No newline at end of file +of the licence, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_58.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_58.RULE index 160b6b7812..778fd316dc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_58.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_58.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This file is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_59.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_59.RULE index adef93d3fb..9de6960e4d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_59.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_59.RULE @@ -6,16 +6,16 @@ ignorable_urls: --- This is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this software; if not, write to the Free + You should have received a copy of the {{GNU Lesser General Public + License}} along with this software; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site: http://www.fsf.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_6.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_6.RULE index 7c4bcead61..8fc70ac4e6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_6.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_6.RULE @@ -4,17 +4,17 @@ is_license_notice: yes notes: lgpl with markup --- -// This library is free software; you can redistribute it and/or modify -// it under the terms of the GNU Lesser General Public License as -// published by the Free Software Foundation; either version 2.1 of the -// License, or (at your option) any later version. -// -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 -// USA. \ No newline at end of file +This library is free software; you can redistribute it and/or modify +it under the terms of the {{GNU Lesser General Public License}} as +published by the Free Software Foundation; {{either version 2.1}} of the +License, {{or (at your option) any later version}}. + +This library is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 +USA. diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_60.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_60.RULE index a29721be99..c3f4e3bab7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_60.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_60.RULE @@ -8,16 +8,16 @@ LGPL HEADER START DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library. +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library. LGPL HEADER END \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_61.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_61.RULE index a4b3f673e4..624d3d2276 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_61.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_61.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License}} as published by the Free Software Foundation; either version 2.1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_62.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_62.RULE index 3cc5ee3036..5cee6b577d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_62.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_62.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program. If not, see . */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_63.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_63.RULE index 574b0984ed..5f9c4f5a0e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_63.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_63.RULE @@ -4,16 +4,16 @@ is_license_notice: yes --- The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free + You should have received a copy of the {{GNU Lesser General Public + License}} along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_64.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_64.RULE index dc1a9717f3..735a24c8e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_64.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_64.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-2.1-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -LGPL-2.1+ \ No newline at end of file +LGPL 2.1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_65.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_65.RULE index a681eae21f..0286cbddb9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_65.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_65.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -later of the less restrictive GNU Lesser General Public License (LGPLv2.1+) \ No newline at end of file +later of the less restrictive {{GNU Lesser General Public License (LGPLv2.1+)}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_66.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_66.RULE index 50efdd54a2..0760a0fb53 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_66.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_66.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify it under the -terms of the GNU Lesser General Public License as published by the Free +terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) -any later version. +any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with ; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_67.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_67.RULE index 9968834369..39beff6057 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_67.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_67.RULE @@ -17,14 +17,14 @@ is distributed under the GNU LGPL license -------------------- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You can receive a copy of the GNU Lesser General Public License from + You can receive a copy of the {{GNU Lesser General Public License}} from http://www.gnu.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_68.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_68.RULE index 15bd9eea53..61abe7d3fc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_68.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_68.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as published by +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with ; If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_69.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_69.RULE index 8b89451f5a..e7e5ad4d23 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_69.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_69.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. \ No newline at end of file +version 2.1 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_7.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_7.RULE index b6dfb77f05..a9efff5592 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_7.RULE @@ -6,8 +6,8 @@ is_license_notice: yes Copyright (C) year -This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. +This library is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version}}. -This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. +This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_73.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_73.RULE index d851dcabc0..4d302ba6c6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_73.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_73.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as published by +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at -your option) any later version. +your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser -General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser +General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_74.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_74.RULE index 14cf729ace..f79bbbaa8b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_74.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_74.RULE @@ -5,4 +5,4 @@ is_license_notice: yes License -This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. \ No newline at end of file +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_75.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_75.RULE index 35838947e8..85c300d0d7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_75.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_75.RULE @@ -3,4 +3,4 @@ license_expression: lgpl-2.1-plus is_license_notice: yes --- -This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. \ No newline at end of file +This program is free software; you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_76.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_76.RULE index 6ef4ab98dd..9a75bb95c0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_76.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_76.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this Module; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this Module; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_77.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_77.RULE index 1491f12525..810ee2e3ab 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_77.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_77.RULE @@ -6,16 +6,16 @@ referenced_filenames: --- The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License as +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the -License, or (at your option) any later version. +License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with the GNU C Library; see the file COPYING.LIB. If not, +You should have received a copy of the {{GNU Lesser General Public +License}} along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_79.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_79.RULE index 4fa0f15699..eea3b38f34 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_79.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_79.RULE @@ -6,16 +6,16 @@ is_license_notice: yes [LGPL]. This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public License + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_8.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_8.RULE index 3b506e59d1..50b96a4a43 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_8.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_8.RULE @@ -11,9 +11,9 @@ notes: LGPL 2.1 or later notice, alternate formatting # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +# Lesser General Public License}} for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software +# You should have received a copy of the {{GNU Lesser General Public +# License}} along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_80.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_80.RULE index fedf2eda83..65d52c3c89 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_80.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_80.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this manual. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_81.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_81.RULE index 45cd24245b..705fbb9379 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_81.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_81.RULE @@ -5,5 +5,5 @@ is_license_notice: yes * %Begin-Header% * This file may be redistributed under the terms of the - * GNU Lesser General Public License. + * {{GNU Lesser General Public License}}. * %End-Header% \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_83.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_83.RULE index 577ae66adc..82f53c15a8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_83.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_83.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Lesser Public License + modify it under the terms of the {{GNU General Lesser Public License as published by the Free Software Foundation; either version 2.1 - of the License, or (at your option) any later version. + of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_83_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_83_1.RULE index 759c82b684..751cdbf904 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_83_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_83_1.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the gnu lesser general public license \ No newline at end of file +the {{gnu lesser general public license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_84.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_84.RULE index c5f44fac85..6e8ab44ceb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_84.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_84.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. \ No newline at end of file +{{GNU Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_85.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_85.RULE index 814ffde1a3..accf144fb6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_85.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_85.RULE @@ -7,9 +7,9 @@ notes: mix of lgpl and gpl --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 -of the License, or (at your option) any later version. +of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_88.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_88.RULE index 21f0eeaee2..2a4b6a5cb3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_88.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_88.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- # This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public +# modify it under the terms of the {{GNU Lesser General Public # License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. +# version 2.1 of the License, or (at your option) any later version}}. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +# Lesser General Public License}} for more details. # -# You should have received a copy of the GNU Lesser General Public -# License along with this library. If not, see . \ No newline at end of file +# You should have received a copy of the {{GNU Lesser General Public +# License}} along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_89.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_89.RULE index 8e64d60780..9eb89c9d5c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_89.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_89.RULE @@ -7,16 +7,16 @@ ignorable_urls: * * This library is free software; you can redistribute it and/or -* modify it under the terms of the GNU Lesser General Public +* modify it under the terms of the {{GNU Lesser General Public * License as published by the Free Software Foundation; either -* version 2.1 of the License, or (at your option) any later version. +* version 2.1 of the License, or (at your option) any later version}}. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -* Lesser General Public License for more details. +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +* Lesser General Public License}} for more details. * -* You should have received a copy of the GNU Lesser General Public License +* You should have received a copy of the {{GNU Lesser General Public License}} * along with this library; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_9.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_9.RULE index 271586cb57..c132cc0f1e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_9.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_9.RULE @@ -5,16 +5,16 @@ notes: LGPL variant --- The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free + You should have received a copy of the {{GNU Lesser General Public + License}} along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_90.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_90.RULE index cdd601b978..5e12256be8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_90.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_90.RULE @@ -9,15 +9,15 @@ ignorable_urls: * ==================================================================== * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 or - * the GNU Lesser General Public License version 2.1 as published by + * the {{GNU Lesser General Public License}} version 2.1 as published by * the Free Software Foundation (your choice between the two). * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License or GNU Lesser General Public License for more details. + * GNU General Public License or {{GNU Lesser General Public License}} for more details. * * You should have received a copy of the GNU General Public License - * or GNU Lesser General Public License along with this program; if not, + * or {{GNU Lesser General Public License}} along with this program; if not, * write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * or visit http://www.gnu.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_91.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_91.RULE index 240c259bc2..de9295a84a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_91.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_91.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- The GNU C Library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_92.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_92.RULE index a7e95fa48d..5393c1f1f3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_92.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_92.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. +version 2.1 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_93.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_93.RULE index 6b61a3dbb8..5453c775ea 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_93.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_93.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this program; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_97.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_97.RULE index 6f0c0b5d1d..61d9570231 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_97.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_97.RULE @@ -7,11 +7,11 @@ relevance: 100 The source code for GNU Trove is licensed under the Lesser GNU Public License (LGPL). This library is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License as published by the Free +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any -later version. This library is distributed in the hope that it will be useful, +later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -details. You should have received a copy of the GNU Lesser General Public -License along with this program; if not, write to the Free Software Foundation, +details. You should have received a copy of the {{GNU Lesser General Public +License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_97_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_97_1.RULE index 3602a4e657..6a4ab73a1a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_97_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_97_1.RULE @@ -7,11 +7,11 @@ relevance: 100 The source code for GNU Trove is licensed under the Lesser GNU Public License (LGPL). This library is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License as published by the Free +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any -later version. This library is distributed in the hope that it will be useful, +later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License -for more details. You should have received a copy of the GNU Lesser General -Public License along with this library; if not, write to the Free Software +or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} +for more details. You should have received a copy of the {{GNU Lesser General +Public License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_97_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_97_2.RULE index 0741de89af..ba2a4ea3e4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_97_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_97_2.RULE @@ -5,11 +5,11 @@ relevance: 100 --- This library is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License as published by the Free +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any -later version. This library is distributed in the hope that it will be useful, +later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -details. You should have received a copy of the GNU Lesser General Public -License along with this program; if not, write to the Free Software Foundation, +details. You should have received a copy of the {{GNU Lesser General Public +License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_98.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_98.RULE index 8f1b764cf4..ea2f9ecb7d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_98.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_98.RULE @@ -6,15 +6,15 @@ minimum_coverage: 70 --- # '' is free software; you can redistribute it and/or modify it under the -# terms of the GNU Lesser General Public License as published by the Free +# terms of the {{GNU Lesser General Public License as published by the Free # Software Foundation; either version 2.1 of the License, or (at your option) -# any later version. +# any later version}}. # # '' is distrubuted in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more # details. # -# You should have received a copy of the GNU Lesser General Public License +# You should have received a copy of the {{GNU Lesser General Public License}} # along with ''; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_99.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_99.RULE index 8a45e0203c..274fed4530 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_99.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_99.RULE @@ -5,15 +5,15 @@ relevance: 100 --- # is free software; you can redistribute it and/or modify it under the -# terms of the GNU Lesser General Public License as published by the Free +# terms of the {{GNU Lesser General Public License as published by the Free # Software Foundation; either version 2.1 of the License, or (at your option) -# any later version. +# any later version}}. # # is distrubuted in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more # details. # -# You should have received a copy of the GNU Lesser General Public License +# You should have received a copy of the {{GNU Lesser General Public License}} # along with ; if not, write to the Free Software Foundation, Inc., # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_1.RULE index f2c8c2b78a..73cbd3f545 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_and_gfdl-1.3_1.RULE @@ -7,17 +7,17 @@ referenced_filenames: --- "This library is free software; you can redistribute it and/or" -"modify it under the terms of the GNU Lesser General Public" +"modify it under the terms of the {{GNU Lesser General Public" "License as published by the Free Software Foundation; either" -"version 2.1 of the License, or (at your option) any later version." +"version 2.1 of the License, or (at your option) any later version}}." "This library is distributed in the hope that it will be useful," "but WITHOUT ANY WARRANTY; without even the implied warranty of" -"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU" -"Lesser General Public License for more details." +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU" +"Lesser General Public License}} for more details." -"You should have received a copy of the GNU Lesser General Public" -"License along with this library; if not, write to the Free Software" +"You should have received a copy of the {{GNU Lesser General Public" +"License}} along with this library; if not, write to the Free Software" "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA" "The full text of this license with details is contained in the file \"COPYING\"" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_newlib.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_newlib.RULE index 29c1291490..fa794706c9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_newlib.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_newlib.RULE @@ -7,16 +7,16 @@ notes: seen in newlib Free Software Foundation LGPL License The GNU C Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with the GNU C Library; if not, write to the Free + You should have received a copy of the {{GNU Lesser General Public + License}} along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_partial.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_partial.RULE index c88e1858ca..9d039cb809 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_partial.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_partial.RULE @@ -3,4 +3,4 @@ license_expression: lgpl-2.1-plus is_license_notice: yes --- -If you modify your copy or copies of the library or any portion of it, you may distribute the resulting library provided you do so under the GNU Lesser General Public Licence. However, programs that link to the library may be licenced under terms of your choice, so long as the library itself can be changed. Any translation of the GNU Lesser General Public Licence must be accompanied by the GNU Lesser General Public Licence. \ No newline at end of file +If you modify your copy or copies of the library or any portion of it, you may distribute the resulting library provided you do so under the {{GNU Lesser General Public Licence}}. However, programs that link to the library may be licenced under terms of your choice, so long as the library itself can be changed. Any translation of the {{GNU Lesser General Public Licence}} must be accompanied by the {{GNU Lesser General Public Licence}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_1.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_1.RULE new file mode 100644 index 0000000000..be2972305a --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_1.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +LGPL 2.1+ license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_10.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_10.RULE new file mode 100644 index 0000000000..717449989a --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_10.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +version 2.1 or later of GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_11.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_11.RULE new file mode 100644 index 0000000000..0c14f5ebaf --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_11.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +complete text of LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_12.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_12.RULE new file mode 100644 index 0000000000..063fde3df3 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_12.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu lesser general public license as published by free software foundation either version 2 1 of the license or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_13.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_13.RULE new file mode 100644 index 0000000000..781c5db902 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_13.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu lesser general public license as published by free software foundation either version 2 1 of the licence or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_14.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_14.RULE new file mode 100644 index 0000000000..d350095ec9 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_14.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu general lesser public license as published by free software foundation either version 2 1 of the license or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_15.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_15.RULE new file mode 100644 index 0000000000..43ea53c7e6 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_15.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License as published by Free Software Foundation; either version 2.1 of License, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_16.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_16.RULE new file mode 100644 index 0000000000..471986baa0 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_16.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License as published by Free Software Foundation; either version 2.1 of licence, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_17.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_17.RULE new file mode 100644 index 0000000000..6aae581411 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_17.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Lesser Public License as published by Free Software Foundation; either version 2.1 of License, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_2.RULE new file mode 100644 index 0000000000..23c957443c --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_2.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_tag: yes +is_required_phrase: yes +relevance: 100 +--- + +license> + LGPL-2.1-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_3.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_3.RULE new file mode 100644 index 0000000000..fd48d8878f --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_3.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +complete text of the LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_4.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_4.RULE new file mode 100644 index 0000000000..58a6ad0e55 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_4.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_5.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_5.RULE new file mode 100644 index 0000000000..d892b12006 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_5.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public +License, version 2.1 (or, at your option, any later version) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_6.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_6.RULE new file mode 100644 index 0000000000..63491381a5 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_6.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License (LGPL), version 2.1 or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_7.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_7.RULE new file mode 100644 index 0000000000..373e7133b0 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_7.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License, version 2.1 or any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_8.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_8.RULE new file mode 100644 index 0000000000..33d82fc6cb --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_8.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the licence, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_9.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_9.RULE new file mode 100644 index 0000000000..e423651766 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_required_phrase_9.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lgpl-2.1-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU General Lesser Public License + as published by the Free Software Foundation; either version 2.1 + of the License, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_wubi.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_wubi.RULE index 24edc880c1..edb33ba06c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_wubi.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_wubi.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify -# it under 5the terms of the GNU Lesser General Public License as +# it under 5the terms of the {{GNU Lesser General Public License as # published by the Free Software Foundation; either version 2.1 of -# the License, or (at your option) any later version. +# the License, or (at your option) any later version}}. # # is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# {{GNU Lesser General Public License}} for more details. # -# You should have received a copy of the GNU Lesser General Public License +# You should have received a copy of the {{GNU Lesser General Public License}} # along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1-plus_wubi2.RULE b/src/licensedcode/data/rules/lgpl-2.1-plus_wubi2.RULE index b294f15ad5..806032ea8b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1-plus_wubi2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1-plus_wubi2.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify -# it under 5the terms of the GNU Lesser General Public License as +# it under 5the terms of the {{GNU Lesser General Public License as # published by the Free Software Foundation; either version 2.1 of -# the License, or (at your option) any later version. +# the License, or (at your option) any later version}}. # # is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public License for more details. +# {{GNU Lesser General Public License}} for more details. # -# You should have received a copy of the GNU Lesser General Public License +# You should have received a copy of the {{GNU Lesser General Public License}} # along with this program. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_0.RULE b/src/licensedcode/data/rules/lgpl-2.1_0.RULE index 32c760757e..f09e222975 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_0.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_0.RULE @@ -5,15 +5,15 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public}} License as published by the Free Software Foundation version -2.1 of the License. +{{2.1 of the License.}} This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/lgpl-2.1_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_1.RULE index 0c431fd014..0565f45e29 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_1.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- license: - name: GNU Lesser General Public License, version 2.1 + name: {{GNU Lesser General Public License, version 2.1}} url: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_100.RULE b/src/licensedcode/data/rules/lgpl-2.1_100.RULE index 04cac4d38e..6a4e09d398 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_100.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_100.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; only +modify it under the terms of the {{GNU Lesser General Public +License}} as published by the Free Software Foundation; only version 2.1 of the License. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_107.RULE b/src/licensedcode/data/rules/lgpl-2.1_107.RULE index c998617521..12828c3573 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_107.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_107.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- # This file is licensed under the -# GNU Lesser General Public License v2.1. +# {{GNU Lesser General Public License v2.1}}. # See the file COPYING or visit http://www.gnu.org/ for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_11.RULE b/src/licensedcode/data/rules/lgpl-2.1_11.RULE index b8fac215c9..b3aa1216c6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_11.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_11.RULE @@ -5,14 +5,14 @@ notes: Ajax4jsf 1.1 sample --- * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1 as published by the Free Software Foundation. + * modify it under the terms of the {{GNU Lesser General Public + * License version 2.1}} as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Lesser General Public License}} for more details. * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software + * You should have received a copy of the {{GNU Lesser General Public + * License}} along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_110.RULE b/src/licensedcode/data/rules/lgpl-2.1_110.RULE index c915934cee..2bd0b13b62 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_110.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_110.RULE @@ -6,12 +6,12 @@ minimum_coverage: 80 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, -version 2.1 of the License. +version 2.1}} of the License. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library (see the the license.txt file); if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library (see the the license.txt file); if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_112.RULE b/src/licensedcode/data/rules/lgpl-2.1_112.RULE index beccca1742..d81d33ffcf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_112.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_112.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU LESSER GENERAL PUBLIC LICENSE -(LGPL)Version 2.1, February 1999. \ No newline at end of file +licensed under the {{GNU LESSER GENERAL PUBLIC LICENSE +(LGPL)Version 2.1}}, February 1999. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_113.RULE b/src/licensedcode/data/rules/lgpl-2.1_113.RULE index 7ab81caf73..9749b0e3a0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_113.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_113.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -are covered under the LGPL_2.1 -license \ No newline at end of file +are covered under the {{LGPL_2.1 +license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_114.RULE b/src/licensedcode/data/rules/lgpl-2.1_114.RULE index 917b8c71c7..477dad0e95 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_114.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_114.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.fsf.org/licensing/licenses/lgpl.txt --- -License: GNU Lesser General Public License (LGPL, Version 2.1 (http://www.fsf.org/licensing/licenses/lgpl.txt \ No newline at end of file +License: {{GNU Lesser General Public License (LGPL, Version 2.1}} (http://www.fsf.org/licensing/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_115.RULE b/src/licensedcode/data/rules/lgpl-2.1_115.RULE index 9582702f78..0822aa6581 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_115.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_115.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl-2.1.html --- -License: LGPL 2.1 (http://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file +{{License: LGPL 2.1}} (http://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_116.RULE b/src/licensedcode/data/rules/lgpl-2.1_116.RULE index 9ac8e955e0..57f8b3134a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_116.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_116.RULE @@ -7,8 +7,8 @@ ignorable_holders: - Free Software Foundation, Inc. --- -GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 +{{GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1}}, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/lgpl-2.1_119.RULE b/src/licensedcode/data/rules/lgpl-2.1_119.RULE index 5f7d998378..fd7f243c5c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_119.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_119.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The complete text of the GNU Lesser General Public License 2.1 is as follows: \ No newline at end of file +The complete text of the {{GNU Lesser General Public License 2.1}} is as follows: \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_121.RULE b/src/licensedcode/data/rules/lgpl-2.1_121.RULE index fbba04996b..c3b3ff27e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_121.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_121.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl-2.1-standalone.html --- -license 'LGPL-2.1', 'http://www.gnu.org/licenses/lgpl-2.1-standalone.html' \ No newline at end of file +{{license 'LGPL-2.1}}', 'http://www.gnu.org/licenses/lgpl-2.1-standalone.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_141.RULE b/src/licensedcode/data/rules/lgpl-2.1_141.RULE index 337c792bf1..740071555e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_141.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_141.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -gnu lgpl 2.1 \ No newline at end of file +gnu {{lgpl 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_143.RULE b/src/licensedcode/data/rules/lgpl-2.1_143.RULE index 16b1acb03d..571f64192a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_143.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_143.RULE @@ -6,5 +6,5 @@ referenced_filenames: - doc/lgpl-2.1.txt --- -Licensed under the terms of the GNU Lesser General Public License 2.1 +Licensed under the terms of the {{GNU Lesser General Public License 2.1}} (see doc/lgpl-2.1.txt for the full terms of this license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_144.RULE b/src/licensedcode/data/rules/lgpl-2.1_144.RULE index e8146c8f61..ecb116f997 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_144.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_144.RULE @@ -6,4 +6,4 @@ referenced_filenames: - doc/lgpl-2.1.txt --- -Licensed under the terms of the GNU Lesser General Public License 2.1 \ No newline at end of file +Licensed under the terms of the {{GNU Lesser General Public License 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_1465.RULE b/src/licensedcode/data/rules/lgpl-2.1_1465.RULE new file mode 100644 index 0000000000..b16e78ecf7 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_1465.RULE @@ -0,0 +1,16 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + This library is free software; you can redistribute it and/or + modify it under the terms of i{{ version 2.1 of the GNU Lesser General + Public License }} as published by the Free Software Foundation. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA diff --git a/src/licensedcode/data/rules/lgpl-2.1_150.RULE b/src/licensedcode/data/rules/lgpl-2.1_150.RULE index 2916dc89cc..a9d2cc4a09 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_150.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_150.RULE @@ -6,4 +6,4 @@ relevance: 100 # This program is free software. # You can distribute/modify this program under the terms of -# the {{GNU Lesser General Public License version 2.1.}} +# the {{GNU Lesser General Public License version 2.1}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_153.RULE b/src/licensedcode/data/rules/lgpl-2.1_153.RULE index 8475b42581..bd8f8c5089 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_153.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_153.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License -version 2.1 as published by the Free Software Foundation; \ No newline at end of file +it under the terms of the {{GNU Lesser General Public License +version 2.1}} as published by the Free Software Foundation; \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_154.RULE b/src/licensedcode/data/rules/lgpl-2.1_154.RULE index 32b6172dfe..41d0923102 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_154.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_154.RULE @@ -6,6 +6,6 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -License: LGPL-2.1 +{{License: LGPL-2.1}} On Debian systems the full text of the GNU LGPL v2.1 can be found in the `/usr/share/common-licenses/LGPL-2.1' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_156.RULE b/src/licensedcode/data/rules/lgpl-2.1_156.RULE index 7833f537cd..1cd2243c8e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_156.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_156.RULE @@ -5,4 +5,4 @@ relevance: 100 --- (* // * This file is distributed under the terms of the *) -(* * GNU Lesser General Public License Version 2.1 *) \ No newline at end of file +(* * {{GNU Lesser General Public License Version 2.1}} *) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_157.RULE b/src/licensedcode/data/rules/lgpl-2.1_157.RULE index e5926433f3..d2c47896c0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_157.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_157.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -portions licensed under the GNU lesser General Public License Version 2.1 \ No newline at end of file +portions licensed under the {{GNU lesser General Public License Version 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_158.RULE b/src/licensedcode/data/rules/lgpl-2.1_158.RULE index 26e63ab566..64cb873cdf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_158.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_158.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the GNU lesser General Public License Version 2.1 \ No newline at end of file +licensed under the {{GNU lesser General Public License Version 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_159.RULE b/src/licensedcode/data/rules/lgpl-2.1_159.RULE index 73cb199d75..162a9e9c9f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_159.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_159.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -software is released under the GNU lesser General Public License Version 2.1 \ No newline at end of file +software is released under the {{GNU lesser General Public License Version 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_160.RULE b/src/licensedcode/data/rules/lgpl-2.1_160.RULE index cbc7b6a5fd..455e70762e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_160.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_160.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the GNU lesser General Public License Version 2.1 \ No newline at end of file +released under the {{GNU lesser General Public License Version 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_161.RULE b/src/licensedcode/data/rules/lgpl-2.1_161.RULE index 2df666a4a9..070ff62a6d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_161.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_161.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the GNU lesser General Public License Version 2.1 \ No newline at end of file +under the {{GNU lesser General Public License Version 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_17.RULE b/src/licensedcode/data/rules/lgpl-2.1_17.RULE index fb427af633..3f6a8a809a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_17.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_17.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.1_176.RULE b/src/licensedcode/data/rules/lgpl-2.1_176.RULE index c9ae43999e..4cda3f69f8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_176.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_176.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/LGPL/2.1/ --- -GNU Lesser General Public License 2.1 (LGPL) +{{GNU Lesser General Public License 2.1 (LGPL)}} link: http://creativecommons.org/licenses/LGPL/2.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_177.RULE b/src/licensedcode/data/rules/lgpl-2.1_177.RULE index d46578c199..9845ee017e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_177.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_177.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/LGPL/2.1/ --- -license: LGPL-2.1 - license link: http://creativecommons.org/licenses/LGPL/2.1/ \ No newline at end of file +license: {{LGPL-2.1 + license}} link: http://creativecommons.org/licenses/LGPL/2.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_181.RULE b/src/licensedcode/data/rules/lgpl-2.1_181.RULE index 53b674858d..aadfd8e458 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_181.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_181.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.1_185.RULE b/src/licensedcode/data/rules/lgpl-2.1_185.RULE index 8ab232938a..0fa9b61949 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_185.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_185.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -This package is licensed under the LGPL-2.1 license. \ No newline at end of file +This package is licensed under the {{LGPL-2.1 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_186.RULE b/src/licensedcode/data/rules/lgpl-2.1_186.RULE index 0050ab3243..1ced459ed6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_186.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_186.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- licensed under -Version 2.1 of the GNU Lesser General Public License (see COPYING.LGPL). \ No newline at end of file +{{Version 2.1 of the GNU Lesser General Public License}} (see COPYING.LGPL). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_187.RULE b/src/licensedcode/data/rules/lgpl-2.1_187.RULE index 07960a77fc..7d66186aeb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_187.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_187.RULE @@ -5,4 +5,4 @@ relevance: 100 --- licensed under -Version 2.1 of the GNU Lesser General Public License \ No newline at end of file +{{Version 2.1 of the GNU Lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_188.RULE b/src/licensedcode/data/rules/lgpl-2.1_188.RULE index 88ee2a91cd..c005061488 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_188.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_188.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.1_189.RULE b/src/licensedcode/data/rules/lgpl-2.1_189.RULE index 081ad3836f..945de88a04 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_189.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_189.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -LICENSE IS BEING CHANGED TO LGPL-2.1 \ No newline at end of file +LICENSE IS BEING CHANGED TO {{LGPL-2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_190.RULE b/src/licensedcode/data/rules/lgpl-2.1_190.RULE index f824b7bf3b..8dc338fe9d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_190.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_190.RULE @@ -1,7 +1,6 @@ --- license_expression: lgpl-2.1 is_license_text: yes -relevance: 100 ignorable_copyrights: - Copyright (c) 1991, 1999 Free Software Foundation, Inc. - copyrighted by the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-2.1_193.RULE b/src/licensedcode/data/rules/lgpl-2.1_193.RULE index b5e6b59f19..9122c7f85a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_193.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_193.RULE @@ -5,16 +5,16 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation: -version 2.1 of the License. +version 2.1}} of the License. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_194.RULE b/src/licensedcode/data/rules/lgpl-2.1_194.RULE index 01fefaa7d8..4d6627095b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_194.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_194.RULE @@ -5,9 +5,9 @@ relevance: 100 --- * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public + * modify it under the terms of the {{GNU Lesser General Public * License as published by the Free Software Foundation: - * version 2.1 of the License. + * version 2.1}} of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.1_195.RULE b/src/licensedcode/data/rules/lgpl-2.1_195.RULE index c84d128a27..bc762f8047 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_195.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_195.RULE @@ -5,9 +5,9 @@ relevance: 100 --- * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public + * modify it under the terms of the {{GNU Lesser General Public * License as published by the Free Software Foundation: - * version 2.1 of the License. + * version 2.1}} of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.1_196.RULE b/src/licensedcode/data/rules/lgpl-2.1_196.RULE index b1e13f5926..9cfc9b4243 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_196.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_196.RULE @@ -6,9 +6,9 @@ notes: this notice starts clearly as an LGPL but ends as GPL and has therefore s --- * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public + * modify it under the terms of the {{GNU Lesser General Public * License as published by the Free Software Foundation: - * version 2.1 of the License. + * version 2.1}} of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.1_197.RULE b/src/licensedcode/data/rules/lgpl-2.1_197.RULE index 587c0e3fda..824b695b9d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_197.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_197.RULE @@ -5,9 +5,9 @@ relevance: 100 --- * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public + * modify it under the terms of the {{GNU Lesser General Public * License as published by the Free Software Foundation: - * version 2.1 of the License. + * version 2.1}} of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.1_198.RULE b/src/licensedcode/data/rules/lgpl-2.1_198.RULE index f9c4569f1b..1a5c88a5a0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_198.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_198.RULE @@ -5,9 +5,9 @@ relevance: 100 --- * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public + * modify it under the terms of the {{GNU Lesser General Public * License as published by the Free Software Foundation: - * version 2.1 of the License. + * version 2.1}} of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.1_199.RULE b/src/licensedcode/data/rules/lgpl-2.1_199.RULE index c9accee054..f7e105e74e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_199.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_199.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl-2.1.html --- -* This code is licensed under LGPL 2.1 +* This code is licensed under {{LGPL 2.1}} * http://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_1_xml.RULE b/src/licensedcode/data/rules/lgpl-2.1_1_xml.RULE index 1211ef1ccc..178d125112 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_1_xml.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_1_xml.RULE @@ -8,7 +8,7 @@ ignorable_urls: - GNU Lesser General Public License, version 2.1 + {{GNU Lesser General Public License, version 2.1}} http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_1_xml2.RULE b/src/licensedcode/data/rules/lgpl-2.1_1_xml2.RULE index cf7a1223d6..8d033d08a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_1_xml2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_1_xml2.RULE @@ -8,7 +8,7 @@ ignorable_urls: - GNU Lesser General Public License, Version 2.1 + {{GNU Lesser General Public License, Version 2.1}} http://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_1_xml3.RULE b/src/licensedcode/data/rules/lgpl-2.1_1_xml3.RULE index 4d366c2a96..0122883070 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_1_xml3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_1_xml3.RULE @@ -8,5 +8,5 @@ ignorable_urls: - GNU Lesser General Public License, version 2.1 + {{GNU Lesser General Public License, version 2.1}} http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_1_xml4.RULE b/src/licensedcode/data/rules/lgpl-2.1_1_xml4.RULE index e07006a120..b64b2fd000 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_1_xml4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_1_xml4.RULE @@ -8,5 +8,5 @@ ignorable_urls: - GNU Lesser General Public License, Version 2.1 + {{GNU Lesser General Public License, Version 2.1}} http://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_2.RULE index 1f3813cb65..09181fa059 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_2.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -LICENSE INFORMATION: LGPL 2.1 \ No newline at end of file +LICENSE INFORMATION: {{LGPL 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_206.RULE b/src/licensedcode/data/rules/lgpl-2.1_206.RULE index 69cdf57bce..2024f08071 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_206.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_206.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/testdata/findbugs_license.txt --- -License: LGPL 2.1 ([license/third_party/testdata/findbugs_license.txt][findbugs]) \ No newline at end of file +{{License: LGPL 2.1}} ([license/third_party/testdata/findbugs_license.txt][findbugs]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_207.RULE b/src/licensedcode/data/rules/lgpl-2.1_207.RULE index 472eb5cca5..31b7147462 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_207.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_207.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html --- -LGPL 2.1 +{{LGPL 2.1}} https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_208.RULE b/src/licensedcode/data/rules/lgpl-2.1_208.RULE index b6f1fc3e14..78bec25835 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_208.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_208.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html --- -LGPL 2.1 +{{LGPL 2.1}} http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_210.RULE b/src/licensedcode/data/rules/lgpl-2.1_210.RULE index 70887b3b17..904e0d8d11 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_210.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_210.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html diff --git a/src/licensedcode/data/rules/lgpl-2.1_211.RULE b/src/licensedcode/data/rules/lgpl-2.1_211.RULE index 36e905451e..9ca0b086de 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_211.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_211.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/LGPL-2.1 --- -`LGPL-2.1` - [Lesser General Public License 2.1](http://opensource.org/licenses/LGPL-2.1) \ No newline at end of file +`{{LGPL-2.1}}` - [Lesser General Public License 2.1](http://opensource.org/licenses/LGPL-2.1) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_214.RULE b/src/licensedcode/data/rules/lgpl-2.1_214.RULE index e39441e6c6..662df67fa3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_214.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_214.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -licensed under the GNU Lesser General Public License (ILGPL) \ No newline at end of file +licensed under the {{GNU Lesser General Public License}} (ILGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_22.RULE b/src/licensedcode/data/rules/lgpl-2.1_22.RULE index d3ce1bf66f..83642b6bf0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_22.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_22.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1 as published by the Free Software Foundation. \ No newline at end of file + * modify it under the terms of the {{GNU Lesser General Public + * License version 2.1}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_222.RULE b/src/licensedcode/data/rules/lgpl-2.1_222.RULE index 0c3d79f410..5e61c4d5c9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_222.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_222.RULE @@ -5,4 +5,4 @@ relevance: 100 --- % This software may be modified and distributed under the terms of the -% GNU Lesser General Public License v2.1 \ No newline at end of file +% {{GNU Lesser General Public License v2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_224.RULE b/src/licensedcode/data/rules/lgpl-2.1_224.RULE index c538f34e10..ea7aeb8ffa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_224.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_224.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1 license \ No newline at end of file +Released under the {{GNU LESSER GENERAL PUBLIC LICENSE Version 2.1}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_225.RULE b/src/licensedcode/data/rules/lgpl-2.1_225.RULE index b3ceb8196c..d832de87af 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_225.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_225.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/LGPL-2.1;md5=1a6d268fd218675ffea8be556788b780" \ No newline at end of file +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/{{LGPL-2.1}};md5=1a6d268fd218675ffea8be556788b780" \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_229.RULE b/src/licensedcode/data/rules/lgpl-2.1_229.RULE index 752678bfc1..0c737a92fc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_229.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_229.RULE @@ -5,14 +5,14 @@ relevance: 100 --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License, Version - * 2.1, June 1999 as published by the Free Software Foundation. + * it under the terms of the {{GNU Lesser General Public License, Version + * 2.1}}, June 1999 as published by the Free Software Foundation. * Redistribution and/or modification of this program under the terms of - * any other version of the GNU Lesser General Public License is not + * any other version of the {{GNU Lesser General Public License}} is not * permitted. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For more details, - * see the GNU Lesser General Public License, Version 2.1, a copy of + * see the {{GNU Lesser General Public License, Version 2.1}}, a copy of * which can be found in the XORP LICENSE.lgpl file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_234.RULE b/src/licensedcode/data/rules/lgpl-2.1_234.RULE index be57f89d98..ae6489367d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_234.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_234.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under LGPL 2.1 \ No newline at end of file +distributed under {{LGPL 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_236.RULE b/src/licensedcode/data/rules/lgpl-2.1_236.RULE index 1ff5a9d3fc..4e61d614ab 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_236.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_236.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the LGPL 2.1 license. \ No newline at end of file +distributed under the {{LGPL 2.1 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_238.RULE b/src/licensedcode/data/rules/lgpl-2.1_238.RULE index 244c69e727..805160d36e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_238.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_238.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -copyrighted software made available under Version 2.1 of the GNU Lesser General Public License \ No newline at end of file +copyrighted software made available under {{Version 2.1 of the GNU Lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_239.RULE b/src/licensedcode/data/rules/lgpl-2.1_239.RULE index 182c115bde..f616d34c19 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_239.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_239.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU Lesser General Public License (LGPL) 2.1 \ No newline at end of file +{{GNU Lesser General Public License}} ({{LGPL) 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_240.RULE b/src/licensedcode/data/rules/lgpl-2.1_240.RULE index 6e85436a13..870053e4f4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_240.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_240.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.1_241.RULE b/src/licensedcode/data/rules/lgpl-2.1_241.RULE index c6f016cb25..1a281e55a5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_241.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_241.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -Oracle elects to use only the GNU Lesser General Public License version 2.1 +Oracle elects to use only the {{GNU Lesser General Public License version 2.1}} (LGPL) for any software where a choice of LGPL/GPL license versions are made available with the language indicating that LGPLv2.1/GPLv2 or any later version may be used, or where a choice of which version of the LGPL/GPL is applied is diff --git a/src/licensedcode/data/rules/lgpl-2.1_242.RULE b/src/licensedcode/data/rules/lgpl-2.1_242.RULE index b288502a11..24ac230fe4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_242.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_242.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -elects to use only the GNU Lesser General Public License version 2.1 +elects to use only the {{GNU Lesser General Public License version 2.1}} (LGPL) for any software where a choice of LGPL/GPL license versions are made available with the language indicating that LGPLv2.1/GPLv2 or any later version may be used, or where a choice of which version of the LGPL/GPL is applied is diff --git a/src/licensedcode/data/rules/lgpl-2.1_243.RULE b/src/licensedcode/data/rules/lgpl-2.1_243.RULE index f38b3c1a30..431aa0a4d5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_243.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_243.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -Sun elects to use only the GNU Lesser General Public License version 2.1 +Sun elects to use only the {{GNU Lesser General Public License version 2.1}} (LGPL)/GNU General Public License version 2 (GPL) for any software where a choice of LGPL/GPL license versions are made available with the language indicating that LGPLv2.1/GPLv2 or any later version may be used, or where a diff --git a/src/licensedcode/data/rules/lgpl-2.1_244.RULE b/src/licensedcode/data/rules/lgpl-2.1_244.RULE index 9023988a98..f5713080d7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_244.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_244.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://wiki.netbeans.org/DevFaqLgpl3rdPartySources --- -========================= LGPL-2.1 ========================= +========================= {{LGPL-2.1}} ========================= ------------------------------------------------------------ You are receiving a copy of the code in the source available at diff --git a/src/licensedcode/data/rules/lgpl-2.1_245.RULE b/src/licensedcode/data/rules/lgpl-2.1_245.RULE index 16b413dc68..209e834fcb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_245.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_245.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under the GNU Lesser General Public License (LGPL) v2.1 \ No newline at end of file +Released under the {{GNU Lesser General Public License}} (LGPL) v2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_246.RULE b/src/licensedcode/data/rules/lgpl-2.1_246.RULE index ddadce3f57..7722999910 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_246.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_246.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html --- -open-source software and is released under the GNU -Lesser General Public License (LGPL) v2.1. +open-source software and is released under the {{GNU +Lesser General Public License}} (LGPL) v2.1. The library can be further distributed and used in other applications subject to the LGPL license terms \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_247.RULE b/src/licensedcode/data/rules/lgpl-2.1_247.RULE index b132331c23..cba9b4e1b0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_247.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_247.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under GNU LGPL 2.1 \ No newline at end of file +Licensed under GNU {{LGPL 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_248.RULE b/src/licensedcode/data/rules/lgpl-2.1_248.RULE index e320249f41..8cb9667021 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_248.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_248.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -License: LGPL-2.1 - On Debian GNU/Linux systems, the complete text of the LGPL 2.1 - license can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +{{License: LGPL-2.1}} + On Debian GNU/Linux systems, the complete text of the {{LGPL 2.1 + license}} can be found in `{{/usr/share/common-licenses/LGPL-2.1}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_249.RULE b/src/licensedcode/data/rules/lgpl-2.1_249.RULE index f01ae07ba4..0a780e2290 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_249.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_249.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -On Debian GNU/Linux systems, the complete text of the LGPL 2.1 - license can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{LGPL 2.1 + license}} can be found in `{{/usr/share/common-licenses/LGPL-2.1}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_25.RULE b/src/licensedcode/data/rules/lgpl-2.1_25.RULE index b8d430ab6d..ce989fb9f4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_25.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_25.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://creativecommons.org/licenses/LGPL/2.1/ --- -http://creativecommons.org/licenses/LGPL/2.1/ +{{ http://creativecommons.org/licenses/LGPL/2.1/ }} Creative Commons License http://i.creativecommons.org/l/LGPL/2.1/88x62.png -This work is licensed under a "http://creativecommons.org/licenses/LGPL/2.1/ -Creative Commons GNU Lesser General Public License License \ No newline at end of file +{{ This work is licensed under a http://creativecommons.org/licenses/LGPL/2.1/ }} +{{ Creative Commons GNU Lesser General Public License}} License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_250.RULE b/src/licensedcode/data/rules/lgpl-2.1_250.RULE index bfef8bb66a..107c1629f5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_250.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_250.RULE @@ -6,6 +6,6 @@ referenced_filenames: - COPYING --- -Licensed under the GNU Lesser General Public License v2.1 (the "License"); +Licensed under the {{GNU Lesser General Public License v2.1}} (the "License"); you may not use this file except in compliance with the License. The terms of the License are located in the COPYING file of this distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_251.RULE b/src/licensedcode/data/rules/lgpl-2.1_251.RULE index 11ba150142..83860af037 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_251.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_251.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU Lesser General Public License v2.1 (the "License"); +Licensed under the {{GNU Lesser General Public License v2.1}} (the "License"); you may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_252.RULE b/src/licensedcode/data/rules/lgpl-2.1_252.RULE index 54cbdbd8be..d7a97d355c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_252.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_252.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the GNU Lesser General Public License v2.1 \ No newline at end of file +Licensed under the {{GNU Lesser General Public License v2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_253.RULE b/src/licensedcode/data/rules/lgpl-2.1_253.RULE index ccc0b36520..6729b731e8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_253.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_253.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -components licensed under LGPL 2.1 \ No newline at end of file +components licensed under {{LGPL 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_257.RULE b/src/licensedcode/data/rules/lgpl-2.1_257.RULE index f67e8f717e..8cc31ce69b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_257.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_257.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under LGPL 2.1 \ No newline at end of file +licensed under {{LGPL 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_264.RULE b/src/licensedcode/data/rules/lgpl-2.1_264.RULE index 2d0f30e9d2..d36b2a432f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_264.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_264.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU lesser General Public License, V 2.1 \ No newline at end of file +{{GNU lesser General Public License}}, V 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_268.RULE b/src/licensedcode/data/rules/lgpl-2.1_268.RULE index a23065b109..ef993ead36 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_268.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_268.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -UNDER THE TERMS OF THE LGPL 2.1 \ No newline at end of file +UNDER THE TERMS OF THE {{LGPL 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_269.RULE b/src/licensedcode/data/rules/lgpl-2.1_269.RULE index b9b6939399..80c4a31b35 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_269.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_269.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.1. PLEASE SEE BELOW FOR THE FULL TEXT OF THE LGPL 2.1. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{LGPL 2.1}}. PLEASE SEE BELOW FOR THE FULL TEXT OF THE {{LGPL 2.1}}. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_270.RULE b/src/licensedcode/data/rules/lgpl-2.1_270.RULE index 870f07150b..a7bbfb068b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_270.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_270.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.1. PLEASE SEE BELOW FOR THE FULL TEXT OF THE LGPL 2.1. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{LGPL 2.1}}. PLEASE SEE BELOW FOR THE FULL TEXT OF THE {{LGPL 2.1}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_276.RULE b/src/licensedcode/data/rules/lgpl-2.1_276.RULE index 20cb97d005..679be4e11e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_276.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_276.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -GNU Lesser General Public License, V2.1 is applicable to the following component(s). \ No newline at end of file +{{GNU Lesser General Public License, V2.1}} is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_277.RULE b/src/licensedcode/data/rules/lgpl-2.1_277.RULE index 5d1e15ae35..70dd0d6a42 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_277.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_277.RULE @@ -1,7 +1,9 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -LGPL 2.1 LICENSE. \ No newline at end of file +LGPL_2.1 +license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_278.RULE b/src/licensedcode/data/rules/lgpl-2.1_278.RULE index 82d2176d1e..87534334f5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_278.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_278.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -THE LGPL 2.1 LICENSE. \ No newline at end of file +THE {{LGPL 2.1 LICENSE}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_279.RULE b/src/licensedcode/data/rules/lgpl-2.1_279.RULE index f632a5db3b..0754fcc899 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_279.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_279.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.1 LICENSE. PLEASE SEE THE APPENDIX FOR FULL TEXT OF THE LGPL 2.1 LICENSE. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{LGPL 2.1 LICENSE}}. PLEASE SEE THE APPENDIX FOR FULL TEXT OF THE {{LGPL 2.1 LICENSE}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_28.RULE b/src/licensedcode/data/rules/lgpl-2.1_28.RULE index d2e8cf85e1..c7cbad14f4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_28.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_28.RULE @@ -7,5 +7,5 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian GNU/Linux systems, the complete text of the GNU Lesser General - Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU Lesser General + Public License}} can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_280.RULE b/src/licensedcode/data/rules/lgpl-2.1_280.RULE index fb5ad7f9f7..9215bee102 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_280.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_280.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -UNDER THE TERMS OF THE LGPL 2.1 LICENSE. \ No newline at end of file +UNDER THE TERMS OF THE {{LGPL 2.1 LICENSE}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_282.RULE b/src/licensedcode/data/rules/lgpl-2.1_282.RULE index fca4cf9fd8..8c0f9799dc 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_282.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_282.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the GNU Lesser General Public License, version 2.1 \ No newline at end of file +the {{GNU Lesser General Public License, version 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_284.RULE b/src/licensedcode/data/rules/lgpl-2.1_284.RULE index 5b06e3791d..8e9c319f15 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_284.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_284.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 2.1 LICENSE. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE LGPL 2.1 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{LGPL 2.1 LICENSE}}. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE {{LGPL 2.1 LICENSE}}. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_286.RULE b/src/licensedcode/data/rules/lgpl-2.1_286.RULE index d7d0a953d3..dcd3207ef8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_286.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_286.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING.LGPLv2.1 --- -COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1 \ No newline at end of file +COPYING.LGPLv2.1: {{GNU Lesser General Public License version 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_287.RULE b/src/licensedcode/data/rules/lgpl-2.1_287.RULE index c758694dd2..b4947f6916 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_287.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_287.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of version 2.1 of the GNU Lesser General Public License \ No newline at end of file +licensed under the terms of {{version 2.1 of the GNU Lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_288.RULE b/src/licensedcode/data/rules/lgpl-2.1_288.RULE index 907fb30b5c..64ba3583ca 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_288.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_288.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed UNDER THE TERMS OF THE LGPL 2.1 \ No newline at end of file +licensed UNDER THE TERMS OF THE {{LGPL 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_289.RULE b/src/licensedcode/data/rules/lgpl-2.1_289.RULE index 1e20634cae..12ad4a6194 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_289.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_289.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed UNDER THE TERMS OF THE LGPL 2.1 LICENSE. \ No newline at end of file +licensed UNDER THE TERMS OF THE {{LGPL 2.1 LICENSE}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_291.RULE b/src/licensedcode/data/rules/lgpl-2.1_291.RULE index 66539d33b4..62cae9b4a2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_291.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_291.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -On Debian systems, the complete text of the GNU Lesser General Public - License v2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU Lesser General Public + License v2.1}} can be found in `{{/usr/share/common-licenses/LGPL-2.1}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_293.RULE b/src/licensedcode/data/rules/lgpl-2.1_293.RULE index 94196d0307..16d901457e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_293.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_293.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU Lesser General Public + License version 2.1}} can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_294.RULE b/src/licensedcode/data/rules/lgpl-2.1_294.RULE index ccf16b1315..d408af386c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_294.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_294.RULE @@ -6,4 +6,4 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian systems, the full text of the GNU Lesser General Public License version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian systems, the full text of the {{GNU Lesser General Public License version 2.1}} can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_295.RULE b/src/licensedcode/data/rules/lgpl-2.1_295.RULE index e9e6e2f7a0..2ac6832f26 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_295.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_295.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -governed by the GNU Lesser General Public License version 2.1. \ No newline at end of file +governed by the {{GNU Lesser General Public License version 2.1}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_296.RULE b/src/licensedcode/data/rules/lgpl-2.1_296.RULE index 4136389ebf..c311b8f17e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_296.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_296.RULE @@ -1,7 +1,6 @@ --- license_expression: lgpl-2.1 is_license_text: yes -relevance: 100 notes: See in vmware tools. Truncated texts ignorable_copyrights: - Copyright (c) 1991, 1999 Free Software Foundation, Inc. diff --git a/src/licensedcode/data/rules/lgpl-2.1_297.RULE b/src/licensedcode/data/rules/lgpl-2.1_297.RULE index 06a72c3491..f82a325ab8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_297.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_297.RULE @@ -5,14 +5,14 @@ relevance: 100 --- # This program is free software; you can redistribute it and/or modify it -# under the terms of the GNU Lesser General Public License as published -# by the Free Software Foundation version 2.1 and no later version. +# under the terms of the {{GNU Lesser General Public License as published +# by the Free Software Foundation version 2.1}} and no later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY # or FITNESS FOR A PARTICULAR PURPOSE. See the Lesser GNU General Public # License for more details. # -# You should have received a copy of the GNU Lesser General Public License +# You should have received a copy of the {{GNU Lesser General Public License}} # along with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_3.RULE index 1a2f459370..e70cc8f6ed 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_3.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt --- -GNU Lesser General Public License, version 2.1 +{{GNU Lesser General Public License, version 2.1}} http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_302.RULE b/src/licensedcode/data/rules/lgpl-2.1_302.RULE index f09bce7242..a61bc8e92a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_302.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_302.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License version 2.1 as published by the Free Software Foundation. +modify it under the terms of the {{GNU Lesser General Public +License version 2.1}} as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_303.RULE b/src/licensedcode/data/rules/lgpl-2.1_303.RULE index d46e08a1dd..86d5985fc0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_303.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_303.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License version 2.1 as published by the Free Software Foundation. +modify it under the terms of the {{GNU Lesser General Public +License version 2.1}} as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_304.RULE b/src/licensedcode/data/rules/lgpl-2.1_304.RULE index 07056b304f..51a46ad7ca 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_304.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_304.RULE @@ -6,19 +6,19 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License version 2.1 as published by the Free Software Foundation. +modify it under the terms of the {{GNU Lesser General Public +License version 2.1}} as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems, the full text of the GNU Lesser General Public License -version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian systems, the full text of the {{GNU Lesser General Public License +version 2.1}} can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_306.RULE b/src/licensedcode/data/rules/lgpl-2.1_306.RULE index 68556ec104..8625b9fd1a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_306.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_306.RULE @@ -5,5 +5,5 @@ relevance: 100 notes: https://launchpad.net/libdbusmenu/16.04/16.04.0/+download/libdbusmenu-16.04.0.tar.gz --- -the GNU Lesser General Public License version 2.1, as published by +the {{GNU Lesser General Public License version 2.1}}, as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_308.RULE b/src/licensedcode/data/rules/lgpl-2.1_308.RULE index 0de091d256..066af525cd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_308.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_308.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian systems a full copy of the LGPL 2.1 can be found at +On Debian systems a full copy of the {{LGPL 2.1}} can be found at /usr/share/common-licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_309.RULE b/src/licensedcode/data/rules/lgpl-2.1_309.RULE index fe1b47b241..a0a5dba3b9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_309.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_309.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -On Debian systems a full copy of the LGPL 2.1 can be found \ No newline at end of file +On Debian systems a full copy of the {{LGPL 2.1}} can be found \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_31.RULE b/src/licensedcode/data/rules/lgpl-2.1_31.RULE index 584b948ba4..ab325091b6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_31.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_31.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl-2.1.html --- -LGPL 2.1 http://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file +{{LGPL 2.1}} http://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_311.RULE b/src/licensedcode/data/rules/lgpl-2.1_311.RULE index cb38078a9f..50cad180a0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_311.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_311.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- is free software and can be used - under the terms of the GNU Lesser General Public License (LGPL), - Version 2.1 (February 1999). \ No newline at end of file + under the terms of the {{GNU Lesser General Public License (LGPL), + Version 2.1}} (February 1999). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_312.RULE b/src/licensedcode/data/rules/lgpl-2.1_312.RULE index 24a485e4dc..87660aaba1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_312.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_312.RULE @@ -6,18 +6,18 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License}}, or (at your option) any later version. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian systems a full copy of the LGPL 2.1 can be found at + On Debian systems a full copy of the {{LGPL 2.1}} can be found at /usr/share/common-licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_313.RULE b/src/licensedcode/data/rules/lgpl-2.1_313.RULE index 9c860c359c..6cbc321b63 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_313.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_313.RULE @@ -8,12 +8,12 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html --- -This file may be used under the terms of the GNU Lesser General Public - License version 2.1 as published by the Free Software Foundation and +This file may be used under the terms of the {{GNU Lesser General Public + License version 2.1}} as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the packaging of this file. - Please review the following information to ensure the GNU Lesser General - Public License version 2.1 requirements will be met: + Please review the following information to ensure the {{GNU Lesser General + Public License version 2.1}} requirements will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. - On Debian systems a full copy of the LGPL 2.1 can be found at + On Debian systems a full copy of the {{LGPL 2.1}} can be found at /usr/share/common-licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_314.RULE b/src/licensedcode/data/rules/lgpl-2.1_314.RULE index 3dfef19252..1ac84f4eae 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_314.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_314.RULE @@ -5,10 +5,10 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the full text of the GNU Lesser General Public License - version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file + On Debian systems, the full text of the {{GNU Lesser General Public License + version 2.1}} can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_316.RULE b/src/licensedcode/data/rules/lgpl-2.1_316.RULE index d41bf36ade..26935cb7b8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_316.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_316.RULE @@ -5,4 +5,4 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html --- -Licensed under the GNU Lesser General Public License v.2.1:http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html \ No newline at end of file +Licensed under the {{GNU Lesser General Public License}} v.2.1:http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_317.RULE b/src/licensedcode/data/rules/lgpl-2.1_317.RULE index 594a4e6a40..7c3ab4a2fe 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_317.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_317.RULE @@ -7,19 +7,19 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License version 2.1 as published by the Free Software Foundation. +modify it under the terms of the {{GNU Lesser General Public +License version 2.1}} as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian GNU/Linux systems, the full text of the GNU Lesser General Public License -version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian GNU/Linux systems, the full text of the {{GNU Lesser General Public License +version 2.1}} can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_318.RULE b/src/licensedcode/data/rules/lgpl-2.1_318.RULE index 5461903751..86cbfa8623 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_318.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_318.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -On Debian GNU/Linux systems, the complete text of the GNU Lesser General Public - License v2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU Lesser General Public + License v2.1}} can be found in `{{/usr/share/common-licenses/LGPL-2.1}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_319.RULE b/src/licensedcode/data/rules/lgpl-2.1_319.RULE index 36fc8f919a..225d966136 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_319.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_319.RULE @@ -7,5 +7,5 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian GNU/Linux systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian GNU/Linux systems, the complete text of the {{GNU Lesser General Public + License version 2.1}} can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_32.RULE b/src/licensedcode/data/rules/lgpl-2.1_32.RULE index fc51121f47..28ef537f0c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_32.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_32.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License version 2 as published by the Free Software Foundation. + modify it under the terms of the {{GNU Lesser General Public + License version 2}} as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_320.RULE b/src/licensedcode/data/rules/lgpl-2.1_320.RULE index ab8db64412..da2219a0d1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_320.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_320.RULE @@ -6,10 +6,10 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian GNU/Linux systems, the full text of the GNU Lesser General Public License - version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file + On Debian GNU/Linux systems, the full text of the {{GNU Lesser General Public License + version 2.1}} can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_321.RULE b/src/licensedcode/data/rules/lgpl-2.1_321.RULE index dedbf04d20..188b3ea30a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_321.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_321.RULE @@ -7,4 +7,4 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian GNU/Linux systems, the full text of the GNU Lesser General Public License version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian GNU/Linux systems, the full text of the {{GNU Lesser General Public License version 2.1}} can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_322.RULE b/src/licensedcode/data/rules/lgpl-2.1_322.RULE index f01e1660df..b8d012715b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_322.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_322.RULE @@ -6,5 +6,5 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian GNU/Linux systems a full copy of the LGPL 2.1 can be found at +On Debian GNU/Linux systems a full copy of the {{LGPL 2.1}} can be found at /usr/share/common-licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_323.RULE b/src/licensedcode/data/rules/lgpl-2.1_323.RULE index 1f9b88dd45..98a41e0cb9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_323.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_323.RULE @@ -6,6 +6,6 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -License: LGPL-2.1 +{{License: LGPL-2.1}} On Debian GNU/Linux systems the full text of the GNU LGPL v2.1 can be found in the `/usr/share/common-licenses/LGPL-2.1' file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_324.RULE b/src/licensedcode/data/rules/lgpl-2.1_324.RULE index 1fbe30f827..bcf36a8f1c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_324.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_324.RULE @@ -9,12 +9,12 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html --- -This file may be used under the terms of the GNU Lesser General Public - License version 2.1 as published by the Free Software Foundation and +This file may be used under the terms of the {{GNU Lesser General Public + License version 2.1}} as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the packaging of this file. - Please review the following information to ensure the GNU Lesser General - Public License version 2.1 requirements will be met: + Please review the following information to ensure the {{GNU Lesser General + Public License version 2.1}} requirements will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. - On Debian GNU/Linux systems a full copy of the LGPL 2.1 can be found at + On Debian GNU/Linux systems a full copy of the {{LGPL 2.1}} can be found at /usr/share/common-licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_325.RULE b/src/licensedcode/data/rules/lgpl-2.1_325.RULE index 7ba533918b..5ae2aae741 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_325.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_325.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -On Debian GNU/Linux systems a full copy of the LGPL 2.1 can be found \ No newline at end of file +On Debian GNU/Linux systems a full copy of the {{LGPL 2.1}} can be found \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_327.RULE b/src/licensedcode/data/rules/lgpl-2.1_327.RULE index 22ac448856..76a8e2679f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_327.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_327.RULE @@ -7,18 +7,18 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. + version 2.1 of the License}}, or (at your option) any later version. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software + You should have received a copy of the {{GNU Lesser General Public + License}} along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . - On Debian GNU/Linux systems a full copy of the LGPL 2.1 can be found at + On Debian GNU/Linux systems a full copy of the {{LGPL 2.1}} can be found at /usr/share/common-licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_329.RULE b/src/licensedcode/data/rules/lgpl-2.1_329.RULE index e8af0b528d..36b7396772 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_329.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_329.RULE @@ -7,4 +7,4 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl-2.1.html --- -LGPL 2.1 https://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file +{{LGPL 2.1}} https://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_330.RULE b/src/licensedcode/data/rules/lgpl-2.1_330.RULE index 535771c18c..ed56ed68db 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_330.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_330.RULE @@ -7,9 +7,9 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html --- -** This file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software +** This file may be used under the terms of the {{GNU Lesser +** General Public License version 2.1}} as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements +** ensure the {{GNU Lesser General Public License version 2.1}} requirements ** will be met: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_331.RULE b/src/licensedcode/data/rules/lgpl-2.1_331.RULE index 16eabfb1c2..114dc00db0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_331.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_331.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl-2.1.html --- -* This code is licensed under LGPL 2.1 +* This code is licensed under {{LGPL 2.1}} * https://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_332.RULE b/src/licensedcode/data/rules/lgpl-2.1_332.RULE index 3ebb3f1ac7..1a2a41cf66 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_332.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_332.RULE @@ -9,12 +9,12 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html --- -This file may be used under the terms of the GNU Lesser General Public - License version 2.1 as published by the Free Software Foundation and +This file may be used under the terms of the {{GNU Lesser General Public + License version 2.1}} as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the packaging of this file. - Please review the following information to ensure the GNU Lesser General - Public License version 2.1 requirements will be met: + Please review the following information to ensure the {{GNU Lesser General + Public License version 2.1}} requirements will be met: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. - On Debian GNU/Linux systems a full copy of the LGPL 2.1 can be found at + On Debian GNU/Linux systems a full copy of the {{LGPL 2.1}} can be found at /usr/share/common-licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_334.RULE b/src/licensedcode/data/rules/lgpl-2.1_334.RULE index 37f5dc4c17..411bc29752 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_334.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_334.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- license: - name: GNU Lesser General Public License, version 2.1 + name: {{GNU Lesser General Public License, version 2.1}} url: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_337.RULE b/src/licensedcode/data/rules/lgpl-2.1_337.RULE index 44748538cb..17fb21f2a8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_337.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_337.RULE @@ -8,15 +8,15 @@ ignorable_urls: --- This program and the accompanying materials - * are made available under the terms of the GNU Lesser General Public License - * (LGPL) version 2.1 which accompanies this distribution, and is available at + * are made available under the terms of the {{GNU Lesser General Public License + * (LGPL) version 2.1}} which accompanies this distribution, and is available at * https://www.gnu.org/licenses/lgpl-2.1.html * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Lesser General Public License}} for more details. * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, you can find it here: + * You should have received a copy of the {{GNU Lesser General Public + * License}} along with this library; if not, you can find it here: * www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_338.RULE b/src/licensedcode/data/rules/lgpl-2.1_338.RULE index 04c3a507c1..cf3747945f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_338.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_338.RULE @@ -8,5 +8,5 @@ ignorable_urls: --- license -GNU Lesser General Public License, version 2.1 +{{GNU Lesser General Public License, version 2.1}} https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_339.RULE b/src/licensedcode/data/rules/lgpl-2.1_339.RULE index 7655218195..3f2c7a8542 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_339.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_339.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl-2.1.html --- -License: LGPL 2.1 (https://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file +{{License: LGPL 2.1}} (https://www.gnu.org/licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_340.RULE b/src/licensedcode/data/rules/lgpl-2.1_340.RULE index ffb5fd4a6a..3591981dae 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_340.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_340.RULE @@ -7,14 +7,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; -version 2.1 of the License (not later!) +version 2.1}} of the License (not later!) This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this program; if not, see \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with this program; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_343.RULE b/src/licensedcode/data/rules/lgpl-2.1_343.RULE index 0029193fcc..592f9cdb67 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_343.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_343.RULE @@ -7,9 +7,9 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html --- -Alternatively, this file may be used under the terms of the GNU Lesser - General Public License version 2.1 as published by the Free Software +Alternatively, this file may be used under the terms of the {{GNU Lesser + General Public License version 2.1}} as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the packaging of this file. Please review the following information to - ensure the GNU Lesser General Public License version 2.1 requirements + ensure the {{GNU Lesser General Public License version 2.1}} requirements will be met: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_344.RULE b/src/licensedcode/data/rules/lgpl-2.1_344.RULE index 3559baf868..520c876845 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_344.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_344.RULE @@ -9,5 +9,5 @@ ignorable_urls: - GNU Lesser General Public License, version 2.1 + {{GNU Lesser General Public License, version 2.1}} https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_347.RULE b/src/licensedcode/data/rules/lgpl-2.1_347.RULE index 3dbe536516..599a436060 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_347.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_347.RULE @@ -9,12 +9,12 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html --- -This file may be used under the terms of the GNU Lesser General Public - License version 2.1 as published by the Free Software Foundation and +This file may be used under the terms of the {{GNU Lesser General Public + License version 2.1}} as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the packaging of this file. - Please review the following information to ensure the GNU Lesser General - Public License version 2.1 requirements will be met: + Please review the following information to ensure the {{GNU Lesser General + Public License version 2.1}} requirements will be met: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. - On Debian systems a full copy of the LGPL 2.1 can be found at + On Debian systems a full copy of the {{LGPL 2.1}} can be found at /usr/share/common-licenses/LGPL-2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_348.RULE b/src/licensedcode/data/rules/lgpl-2.1_348.RULE index 41493f56cb..c24edbc9c5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_348.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_348.RULE @@ -7,10 +7,10 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html --- -* GNU Lesser General Public License Usage -** This file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software +* {{GNU Lesser General Public License}} Usage +** This file may be used under the terms of the {{GNU Lesser +** General Public License version 2.1}} as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements +** ensure the {{GNU Lesser General Public License version 2.1}} requirements ** will be met: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_349.RULE b/src/licensedcode/data/rules/lgpl-2.1_349.RULE index eba7c8a327..bdd9310e53 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_349.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_349.RULE @@ -10,7 +10,7 @@ ignorable_urls: --- * The contents of this file are made available under the terms -* of the GNU Lesser General Public License (LGPL) Version 2.1 that +* of the {{GNU Lesser General Public License (LGPL) Version 2.1}} that * accompanies this distribution (lgpl-v21.txt). The LGPL is also * available at https://www.gnu.org/licenses/lgpl.html. If the version * of the LGPL at https://www.gnu.org is different to the version of diff --git a/src/licensedcode/data/rules/lgpl-2.1_351.RULE b/src/licensedcode/data/rules/lgpl-2.1_351.RULE index fe5b5056d6..42eaab8da3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_351.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_351.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- # This file is licensed under the -# GNU Lesser General Public License v2.1. +# {{GNU Lesser General Public License v2.1}}. # See the file COPYING or visit https://www.gnu.org/ for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_353.RULE b/src/licensedcode/data/rules/lgpl-2.1_353.RULE index 3a9525b32a..d2b0ad6d68 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_353.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_353.RULE @@ -7,12 +7,12 @@ ignorable_urls: --- This header is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published -by the Free Software Foundation, either version 2.1 of the License. +it under the terms of the {{GNU Lesser General Public License as published +by the Free Software Foundation, either version 2.1 of the License}}. This header is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. -You should have received a copy of the GNU Lesser General Public License +{{GNU Lesser General Public License}} for more details. +You should have received a copy of the {{GNU Lesser General Public License}} along with this header. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_354.RULE b/src/licensedcode/data/rules/lgpl-2.1_354.RULE index 958e821c30..34f2ab0ffe 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_354.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_354.RULE @@ -9,7 +9,7 @@ ignorable_urls: - GNU Lesser General Public License, Version 2.1 + {{GNU Lesser General Public License, Version 2.1}} https://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_357.RULE b/src/licensedcode/data/rules/lgpl-2.1_357.RULE index a095cf22c1..01d71df980 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_357.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_357.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html --- -Licensed under the GNU Lesser General Public License v.2.1:https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html \ No newline at end of file +Licensed under the {{GNU Lesser General Public License}} v.2.1:https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_358.RULE b/src/licensedcode/data/rules/lgpl-2.1_358.RULE index 9ea04b299e..3f63a658e3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_358.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_358.RULE @@ -7,9 +7,9 @@ ignorable_urls: - https://www.gnu.org/copyleft/lgpl.html --- -The code contained herein is licensed under the GNU Lesser General -Public License. You may obtain a copy of the GNU Lesser General -Public License Version 2.1 or later at the following locations: +The code contained herein is licensed under the {{GNU Lesser General +Public License}}. You may obtain a copy of the {{GNU Lesser General +Public License Version 2.1}} or later at the following locations: http://www.opensource.org/licenses/lgpl-license.html https://www.gnu.org/copyleft/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_36.RULE b/src/licensedcode/data/rules/lgpl-2.1_36.RULE index cd82587954..8d39677b3d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_36.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_36.RULE @@ -1,8 +1,11 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 --- -GNU Lesser General Public License, version 2.1 \ No newline at end of file +GNU LESSER GENERAL PUBLIC LICENSE + +Version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_360.RULE b/src/licensedcode/data/rules/lgpl-2.1_360.RULE index 5873f1cd0e..046b29eda7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_360.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_360.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt --- -GNU Lesser General Public License, version 2.1 +{{GNU Lesser General Public License, version 2.1}} https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_361.RULE b/src/licensedcode/data/rules/lgpl-2.1_361.RULE index 47225586fb..54289fcf23 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_361.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_361.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl-2.1-standalone.html --- -license 'LGPL-2.1', 'https://www.gnu.org/licenses/lgpl-2.1-standalone.html' \ No newline at end of file +{{license 'LGPL-2.1}}', 'https://www.gnu.org/licenses/lgpl-2.1-standalone.html' \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_362.RULE b/src/licensedcode/data/rules/lgpl-2.1_362.RULE index 8120e02e2b..42d6d03edb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_362.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_362.RULE @@ -9,5 +9,5 @@ ignorable_urls: - GNU Lesser General Public License, Version 2.1 + {{GNU Lesser General Public License, Version 2.1}} https://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_363.RULE b/src/licensedcode/data/rules/lgpl-2.1_363.RULE index 4cd2db8cbf..f4a8df3ce5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_363.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_363.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- This program and the accompanying materials - * are made available under the terms of the GNU Lesser General Public License - * (LGPL) version 2.1 which accompanies this distribution, and is available at + * are made available under the terms of the {{GNU Lesser General Public License + * (LGPL) version 2.1}} which accompanies this distribution, and is available at * https://www.gnu.org/licenses/lgpl-2.1.html * \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_366.RULE b/src/licensedcode/data/rules/lgpl-2.1_366.RULE index 2a21d019a6..5a4d72e5c7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_366.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_366.RULE @@ -9,7 +9,7 @@ ignorable_urls: - GNU Lesser General Public License, version 2.1 + {{GNU Lesser General Public License, version 2.1}} https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_367.RULE b/src/licensedcode/data/rules/lgpl-2.1_367.RULE index d767b1ff48..df3d99cdbe 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_367.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_367.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify it - under the terms of version 2.1 of the GNU Lesser General Public License as + under the terms of {{version 2.1 of the GNU Lesser General Public License}} as published by the Free Software Foundation. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_368.RULE b/src/licensedcode/data/rules/lgpl-2.1_368.RULE index 30302b6994..8a4cbf989d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_368.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_368.RULE @@ -8,16 +8,16 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify it - under the terms of version 2.1 of the GNU Lesser General Public License as + under the terms of {{version 2.1 of the GNU Lesser General Public License}} as published by the Free Software Foundation. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, see . . - On Debian systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file + On Debian systems, the complete text of the {{GNU Lesser General + Public License}} can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_369.RULE b/src/licensedcode/data/rules/lgpl-2.1_369.RULE index 05ba5e9e35..acb75e817a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_369.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_369.RULE @@ -9,7 +9,7 @@ ignorable_urls: --- This library is free software: you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public License + modify it under the terms of the {{GNU Lesser General Public License}} in version 2.1 as published by the Free Software Foundation. . This library is distributed in the hope that it will be useful, @@ -20,5 +20,5 @@ This library is free software: you can redistribute it and/or You should have received a copy of the GNU General Public License along with this program. If not, see . . - On Debian systems, the complete text of the GNU Lesser General Public - License version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file + On Debian systems, the complete text of the {{GNU Lesser General Public + License version 2.1}} can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_371.RULE b/src/licensedcode/data/rules/lgpl-2.1_371.RULE index 538a45161d..cdc1fc69a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_371.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_371.RULE @@ -6,4 +6,4 @@ referenced_filenames: --- On Debian systems, refer to /usr/share/common-licenses/LGPL-2.1 -for the complete text of the GNU Lesser General Public License. \ No newline at end of file +for the complete text of the {{GNU Lesser General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_372.RULE b/src/licensedcode/data/rules/lgpl-2.1_372.RULE index 3579036d73..27b094ec4c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_372.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_372.RULE @@ -9,4 +9,4 @@ library is released under LGPL so that it may be linked with 3rd party software. On Debian systems, refer to /usr/share/common-licenses/LGPL-2.1 -for the complete text of the GNU Lesser General Public License. \ No newline at end of file +for the complete text of the {{GNU Lesser General Public License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_374.RULE b/src/licensedcode/data/rules/lgpl-2.1_374.RULE index 9a83eeb7b7..a048f23154 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_374.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_374.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -On Debian systems, the text of the GNU Lesser General Public - License v2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian systems, the text of the {{GNU Lesser General Public + License v2.1}} can be found in `{{/usr/share/common-licenses/LGPL-2.1}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_375.RULE b/src/licensedcode/data/rules/lgpl-2.1_375.RULE index e58a1bc694..007df5fa57 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_375.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_375.RULE @@ -7,5 +7,5 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian systems, the text of the GNU Lesser General Public - License version 2.1 can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian systems, the text of the {{GNU Lesser General Public + License version 2.1}} can be found in '/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_376.RULE b/src/licensedcode/data/rules/lgpl-2.1_376.RULE index ec837ad7c2..3edc032a9f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_376.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_376.RULE @@ -10,7 +10,7 @@ ignorable_urls: --- This library is free software: you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public License + modify it under the terms of the {{GNU Lesser General Public License}} in version 2.1 as published by the Free Software Foundation. . This library is distributed in the hope that it will be useful, @@ -21,5 +21,5 @@ This library is free software: you can redistribute it and/or You should have received a copy of the GNU General Public License along with this program. If not, see . . - On Debian systems, the text of the GNU Lesser General Public - License version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file + On Debian systems, the text of the {{GNU Lesser General Public + License version 2.1}} can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_378.RULE b/src/licensedcode/data/rules/lgpl-2.1_378.RULE index 87b5b5da57..360171bc97 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_378.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_378.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify it - under the terms of version 2.1 of the GNU Lesser General Public License as + under the terms of {{version 2.1 of the GNU Lesser General Public License}} as published by the Free Software Foundation. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this library; if not, see . . - On Debian systems, the text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file + On Debian systems, the text of the {{GNU Lesser General + Public License}} can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_379.RULE b/src/licensedcode/data/rules/lgpl-2.1_379.RULE index 5ee03eb41b..6aeac0dbd3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_379.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_379.RULE @@ -7,19 +7,19 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License version 2.1 as published by the Free Software Foundation. +modify it under the terms of the {{GNU Lesser General Public +License version 2.1}} as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -On Debian systems, the text of the GNU Lesser General Public License -version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian systems, the text of the {{GNU Lesser General Public License +version 2.1}} can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_38.RULE b/src/licensedcode/data/rules/lgpl-2.1_38.RULE index 56d1241ac9..f165303601 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_38.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_38.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-2.1 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -license: LGPL-2.1 \ No newline at end of file +License: LGPL 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_380.RULE b/src/licensedcode/data/rules/lgpl-2.1_380.RULE index c2f9c1cfd2..73e3e8c96f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_380.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_380.RULE @@ -6,10 +6,10 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. . - On Debian systems, the text of the GNU Lesser General Public License - version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file + On Debian systems, the text of the {{GNU Lesser General Public License + version 2.1}} can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_381.RULE b/src/licensedcode/data/rules/lgpl-2.1_381.RULE index b473429942..caa76cd5b5 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_381.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_381.RULE @@ -7,4 +7,4 @@ referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 --- -On Debian systems, the text of the GNU Lesser General Public License version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian systems, the text of the {{GNU Lesser General Public License version 2.1}} can be found in the file `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_382.RULE b/src/licensedcode/data/rules/lgpl-2.1_382.RULE index 9117768fe8..0c3b467d0f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_382.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_382.RULE @@ -6,8 +6,8 @@ referenced_filenames: --- This module is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License version - 2.1 as published by the Free Software Foundation. + it under the terms of the {{GNU Lesser General Public License version + 2.1}} as published by the Free Software Foundation. This module is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.1_383.RULE b/src/licensedcode/data/rules/lgpl-2.1_383.RULE index 7eed8ea195..43e7b2611d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_383.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_383.RULE @@ -10,5 +10,5 @@ ignorable_urls: You should have received a copy of the GNU General Public License along with this program. If not, see . - On Debian systems, the complete text of the GNU Lesser General - Public License can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file + On Debian systems, the complete text of the {{GNU Lesser General + Public License}} can be found in "/usr/share/common-licenses/LGPL-2.1". \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_385.RULE b/src/licensedcode/data/rules/lgpl-2.1_385.RULE index c94e8874e3..2569449aeb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_385.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_385.RULE @@ -5,5 +5,5 @@ referenced_filenames: - /usr/share/common-licenses/GPL-3 --- -On Debian systems, the complete text of the GNU Lesser General - Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. \ No newline at end of file +On Debian systems, the complete text of the {{GNU Lesser General + Public License}} can be found in `{{/usr/share/common-licenses/LGPL-2.1}}'. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_386.RULE b/src/licensedcode/data/rules/lgpl-2.1_386.RULE index 815694e172..61ead5b484 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_386.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_386.RULE @@ -3,5 +3,5 @@ license_expression: lgpl-2.1 is_license_notice: yes --- -The Library is distributed under the terms of the GNU Lesser General -Public License version 2.1 (included below). \ No newline at end of file +The Library is distributed under the terms of the {{GNU Lesser General +Public License version 2.1}} (included below). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_387.RULE b/src/licensedcode/data/rules/lgpl-2.1_387.RULE index 1ff5809bf9..f78a99d998 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_387.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_387.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is subject to the GNU Lesser General Public License version 2.1 \ No newline at end of file +is subject to the {{GNU Lesser General Public License version 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_388.RULE b/src/licensedcode/data/rules/lgpl-2.1_388.RULE index 088b774867..d316ddce97 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_388.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_388.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -License: LGPL 2.1 (GNU Lesser General Public License, Version 2.1) \ No newline at end of file +{{License: LGPL 2.1}} ({{GNU Lesser General Public License, Version 2.1}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_389.RULE b/src/licensedcode/data/rules/lgpl-2.1_389.RULE index 9eca37d959..196a331ded 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_389.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_389.RULE @@ -6,13 +6,13 @@ ignorable_urls: --- * This program is free software; you can redistribute it and/or - * modify it under the terms of {{version 2.1 of the GNU Lesser}} General - * Public License published by the Free Software Foundation. + * modify it under the terms of {{version 2.1 of the GNU Lesser General + * Public License}} published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. + * {{GNU Lesser General Public License}} for more details. * - * You should have received a copy of the GNU Lesser General Public License + * You should have received a copy of the {{GNU Lesser General Public License}} * along with this program; if not, . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_39.RULE b/src/licensedcode/data/rules/lgpl-2.1_39.RULE index ef6f55e9c2..4ea0f897bd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_39.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_39.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 2.1 + * it under the terms of the {{GNU Lesser General Public License version 2.1}} * as published by the Free Software Foundation * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. \ No newline at end of file + * {{GNU Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_390.RULE b/src/licensedcode/data/rules/lgpl-2.1_390.RULE index e6813cf9a6..f027f3f349 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_390.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_390.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl-2.1.txt --- -GNU Lesser General Public License 2.1 http://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file +{{GNU Lesser General Public License 2.1}} http://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_391.RULE b/src/licensedcode/data/rules/lgpl-2.1_391.RULE index 975f9a34e0..b2a273edf3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_391.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_391.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - The GNU Lesser General Public License, Version 2.1 + The {{GNU Lesser General Public License, Version 2.1}} https://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_392.RULE b/src/licensedcode/data/rules/lgpl-2.1_392.RULE index 9e8a24af77..a6632f33be 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_392.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_392.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - The GNU Lesser General Public License, Version 2.1 + The {{GNU Lesser General Public License, Version 2.1}} http://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_393.RULE b/src/licensedcode/data/rules/lgpl-2.1_393.RULE index 7090cf527a..9bbae1001a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_393.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_393.RULE @@ -7,5 +7,5 @@ ignorable_urls: - The GNU Lesser General Public License, Version 2.1 + The {{GNU Lesser General Public License, Version 2.1}} https://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_394.RULE b/src/licensedcode/data/rules/lgpl-2.1_394.RULE index 1fe566ca32..0f1d9e8c86 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_394.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_394.RULE @@ -7,5 +7,5 @@ ignorable_urls: - The GNU Lesser General Public License, Version 2.1 + The {{GNU Lesser General Public License, Version 2.1}} http://www.gnu.org/licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_395.RULE b/src/licensedcode/data/rules/lgpl-2.1_395.RULE index 867def65ec..a2e5a57319 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_395.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_395.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -LGPL-2.1 GNU Lesser General Public License v2.1 only \ No newline at end of file +{{LGPL-2.1}} {{GNU Lesser General Public License v2.1 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_396.RULE b/src/licensedcode/data/rules/lgpl-2.1_396.RULE index 5ce8de50da..6ea5a3bbed 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_396.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_396.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GNU Lesser General Public License v2.1 only LGPL-2.1 \ No newline at end of file +{{GNU Lesser General Public License v2.1 only}} {{LGPL-2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_397.RULE b/src/licensedcode/data/rules/lgpl-2.1_397.RULE index 9c54177d95..ea93d450a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_397.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_397.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : LGPL-2.1 \ No newline at end of file +licenseid : {{LGPL-2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_398.RULE b/src/licensedcode/data/rules/lgpl-2.1_398.RULE index 3e7880257c..b9850d246f 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_398.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_398.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : GNU Lesser General Public License v2.1 only \ No newline at end of file +name : {{GNU Lesser General Public License v2.1 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_399.RULE b/src/licensedcode/data/rules/lgpl-2.1_399.RULE index 8e0292c18a..0400c79e95 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_399.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_399.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -LGPL-2.1-only GNU Lesser General Public License v2.1 only \ No newline at end of file +{{LGPL-2.1-only}} {{GNU Lesser General Public License v2.1 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_4.RULE b/src/licensedcode/data/rules/lgpl-2.1_4.RULE index 821ad71b8e..7fdf15489c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_4.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_4.RULE @@ -6,9 +6,9 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html --- -Alternatively, this file may be used under the terms of the GNU Lesser - General Public License version 2.1 as published by the Free Software +Alternatively, this file may be used under the terms of the {{GNU Lesser + General Public License version 2.1}} as published by the Free Software Foundation and appearing in the file LICENSE.LGPL included in the packaging of this file. Please review the following information to - ensure the GNU Lesser General Public License version 2.1 requirements + ensure the {{GNU Lesser General Public License version 2.1}} requirements will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_40.RULE b/src/licensedcode/data/rules/lgpl-2.1_40.RULE index 55c3413c86..c0aa2e03d4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_40.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_40.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- license -GNU Lesser General Public License, version 2.1 +{{GNU Lesser General Public License, version 2.1}} http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_400.RULE b/src/licensedcode/data/rules/lgpl-2.1_400.RULE index 01291f2ada..9123452e40 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_400.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_400.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU Lesser General Public License v2.1 only LGPL-2.1-only \ No newline at end of file +{{GNU Lesser General Public License v2.1 only}} {{LGPL-2.1-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_401.RULE b/src/licensedcode/data/rules/lgpl-2.1_401.RULE index b72ec65174..ebb8872430 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_401.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_401.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: LGPL-2.1-only \ No newline at end of file +{{license: LGPL-2.1}}-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_402.RULE b/src/licensedcode/data/rules/lgpl-2.1_402.RULE index f86a0be2c8..67343145ec 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_402.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_402.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GNU Lesser General Public License v2.1 only \ No newline at end of file +license: {{GNU Lesser General Public License v2.1 only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_403.RULE b/src/licensedcode/data/rules/lgpl-2.1_403.RULE index 03b45f131f..4846e03655 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_403.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_403.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: LGPL-2.1-only \ No newline at end of file +licenseId: {{LGPL-2.1-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_408.RULE b/src/licensedcode/data/rules/lgpl-2.1_408.RULE index 26dcca32b6..17a77f488b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_408.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_408.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- You may use, distribute and copy the Qt GUI Toolkit under the terms of - GNU Lesser General Public License version 2.1, which is displayed below. \ No newline at end of file + {{GNU Lesser General Public License version 2.1}}, which is displayed below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_409.RULE b/src/licensedcode/data/rules/lgpl-2.1_409.RULE index c2b01b6830..7e27ef9dc4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_409.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_409.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.1_410.RULE b/src/licensedcode/data/rules/lgpl-2.1_410.RULE index 7ca29ba4cf..1f8ea42765 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_410.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_410.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: LGPL-2.1 \ No newline at end of file +licenses: {{LGPL-2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_411.RULE b/src/licensedcode/data/rules/lgpl-2.1_411.RULE index df86421fa4..d4ac9f88f8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_411.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_411.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: lGPL-2.1-only \ No newline at end of file +licenses: {{lGPL-2.1-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_416.RULE b/src/licensedcode/data/rules/lgpl-2.1_416.RULE index 81f95d0e05..2dbb40c402 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_416.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_416.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -covered under the LGPL_2.1 license \ No newline at end of file +covered under the {{LGPL_2.1 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_417.RULE b/src/licensedcode/data/rules/lgpl-2.1_417.RULE index d87ac03d5e..5c08c3fdfd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_417.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_417.RULE @@ -3,4 +3,4 @@ license_expression: lgpl-2.1 is_license_notice: yes --- -images provided with this release are statically linked with the following [GNU LGPL-2.1][lgpl-2.1] licensed library. \ No newline at end of file +images provided with this release are statically linked with the following [GNU {{LGPL-2.1}}][{{lgpl-2.1}}] licensed library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_418.RULE b/src/licensedcode/data/rules/lgpl-2.1_418.RULE index 47d5428585..e6fed61d7a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_418.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_418.RULE @@ -3,4 +3,4 @@ license_expression: lgpl-2.1 is_license_notice: yes --- -However, in order to comply with the LGPL-2.1 (§6(a)), we attach the complete source code for the library. \ No newline at end of file +However, in order to comply with the {{LGPL-2.1}} (§6(a)), we attach the complete source code for the library. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_419.RULE b/src/licensedcode/data/rules/lgpl-2.1_419.RULE index 9e6a694bd1..838d359ce6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_419.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_419.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html --- -[lgpl-2.1]: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html \ No newline at end of file +[{{lgpl-2.1}}]: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_429.RULE b/src/licensedcode/data/rules/lgpl-2.1_429.RULE index 02a9ced87a..c325a70269 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_429.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_429.RULE @@ -6,8 +6,8 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License 2.1 as published by the Free Software Foundation. +modify it under the terms of the {{GNU Lesser General Public +License 2.1}} as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.1_430.RULE b/src/licensedcode/data/rules/lgpl-2.1_430.RULE index eef0ce76bb..f6eea5e76d 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_430.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_430.RULE @@ -5,4 +5,4 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl-2.1.html --- -License: GNU Lesser General Public License, Version 2.1 (http://www.gnu.org/licenses/lgpl-2.1.html) \ No newline at end of file +License: {{GNU Lesser General Public License, Version 2.1}} (http://www.gnu.org/licenses/lgpl-2.1.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_433.RULE b/src/licensedcode/data/rules/lgpl-2.1_433.RULE index 31a87924a5..b9bc18c3e7 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_433.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_433.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License GNU Lesser General Public License, Version 2.1 \ No newline at end of file +License {{GNU Lesser General Public License, Version 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_434.RULE b/src/licensedcode/data/rules/lgpl-2.1_434.RULE index b1efe4362f..073f5955cb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_434.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_434.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl-2.1.html --- -GNU Lesser General Public License, Version 2.1 (http://www.gnu.org/licenses/lgpl-2.1.html) \ No newline at end of file +{{GNU Lesser General Public License, Version 2.1}} (http://www.gnu.org/licenses/lgpl-2.1.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_435.RULE b/src/licensedcode/data/rules/lgpl-2.1_435.RULE index dd569fc02b..e66c560938 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_435.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_435.RULE @@ -5,4 +5,4 @@ relevance: 100 --- - GNU Lesser General Public License, Version 2.1 \ No newline at end of file + {{GNU Lesser General Public License, Version 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_436.RULE b/src/licensedcode/data/rules/lgpl-2.1_436.RULE index 7fb3b36201..69f203b5f8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_436.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_436.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - GNU Lesser General Public License, Version 2.1 + {{GNU Lesser General Public License, Version 2.1}} (http://www.gnu.org/licenses/lgpl-2.1.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_437.RULE b/src/licensedcode/data/rules/lgpl-2.1_437.RULE index 004687a713..5c4b3e73c0 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_437.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_437.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- - GNU Lesser General Public License Version 2.1, February 1999 + {{GNU Lesser General Public License Version 2.1}}, February 1999 http://jgrapht.sourceforge.net/LGPL.html repo \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_441.RULE b/src/licensedcode/data/rules/lgpl-2.1_441.RULE index 01bd40474e..740bf67b8c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_441.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_441.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +minimum_coverage: 95 is_continuous: yes referenced_filenames: - http://jgrapht.sourceforge.net/LGPL.html @@ -8,4 +9,4 @@ ignorable_urls: - http://jgrapht.sourceforge.net/LGPL.html --- -{{http://jgrapht.sourceforge.net/LGPL.html}} \ No newline at end of file +http://jgrapht.sourceforge.net/LGPL.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_443.RULE b/src/licensedcode/data/rules/lgpl-2.1_443.RULE index 98c6e63aeb..cf1c227182 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_443.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_443.RULE @@ -4,13 +4,13 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, -version 2.1 of the License. +version 2.1}} of the License. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. +You should have received a copy of the {{GNU Lesser General Public +License}} along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_445.RULE b/src/licensedcode/data/rules/lgpl-2.1_445.RULE index f40751249e..b943dc8913 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_445.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_445.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html --- -[GNU Lesser General Public License]: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html \ No newline at end of file +[{{GNU Lesser General Public License}}]: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_446.RULE b/src/licensedcode/data/rules/lgpl-2.1_446.RULE index 8efb808e76..255463a526 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_446.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_446.RULE @@ -6,8 +6,8 @@ ignorable_urls: --- ** This program is free software: you can redistribute it and/or modify -** it under the terms of the GNU Lesser General Public License as -** published by the Free Software Foundation, either version 2.1. This +** it under the terms of the {{GNU Lesser General Public License as +** published by the Free Software Foundation, either version 2.1}}. This ** program is distributed in the hope that it will be useful, but WITHOUT ** ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or ** FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License diff --git a/src/licensedcode/data/rules/lgpl-2.1_448.RULE b/src/licensedcode/data/rules/lgpl-2.1_448.RULE index e3ca36c18d..1ef1dbb3fb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_448.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_448.RULE @@ -6,12 +6,12 @@ ignorable_urls: --- * This header is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation, either version 2.1 + * it under the terms of the {{GNU Lesser General Public License as published + * by the Free Software Foundation, either version 2.1}} * * This header is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * You should have received a copy of the GNU Lesser General Public License + * {{GNU Lesser General Public License}} for more details. + * You should have received a copy of the {{GNU Lesser General Public License}} * along with this header. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_449.RULE b/src/licensedcode/data/rules/lgpl-2.1_449.RULE index 2a2f0a20ef..ea44c64da1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_449.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_449.RULE @@ -6,12 +6,12 @@ ignorable_urls: --- * This library is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation, either version 2.1 of the License. + * it under the terms of the {{GNU Lesser General Public License as published + * by the Free Software Foundation, either version 2.1 of the License}}. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * You should have received a copy of the GNU Lesser General Public License + * {{GNU Lesser General Public License}} for more details. + * You should have received a copy of the {{GNU Lesser General Public License}} * along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_450.RULE b/src/licensedcode/data/rules/lgpl-2.1_450.RULE index 0df1d241b0..a838cad27e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_450.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_450.RULE @@ -6,12 +6,12 @@ ignorable_urls: --- * This library is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published - * by the Free Software Foundation, either version 2.1. + * it under the terms of the {{GNU Lesser General Public License as published + * by the Free Software Foundation, either version 2.1}}. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * You should have received a copy of the GNU Lesser General Public License + * {{GNU Lesser General Public License}} for more details. + * You should have received a copy of the {{GNU Lesser General Public License}} * along with this library. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_451.RULE b/src/licensedcode/data/rules/lgpl-2.1_451.RULE index e141403e4e..8dbd398629 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_451.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_451.RULE @@ -3,4 +3,4 @@ license_expression: lgpl-2.1 is_license_notice: yes --- -The LGPL v2.1 can be found in GNU Lesser General Public License Version 2.1, February 1999. \ No newline at end of file +The LGPL v2.1 can be found in {{GNU Lesser General Public License Version 2.1}}, February 1999. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_452.RULE b/src/licensedcode/data/rules/lgpl-2.1_452.RULE index 901eccb60f..f866fa5513 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_452.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_452.RULE @@ -5,12 +5,12 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl-2.1.html --- -GNU Lesser General Public License Version 2.1, February 1999 +{{GNU Lesser General Public License Version 2.1}}, February 1999 The following applies to all products licensed under the -GNU Lesser General Public License, Version 2.1: You may +{{GNU Lesser General Public License, Version 2.1}}: You may not use the identified files except in compliance with -the GNU Lesser General Public License, Version 2.1 (the +the {{GNU Lesser General Public License, Version 2.1}} (the "License"). You may obtain a copy of the License at http://www.gnu.org/licenses/lgpl-2.1.html. A copy of the license is also reproduced below. Unless required by diff --git a/src/licensedcode/data/rules/lgpl-2.1_453.RULE b/src/licensedcode/data/rules/lgpl-2.1_453.RULE index 4f87f44d22..78392298a9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_453.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_453.RULE @@ -9,16 +9,16 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, version 2.1 of the License. + it under the terms of the {{GNU Lesser General Public License as published by + the Free Software Foundation, version 2.1}} of the License. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. . - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this program. If not, see . . - The complete text of the GNU Lesser General Public License + The complete text of the {{GNU Lesser General Public License}} can be found in /usr/share/common-licenses/GPL-2.1 file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_454.RULE b/src/licensedcode/data/rules/lgpl-2.1_454.RULE index 31a742a571..f3efae77fd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_454.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_454.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt --- -name: GNU Lesser General Public License +name: {{GNU Lesser General Public License}} url: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_455.RULE b/src/licensedcode/data/rules/lgpl-2.1_455.RULE index e5a0ace612..d623bbb821 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_455.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_455.RULE @@ -7,5 +7,5 @@ ignorable_urls: - GNU Lesser General Public License + {{GNU Lesser General Public License}} http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_456.RULE b/src/licensedcode/data/rules/lgpl-2.1_456.RULE index e6753d5a3a..c8221ef051 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_456.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_456.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - GNU Lesser General Public License + {{GNU Lesser General Public License}} http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_457.RULE b/src/licensedcode/data/rules/lgpl-2.1_457.RULE index e9fe84f452..fd77ddb151 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_457.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_457.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt --- -GNU Lesser General Public License +{{GNU Lesser General Public License}} http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_458.RULE b/src/licensedcode/data/rules/lgpl-2.1_458.RULE index 1f39782ab0..e6d39898cf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_458.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_458.RULE @@ -7,7 +7,7 @@ ignorable_urls: - LGPL 2.1 + {{LGPL 2.1}} http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_459.RULE b/src/licensedcode/data/rules/lgpl-2.1_459.RULE index 47c9bf6ae8..3342f51f05 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_459.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_459.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - LGPL 2.1 + {{LGPL 2.1}} http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_46.RULE b/src/licensedcode/data/rules/lgpl-2.1_46.RULE index 7e2f172094..2c4ae0ff40 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_46.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_46.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -are licensed under the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1 \ No newline at end of file +are licensed under the {{GNU LESSER GENERAL PUBLIC LICENSE Version 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_460.RULE b/src/licensedcode/data/rules/lgpl-2.1_460.RULE index 2e20ae44d7..5ca236caee 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_460.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_460.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt --- -LGPL 2.1 +{{LGPL 2.1}} http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_461.RULE b/src/licensedcode/data/rules/lgpl-2.1_461.RULE index beb0a5f3d3..596ede3434 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_461.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_461.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- - LGPL 2.1 + {{LGPL 2.1}} http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_462.RULE b/src/licensedcode/data/rules/lgpl-2.1_462.RULE index 166bc52cfe..53e5c4f0da 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_462.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_462.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt --- -LGPL 2.1 +{{LGPL 2.1}} http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_463.RULE b/src/licensedcode/data/rules/lgpl-2.1_463.RULE index d2821ebc91..0dc314da85 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_463.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_463.RULE @@ -3,5 +3,5 @@ license_expression: lgpl-2.1 is_license_notice: yes --- -Originally licensed under the terms of {{GNU Lesser General Public License}} -as published by the Free Software Foundation, {{version 2.1}} of the license. \ No newline at end of file +Originally licensed under the terms of {{GNU Lesser General Public License +as published by the Free Software Foundation, version 2.1}} of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_464.RULE b/src/licensedcode/data/rules/lgpl-2.1_464.RULE index 03cf978fad..ddc338e4c6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_464.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_464.RULE @@ -3,6 +3,6 @@ license_expression: lgpl-2.1 is_license_notice: yes --- -Originally licensed under the terms of {{GNU Lesser General Public License}} -as published by the Free Software Foundation, {{version 2.1}} of the license. -This is compatible with {{GPL-3.0 license}}. \ No newline at end of file +Originally licensed under the terms of {{GNU Lesser General Public License +as published by the Free Software Foundation, version 2.1}} of the license. +This is compatible with GPL-3.0 license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_468.RULE b/src/licensedcode/data/rules/lgpl-2.1_468.RULE new file mode 100644 index 0000000000..5647a5656d --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_468.RULE @@ -0,0 +1,17 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +--- + +dnl This library is free software; you can redistribute it and/or +dnl modify it under the terms of version 2.1 of the GNU Lesser General +dnl Public License as published by the Free Software Foundation. +dnl +dnl This library is distributed in the hope that it will be useful, +dnl but WITHOUT ANY WARRANTY; without even the implied warranty of +dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +dnl Lesser General Public License for more details. +dnl +dnl You should have received a copy of the GNU Lesser General Public +dnl License along with this library; if not, write to the Free Software +dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_47.RULE b/src/licensedcode/data/rules/lgpl-2.1_47.RULE index ba965a5667..4a1cb92977 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_47.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_47.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This is free software; see lgpl-2.1.txt \ No newline at end of file +This is free software; see {{lgpl-2.1}}.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_48.RULE b/src/licensedcode/data/rules/lgpl-2.1_48.RULE index a1801bff5d..6c082a1b0b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_48.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_48.RULE @@ -6,6 +6,6 @@ referenced_filenames: - COPYING.LIB --- -This file is subject to the terms and conditions of the GNU Lesser -General Public License. See the file "COPYING.LIB" in the main +This file is subject to the terms and conditions of the {{GNU Lesser +General Public License}}. See the file "COPYING.LIB" in the main directory of this archive for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_50.RULE b/src/licensedcode/data/rules/lgpl-2.1_50.RULE index d079ddd70a..39bb0fa1e2 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_50.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_50.RULE @@ -6,14 +6,14 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; -version 2.1 of the License (not later!) +version 2.1}} of the License (not later!) This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this program; if not, see \ No newline at end of file +You should have received a copy of the {{GNU Lesser General Public +License}} along with this program; if not, see \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_51.RULE b/src/licensedcode/data/rules/lgpl-2.1_51.RULE index d1f3a29d7c..2807f58cdb 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_51.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_51.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public License + modify it under the terms of the {{GNU Lesser General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it would be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. + {{GNU Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public License + You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA / \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_52.RULE b/src/licensedcode/data/rules/lgpl-2.1_52.RULE index 183cc79fa1..eaf2b2c1e6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_52.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_52.RULE @@ -6,12 +6,12 @@ ignorable_urls: --- This header is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published -by the Free Software Foundation, either version 2.1 of the License. +it under the terms of the {{GNU Lesser General Public License as published +by the Free Software Foundation, either version 2.1 of the License}}. This header is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. -You should have received a copy of the GNU Lesser General Public License +{{GNU Lesser General Public License}} for more details. +You should have received a copy of the {{GNU Lesser General Public License}} along with this header. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_53.RULE b/src/licensedcode/data/rules/lgpl-2.1_53.RULE index 3b522aaa57..605301529b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_53.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_53.RULE @@ -4,8 +4,8 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify -it under the terms of version 2.1 of the GNU Lesser General Public -License as published by the Free Software Foundation. +it under the terms of {{version 2.1 of the GNU Lesser General Public +License}} as published by the Free Software Foundation. This program is distributed in the hope that it would be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-2.1_54.RULE b/src/licensedcode/data/rules/lgpl-2.1_54.RULE index f262d6c3ca..f90ff3d273 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_54.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_54.RULE @@ -5,14 +5,14 @@ minimum_coverage: 80 --- This program is free software; you can redistribute it and/or modify -it under the terms of version 2.1 of the GNU Lesser General Public -License as published by the Free Software Foundation. +it under the terms of {{version 2.1 of the GNU Lesser General Public +License}} as published by the Free Software Foundation. This program is distributed in the hope that it would be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -You should have received a copy of the GNU Lesser General Public -License along with this program; if not, write the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this program; if not, write the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_55.RULE b/src/licensedcode/data/rules/lgpl-2.1_55.RULE index 34acfc3634..723c81a019 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_55.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_55.RULE @@ -6,9 +6,9 @@ ignorable_urls: - http://www.opensource.org/licenses/lgpl-license.html --- -The code contained herein is licensed under the GNU Lesser General -Public License. You may obtain a copy of the GNU Lesser General -Public License Version 2.1 or later at the following locations: +The code contained herein is licensed under the {{GNU Lesser General +Public License}}. You may obtain a copy of the {{GNU Lesser General +Public License Version 2.1}} or later at the following locations: http://www.opensource.org/licenses/lgpl-license.html http://www.gnu.org/copyleft/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_56.RULE b/src/licensedcode/data/rules/lgpl-2.1_56.RULE index 06a942e035..0632da2a9b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_56.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_56.RULE @@ -4,15 +4,15 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; -version 2.1 of the License (not later!) +version 2.1}} of the License (not later!) This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public -License along with this program; if not, write to the Free Software +You should have received a copy of the {{GNU Lesser General Public +License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_57.RULE b/src/licensedcode/data/rules/lgpl-2.1_57.RULE index 91e40a82ad..8b03ed16a6 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_57.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_57.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms of version 2.1 of the GNU Lesser General Public License +under the terms of {{version 2.1 of the GNU Lesser General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, diff --git a/src/licensedcode/data/rules/lgpl-2.1_58.RULE b/src/licensedcode/data/rules/lgpl-2.1_58.RULE index 31f57b0c2b..9b806be82c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_58.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_58.RULE @@ -6,6 +6,6 @@ referenced_filenames: --- This is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License version 2.1, as published by the Free Software + modify it under the terms of the {{GNU Lesser General Public + License version 2.1}}, as published by the Free Software Foundation. See file COPYING. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_59.RULE b/src/licensedcode/data/rules/lgpl-2.1_59.RULE index 63913e8063..1644dc0e30 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_59.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_59.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This code is free software; you can redistribute it and/or modify - it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE - version 2.1 as published by the Free Software Foundation. + it under the terms of the {{GNU LESSER GENERAL PUBLIC LICENSE + version 2.1}} as published by the Free Software Foundation. This code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU LESSER GENERAL PUBLIC LICENSE for more details. \ No newline at end of file + {{GNU LESSER GENERAL PUBLIC LICENSE}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_60.RULE b/src/licensedcode/data/rules/lgpl-2.1_60.RULE index 3c2f25a91b..151b1bb29c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_60.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_60.RULE @@ -5,5 +5,5 @@ is_license_notice: yes Code adapted from uClibc - It is therefore covered by the GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 \ No newline at end of file + It is therefore covered by the {{GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1}}, February 1999 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_61.RULE b/src/licensedcode/data/rules/lgpl-2.1_61.RULE index 6878ca35c3..fbb4fc54f4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_61.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_61.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -It is therefore covered by the GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 \ No newline at end of file +It is therefore covered by the {{GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1}}, February 1999 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_64.RULE b/src/licensedcode/data/rules/lgpl-2.1_64.RULE index f6cb475b44..929d0b9fc3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_64.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_64.RULE @@ -3,5 +3,5 @@ license_expression: lgpl-2.1 is_license_notice: yes --- -This file is subject to the terms and conditions of version 2.1 of the GNU -Lesser General Public License as published by the Free Software Foundation. \ No newline at end of file +This file is subject to the terms and conditions of {{version 2.1 of the GNU +Lesser General Public License}} as published by the Free Software Foundation. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_65.RULE b/src/licensedcode/data/rules/lgpl-2.1_65.RULE index 879d16d9bf..2294da22fa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_65.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_65.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; - version 2.1 of the License. + version 2.1}} of the License. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. \ No newline at end of file + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_66.RULE b/src/licensedcode/data/rules/lgpl-2.1_66.RULE index e79133d6ee..8c55823e47 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_66.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_66.RULE @@ -6,16 +6,16 @@ ignorable_urls: --- This is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as - published by the Free Software Foundation; version 2.1 of + under the terms of the {{GNU Lesser General Public License as + published by the Free Software Foundation; version 2.1}} of the License This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + Lesser General Public License}} for more details. - You should have received a copy of the GNU Lesser General Public - License along with this software; if not, write to the Free + You should have received a copy of the {{GNU Lesser General Public + License}} along with this software; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA, or see the FSF site: http://www.fsf.org. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_7.RULE b/src/licensedcode/data/rules/lgpl-2.1_7.RULE index e091f6cc3c..770ab377a3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_7.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_7.RULE @@ -7,8 +7,8 @@ ignorable_holders: - Free Software Foundation, Inc. --- -GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 +{{GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1}}, February 1999 Copyright (C) 1991, 1999 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA @@ -73,8 +73,8 @@ any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license. Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and +ordinary GNU General Public License. This license, the {{GNU Lesser +General Public License}}, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs. @@ -121,7 +121,7 @@ modification follow. Pay close attention to the difference between a former contains code derived from the library, whereas the latter must be combined with the library in order to run. - GNU LESSER GENERAL PUBLIC LICENSE + {{GNU LESSER GENERAL PUBLIC LICENSE}} TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any software library or other @@ -302,6 +302,6 @@ convey the exclusion of warranty; and each file should have at least the Copyright (C) This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later versi \ No newline at end of file + version 2.1 of the License}}, or (at your option) any later versi \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_72.RULE b/src/licensedcode/data/rules/lgpl-2.1_72.RULE index 19b1090951..15178dd1af 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_72.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_72.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://www.gnu.org/licenses/lgpl-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_76.RULE b/src/licensedcode/data/rules/lgpl-2.1_76.RULE index 0c2a6e48ca..7fd4392dba 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_76.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_76.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://www.opensource.org/licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_78.RULE b/src/licensedcode/data/rules/lgpl-2.1_78.RULE index 40eb2c358b..3b5153adb3 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_78.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_78.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.1_79.RULE b/src/licensedcode/data/rules/lgpl-2.1_79.RULE index 7ab6f9f206..92ec0177f4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_79.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_79.RULE @@ -12,6 +12,6 @@ the Free Software Foundation) version 2.1 dated February 1999. WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and conditions of the GNU General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License +# You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_80.RULE b/src/licensedcode/data/rules/lgpl-2.1_80.RULE index 5225a0ea7c..d9ae03ab1b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_80.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_80.RULE @@ -10,6 +10,6 @@ the Free Software Foundation) version 2.1 dated February 1999. WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and conditions of the GNU General Public License for more details. -# You should have received a copy of the GNU Lesser General Public License +# You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_81.RULE b/src/licensedcode/data/rules/lgpl-2.1_81.RULE index e00c7a8426..2d0393e13a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_81.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_81.RULE @@ -6,6 +6,6 @@ relevance: 99 Copyright: -/usr/share/common-licenses/LGPL-2.1 +{{/usr/share/common-licenses/LGPL-2.1}} OpenSceneGraph Public License, Version 0.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_82.RULE b/src/licensedcode/data/rules/lgpl-2.1_82.RULE index c548d68a17..348ee5421e 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_82.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_82.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 referenced_filenames: - /usr/share/common-licenses/LGPL-2.1 diff --git a/src/licensedcode/data/rules/lgpl-2.1_84.RULE b/src/licensedcode/data/rules/lgpl-2.1_84.RULE index a221272cdf..4f06f915f8 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_84.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_84.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-2.1_85.RULE b/src/licensedcode/data/rules/lgpl-2.1_85.RULE index f7d5621864..b23549f0fa 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_85.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_85.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-2.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -LGPL-2.1 \ No newline at end of file +lgpl 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_86.RULE b/src/licensedcode/data/rules/lgpl-2.1_86.RULE index bcdc0cebf0..437667048c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_86.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_86.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://choosealicense.com/licenses/lgpl-2.1 --- -License: [`lgpl-2.1`](http://choosealicense.com/licenses/lgpl-2.1/) \ No newline at end of file +{{License: [`lgpl-2.1}}`](http://choosealicense.com/licenses/lgpl-2.1/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_87.RULE b/src/licensedcode/data/rules/lgpl-2.1_87.RULE index fea085cde2..ea3c3d59bf 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_87.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_87.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -That is released under GNU Lesser -General Public License \ No newline at end of file +That is released under {{GNU Lesser +General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_89.RULE b/src/licensedcode/data/rules/lgpl-2.1_89.RULE index 30ed20ad14..05fa3800c1 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_89.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_89.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as -published by the Free Software Foundation; version 2.1 of the License. +it under the terms of the {{GNU Lesser General Public License as +published by the Free Software Foundation; version 2.1}} of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. -You should have received a copy of the GNU Lesser General Public -License along with this program; if not, write to the Free Software +{{GNU Lesser General Public License}} for more details. +You should have received a copy of the {{GNU Lesser General Public +License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_90.RULE b/src/licensedcode/data/rules/lgpl-2.1_90.RULE index 60903b963f..08b782b358 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_90.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_90.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation version 2.1 + * modify it under the terms of the {{GNU Lesser General Public + * License as published by the Free Software Foundation version 2.1}} * of the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_91.RULE b/src/licensedcode/data/rules/lgpl-2.1_91.RULE index 55edc7c81f..09a589116b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_91.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_91.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -// SPDX-License-Identifier: LGPL-2.1 +// SPDX-License-Identifier: {{LGPL-2.1}} /* * * The parts for function graph printing was taken and modified from the diff --git a/src/licensedcode/data/rules/lgpl-2.1_92.RULE b/src/licensedcode/data/rules/lgpl-2.1_92.RULE index 1e48036aef..6f60d7cf3b 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_92.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_92.RULE @@ -4,10 +4,10 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or modify it -under the terms and conditions of the GNU Lesser General Public License, -version 2.1, as published by the Free Software Foundation. +under the terms and conditions of the {{GNU Lesser General Public License, +version 2.1}}, as published by the Free Software Foundation. This program is distributed in the hope it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_93.RULE b/src/licensedcode/data/rules/lgpl-2.1_93.RULE index 83edc32145..7b836c9cf4 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_93.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_93.RULE @@ -4,11 +4,11 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; only +modify it under the terms of the {{GNU Lesser General Public +License}} as published by the Free Software Foundation; only version 2.1 of the License. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. \ No newline at end of file +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU +Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_95.RULE b/src/licensedcode/data/rules/lgpl-2.1_95.RULE index 7c671961f5..9e388defdd 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_95.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_95.RULE @@ -5,4 +5,4 @@ is_license_notice: yes // This code is a derivative work of the LGPL code at -// License: LGPL 2.1 (same terms as original code) \ No newline at end of file +// {{License: LGPL 2.1}} (same terms as original code) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_96.RULE b/src/licensedcode/data/rules/lgpl-2.1_96.RULE index c7164f6f8a..7097eaee28 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_96.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_96.RULE @@ -6,5 +6,5 @@ relevance: 100 # This is free software, licensed under: # -# The GNU Lesser General Public License, Version 2.1, February 1999 +# The {{GNU Lesser General Public License, Version 2.1}}, February 1999 # \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_97.RULE b/src/licensedcode/data/rules/lgpl-2.1_97.RULE index be969b05f1..92c4fa751c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_97.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_97.RULE @@ -7,15 +7,15 @@ ignorable_urls: --- This program and the accompanying materials - * are made available under the terms of the GNU Lesser General Public License - * (LGPL) version 2.1 which accompanies this distribution, and is available at + * are made available under the terms of the {{GNU Lesser General Public License + * (LGPL) version 2.1}} which accompanies this distribution, and is available at * http://www.gnu.org/licenses/lgpl-2.1.html * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Lesser General Public License}} for more details. * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, you can find it here: + * You should have received a copy of the {{GNU Lesser General Public + * License}} along with this library; if not, you can find it here: * www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_98.RULE b/src/licensedcode/data/rules/lgpl-2.1_98.RULE index 1db052adfd..bdf3a9a223 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_98.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_98.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- This program and the accompanying materials - * are made available under the terms of the GNU Lesser General Public License - * (LGPL) version 2.1 which accompanies this distribution, and is available at + * are made available under the terms of the {{GNU Lesser General Public License + * (LGPL) version 2.1}} which accompanies this distribution, and is available at * http://www.gnu.org/licenses/lgpl-2.1.html * \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_99.RULE b/src/licensedcode/data/rules/lgpl-2.1_99.RULE index 8f3e1203d1..559484a34a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_99.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_99.RULE @@ -9,7 +9,7 @@ ignorable_urls: --- * The contents of this file are made available under the terms -* of the GNU Lesser General Public License (LGPL) Version 2.1 that +* of the {{GNU Lesser General Public License (LGPL) Version 2.1}} that * accompanies this distribution (lgpl-v21.txt). The LGPL is also * available at http://www.gnu.org/licenses/lgpl.html. If the version * of the LGPL at http://www.gnu.org is different to the version of diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_apache-2.0.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_apache-2.0.RULE index a26f0c50c0..b6131e9b14 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_apache-2.0.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_apache-2.0.RULE @@ -6,15 +6,15 @@ is_license_notice: yes License Agreement. * * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1 as published by the Free Software Foundation. + * modify it under the terms of the {{GNU Lesser General Public + * License version 2.1}} as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU + * Lesser General Public License}} for more details. * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software + * You should have received a copy of the {{GNU Lesser General Public + * License}} along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_and_commons-clause_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_and_commons-clause_1.RULE index c7c12aaaf1..3793fb6035 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_and_commons-clause_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_and_commons-clause_1.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: this is a likely license conflict, seen in semgrep --- -license: Commons Clause License Condition v1.0[LGPL-2.1-only] \ No newline at end of file +license: {{Commons Clause License Condition v1.0[LGPL-2.1-only]}} diff --git a/src/licensedcode/data/rules/lgpl-2.1_f2fs_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_f2fs_1.RULE index 1368903c1f..6c90eb283a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_f2fs_1.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_f2fs_1.RULE @@ -5,4 +5,4 @@ minimum_coverage: 99 --- The byteswap codes are copied from: - * samba_3_master/lib/ccan/endian/endian.h under LGPL 2.1 \ No newline at end of file + * samba_3_master/lib/ccan/endian/endian.h under {{LGPL 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_notice.RULE b/src/licensedcode/data/rules/lgpl-2.1_notice.RULE index 639df6455f..9427347a1c 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_notice.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_notice.RULE @@ -6,11 +6,11 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as published by +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or -(at your option) any later version. (See .) +(at your option) any later version}}. (See .) This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -See the GNU Lesser General Public License for more details. \ No newline at end of file +See the {{GNU Lesser General Public License}} for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_only_qt_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_only_qt_2.RULE index db382ea21d..b2b9c636e9 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_only_qt_2.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_only_qt_2.RULE @@ -6,10 +6,10 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html --- -* GNU Lesser General Public License Usage -** This file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software +* {{GNU Lesser General Public License}} Usage +** This file may be used under the terms of the {{GNU Lesser +** General Public License version 2.1}} as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements +** ensure the {{GNU Lesser General Public License version 2.1}} requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_only_qt_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_only_qt_3.RULE index 710d883b11..73814daf24 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_only_qt_3.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_only_qt_3.RULE @@ -6,9 +6,9 @@ ignorable_urls: - http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html --- -** This file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software +** This file may be used under the terms of the {{GNU Lesser +** General Public License version 2.1}} as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements +** ensure the {{GNU Lesser General Public License version 2.1}} requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_released.RULE b/src/licensedcode/data/rules/lgpl-2.1_released.RULE index 8226b105c7..8e7326e02a 100644 --- a/src/licensedcode/data/rules/lgpl-2.1_released.RULE +++ b/src/licensedcode/data/rules/lgpl-2.1_released.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -* Released under the terms of the GNU Lesser General Public License Version 2.1 \ No newline at end of file +* Released under the terms of the {{GNU Lesser General Public License Version 2.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_required_phrase_1.RULE b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_1.RULE new file mode 100644 index 0000000000..2c784266f2 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_1.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public +License as published by the Free Software Foundation version +2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_required_phrase_10.RULE b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_10.RULE new file mode 100644 index 0000000000..af02942335 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_10.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Version 2.1 of GNU Lesser General Public License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_required_phrase_11.RULE b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_11.RULE new file mode 100644 index 0000000000..65c3ecdd7d --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_11.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License as published by Free Software Foundation; either version 2.1 of License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_required_phrase_2.RULE b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_2.RULE new file mode 100644 index 0000000000..44a108b2f4 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_2.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License as +** published by the Free Software Foundation, either version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_required_phrase_3.RULE b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_3.RULE new file mode 100644 index 0000000000..83ef8160e4 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_3.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_required_phrase_4.RULE b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_4.RULE new file mode 100644 index 0000000000..c365dcbc5d --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_4.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License 2.1 (LGPL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_required_phrase_5.RULE b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_5.RULE new file mode 100644 index 0000000000..0c1dd54223 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_5.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_required_phrase_6.RULE b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_6.RULE new file mode 100644 index 0000000000..ff81fd4d26 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_6.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-2.1 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU LESSER GENERAL PUBLIC LICENSE +(LGPL)Version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_required_phrase_7.RULE b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_7.RULE new file mode 100644 index 0000000000..76d0c9fe3c --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_7.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License as published by Free Software Foundation version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_required_phrase_8.RULE b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_8.RULE new file mode 100644 index 0000000000..73ba04d2b4 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License as ** published by Free Software Foundation, either version 2.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-2.1_required_phrase_9.RULE b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_9.RULE new file mode 100644 index 0000000000..ffd43994bc --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-2.1_required_phrase_9.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-2.1 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu lesser general public license as published by free software foundation either version 2 1 of the license \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_1.RULE index 7b57a15585..5663b7fc20 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_1.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_100.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_100.RULE index c97db142a1..73110f60f4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_100.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_100.RULE @@ -8,8 +8,8 @@ ignorable_urls: The GNU MP Library test suite is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as -published by the Free Software Foundation; either version 3 of the License, -or (at your option) any later version. +published by the Free Software Foundation; either {{version 3 of the License, +or (at your option) any later version}}. The GNU MP Library test suite is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_101.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_101.RULE index 7e94c9e46b..6b2e92db35 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_101.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_101.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- The GNU MP Library is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at -your option) any later version. +your option) any later version}}. The GNU MP Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_102.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_102.RULE index bc1d9bc849..3b0c473e9b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_102.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_102.RULE @@ -9,4 +9,4 @@ referenced_filenames: License -The source code is released under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Please refer to the included files COPYING and COPYING.LESSER. \ No newline at end of file +The source code is released under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. Please refer to the included files COPYING and COPYING.LESSER. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_103.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_103.RULE index d1f01b491b..b5479ba5ef 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_103.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_103.RULE @@ -6,4 +6,4 @@ relevance: 100 License -The source code is released under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. \ No newline at end of file +The source code is released under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_104.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_104.RULE index 1853cccbdb..09b98853a9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_104.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_104.RULE @@ -7,4 +7,4 @@ referenced_filenames: - COPYING.LESSER --- -The source code is released under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Please refer to the included files COPYING and COPYING.LESSER. \ No newline at end of file +The source code is released under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. Please refer to the included files COPYING and COPYING.LESSER. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_105.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_105.RULE index 7ffb40f0a7..506b87afb1 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_105.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_105.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -license GNU Lesser General Public License, version 3 or later \ No newline at end of file +license {{GNU Lesser General Public License, version 3 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_106.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_106.RULE index 4caff43961..dbb07bb80d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_106.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_106.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- * AutoOpts is free software: you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published + * under the terms of the {{GNU Lesser General Public License as published * by the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * AutoOpts is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_113.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_113.RULE index fc557f48c3..7514c66daa 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_113.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_113.RULE @@ -5,9 +5,9 @@ relevance: 100 --- # is free software: you can redistribute it and/or modify it -# under the terms of the GNU Lesser General Public License as published +# under the terms of the {{GNU Lesser General Public License as published # by the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_114.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_114.RULE index 9c037ca7b4..69781b4ae7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_114.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_114.RULE @@ -5,9 +5,9 @@ relevance: 100 --- # pysycopg2 is free software: you can redistribute it and/or modify it -# under the terms of the GNU Lesser General Public License as published +# under the terms of the {{GNU Lesser General Public License as published # by the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # pysycopg2 is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_115.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_115.RULE index f17506d94f..11ede55a7d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_115.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_115.RULE @@ -5,6 +5,6 @@ relevance: 100 --- psycopg2 is free software: you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as published +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. \ No newline at end of file +(at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_116.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_116.RULE index 0e91df29ce..0f26bca9db 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_116.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_116.RULE @@ -5,6 +5,6 @@ relevance: 100 --- is free software: you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as published +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. \ No newline at end of file +(at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_117.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_117.RULE index 2d3b6c2252..0b69d33dde 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_117.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_117.RULE @@ -5,9 +5,9 @@ relevance: 100 --- # psycopg2 is free software: you can redistribute it and/or modify it -# under the terms of the GNU Lesser General Public License as published +# under the terms of the {{GNU Lesser General Public License as published # by the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# (at your option) any later version}}. # # psycopg2 is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_118.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_118.RULE index 50fa0d0fad..56888136a6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_118.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_118.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the Lesser GNU General Public License as published by +it under the terms of the {{Lesser GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_119.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_119.RULE index 55cd43b426..0b23d7e18b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_119.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_119.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the Lesser GNU General Public License as published by +it under the terms of the {{Lesser GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_12.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_12.RULE index 6a6a26b452..40e5c66f63 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_12.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_12.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- this library is free software: you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as published by the +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) -any later version. +any later version}}. this library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_131.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_131.RULE index 81c3fa7fd3..f7c7965ffa 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_131.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_131.RULE @@ -8,9 +8,9 @@ ignorable_urls: --- %s is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. %s is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_138.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_138.RULE index ec7505c26a..153e5cca4f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_138.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_138.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- The GNU Library is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your -option) any later version. +option) any later version}}. The GNU Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_139.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_139.RULE index c42e42ca3c..cf0aa05f8b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_139.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_139.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- The GNU MPFR Library is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your -option) any later version. +option) any later version}}. The GNU MPFR Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_14.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_14.RULE index a1ab52039a..dfa5577fbd 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_14.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_14.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_140.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_140.RULE index b9d7741739..f60958dd41 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_140.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_140.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- The GNU MPFR Library is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your -option) any later version. +option) any later version}}. The GNU MPFR Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_141.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_141.RULE index 8560e940df..4e98c66990 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_141.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_141.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -components licensed under LGPL 3.0+ \ No newline at end of file +components {{licensed under LGPL 3.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_142.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_142.RULE index aa5422768c..65832613af 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_142.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_142.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0-plus is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_15.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_15.RULE index 052f95c40c..7327f12261 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_15.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_15.RULE @@ -7,9 +7,9 @@ ignorable_urls: * * This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License as published +* it under the terms of the {{GNU Lesser General Public License as published * by the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. +* (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_150.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_150.RULE index 388945b8e9..70851a9abb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_150.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_150.RULE @@ -10,8 +10,8 @@ ignorable_urls: The Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 3 of the -License, or (at your option) any later version. +published by the Free Software Foundation; either {{version 3 of the +License, or (at your option) any later version}}. The Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_151.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_151.RULE index 8eeb1c0340..576acc83c0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_151.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_151.RULE @@ -10,8 +10,8 @@ ignorable_urls: The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 3 of the -License, or (at your option) any later version. +published by the Free Software Foundation; either {{version 3 of the +License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_152.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_152.RULE index aa88e40a85..90b0362795 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_152.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_152.RULE @@ -10,8 +10,8 @@ ignorable_urls: The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 3 of the -License, or (at your option) any later version. +published by the Free Software Foundation; either {{version 3 of the +License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_161.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_161.RULE index 5a8a5058e6..2d24b87440 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_161.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_161.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_162.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_162.RULE index b7c89a9efa..8aaacc7561 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_162.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_162.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_163.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_163.RULE index e7572783d4..f65a2dba7b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_163.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_163.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_164.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_164.RULE index 617310a1a9..b6f00a7b76 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_164.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_164.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_167.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_167.RULE index f682e99f50..06d935adb4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_167.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_167.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_168.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_168.RULE index 12cea2b7b5..ecc4e6cdc8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_168.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_168.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_169.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_169.RULE index 97d7125267..fd5a2e030b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_169.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_169.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_17.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_17.RULE index ecdf97fc1f..81b1eda417 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_17.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_17.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU Lesser General Public License, Version 3 or later \ No newline at end of file +GNU Lesser General Public License, version 3 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_170.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_170.RULE index 200f371fbf..7fbf925092 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_170.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_170.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_171.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_171.RULE index ba52bb86b9..9427e4e766 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_171.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_171.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_172.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_172.RULE index fb59993fb7..348306851a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_172.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_172.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_173.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_173.RULE index 217f2466a1..fa85521113 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_173.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_173.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_174.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_174.RULE index cd205359e7..78751ed368 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_174.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_174.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_178.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_178.RULE index a468a8c107..d032c6ca69 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_178.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_178.RULE @@ -8,9 +8,9 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_179.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_179.RULE index 1ecdc6b56e..d6bc3b0641 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_179.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_179.RULE @@ -5,9 +5,9 @@ relevance: 100 --- This file is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_18.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_18.RULE index dbe9e95c88..46f8dc20de 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_18.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_18.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- * is free software: you can redistribute it and/or modify it under - * the terms of the GNU Lesser General Public License as published by the + * the terms of the {{GNU Lesser General Public License as published by the * Free Software Foundation, either version 3 of the License, or (at your - * option) any later version. + * option) any later version}}. * * is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_184.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_184.RULE index 3cd5c77567..f8708de06d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_184.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_184.RULE @@ -8,8 +8,8 @@ referenced_filenames: The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 3 of the -License, or (at your option) any later version. +published by the Free Software Foundation; either {{version 3 of the +License, or (at your option) any later version}}. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_187.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_187.RULE index 4fcb87da1b..350e4b1554 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_187.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_187.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_188.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_188.RULE index ce10948c44..c5e38effe6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_188.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_188.RULE @@ -4,9 +4,9 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. + version 3 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_189.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_189.RULE index d56df02c43..b43953394d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_189.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_189.RULE @@ -6,9 +6,9 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. + version 3 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_19.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_19.RULE index 6ba27e4b6b..77e2e42cb0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_19.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_19.RULE @@ -8,8 +8,8 @@ notes: a damaged notice using library rather than lesser This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 3 of the -License, or (at your option) any later version. +published by the Free Software Foundation; either {{version 3 of the +License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_191.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_191.RULE index b337f3c63b..a226c28ed8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_191.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_191.RULE @@ -8,9 +8,9 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_192.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_192.RULE index c8cb238ca0..d46bdb30ce 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_192.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_192.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_193.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_193.RULE index 71108751cf..aeef4eac6b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_193.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_193.RULE @@ -8,9 +8,9 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_194.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_194.RULE index 148d7c8d3c..b6610df58b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_194.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_194.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- The nettle library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your - option) any later version. + option) any later version}}. . GNU Nettle is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_195.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_195.RULE index a64f2d9678..aa18214771 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_195.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_195.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- The nettle library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your - option) any later version. + option) any later version}}. . GNU Nettle is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_196.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_196.RULE index 0eb676ce28..5eb48327f6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_196.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_196.RULE @@ -8,9 +8,9 @@ ignorable_urls: --- The nettle library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your - option) any later version. + option) any later version}}. . GNU Nettle is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_197.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_197.RULE index 5e14bd2290..e9d4c56fa9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_197.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_197.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_198.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_198.RULE index 5cc67793b1..267ea409c9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_198.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_198.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_199.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_199.RULE index 69242e6917..350c58bb1c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_199.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_199.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_20.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_20.RULE index 51f5731ac5..fc2a2714ca 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_20.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_20.RULE @@ -4,6 +4,6 @@ is_license_notice: yes --- Collection Library is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. \ No newline at end of file + (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_200.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_200.RULE index ed38bc942f..3027a94a1f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_200.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_200.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_201.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_201.RULE index 649fa51937..8fa954e725 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_201.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_201.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_203.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_203.RULE index 32675a80bd..9da26977ed 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_203.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_203.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_205.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_205.RULE index 5b06935922..efe24f0fe7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_205.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_205.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. + version 3 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_206.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_206.RULE index d934442108..0958f21ca6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_206.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_206.RULE @@ -8,9 +8,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. + version 3 of the License, or (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_208.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_208.RULE index b6a4d913a2..b2172fbd02 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_208.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_208.RULE @@ -10,9 +10,9 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_209.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_209.RULE index 37c4ae8476..fb64d46aa6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_209.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_209.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_21.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_21.RULE index 82de87aa07..b185d04ff0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_21.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_21.RULE @@ -9,10 +9,10 @@ ignorable_urls: t "This library is free software; you can redistribute it and/or" - "modify it under the terms of the GNU Lesser General Public" + "modify it under the terms of the {{GNU Lesser General Public" "License as published by the Free Software Foundation; either" "version 3 of the License, or (at your option) any later" - "version." + "version}}." "" "This library is distributed in the hope that it will be" "useful, but WITHOUT ANY WARRANTY; without even the implied" diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_210.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_210.RULE index 3522f23985..0984223bcb 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_210.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_210.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- The GNU MP Library is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at -your option) any later version. +your option) any later version}}. The GNU MP Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_211.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_211.RULE index 2613e6f669..e8eceba315 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_211.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_211.RULE @@ -10,10 +10,10 @@ ignorable_urls: t "This library is free software; you can redistribute it and/or" - "modify it under the terms of the GNU Lesser General Public" + "modify it under the terms of the {{GNU Lesser General Public" "License as published by the Free Software Foundation; either" "version 3 of the License, or (at your option) any later" - "version." + "version}}." "" "This library is distributed in the hope that it will be" "useful, but WITHOUT ANY WARRANTY; without even the implied" diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_212.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_212.RULE index 2dc11d6b52..a53ffe614c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_212.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_212.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- # This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public +# modify it under the terms of the {{GNU Lesser General Public # License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. +# version 3 of the License, or (at your option) any later version}}. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_215.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_215.RULE index 1c8afc02fd..c90420cdd7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_215.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_215.RULE @@ -8,13 +8,13 @@ ignorable_urls: --- This is free software. It is licensed for use, modification and -redistribution under the terms of the GNU Lesser General Public License, -version 3 or later +redistribution under the terms of the {{GNU Lesser General Public License, +version 3 or later}} is free software: you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as published +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_216.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_216.RULE index cad1829409..aabe80ebd0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_216.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_216.RULE @@ -10,9 +10,9 @@ ignorable_urls: GNU Lesser General Public License, Version 3 */ is free software: you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License as published by the +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your -option) any later version. +option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_217.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_217.RULE index 9902408c01..92f964e711 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_217.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_217.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_218.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_218.RULE index ed00a67d88..dfcc6e8206 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_218.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_218.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- The GNU Library is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your -option) any later version. +option) any later version}}. The GNU Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_22.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_22.RULE index 1c37cc0636..bbc6b11a2d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_22.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_22.RULE @@ -11,9 +11,9 @@ ignorable_urls: ** under the LGPL This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_220.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_220.RULE index 10e06e224b..b3c78a5dd6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_220.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_220.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- Collection Library is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. Collection Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_221.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_221.RULE index a38a3f3480..cc2b9731ae 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_221.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_221.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- The nettle library is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your - option) any later version. + option) any later version}}. . GNU Nettle is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_223.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_223.RULE index 0e232f5bfc..ffb52610b2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_223.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_223.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- Library is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_224.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_224.RULE index 43ce89323e..ead645a5e5 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_224.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_224.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. + version 3 of the License, or (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_225.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_225.RULE index 4ad3ddbeb4..108d0900b0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_225.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_225.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl.html --- -is free software licensed under the GNU Lesser General Public license version 3 or later +is free software licensed under the {{GNU Lesser General Public license version 3 or later}} (see licenses/gpl-3.txt or https://www.gnu.org/licenses/lgpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_226.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_226.RULE index a2a82a704a..36df06126e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_226.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_226.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_227.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_227.RULE index 5ec7838ab0..0adf5bbe33 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_227.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_227.RULE @@ -10,8 +10,8 @@ ignorable_urls: The Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 3 of the -License, or (at your option) any later version. +published by the Free Software Foundation; either {{version 3 of the +License, or (at your option) any later version}}. The Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_229.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_229.RULE index 3de9dbade0..e42d4aa277 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_229.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_229.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of -the License, or (at your option) any later version. +the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_23.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_23.RULE index 22b311ac20..bb850a9f2f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_23.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_23.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_230.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_230.RULE index f660baddbd..f6c06fbd19 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_230.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_230.RULE @@ -8,9 +8,9 @@ ignorable_urls: * * This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU Lesser General Public License as published +* it under the terms of the {{GNU Lesser General Public License as published * by the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. +* (at your option) any later version}}. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_231.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_231.RULE index a6af633107..e3d489dae0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_231.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_231.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- * AutoOpts is free software: you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published + * under the terms of the {{GNU Lesser General Public License as published * by the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * AutoOpts is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_234.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_234.RULE index b36b3f0988..ee4d3f585a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_234.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_234.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_235.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_235.RULE index f414b7ed94..d6ef7daa78 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_235.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_235.RULE @@ -9,7 +9,7 @@ ignorable_urls: # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public # License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. +# {{version 3 of the License, or (at your option) any later version}}. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_237.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_237.RULE index 3dcbe4a599..b2ec47a9bf 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_237.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_237.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_238.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_238.RULE index fe61b19ede..91ef7cc265 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_238.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_238.RULE @@ -12,9 +12,9 @@ ignorable_urls: ** under the LGPL This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_239.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_239.RULE index dfc07a8c4f..bca6c41024 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_239.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_239.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_24.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_24.RULE index c08b3bf5b3..7490191cb2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_24.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_24.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it -under the terms of the GNU Lesser General Public License as published by the +under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_241.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_241.RULE index 2747709a87..37bdcbd3f7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_241.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_241.RULE @@ -8,9 +8,9 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_242.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_242.RULE index 84b6b23da3..c416d6f80e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_242.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_242.RULE @@ -8,9 +8,9 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_244.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_244.RULE index 161fe8fac3..02c3e0ef43 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_244.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_244.RULE @@ -8,9 +8,9 @@ ignorable_urls: --- This program is free software: you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as published + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_245.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_245.RULE index f59a0c9224..036664fb38 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_245.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_245.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. + version 3 of the License, or (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_246.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_246.RULE index 6d5dc907f7..2f6682b15a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_246.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_246.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_247.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_247.RULE index 1d34f0d2ee..3f759fd4a3 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_247.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_247.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_248.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_248.RULE index f955c94c94..7f96c43616 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_248.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_248.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_249.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_249.RULE index 24e9ddfbef..aeaee4268c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_249.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_249.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. + version 3 of the License, or (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_25.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_25.RULE index 1f4eed4745..5a369be724 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_25.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_25.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_250.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_250.RULE index a27947951a..fc45e73e9f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_250.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_250.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either -version 3 of the License, or (at your option) any later version. +version 3 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_251.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_251.RULE index c1899e6404..c042a73b8e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_251.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_251.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_252.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_252.RULE index d63f0b6e57..288135d3c2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_252.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_252.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This package is free software; you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_253.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_253.RULE index 2f8e7898d9..7d97715758 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_253.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_253.RULE @@ -7,9 +7,9 @@ referenced_filenames: --- This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either - version 3 of the License, or (at your option) any later version. + version 3 of the License, or (at your option) any later version}}. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_254.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_254.RULE index d974a63bdb..db446cfca6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_254.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_254.RULE @@ -9,9 +9,9 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify it - under the terms of the GNU Lesser General Public License as + under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_259.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_259.RULE index a48e446845..0c9fe85192 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_259.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_259.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -LGPL-3.0+ GNU Lesser General Public License v3.0 or later \ No newline at end of file +{{LGPL-3.0+}} {{GNU Lesser General Public License v3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_26.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_26.RULE index 1bc83de7cb..4b50b3ba3e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_26.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_26.RULE @@ -5,8 +5,8 @@ is_license_notice: yes * is free software; you can redistribute it and/or * modify it under the terms of the {{GNU Lesser General Public - * License}} as published by the Free Software Foundation; either - * {{version 3}} of the License, or (at your option) {{any later version}}. + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version}}. * * is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_260.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_260.RULE index 3f0778ca2d..225c6648a7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_260.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_260.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -GNU Lesser General Public License v3.0 or later LGPL-3.0+ \ No newline at end of file +{{GNU Lesser General Public License v3.0 or later}} {{LGPL-3.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_261.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_261.RULE index 7a95a8169a..63dda33d5c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_261.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_261.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -license : LGPL-3.0+ \ No newline at end of file +license : {{LGPL-3.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_262.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_262.RULE index f12df423f2..9998b279d4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_262.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_262.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : LGPL-3.0+ \ No newline at end of file +licenseid : {{LGPL-3.0+}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_263.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_263.RULE index 973fa323e1..951725c8f8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_263.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_263.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -name : GNU Lesser General Public License v3.0 or later \ No newline at end of file +name : {{GNU Lesser General Public License v3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_264.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_264.RULE index 8785f810e8..676d185ea7 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_264.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_264.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -LGPL-3.0-or-later GNU Lesser General Public License v3.0 or later \ No newline at end of file +{{LGPL-3.0-or-later}} {{GNU Lesser General Public License v3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_265.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_265.RULE index 7523a9b77b..1286815365 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_265.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_265.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU Lesser General Public License v3.0 or later LGPL-3.0-or-later \ No newline at end of file +{{GNU Lesser General Public License v3.0 or later}} {{LGPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_266.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_266.RULE index da24822e28..3f757e53fa 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_266.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_266.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: LGPL-3.0-or-later \ No newline at end of file +license: {{LGPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_267.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_267.RULE index 5e3a454118..c52300ee5a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_267.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_267.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: GNU Lesser General Public License v3.0 or later \ No newline at end of file +license: {{GNU Lesser General Public License v3.0 or later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_268.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_268.RULE index 91a008fa68..af52fb7838 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_268.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_268.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: LGPL-3.0-or-later \ No newline at end of file +licenseId: {{LGPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_269.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_269.RULE index 20e0253dc9..1886d7e70e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_269.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_269.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -['LGPL', 'LGPL-3.0-or-later'], \ No newline at end of file +['LGPL', '{{LGPL-3.0-or-later}}'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_27.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_27.RULE index 86d686921c..ec5c6a4383 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_27.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_27.RULE @@ -9,9 +9,9 @@ ignorable_urls: GNU Lesser General Public License, Version 3 */ is free software: you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License as published by the +the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your -option) any later version. +option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_270.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_270.RULE index 3c92340e96..4a4b45772e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_270.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_270.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- This is free software: you can redistribute it and/or modify -it under the terms of the GNU {{Lesser General Public License}} as published -by the Free Software Foundation, {{either version 3}} of the License, or -(at your option) {{any later version}}. +it under the terms of the GNU {{Lesser General Public License as published +by the Free Software Foundation, either version 3 of the License, or +(at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_271.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_271.RULE index a965949156..818b1a4d6e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_271.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_271.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- This software is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_272.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_272.RULE index 9ee948c2f6..901e8f03c1 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_272.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_272.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_273.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_273.RULE index 7c21146fd4..b5b3f2efd0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_273.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_273.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: LGPL-3.0-or-later \ No newline at end of file +licenses: {{LGPL-3.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_28.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_28.RULE index 3f434f7f18..14a7df0e66 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_28.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_28.RULE @@ -7,6 +7,6 @@ notes: a damaged notice using library rather than lesser --- you - * can redistribute it and/or modify it under the terms of the GNU Lesser + * can redistribute it and/or modify it under the terms of the {{GNU Lesser * General Public License as published by the Free Software Foundation, - * either version 3 of the License, or (at your option) any later version. \ No newline at end of file + * either version 3 of the License, or (at your option) any later version}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_283.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_283.RULE index 75cc21c807..4686281b05 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_283.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_283.RULE @@ -6,8 +6,8 @@ ignorable_urls: --- This file is free software: you can redistribute it and/or modify -it under the terms of the {{GNU Lesser General Public License}} as published by -the Free Software Foundation, {{either version 3 of the License, or +it under the terms of the {{GNU Lesser General Public License as published by +the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. This file is distributed in the hope that it will be useful, @@ -16,4 +16,4 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU Lesser General Public License -along with this file. If not, see . +along with this file. If not, see . \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_284.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_284.RULE index e3e8258eb1..19c871ec0b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_284.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_284.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- This library is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_285.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_285.RULE index f35cef2ba6..4906cebd2e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_285.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_285.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.gnu.org/licenses --- -is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. +is free software: you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_286.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_286.RULE index 6c47213d68..7aea750449 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_286.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_286.RULE @@ -8,9 +8,9 @@ ignorable_urls: --- /* This program is free software: you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public License + modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of - the License, or (at your option) any later version. + the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_289.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_289.RULE index 89829f62eb..b2a8384ed8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_289.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_289.RULE @@ -12,9 +12,9 @@ ignorable_urls: * This program is part of JasperReports. * * JasperReports is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by + * it under the terms of the {{GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. + * (at your option) any later version}}. * * JasperReports is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_290.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_290.RULE index 1c7528b06b..0165eb7863 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_290.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_290.RULE @@ -7,6 +7,6 @@ referenced_filenames: --- LGPL v3 License -This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. +This program is free software: you can redistribute it and/or modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. Please see COPYING.LESSER and COPYING files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_291.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_291.RULE index 8ee4b67a18..5e18fb4c71 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_291.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_291.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- This header is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by + it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + (at your option) any later version}}. This header is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_294.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_294.RULE index 7402f600f1..ea0537bd56 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_294.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_294.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- is free software; you can redistribute it and/or modify it under -the terms of the {{Lesser GNU General Public License}} as published by -the Free Software Foundation; either {{version 3 of the License}}, or -(at your option) {{any later version}}. +the terms of the {{Lesser GNU General Public License as published by +the Free Software Foundation; either version 3 of the License, or +(at your option) any later version}}. is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_4.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_4.RULE index a43f56f8f7..5555bb3478 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_4.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_4.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_45.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_45.RULE index a542658705..4e610a53b4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_45.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_45.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-3.0-plus -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -lgpl 3.0 plus \ No newline at end of file +lgpl 3.0 plus diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_5.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_5.RULE index b4c7b7b376..5b3b1a2e2a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_5.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_5.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- Collection Library is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. Collection Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_6.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_6.RULE index bcfb1e7524..9a8ecf31e9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_6.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_6.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_7.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_7.RULE index 8b091c5eb4..fe78899dda 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_7.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_7.RULE @@ -6,9 +6,9 @@ ignorable_urls: --- Library is free software: you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License as published by +it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +(at your option) any later version}}. Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_81.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_81.RULE index 11b5fe4e83..4cc017ac2e 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_81.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_81.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-3.0-plus -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gnu lgpl 3.0+ \ No newline at end of file +gnu lgpl 3.0+ diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_9.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_9.RULE index 2daf8dd6ec..14739c7a84 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_9.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_9.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.html --- -is free software licensed under the GNU Lesser General Public license version 3 or later +is free software licensed under the {{GNU Lesser General Public license version 3 or later}} (see licenses/gpl-3.txt or http://www.gnu.org/licenses/lgpl.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_90.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_90.RULE index 654fcb0e9a..898e199e6c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_90.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_90.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -gnu lgpl 3.0 plus \ No newline at end of file +gnu {{lgpl 3.0 plus}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_93.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_93.RULE index d9cea24f72..6b9d155e6d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_93.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_93.RULE @@ -9,7 +9,7 @@ ignorable_urls: # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public # License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. +# {{version 3 of the License, or (at your option) any later version}}. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_94.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_94.RULE index 7f94446e1f..a5ed3f4135 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_94.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_94.RULE @@ -7,9 +7,9 @@ ignorable_urls: --- # This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public +# modify it under the terms of the {{GNU Lesser General Public # License as published by the Free Software Foundation; either -# version 3 of the License, or (at your option) any later version. +# version 3 of the License, or (at your option) any later version}}. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_95.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_95.RULE index a66e97d2d1..fb6cb3541c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_95.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_95.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -library : GNU Lesser General Public License, version 3 or later. \ No newline at end of file +library : {{GNU Lesser General Public License, version 3 or later}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_commercial-license_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_commercial-license_1.RULE index 7b71abd98a..0b91baeca8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_commercial-license_1.RULE @@ -4,8 +4,8 @@ is_license_notice: yes --- You can redistribute it and/or modify it under the terms of the {{GNU Lesser -General Public License }} as published by the Free Software Foundation, -{{either version 3 of the License, or (at your option) any later version}}. +General Public License as published by the Free Software Foundation, +either version 3 of the License, or (at your option) any later version}}. Licensees holding a {{valid commercial license }}may use this file in accordance with the {{commercial license agreement }}provided with the software. diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_or_commercial-license_2.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_or_commercial-license_2.RULE index de43a1b6ae..a5ba5d95e9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0-plus_or_commercial-license_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_or_commercial-license_2.RULE @@ -4,8 +4,8 @@ is_license_notice: yes --- You can redistribute it and/or modify it under the terms of the {{GNU Lesser -General Public License }} as published by the Free Software Foundation, -{{either version 3 of the License, or (at your option) any later version}}. +General Public License as published by the Free Software Foundation, +either version 3 of the License, or (at your option) any later version}}. Licensees holding a {{valid commercial license }}may use this file in accordance with the {{commercial license agreement }}provided with the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_1.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_1.RULE new file mode 100644 index 0000000000..36ac10041c --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_1.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +version 3 of the License, +or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_10.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_10.RULE new file mode 100644 index 0000000000..49b34033fa --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_10.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License as published by Free Software Foundation; either version 3 of License, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_11.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_11.RULE new file mode 100644 index 0000000000..86212cd623 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_11.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +Lesser General Public License as published by Free Software Foundation, either version 3 of License, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_12.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_12.RULE new file mode 100644 index 0000000000..8a9beecc85 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_12.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +Lesser GNU General Public License as published by Free Software Foundation, either version 3 of License, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_2.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_2.RULE new file mode 100644 index 0000000000..2f3713a4f4 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_2.RULE @@ -0,0 +1,9 @@ +--- +license_expression: lgpl-3.0-plus +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Lesser General Public +# License version 3 as published \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_3.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_3.RULE new file mode 100644 index 0000000000..67653e7814 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_3.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +GNU Lesser General Public License as published +by the Free Software Foundation; either version 3 of the License, or (at +your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_4.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_4.RULE new file mode 100644 index 0000000000..d12f01e72f --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_4.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +Lesser General Public License as published +by the Free Software Foundation, either version 3 of the License, or +(at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_5.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_5.RULE new file mode 100644 index 0000000000..357c25d259 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_5.RULE @@ -0,0 +1,10 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +Lesser GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_6.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_6.RULE new file mode 100644 index 0000000000..4f3f3455be --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_6.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +version 3 of License, or (at your option) any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_7.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_7.RULE new file mode 100644 index 0000000000..63b440ee54 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_7.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +gnu lesser general public license as published by free software foundation either version 3 of the license or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_8.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_8.RULE new file mode 100644 index 0000000000..a62960faf2 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_8.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +lesser general public license as published by free software foundation either version 3 of the license or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_9.RULE b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_9.RULE new file mode 100644 index 0000000000..fd54bf0056 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0-plus_required_phrase_9.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-3.0-plus +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +lesser gnu general public license as published by free software foundation either version 3 of the license or at your option any later version \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_109.RULE b/src/licensedcode/data/rules/lgpl-3.0_109.RULE index 9ad784b25e..85fe3b35e0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_109.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_109.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl-3.0.txt --- -GNU Lesser General Public License 3.0 (LGPLv3) +GNU {{Lesser General Public License 3.0}} (LGPLv3) link: http://www.gnu.org/licenses/lgpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_114.RULE b/src/licensedcode/data/rules/lgpl-3.0_114.RULE index 6ddbcbb6f6..45608d3b05 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_114.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_114.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://www.gnu.org/licenses/lgpl-3.0.html diff --git a/src/licensedcode/data/rules/lgpl-3.0_115.RULE b/src/licensedcode/data/rules/lgpl-3.0_115.RULE index 575747e90f..5a6e698bf2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_115.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_115.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-3.0_116.RULE b/src/licensedcode/data/rules/lgpl-3.0_116.RULE index 8da98a13f4..a074cd84c2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_116.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_116.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://www.gnu.org/licenses/lgpl-3.0.txt diff --git a/src/licensedcode/data/rules/lgpl-3.0_117.RULE b/src/licensedcode/data/rules/lgpl-3.0_117.RULE index 1b597ef214..a6d0ef5cb6 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_117.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_117.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-3.0_118.RULE b/src/licensedcode/data/rules/lgpl-3.0_118.RULE index 8c8a6467ca..49d913bd92 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_118.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_118.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://www.gnu.org/licenses/lgpl-3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_119.RULE b/src/licensedcode/data/rules/lgpl-3.0_119.RULE index b049884cf0..afc585f90c 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_119.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_119.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-3.0_142.RULE b/src/licensedcode/data/rules/lgpl-3.0_142.RULE index c9c08280e4..685c88125a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_142.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_142.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/LGPL-3.0 --- -`LGPL-3.0` - [Lesser General Public License 3.0](http://opensource.org/licenses/LGPL-3.0) \ No newline at end of file +`{{LGPL-3.0}}` - [{{Lesser General Public License 3.0}}](http://opensource.org/licenses/LGPL-3.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_167.RULE b/src/licensedcode/data/rules/lgpl-3.0_167.RULE index da5cae0e21..16223c7610 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_167.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_167.RULE @@ -5,9 +5,9 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public +modify it under the terms of the {{GNU Lesser General Public License as published by the Free Software Foundation version 3 -of the License. +of the License.}} This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -16,4 +16,4 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/lgpl-3.0_168.RULE b/src/licensedcode/data/rules/lgpl-3.0_168.RULE index d60974442c..ce5566c08a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_168.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_168.RULE @@ -5,8 +5,8 @@ relevance: 100 --- This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public -License as published by the Free Software Foundation version 3 +modify it under the terms of the {{GNU Library General Public +License as published by the Free Software Foundation version 3}} of the License. This library is distributed in the hope that it will be useful, @@ -16,4 +16,4 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/src/licensedcode/data/rules/lgpl-3.0_183.RULE b/src/licensedcode/data/rules/lgpl-3.0_183.RULE index c5afd8d074..dde62071f0 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_183.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_183.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -GNU Lesser General Public License (LGPL) 3.0 \ No newline at end of file +GNU LESSER GENERAL PUBLIC LICENSE (LGPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_184.RULE b/src/licensedcode/data/rules/lgpl-3.0_184.RULE index 9c5576fbc6..a972ac49be 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_184.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_184.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -GNU Lesser General Public licence (LGPL) 3.0 \ No newline at end of file +GNU Lesser General Public licence ({{LGPL) 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_196.RULE b/src/licensedcode/data/rules/lgpl-3.0_196.RULE index 81c705ab18..607002fa5f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_196.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_196.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -UNDER THE TERMS OF THE LGPL 3.0 LICENSE \ No newline at end of file +UNDER THE TERMS OF THE {{LGPL 3.0 LICENSE}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_197.RULE b/src/licensedcode/data/rules/lgpl-3.0_197.RULE index d376fa6c28..1ad9fc3912 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_197.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_197.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -UNDER THE TERMS OF THE LGPL 3.0 \ No newline at end of file +UNDER THE TERMS OF THE {{LGPL 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_200.RULE b/src/licensedcode/data/rules/lgpl-3.0_200.RULE index 2d6c47a9e1..f9431143da 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_200.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_200.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 3.0 LICENSE. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE LGPL 3.0 LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{LGPL 3.0 LICENSE}}. PLEASE SEE APPENDIX FOR THE FULL TEXT OF THE {{LGPL 3.0 LICENSE}}. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE.] \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_201.RULE b/src/licensedcode/data/rules/lgpl-3.0_201.RULE index bd17b15f52..9f1a0ea43f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_201.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_201.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE LGPL 3.0 LICENSE. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{LGPL 3.0 LICENSE}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_202.RULE b/src/licensedcode/data/rules/lgpl-3.0_202.RULE index 260e0c7c74..2b29193f77 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_202.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_202.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -components licensed under LGPL 3.0 \ No newline at end of file +components {{licensed under LGPL 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_204.RULE b/src/licensedcode/data/rules/lgpl-3.0_204.RULE index 30a79299c3..cf802968de 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_204.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_204.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-3.0_210.RULE b/src/licensedcode/data/rules/lgpl-3.0_210.RULE index 9d1a8ce7c6..2b37d95794 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_210.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_210.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-3.0_218.RULE b/src/licensedcode/data/rules/lgpl-3.0_218.RULE index 8df76d3612..961f6100f4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_218.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_218.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Copying LGPL 3.0 \ No newline at end of file +Copying {{LGPL 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_220.RULE b/src/licensedcode/data/rules/lgpl-3.0_220.RULE index 3694f886f3..c99834a597 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_220.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_220.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -LICENSE INFORMATION: LGPL 3.0 \ No newline at end of file +LICENSE INFORMATION: {{LGPL 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_223.RULE b/src/licensedcode/data/rules/lgpl-3.0_223.RULE index dadabd98ca..cf37e9e22d 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_223.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_223.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed UNDER THE TERMS OF THE LGPL 3.0 \ No newline at end of file +licensed UNDER THE TERMS OF THE {{LGPL 3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_224.RULE b/src/licensedcode/data/rules/lgpl-3.0_224.RULE index ed8317d076..6ee4ffbbda 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_224.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_224.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed UNDER THE TERMS OF THE LGPL 3.0 LICENSE \ No newline at end of file +licensed UNDER THE TERMS OF THE {{LGPL 3.0 LICENSE}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_242.RULE b/src/licensedcode/data/rules/lgpl-3.0_242.RULE index 032e634c07..3221b639fa 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_242.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_242.RULE @@ -2,7 +2,8 @@ license_expression: lgpl-3.0 is_license_notice: yes relevance: 100 +is_required_phrase: yes notes: https://launchpad.net/libdbusmenu/16.04/16.04.0/+download/libdbusmenu-16.04.0.tar.gz --- -the GNU Lesser General Public License version 3, as published by the Free Software Foundation \ No newline at end of file +the GNU Lesser General Public License version 3, as published by the Free Software Foundation diff --git a/src/licensedcode/data/rules/lgpl-3.0_255.RULE b/src/licensedcode/data/rules/lgpl-3.0_255.RULE index 50a4d4a6b4..d586723519 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_255.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_255.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.gnu.org/licenses/lgpl-3.0.txt --- -GNU Lesser General Public License 3.0 (LGPLv3) +GNU {{Lesser General Public License 3.0}} (LGPLv3) link: https://www.gnu.org/licenses/lgpl-3.0.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_26.RULE b/src/licensedcode/data/rules/lgpl-3.0_26.RULE index 11df357721..eda92f52f2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_26.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_26.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -lgpl-3.0 \ No newline at end of file +LGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_276.RULE b/src/licensedcode/data/rules/lgpl-3.0_276.RULE index 566b468b3a..40e8e17985 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_276.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_276.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- This library is free software; you can redistribute it and/or modify it under -the terms of the GNU Lesser General Public License version 3.0 as published +the terms of the {{GNU Lesser General Public License version 3.0}} as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT @@ -14,4 +14,4 @@ details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \ No newline at end of file +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. diff --git a/src/licensedcode/data/rules/lgpl-3.0_277.RULE b/src/licensedcode/data/rules/lgpl-3.0_277.RULE index b19ebaea47..652098880b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_277.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_277.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/lgpl-3.0_278.RULE b/src/licensedcode/data/rules/lgpl-3.0_278.RULE index 723d857457..6f559c29c9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_278.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_278.RULE @@ -1,7 +1,7 @@ --- license_expression: lgpl-3.0 is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID diff --git a/src/licensedcode/data/rules/lgpl-3.0_279.RULE b/src/licensedcode/data/rules/lgpl-3.0_279.RULE index fc78216b35..a931eb390b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_279.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_279.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license name and/or ID --- -licenseid : LGPL-3.0 \ No newline at end of file +licenseid : {{LGPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_281.RULE b/src/licensedcode/data/rules/lgpl-3.0_281.RULE index b287aea01c..68f398213b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_281.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_281.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -LGPL-3.0-only GNU Lesser General Public License v3.0 only \ No newline at end of file +{{LGPL-3.0-only}} GNU Lesser General Public License v3.0 only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_282.RULE b/src/licensedcode/data/rules/lgpl-3.0_282.RULE index ede6979b4c..78aa7cfb9b 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_282.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_282.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -GNU Lesser General Public License v3.0 only LGPL-3.0-only \ No newline at end of file +{{GNU Lesser General Public License v3.0 only LGPL-3.0}}-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_283.RULE b/src/licensedcode/data/rules/lgpl-3.0_283.RULE index d4c854282f..598695b6b9 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_283.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_283.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: LGPL-3.0-only \ No newline at end of file +license: {{LGPL-3.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_285.RULE b/src/licensedcode/data/rules/lgpl-3.0_285.RULE index 9f5779d4ce..d46b0f7bc8 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_285.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_285.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: LGPL-3.0-only \ No newline at end of file +licenseId: {{LGPL-3.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_286.RULE b/src/licensedcode/data/rules/lgpl-3.0_286.RULE index 05e2b2a5f2..09850954a2 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_286.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_286.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- - GNU LESSER GENERAL PUBLIC LICENSE, version 3 (LGPL-3.0) + {{GNU LESSER GENERAL PUBLIC LICENSE, version 3 (LGPL-3.0}}) http://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_287.RULE b/src/licensedcode/data/rules/lgpl-3.0_287.RULE index 4cced3958d..bd69a1d438 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_287.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_287.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.gnu.org/licenses/lgpl.txt --- -GNU LESSER GENERAL PUBLIC LICENSE, version 3 (LGPL-3.0) +{{GNU LESSER GENERAL PUBLIC LICENSE, version 3 (LGPL-3.0}}) http://www.gnu.org/licenses/lgpl.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_296.RULE b/src/licensedcode/data/rules/lgpl-3.0_296.RULE index 04eef81072..7281a8c86a 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_296.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_296.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under version 3 of the LGPL \ No newline at end of file +Licensed under {{version 3 of the LGPL}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_297.RULE b/src/licensedcode/data/rules/lgpl-3.0_297.RULE index 99d14df939..a306256c67 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_297.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_297.RULE @@ -1,6 +1,7 @@ --- license_expression: lgpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/lgpl-3.0_298.RULE b/src/licensedcode/data/rules/lgpl-3.0_298.RULE index 7cd3890922..d3123561ad 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_298.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_298.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: LGPL-3.0 \ No newline at end of file +licenses: {{LGPL-3.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_299.RULE b/src/licensedcode/data/rules/lgpl-3.0_299.RULE index 7d0972f8aa..2462b90916 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_299.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_299.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -licenses: LGPL-3.0-only \ No newline at end of file +licenses: {{LGPL-3.0-only}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_308.RULE b/src/licensedcode/data/rules/lgpl-3.0_308.RULE index 01f499bad7..00e5f27e44 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_308.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_308.RULE @@ -4,4 +4,4 @@ is_license_notice: yes --- This software consists of voluntary contributions made by many individuals -and is licensed under version 3 of the LGPL. \ No newline at end of file +and is licensed under {{version 3 of the LGPL}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_311.RULE b/src/licensedcode/data/rules/lgpl-3.0_311.RULE index 32acae8a82..679ca18b28 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_311.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_311.RULE @@ -1,10 +1,10 @@ --- license_expression: lgpl-3.0 is_license_tag: yes -is_continuous: yes relevance: 100 ignorable_urls: - http://jasperreports.sourceforge.net/license.html +is_required_phrase: yes --- -{{http://jasperreports.sourceforge.net/license.html}} \ No newline at end of file +{{ http://jasperreports.sourceforge.net/license.html }} diff --git a/src/licensedcode/data/rules/lgpl-3.0_317.RULE b/src/licensedcode/data/rules/lgpl-3.0_317.RULE index 6a2b648df8..af2af7e129 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_317.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_317.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING.LESSER --- -distributed under the GNU LESSER GENERAL PUBLIC LICENSE (LGPL 3.0). This application may only be used in compliance with the License. In lieu of applicable law or written agreement, software distributed under the License is distributed "AS IS", VOID OF ALL WARRANTIES OR CONDITIONS. For specific details regarding permissions and restrictions, see COPYING and COPYING.LESSER \ No newline at end of file +distributed under the {{GNU LESSER GENERAL PUBLIC LICENSE (LGPL 3.0}}). This application may only be used in compliance with the License. In lieu of applicable law or written agreement, software distributed under the License is distributed "AS IS", VOID OF ALL WARRANTIES OR CONDITIONS. For specific details regarding permissions and restrictions, see COPYING and COPYING.LESSER \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_322.RULE b/src/licensedcode/data/rules/lgpl-3.0_322.RULE new file mode 100644 index 0000000000..185ca0562c --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0_322.RULE @@ -0,0 +1,18 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +--- + +This library is free software; you can redistribute it and/or +modify it under the terms of the {{GNU Lesser General Public +License as published by the Free Software Foundation version +3.0 of the License.}} + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this library; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_39.RULE b/src/licensedcode/data/rules/lgpl-3.0_39.RULE index bad4896e88..8401f37cd4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_39.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_39.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -"license": "LGPL-3.0", \ No newline at end of file +"license": "{{LGPL-3.0}}", \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_52.RULE b/src/licensedcode/data/rules/lgpl-3.0_52.RULE index 6ffdeaaa7d..6b5c9f29ba 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_52.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_52.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-3.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -{{GNU Lesser General Public License, Version 3 (LGPL-3.0).}} \ No newline at end of file +GNU LESSER GENERAL PUBLIC LICENSE, version 3 (LGPL-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_53.RULE b/src/licensedcode/data/rules/lgpl-3.0_53.RULE index 0fc0c78f9f..b51732bb51 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_53.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_53.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -made freely available under the GNU Lesser General Public License, Version 3 (LGPL-3.0) \ No newline at end of file +made freely available under the {{GNU Lesser General Public License, Version 3 (LGPL-3.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_56.RULE b/src/licensedcode/data/rules/lgpl-3.0_56.RULE index a067c86e87..5fcd6ce19f 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_56.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_56.RULE @@ -5,5 +5,5 @@ relevance: 100 --- is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, version 3 of the License. \ No newline at end of file + it under the terms of the {{GNU Lesser General Public License as published by + the Free Software Foundation, version 3 of the License.}} diff --git a/src/licensedcode/data/rules/lgpl-3.0_81.RULE b/src/licensedcode/data/rules/lgpl-3.0_81.RULE index 014885b62c..542a5bf171 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_81.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_81.RULE @@ -1,7 +1,8 @@ --- license_expression: lgpl-3.0 -is_license_tag: yes +is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -gnu lgpl 3.0 \ No newline at end of file +gnu lgpl 3.0 diff --git a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_nuget_url_1.RULE index 63472dab53..81fb49eba4 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_1.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_nuget_url_1.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: See https://github.com/BioTurboNick/Skryptonite/blob/master/LICENSE.md --- -This software component is licensed under the LGPL 3.0 (see below). \ No newline at end of file +This software component is {{licensed under the LGPL 3.0}} (see below). \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_2.RULE b/src/licensedcode/data/rules/lgpl-3.0_nuget_url_2.RULE index eaeef3cd92..d22802a953 100644 --- a/src/licensedcode/data/rules/lgpl-3.0_nuget_url_2.RULE +++ b/src/licensedcode/data/rules/lgpl-3.0_nuget_url_2.RULE @@ -6,7 +6,7 @@ minimum_coverage: 95 notes: See https://github.com/BioTurboNick/Skryptonite/blob/master/LICENSE.md --- -This software component is licensed under the LGPL 3.0 (see below). But for your entertainment, here are the previous ad-hoc terms. Note that I'd still appreciate $$, and please do still file a bug report if any of those scenarios occur. +This software component is {{licensed under the LGPL 3.0}} (see below). But for your entertainment, here are the previous ad-hoc terms. Note that I'd still appreciate $$, and please do still file a bug report if any of those scenarios occur. The compiled product may be used commercially but a donation would be greatly appreciated if you do so. If you happen to make over $1 million with this software as part of your product though... come on, don't be stingy! diff --git a/src/licensedcode/data/rules/lgpl-3.0_required_phrase_1.RULE b/src/licensedcode/data/rules/lgpl-3.0_required_phrase_1.RULE new file mode 100644 index 0000000000..6ef6ec1fa5 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0_required_phrase_1.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_tag: yes +is_required_phrase: yes +relevance: 100 +--- + +version 3 of the LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_required_phrase_2.RULE b/src/licensedcode/data/rules/lgpl-3.0_required_phrase_2.RULE new file mode 100644 index 0000000000..e859ee394f --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0_required_phrase_2.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Lesser General Public License 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_required_phrase_3.RULE b/src/licensedcode/data/rules/lgpl-3.0_required_phrase_3.RULE new file mode 100644 index 0000000000..50a09817a4 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0_required_phrase_3.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_notice: yes +is_required_phrase: yes +relevance: 100 +--- + +licensed under the LGPL 3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_required_phrase_4.RULE b/src/licensedcode/data/rules/lgpl-3.0_required_phrase_4.RULE new file mode 100644 index 0000000000..df6a2c6a77 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0_required_phrase_4.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +LGPL 3.0 LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_required_phrase_5.RULE b/src/licensedcode/data/rules/lgpl-3.0_required_phrase_5.RULE new file mode 100644 index 0000000000..7fd5b9394d --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0_required_phrase_5.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +Library General Public licence v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl-3.0_required_phrase_6.RULE b/src/licensedcode/data/rules/lgpl-3.0_required_phrase_6.RULE new file mode 100644 index 0000000000..6ff5b93308 --- /dev/null +++ b/src/licensedcode/data/rules/lgpl-3.0_required_phrase_6.RULE @@ -0,0 +1,8 @@ +--- +license_expression: lgpl-3.0 +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +version 3 of LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_10.RULE b/src/licensedcode/data/rules/lgpl_10.RULE index 8203ef620d..3be04b5052 100644 --- a/src/licensedcode/data/rules/lgpl_10.RULE +++ b/src/licensedcode/data/rules/lgpl_10.RULE @@ -6,5 +6,5 @@ notes: Debian LGPL license with lesser hence the 2.1-plus version --- The shared library in this package is distributed under the terms -of the GNU Lesser General Public License. The text of the license is +of the {{GNU Lesser General Public License}}. The text of the license is available on Debian systems in the /usr/share/common-licenses/LGPL file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_15.RULE b/src/licensedcode/data/rules/lgpl_15.RULE index 5271c20938..4555bea72f 100644 --- a/src/licensedcode/data/rules/lgpl_15.RULE +++ b/src/licensedcode/data/rules/lgpl_15.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: LGPL, any version and since this is library, then that's 2.0 or later --- -May be distributed under the conditions of the GNU Library General Public License \ No newline at end of file +May be distributed under the conditions of the {{GNU Library General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_223.RULE b/src/licensedcode/data/rules/lgpl_223.RULE index 111bc74c7a..eb0a61b975 100644 --- a/src/licensedcode/data/rules/lgpl_223.RULE +++ b/src/licensedcode/data/rules/lgpl_223.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Provided under the terms of the GNU Lesser General Public License \ No newline at end of file +Provided under the terms of the {{GNU Lesser General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_35.RULE b/src/licensedcode/data/rules/lgpl_35.RULE index 5f4ee5cb3d..a310c17300 100644 --- a/src/licensedcode/data/rules/lgpl_35.RULE +++ b/src/licensedcode/data/rules/lgpl_35.RULE @@ -1,8 +1,10 @@ --- license_expression: lgpl-2.1-plus is_license_reference: yes +is_required_phrase: yes relevance: 100 notes: with lesser hence the 2.1-plus version --- -GNU Lesser General Public License (LGPL) \ No newline at end of file +GNU Lesser General +Public License (LGPL \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_36.RULE b/src/licensedcode/data/rules/lgpl_36.RULE index 31fa65210b..000191c626 100644 --- a/src/licensedcode/data/rules/lgpl_36.RULE +++ b/src/licensedcode/data/rules/lgpl_36.RULE @@ -6,4 +6,4 @@ notes: with lesser hence the 2.1-plus version --- This software is distributed under the following licenses: - GNU Lesser General Public License (LGPL) \ No newline at end of file + {{GNU Lesser General Public License (LGPL}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_4.RULE b/src/licensedcode/data/rules/lgpl_4.RULE index 99b4f9a769..1d93804ca3 100644 --- a/src/licensedcode/data/rules/lgpl_4.RULE +++ b/src/licensedcode/data/rules/lgpl_4.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: with lesser hence the 2.1-plus version --- -This is licensed under the GNU Lesser General Public License (LGPL) and comes with NO WARRANTY \ No newline at end of file +This is licensed under the {{GNU Lesser General Public License (LGPL}}) and comes with NO WARRANTY \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_40.RULE b/src/licensedcode/data/rules/lgpl_40.RULE index 2bd10a2452..5fcf91b497 100644 --- a/src/licensedcode/data/rules/lgpl_40.RULE +++ b/src/licensedcode/data/rules/lgpl_40.RULE @@ -6,15 +6,15 @@ notes: since the text mentions a Lesser GPL with no version this is 2.1 or later --- * This copyrighted material is made available to anyone wishing to use, modify, - * copy, or redistribute it subject to the terms and conditions of the GNU - * Lesser General Public License, as published by the Free Software Foundation. + * copy, or redistribute it subject to the terms and conditions of the {{GNU + * Lesser General Public License}}, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License + * or FITNESS FOR A PARTICULAR PURPOSE. See the {{GNU Lesser General Public License}} * for more details. * - * You should have received a copy of the GNU Lesser General Public License + * You should have received a copy of the {{GNU Lesser General Public License}} * along with this distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor diff --git a/src/licensedcode/data/rules/lgpl_50.RULE b/src/licensedcode/data/rules/lgpl_50.RULE index 74fb7a352c..7361a38244 100644 --- a/src/licensedcode/data/rules/lgpl_50.RULE +++ b/src/licensedcode/data/rules/lgpl_50.RULE @@ -9,7 +9,7 @@ ignorable_urls: is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY EXPRESS OR IMPLIED, INCLUDING ANY WARRANTY OF MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE OR USE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with . If not, see http://www.gnu.org/licenses/lgpl.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_6.RULE b/src/licensedcode/data/rules/lgpl_6.RULE index c9157c549e..e5eea935b9 100644 --- a/src/licensedcode/data/rules/lgpl_6.RULE +++ b/src/licensedcode/data/rules/lgpl_6.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: LGPL, any version --- -This file can be redistributed under the terms of the GNU Library General Public License \ No newline at end of file +This file can be redistributed under the terms of the {{GNU Library General Public License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/lgpl_lesser_33.RULE b/src/licensedcode/data/rules/lgpl_lesser_33.RULE index 8cf78207d3..7777bf1607 100644 --- a/src/licensedcode/data/rules/lgpl_lesser_33.RULE +++ b/src/licensedcode/data/rules/lgpl_lesser_33.RULE @@ -4,13 +4,13 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License +modify it under the terms of the {{GNU Lesser General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. You should have received a copy of the GNU Lesset General Public License along with this program; if not, write to the Free Software Foundation, diff --git a/src/licensedcode/data/rules/lgpl_lesser_34.RULE b/src/licensedcode/data/rules/lgpl_lesser_34.RULE index e8ab580356..7ea70ae249 100644 --- a/src/licensedcode/data/rules/lgpl_lesser_34.RULE +++ b/src/licensedcode/data/rules/lgpl_lesser_34.RULE @@ -4,14 +4,14 @@ is_license_notice: yes --- This program is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public License +modify it under the terms of the {{GNU Lesser General Public License}} as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU Lesser General Public License for more details. +{{GNU Lesser General Public License}} for more details. -You should have received a copy of the GNU Lesser General Public License +You should have received a copy of the {{GNU Lesser General Public License}} along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \ No newline at end of file diff --git a/src/licensedcode/data/rules/librejs_apache-2.0_1.RULE b/src/licensedcode/data/rules/librejs_apache-2.0_1.RULE index 2ded3f2a86..d80e0b264c 100644 --- a/src/licensedcode/data/rules/librejs_apache-2.0_1.RULE +++ b/src/licensedcode/data/rules/librejs_apache-2.0_1.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: from librejs --- -@license magnet:?xt=urn:btih:8e4f440f4c65981c5bf93c76d35135ba5064d8b7&dn=apache-2.0.txt \ No newline at end of file +@license magnet:?xt=urn:btih:8e4f440f4c65981c5bf93c76d35135ba5064d8b7&dn={{apache-2.0}}.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/librejs_apache-2.0_2.RULE b/src/licensedcode/data/rules/librejs_apache-2.0_2.RULE index 199107ac94..8913d83103 100644 --- a/src/licensedcode/data/rules/librejs_apache-2.0_2.RULE +++ b/src/licensedcode/data/rules/librejs_apache-2.0_2.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: from librejs --- -magnet:?xt=urn:btih:8e4f440f4c65981c5bf93c76d35135ba5064d8b7&dn=apache-2.0.txt \ No newline at end of file +magnet:?xt=urn:btih:8e4f440f4c65981c5bf93c76d35135ba5064d8b7&dn={{apache-2.0}}.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/librejs_gpl-2.0-plus_1.RULE b/src/licensedcode/data/rules/librejs_gpl-2.0-plus_1.RULE index b844ffb781..f0b99ecd7b 100644 --- a/src/licensedcode/data/rules/librejs_gpl-2.0-plus_1.RULE +++ b/src/licensedcode/data/rules/librejs_gpl-2.0-plus_1.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: from librejs --- -@license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 \ No newline at end of file +@license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn={{gpl-2.0}}.txt GPL-v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/librejs_gpl-2.0-plus_3.RULE b/src/licensedcode/data/rules/librejs_gpl-2.0-plus_3.RULE index 3cc55eaff0..47b2922b69 100644 --- a/src/licensedcode/data/rules/librejs_gpl-2.0-plus_3.RULE +++ b/src/licensedcode/data/rules/librejs_gpl-2.0-plus_3.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: from librejs --- -magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 \ No newline at end of file +magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn={{gpl-2.0}}.txt GPL-v2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/librejs_gpl-3.0-plus_1.RULE b/src/licensedcode/data/rules/librejs_gpl-3.0-plus_1.RULE index d6a87ba039..604775ee1a 100644 --- a/src/licensedcode/data/rules/librejs_gpl-3.0-plus_1.RULE +++ b/src/licensedcode/data/rules/librejs_gpl-3.0-plus_1.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: from librejs --- -@license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3 \ No newline at end of file +@license magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn={{gpl-3.0}}.txt GPL-v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/librejs_gpl-3.0-plus_3.RULE b/src/licensedcode/data/rules/librejs_gpl-3.0-plus_3.RULE index 6db42919a9..7c65e9e947 100644 --- a/src/licensedcode/data/rules/librejs_gpl-3.0-plus_3.RULE +++ b/src/licensedcode/data/rules/librejs_gpl-3.0-plus_3.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: from librejs --- -magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn=gpl-3.0.txt GPL-v3 \ No newline at end of file +magnet:?xt=urn:btih:1f739d935676111cfff4b4693e3816e664797050&dn={{gpl-3.0}}.txt GPL-v3 \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-clue_commercial-license_1.RULE b/src/licensedcode/data/rules/license-clue_commercial-license_1.RULE index de08cef1c6..2129a7f751 100644 --- a/src/licensedcode/data/rules/license-clue_commercial-license_1.RULE +++ b/src/licensedcode/data/rules/license-clue_commercial-license_1.RULE @@ -4,4 +4,4 @@ is_license_clue: yes relevance: 100 --- -Commercial license \ No newline at end of file +{{Commercial license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-clue_commercial-license_3.RULE b/src/licensedcode/data/rules/license-clue_commercial-license_3.RULE index e466817af4..d6555466f0 100644 --- a/src/licensedcode/data/rules/license-clue_commercial-license_3.RULE +++ b/src/licensedcode/data/rules/license-clue_commercial-license_3.RULE @@ -4,4 +4,4 @@ is_license_clue: yes relevance: 100 --- -Commercial License option \ No newline at end of file +{{Commercial License}} option \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-clue_commercial-license_4.RULE b/src/licensedcode/data/rules/license-clue_commercial-license_4.RULE index 93055ccb76..d2a70046fa 100644 --- a/src/licensedcode/data/rules/license-clue_commercial-license_4.RULE +++ b/src/licensedcode/data/rules/license-clue_commercial-license_4.RULE @@ -4,4 +4,4 @@ is_license_clue: yes relevance: 100 --- -commercial license as an alternative. \ No newline at end of file +{{commercial license}} as an alternative. \ No newline at end of file diff --git a/src/licensedcode/data/rules/license-intro_57.RULE b/src/licensedcode/data/rules/license-intro_57.RULE index 07a0d47cc7..df9bc32d90 100644 --- a/src/licensedcode/data/rules/license-intro_57.RULE +++ b/src/licensedcode/data/rules/license-intro_57.RULE @@ -4,4 +4,4 @@ is_license_intro: yes relevance: 100 --- -This file contains code that was {{originally under the following license}} \ No newline at end of file +This file contains {{code that was originally under the following license}} diff --git a/src/licensedcode/data/rules/maven_pom_1.RULE b/src/licensedcode/data/rules/maven_pom_1.RULE index 7f4a2ec738..248efc0fc5 100644 --- a/src/licensedcode/data/rules/maven_pom_1.RULE +++ b/src/licensedcode/data/rules/maven_pom_1.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -License: Apache 2 (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file +{{License: Apache 2}} (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_10.RULE b/src/licensedcode/data/rules/maven_pom_10.RULE index cf07bf3653..f6e5ad4605 100644 --- a/src/licensedcode/data/rules/maven_pom_10.RULE +++ b/src/licensedcode/data/rules/maven_pom_10.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -License: BSD License (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file +License: {{BSD License}} (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_11.RULE b/src/licensedcode/data/rules/maven_pom_11.RULE index 3d26b55dec..b9c50d775c 100644 --- a/src/licensedcode/data/rules/maven_pom_11.RULE +++ b/src/licensedcode/data/rules/maven_pom_11.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mozilla1.1 --- -License: Mozilla Public License 1.1 (http://www.opensource.org/licenses/mozilla1.1) \ No newline at end of file +License: {{Mozilla Public License 1.1}} (http://www.opensource.org/licenses/mozilla1.1) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_12.RULE b/src/licensedcode/data/rules/maven_pom_12.RULE index 905d011bff..e2805f890b 100644 --- a/src/licensedcode/data/rules/maven_pom_12.RULE +++ b/src/licensedcode/data/rules/maven_pom_12.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 99 --- -License: BSD (LICENSE.txt) \ No newline at end of file +License: {{BSD (LICENSE}}.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_18.RULE b/src/licensedcode/data/rules/maven_pom_18.RULE index a4eebcfc1a..9fd0902af8 100644 --- a/src/licensedcode/data/rules/maven_pom_18.RULE +++ b/src/licensedcode/data/rules/maven_pom_18.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/mit-license.php --- -License: MIT License (MIT) (http://opensource.org/licenses/mit-license.php) \ No newline at end of file +License: {{MIT License (MIT}}) (http://opensource.org/licenses/mit-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_20.RULE b/src/licensedcode/data/rules/maven_pom_20.RULE index 795098b765..786a44b801 100644 --- a/src/licensedcode/data/rules/maven_pom_20.RULE +++ b/src/licensedcode/data/rules/maven_pom_20.RULE @@ -5,4 +5,4 @@ ignorable_urls: - http://www.mozilla.org/MPL/MPL-1.1.html --- -License: Mozilla Public License 1.1 (MPL 1.1) (http://www.mozilla.org/MPL/MPL-1.1.html) \ No newline at end of file +License: {{Mozilla Public License 1.1}} ({{MPL 1.1}}) (http://www.mozilla.org/MPL/MPL-1.1.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_21.RULE b/src/licensedcode/data/rules/maven_pom_21.RULE index 3b4fd12120..723c95525d 100644 --- a/src/licensedcode/data/rules/maven_pom_21.RULE +++ b/src/licensedcode/data/rules/maven_pom_21.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -License: New BSD license (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file +License: {{New BSD license}} (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_27.RULE b/src/licensedcode/data/rules/maven_pom_27.RULE index 0cec026e32..0fbcf0d72f 100644 --- a/src/licensedcode/data/rules/maven_pom_27.RULE +++ b/src/licensedcode/data/rules/maven_pom_27.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: The Apache Software License, Version 2.0 (/LICENSE.txt) \ No newline at end of file +License: {{The Apache Software License, Version 2.0}} (/LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_28.RULE b/src/licensedcode/data/rules/maven_pom_28.RULE index b1a5069b5c..473bbfd21d 100644 --- a/src/licensedcode/data/rules/maven_pom_28.RULE +++ b/src/licensedcode/data/rules/maven_pom_28.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: The Apache Software License, Version 2.0 (src/assemble/EHCACHE-CORE-LICENSE.txt) \ No newline at end of file +License: {{The Apache Software License, Version 2.0}} (src/assemble/EHCACHE-CORE-LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_29.RULE b/src/licensedcode/data/rules/maven_pom_29.RULE index 42510ca358..94c62b26ae 100644 --- a/src/licensedcode/data/rules/maven_pom_29.RULE +++ b/src/licensedcode/data/rules/maven_pom_29.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.adobe.com/devnet/xmp/library/eula-xmp-library-java.html --- -License: The BSD License (http://www.adobe.com/devnet/xmp/library/eula-xmp-library-java.html) \ No newline at end of file +License: {{The BSD License}} (http://www.adobe.com/devnet/xmp/library/eula-xmp-library-java.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_3.RULE b/src/licensedcode/data/rules/maven_pom_3.RULE index 44eef70404..b3a8415757 100644 --- a/src/licensedcode/data/rules/maven_pom_3.RULE +++ b/src/licensedcode/data/rules/maven_pom_3.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -License: Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file +License: {{Apache License 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_30.RULE b/src/licensedcode/data/rules/maven_pom_30.RULE index ee413d577e..55174511aa 100644 --- a/src/licensedcode/data/rules/maven_pom_30.RULE +++ b/src/licensedcode/data/rules/maven_pom_30.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.html --- -License: The BSD License (http://www.opensource.org/licenses/bsd-license.html) \ No newline at end of file +License: {{The BSD License}} (http://www.opensource.org/licenses/bsd-license.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_31.RULE b/src/licensedcode/data/rules/maven_pom_31.RULE index a6eb9afd8e..bac361346c 100644 --- a/src/licensedcode/data/rules/maven_pom_31.RULE +++ b/src/licensedcode/data/rules/maven_pom_31.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/bsd-license.php --- -License: The BSD License (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file +License: {{The BSD License}} (http://www.opensource.org/licenses/bsd-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_34.RULE b/src/licensedcode/data/rules/maven_pom_34.RULE index ad348b1a93..058c5e48a7 100644 --- a/src/licensedcode/data/rules/maven_pom_34.RULE +++ b/src/licensedcode/data/rules/maven_pom_34.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/zlib-license --- -License: The zlib/libpng License (http://www.opensource.org/licenses/zlib-license) \ No newline at end of file +License: The {{zlib/libpng License}} (http://www.opensource.org/licenses/zlib-license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_35.RULE b/src/licensedcode/data/rules/maven_pom_35.RULE index 8b80c248ec..1c070d45c1 100644 --- a/src/licensedcode/data/rules/maven_pom_35.RULE +++ b/src/licensedcode/data/rules/maven_pom_35.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://jsoup.com/license --- -License: The MIT License (http://jsoup.com/license) \ No newline at end of file +License: {{The MIT License}} (http://jsoup.com/license) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_4.RULE b/src/licensedcode/data/rules/maven_pom_4.RULE index e0f756b340..9765c5cfce 100644 --- a/src/licensedcode/data/rules/maven_pom_4.RULE +++ b/src/licensedcode/data/rules/maven_pom_4.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.apache.org/licenses/LICENSE-2.0.txt --- -License: Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file +License: {{Apache License, Version 2.0}} (https://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_5.RULE b/src/licensedcode/data/rules/maven_pom_5.RULE index dcd44555d0..072c7fde41 100644 --- a/src/licensedcode/data/rules/maven_pom_5.RULE +++ b/src/licensedcode/data/rules/maven_pom_5.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://www.apache.org/licenses/LICENSE-2.0.txt --- -License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file +License: {{Apache License, Version 2.0}} (http://www.apache.org/licenses/LICENSE-2.0.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/maven_pom_7.RULE b/src/licensedcode/data/rules/maven_pom_7.RULE index 76af2f13fc..81cda2fa64 100644 --- a/src/licensedcode/data/rules/maven_pom_7.RULE +++ b/src/licensedcode/data/rules/maven_pom_7.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://jwordnet.svn.sourceforge.net/svnroot/jwordnet/trunk/jwnl/license.txt --- -License: BSD 3-Clause License (http://jwordnet.svn.sourceforge.net/svnroot/jwordnet/trunk/jwnl/license.txt) \ No newline at end of file +{{License: BSD 3-Clause}} License (http://jwordnet.svn.sourceforge.net/svnroot/jwordnet/trunk/jwnl/license.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_0.RULE b/src/licensedcode/data/rules/mit_0.RULE index 7348150198..cf75036594 100644 --- a/src/licensedcode/data/rules/mit_0.RULE +++ b/src/licensedcode/data/rules/mit_0.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -is released under the MIT license. See the LICENSE +is released {{under the MIT license}}. See the LICENSE file for the complete license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1000.RULE b/src/licensedcode/data/rules/mit_1000.RULE index ff274088f7..ec21e11afa 100644 --- a/src/licensedcode/data/rules/mit_1000.RULE +++ b/src/licensedcode/data/rules/mit_1000.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the open source MIT license \ No newline at end of file +distributed under the open source {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1001.RULE b/src/licensedcode/data/rules/mit_1001.RULE index 54f4f8b744..3d37b680da 100644 --- a/src/licensedcode/data/rules/mit_1001.RULE +++ b/src/licensedcode/data/rules/mit_1001.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the open source MIT license \ No newline at end of file +under the open source {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1002.RULE b/src/licensedcode/data/rules/mit_1002.RULE index 5bb295f521..2a2b7cb7c4 100644 --- a/src/licensedcode/data/rules/mit_1002.RULE +++ b/src/licensedcode/data/rules/mit_1002.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -See the LICENSE file. It's under the MIT License. \ No newline at end of file +See the LICENSE file. It's {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1003.RULE b/src/licensedcode/data/rules/mit_1003.RULE index 5b28d836a1..5ac8ca6e2f 100644 --- a/src/licensedcode/data/rules/mit_1003.RULE +++ b/src/licensedcode/data/rules/mit_1003.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The authors of this package license their work under the terms of the MIT License. \ No newline at end of file +The authors of this package license their work under the terms of {{the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1005.RULE b/src/licensedcode/data/rules/mit_1005.RULE index f9ca24bd04..204865d5a5 100644 --- a/src/licensedcode/data/rules/mit_1005.RULE +++ b/src/licensedcode/data/rules/mit_1005.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This Extension is licensed under the MIT Licence \ No newline at end of file +This Extension is {{licensed under the MIT}} Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1006.RULE b/src/licensedcode/data/rules/mit_1006.RULE index 4aabda3e68..1b6ac240f4 100644 --- a/src/licensedcode/data/rules/mit_1006.RULE +++ b/src/licensedcode/data/rules/mit_1006.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -logo is licensed under the MIT licence \ No newline at end of file +logo is {{licensed under the MIT}} licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1007.RULE b/src/licensedcode/data/rules/mit_1007.RULE index 2bb8117ef3..ee5ce22a3a 100644 --- a/src/licensedcode/data/rules/mit_1007.RULE +++ b/src/licensedcode/data/rules/mit_1007.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -for free and licensed under the MIT licence. \ No newline at end of file +for free and {{licensed under the MIT}} licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1008.RULE b/src/licensedcode/data/rules/mit_1008.RULE index 88a62d5758..9ee8cb5605 100644 --- a/src/licensedcode/data/rules/mit_1008.RULE +++ b/src/licensedcode/data/rules/mit_1008.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The site software is licensed under the MIT licence. \ No newline at end of file +The site software is {{licensed under the MIT}} licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1009.RULE b/src/licensedcode/data/rules/mit_1009.RULE index ecf9ccfe15..59ed4de1d4 100644 --- a/src/licensedcode/data/rules/mit_1009.RULE +++ b/src/licensedcode/data/rules/mit_1009.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -The package is licensed under the MIT licence https://opensource.org/licenses/​MIT \ No newline at end of file +The package is {{licensed under the MIT}} licence https://opensource.org/licenses/​MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_101.RULE b/src/licensedcode/data/rules/mit_101.RULE index 3a9e40b310..eccb4c2b10 100644 --- a/src/licensedcode/data/rules/mit_101.RULE +++ b/src/licensedcode/data/rules/mit_101.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -This source code is licensed under the MIT license found in the +This source code is {{licensed under the MIT}} license found in the LICENSE file in the root directory of this source tree. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1010.RULE b/src/licensedcode/data/rules/mit_1010.RULE index 465ec68035..812b0a9563 100644 --- a/src/licensedcode/data/rules/mit_1010.RULE +++ b/src/licensedcode/data/rules/mit_1010.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The package is licensed under the MIT licence \ No newline at end of file +The package is {{licensed under the MIT}} licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1011.RULE b/src/licensedcode/data/rules/mit_1011.RULE index 9e4cd2b708..6e2c01a9da 100644 --- a/src/licensedcode/data/rules/mit_1011.RULE +++ b/src/licensedcode/data/rules/mit_1011.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All source code is now licensed under the MIT licence. \ No newline at end of file +All source code is now {{licensed under the MIT}} licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1012.RULE b/src/licensedcode/data/rules/mit_1012.RULE index 6d494c7c6d..f4b2190e72 100644 --- a/src/licensedcode/data/rules/mit_1012.RULE +++ b/src/licensedcode/data/rules/mit_1012.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the MIT licence and hence open source. \ No newline at end of file +{{licensed under the MIT}} licence and hence open source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1013.RULE b/src/licensedcode/data/rules/mit_1013.RULE index b0082b384e..8b7c89de28 100644 --- a/src/licensedcode/data/rules/mit_1013.RULE +++ b/src/licensedcode/data/rules/mit_1013.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It is licensed under the MIT licence, \ No newline at end of file +It is {{licensed under the MIT}} licence, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1014.RULE b/src/licensedcode/data/rules/mit_1014.RULE index c1692c6ebc..ff3e84986f 100644 --- a/src/licensedcode/data/rules/mit_1014.RULE +++ b/src/licensedcode/data/rules/mit_1014.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Projects are licensed under the MIT licence \ No newline at end of file +Projects are {{licensed under the MIT}} licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1015.RULE b/src/licensedcode/data/rules/mit_1015.RULE index 103916c10d..93621dcb5f 100644 --- a/src/licensedcode/data/rules/mit_1015.RULE +++ b/src/licensedcode/data/rules/mit_1015.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The extension is OSS and licensed under the MIT licence. \ No newline at end of file +The extension is OSS and {{licensed under the MIT}} licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1016.RULE b/src/licensedcode/data/rules/mit_1016.RULE index c2588876a5..40acc5b5d0 100644 --- a/src/licensedcode/data/rules/mit_1016.RULE +++ b/src/licensedcode/data/rules/mit_1016.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -plugin is licensed under the MIT licence. \ No newline at end of file +plugin is {{licensed under the MIT}} licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1017.RULE b/src/licensedcode/data/rules/mit_1017.RULE index a5f7b40def..b425298157 100644 --- a/src/licensedcode/data/rules/mit_1017.RULE +++ b/src/licensedcode/data/rules/mit_1017.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -the source code is licensed under the MIT licence \ No newline at end of file +the source code is {{licensed under the MIT}} licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1019.RULE b/src/licensedcode/data/rules/mit_1019.RULE index 58b2d1fc88..64009a7730 100644 --- a/src/licensedcode/data/rules/mit_1019.RULE +++ b/src/licensedcode/data/rules/mit_1019.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under The MIT Licence \ No newline at end of file +{{Licensed under The MIT}} Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_102.RULE b/src/licensedcode/data/rules/mit_102.RULE index 0f66434394..54cb23bdba 100644 --- a/src/licensedcode/data/rules/mit_102.RULE +++ b/src/licensedcode/data/rules/mit_102.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Based on the library, which is used under the MIT License below: \ No newline at end of file +Based on the library, which is used {{under the MIT License}} below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1020.RULE b/src/licensedcode/data/rules/mit_1020.RULE index ec62fd562a..228dde1d97 100644 --- a/src/licensedcode/data/rules/mit_1020.RULE +++ b/src/licensedcode/data/rules/mit_1020.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This framework is licensed under the MIT licence \ No newline at end of file +This framework is {{licensed under the MIT}} licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1021.RULE b/src/licensedcode/data/rules/mit_1021.RULE index 76cd9ae75b..62519d31be 100644 --- a/src/licensedcode/data/rules/mit_1021.RULE +++ b/src/licensedcode/data/rules/mit_1021.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -source code samples and files are licensed under the MIT licence. \ No newline at end of file +source code samples and files are {{licensed under the MIT}} licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1022.RULE b/src/licensedcode/data/rules/mit_1022.RULE index a94a46153e..f128fa949f 100644 --- a/src/licensedcode/data/rules/mit_1022.RULE +++ b/src/licensedcode/data/rules/mit_1022.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under MIT Licence \ No newline at end of file +{{licensed under MIT}} Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1023.RULE b/src/licensedcode/data/rules/mit_1023.RULE index 0e50b6b459..0ec8848320 100644 --- a/src/licensedcode/data/rules/mit_1023.RULE +++ b/src/licensedcode/data/rules/mit_1023.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -licensed under MIT Licence +{{licensed under MIT}} Licence (https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1024.RULE b/src/licensedcode/data/rules/mit_1024.RULE index a228cf9c9b..bc1a3b8c68 100644 --- a/src/licensedcode/data/rules/mit_1024.RULE +++ b/src/licensedcode/data/rules/mit_1024.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENCE --- -This project is licensed under the MIT licence. See the LICENCE file for more details. \ No newline at end of file +This project is {{licensed under the MIT}} licence. See the LICENCE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1025.RULE b/src/licensedcode/data/rules/mit_1025.RULE index 99faad3441..ea49197527 100644 --- a/src/licensedcode/data/rules/mit_1025.RULE +++ b/src/licensedcode/data/rules/mit_1025.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENCE --- -Licensed under the MIT licence (see the LICENSE file). \ No newline at end of file +{{Licensed under the MIT}} licence (see the LICENSE file). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1026.RULE b/src/licensedcode/data/rules/mit_1026.RULE index eefd2790ea..dcef406759 100644 --- a/src/licensedcode/data/rules/mit_1026.RULE +++ b/src/licensedcode/data/rules/mit_1026.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Licensed under MIT Licence - See LICENSE \ No newline at end of file +{{Licensed under MIT}} Licence - See LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1027.RULE b/src/licensedcode/data/rules/mit_1027.RULE index 47a80feddc..804764a2f1 100644 --- a/src/licensedcode/data/rules/mit_1027.RULE +++ b/src/licensedcode/data/rules/mit_1027.RULE @@ -6,4 +6,4 @@ referenced_filenames: - License.txt --- -Licensed under MIT licence. See License.txt in the project root for license information. \ No newline at end of file +{{Licensed under MIT}} licence. See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1028.RULE b/src/licensedcode/data/rules/mit_1028.RULE index 7180b65648..161a9ecb43 100644 --- a/src/licensedcode/data/rules/mit_1028.RULE +++ b/src/licensedcode/data/rules/mit_1028.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.md --- -This software is licensed under the MIT licence (see LICENSE.md ) \ No newline at end of file +This software is {{licensed under the MIT}} licence (see LICENSE.md ) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1029.RULE b/src/licensedcode/data/rules/mit_1029.RULE index ecd8277bc9..c8dde61d4c 100644 --- a/src/licensedcode/data/rules/mit_1029.RULE +++ b/src/licensedcode/data/rules/mit_1029.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the MIT licence. \ No newline at end of file +This project is {{licensed under the MIT}} licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_103.RULE b/src/licensedcode/data/rules/mit_103.RULE index a1cc5e3c1d..16d3d1d211 100644 --- a/src/licensedcode/data/rules/mit_103.RULE +++ b/src/licensedcode/data/rules/mit_103.RULE @@ -7,7 +7,7 @@ referenced_filenames: - LCIENSE --- -This source code is licensed under the MIT license found in the +This source code is {{licensed under the MIT}} license found in the LICENSE file in the root directory of this source tree. -Based on the library, which is used under the MIT License below: \ No newline at end of file +Based on the library, which is used {{under the MIT License}} below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1030.RULE b/src/licensedcode/data/rules/mit_1030.RULE index 57c15b5267..fb4db45bad 100644 --- a/src/licensedcode/data/rules/mit_1030.RULE +++ b/src/licensedcode/data/rules/mit_1030.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -fully open source and licensed under the MIT Licence \ No newline at end of file +fully open source and {{licensed under the MIT}} Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1031.RULE b/src/licensedcode/data/rules/mit_1031.RULE index 779d06d225..dac7aea0dc 100644 --- a/src/licensedcode/data/rules/mit_1031.RULE +++ b/src/licensedcode/data/rules/mit_1031.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the MIT Licence \ No newline at end of file +This software is {{licensed under the MIT}} Licence \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1032.RULE b/src/licensedcode/data/rules/mit_1032.RULE index b020bc3298..35d542fef4 100644 --- a/src/licensedcode/data/rules/mit_1032.RULE +++ b/src/licensedcode/data/rules/mit_1032.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This workflow is licensed under the MIT Licence. \ No newline at end of file +This workflow is {{licensed under the MIT}} Licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1033.RULE b/src/licensedcode/data/rules/mit_1033.RULE index 7b7bea91d4..fad8fcb0a1 100644 --- a/src/licensedcode/data/rules/mit_1033.RULE +++ b/src/licensedcode/data/rules/mit_1033.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -open source software and licensed under the MIT licence. \ No newline at end of file +open source software and {{licensed under the MIT}} licence. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1034.RULE b/src/licensedcode/data/rules/mit_1034.RULE index 54e49066bc..ba286f19fe 100644 --- a/src/licensedcode/data/rules/mit_1034.RULE +++ b/src/licensedcode/data/rules/mit_1034.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://en.wikipedia.org/wiki/MIT_License --- -Licensed under The MIT License +{{Licensed under The MIT}} License http://en.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1035.RULE b/src/licensedcode/data/rules/mit_1035.RULE index 1825296f8c..50481a8420 100644 --- a/src/licensedcode/data/rules/mit_1035.RULE +++ b/src/licensedcode/data/rules/mit_1035.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://en.wikipedia.org/wiki/MIT_License --- -Licensed under The MIT License +{{Licensed under The MIT}} License https://en.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1036.RULE b/src/licensedcode/data/rules/mit_1036.RULE index b212da6b3d..82e37a153d 100644 --- a/src/licensedcode/data/rules/mit_1036.RULE +++ b/src/licensedcode/data/rules/mit_1036.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -MIT MIT License \ No newline at end of file +MIT {{MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1037.RULE b/src/licensedcode/data/rules/mit_1037.RULE index f1f96ac264..037ffb91f4 100644 --- a/src/licensedcode/data/rules/mit_1037.RULE +++ b/src/licensedcode/data/rules/mit_1037.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -MIT License -(The MIT License) \ No newline at end of file +{{MIT License}} +({{The MIT License}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_104.RULE b/src/licensedcode/data/rules/mit_104.RULE index abc40ea564..b9a7370296 100644 --- a/src/licensedcode/data/rules/mit_104.RULE +++ b/src/licensedcode/data/rules/mit_104.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -as a whole is licensed under the following standard MIT license: \ No newline at end of file +as a whole is licensed under the following standard {{MIT license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1040.RULE b/src/licensedcode/data/rules/mit_1040.RULE index 14d4e9cda5..5fe148e2f4 100644 --- a/src/licensedcode/data/rules/mit_1040.RULE +++ b/src/licensedcode/data/rules/mit_1040.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -Project licenses this product to you under the MIT License (the "License"). You may not use this product except in compliance with the License. You may obtain a copy of the License at: +Project licenses this product to you {{under the MIT License}} (the "License"). You may not use this product except in compliance with the License. You may obtain a copy of the License at: http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_1043.RULE b/src/licensedcode/data/rules/mit_1043.RULE index 97245b51d0..2aa005167b 100644 --- a/src/licensedcode/data/rules/mit_1043.RULE +++ b/src/licensedcode/data/rules/mit_1043.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -mit-license.org/) license: \ No newline at end of file +{{mit-license}}.org/) license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1045.RULE b/src/licensedcode/data/rules/mit_1045.RULE index e66480dfef..fce7a856c0 100644 --- a/src/licensedcode/data/rules/mit_1045.RULE +++ b/src/licensedcode/data/rules/mit_1045.RULE @@ -9,5 +9,5 @@ ignorable_urls: The following is the 'standard copyright' agreed upon by most contributors, and is currently the canonical license preferred by the X.Org Foundation. -This is a slight variant of the common MIT license form published by the +This is a slight variant of the common {{MIT license}} form published by the Open Source Initiative at http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1046.RULE b/src/licensedcode/data/rules/mit_1046.RULE index e8519c120f..819b9c93cc 100644 --- a/src/licensedcode/data/rules/mit_1046.RULE +++ b/src/licensedcode/data/rules/mit_1046.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -manual pages are released under the MIT License. \ No newline at end of file +manual pages are released {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1047.RULE b/src/licensedcode/data/rules/mit_1047.RULE index 281f853c5c..7b53cbc38b 100644 --- a/src/licensedcode/data/rules/mit_1047.RULE +++ b/src/licensedcode/data/rules/mit_1047.RULE @@ -7,4 +7,4 @@ referenced_filenames: notes: Seen in https://github.com/Wind4/vlmcsd/blob/65228e5c7916acd947ffb53be18abadafbc1be56/src/tap-windows.h --- -licensed using the MIT license (see COPYRIGHT.MIT). \ No newline at end of file +licensed using {{the MIT license}} (see COPYRIGHT.MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_105.RULE b/src/licensedcode/data/rules/mit_105.RULE index 1d274beedd..3c754d6b5e 100644 --- a/src/licensedcode/data/rules/mit_105.RULE +++ b/src/licensedcode/data/rules/mit_105.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -and is licensed under an MIT-style license. \ No newline at end of file +and is licensed under an {{MIT-style license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1050.RULE b/src/licensedcode/data/rules/mit_1050.RULE index 2155a45fb0..b10d536d46 100644 --- a/src/licensedcode/data/rules/mit_1050.RULE +++ b/src/licensedcode/data/rules/mit_1050.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Other files in this repo are under the MIT license below. \ No newline at end of file +Other files in this repo are {{under the MIT license}} below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1051.RULE b/src/licensedcode/data/rules/mit_1051.RULE index f045f93bc6..5f2189b6e1 100644 --- a/src/licensedcode/data/rules/mit_1051.RULE +++ b/src/licensedcode/data/rules/mit_1051.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- LICENSE -is made available under the MIT License. For more details, see `LICENSE.txt \ No newline at end of file +is made available {{under the MIT License}}. For more details, see `LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1052.RULE b/src/licensedcode/data/rules/mit_1052.RULE index 6f0592b23c..d4b73fc415 100644 --- a/src/licensedcode/data/rules/mit_1052.RULE +++ b/src/licensedcode/data/rules/mit_1052.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -made available under the MIT License. For more details, see `LICENSE.txt \ No newline at end of file +made available {{under the MIT License}}. For more details, see `LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1055.RULE b/src/licensedcode/data/rules/mit_1055.RULE index cd40d65493..702330c42f 100644 --- a/src/licensedcode/data/rules/mit_1055.RULE +++ b/src/licensedcode/data/rules/mit_1055.RULE @@ -7,4 +7,4 @@ minimum_coverage: 70 License -This project is licensed under the terms of the MIT license. \ No newline at end of file +This project is licensed under the terms of {{the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1056.RULE b/src/licensedcode/data/rules/mit_1056.RULE index da93bb77a1..0872d5a756 100644 --- a/src/licensedcode/data/rules/mit_1056.RULE +++ b/src/licensedcode/data/rules/mit_1056.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: https://github.com/nexB/scancode-toolkit/issues/2675 --- -Distributed under the MIT License (MIT) \ No newline at end of file +{{Distributed under the MIT License}} (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1057.RULE b/src/licensedcode/data/rules/mit_1057.RULE index e76f45634e..c8629ab9df 100644 --- a/src/licensedcode/data/rules/mit_1057.RULE +++ b/src/licensedcode/data/rules/mit_1057.RULE @@ -9,5 +9,5 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt +{{Distributed under the MIT License}} (MIT) (See accompanying file LICENSE.txt or copy at http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1060.RULE b/src/licensedcode/data/rules/mit_1060.RULE index f6d7e33ff5..7fd723f7ce 100644 --- a/src/licensedcode/data/rules/mit_1060.RULE +++ b/src/licensedcode/data/rules/mit_1060.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 90 --- -License: MIT-like \ No newline at end of file +{{License: MIT}}-like \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1061.RULE b/src/licensedcode/data/rules/mit_1061.RULE index bdcbda3cf1..8b03ee1bbe 100644 --- a/src/licensedcode/data/rules/mit_1061.RULE +++ b/src/licensedcode/data/rules/mit_1061.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -used under the MIT license \ No newline at end of file +used {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1064.RULE b/src/licensedcode/data/rules/mit_1064.RULE index bacc8cbfce..61b4f5fb03 100644 --- a/src/licensedcode/data/rules/mit_1064.RULE +++ b/src/licensedcode/data/rules/mit_1064.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Prototype is freely distributable under the terms of an MIT-style - license. \ No newline at end of file +Prototype is freely distributable under the terms of an {{MIT-style + license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1065.RULE b/src/licensedcode/data/rules/mit_1065.RULE index 148880182a..387d9fea4d 100644 --- a/src/licensedcode/data/rules/mit_1065.RULE +++ b/src/licensedcode/data/rules/mit_1065.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -is freely distributable under the terms of an MIT-style - license. \ No newline at end of file +is freely distributable under the terms of an {{MIT-style + license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1066.RULE b/src/licensedcode/data/rules/mit_1066.RULE index 7a08cac8f8..c09b7e6d1a 100644 --- a/src/licensedcode/data/rules/mit_1066.RULE +++ b/src/licensedcode/data/rules/mit_1066.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It is freely distributable under the terms of an MIT-style license. \ No newline at end of file +It is freely distributable under the terms of an {{MIT-style license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1067.RULE b/src/licensedcode/data/rules/mit_1067.RULE index 590e5d1d2c..4f65e37cda 100644 --- a/src/licensedcode/data/rules/mit_1067.RULE +++ b/src/licensedcode/data/rules/mit_1067.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -all examples, code snippets and attached documentation is covered by the MIT license. \ No newline at end of file +all examples, code snippets and attached documentation is covered by {{the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1068.RULE b/src/licensedcode/data/rules/mit_1068.RULE index 29e033eb07..a2e2bba9f8 100644 --- a/src/licensedcode/data/rules/mit_1068.RULE +++ b/src/licensedcode/data/rules/mit_1068.RULE @@ -8,4 +8,4 @@ ignorable_urls: ## License -This software is published under the [MIT License](http://opensource.org/licenses/mit-license.php). \ No newline at end of file +This software is published {{under the [MIT License}}](http://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1069.RULE b/src/licensedcode/data/rules/mit_1069.RULE index 13869a8c72..1afdcd6771 100644 --- a/src/licensedcode/data/rules/mit_1069.RULE +++ b/src/licensedcode/data/rules/mit_1069.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/mit-license.php --- -This software is published under the [MIT License](http://opensource.org/licenses/mit-license.php). \ No newline at end of file +This software is published {{under the [MIT License}}](http://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1070.RULE b/src/licensedcode/data/rules/mit_1070.RULE index fc5b368107..25b6e7f4af 100644 --- a/src/licensedcode/data/rules/mit_1070.RULE +++ b/src/licensedcode/data/rules/mit_1070.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is published under the [MIT License] \ No newline at end of file +This software is published {{under the [MIT License}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1071.RULE b/src/licensedcode/data/rules/mit_1071.RULE index 47583eec3e..4461fc9572 100644 --- a/src/licensedcode/data/rules/mit_1071.RULE +++ b/src/licensedcode/data/rules/mit_1071.RULE @@ -6,4 +6,4 @@ referenced_filenames: --- This software may be distributed under the terms -* of the MIT license. See the LICENSE file for details. \ No newline at end of file +* of {{the MIT license}}. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1072.RULE b/src/licensedcode/data/rules/mit_1072.RULE index c0a5aa555b..d4d8683c87 100644 --- a/src/licensedcode/data/rules/mit_1072.RULE +++ b/src/licensedcode/data/rules/mit_1072.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -posted it all under the MIT license \ No newline at end of file +posted it all {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1073.RULE b/src/licensedcode/data/rules/mit_1073.RULE index d7e177db27..0b0eefc1f4 100644 --- a/src/licensedcode/data/rules/mit_1073.RULE +++ b/src/licensedcode/data/rules/mit_1073.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -You may alternatively use these files under the MIT License: \ No newline at end of file +You may alternatively use these files {{under the MIT License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1074.RULE b/src/licensedcode/data/rules/mit_1074.RULE index 9abfe96f02..63200900ae 100644 --- a/src/licensedcode/data/rules/mit_1074.RULE +++ b/src/licensedcode/data/rules/mit_1074.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -distributed under the MIT license, please see LICENSE for more information. \ No newline at end of file +{{distributed under the MIT license}}, please see LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1075.RULE b/src/licensedcode/data/rules/mit_1075.RULE index 3a9f43a78a..e89450c04a 100644 --- a/src/licensedcode/data/rules/mit_1075.RULE +++ b/src/licensedcode/data/rules/mit_1075.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -license: MIT, see LICENSE for more details. \ No newline at end of file +{{license: MIT}}, see LICENSE for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1076.RULE b/src/licensedcode/data/rules/mit_1076.RULE index 6e9502ea71..a62f6c84bc 100644 --- a/src/licensedcode/data/rules/mit_1076.RULE +++ b/src/licensedcode/data/rules/mit_1076.RULE @@ -6,4 +6,4 @@ referenced_filenames: --- License -This work is released under the MIT license. A copy of the license is provided in the [LICENSE](./LICENSE) file \ No newline at end of file +This work is released {{under the MIT license}}. A copy of the license is provided in the [LICENSE](./LICENSE) file \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1077.RULE b/src/licensedcode/data/rules/mit_1077.RULE index c82e5ec594..59c264ae38 100644 --- a/src/licensedcode/data/rules/mit_1077.RULE +++ b/src/licensedcode/data/rules/mit_1077.RULE @@ -5,4 +5,4 @@ referenced_filenames: - LICENSE --- -This work is released under the MIT license. A copy of the license is provided in the LICENSE file. \ No newline at end of file +This work is released {{under the MIT license}}. A copy of the license is provided in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1078.RULE b/src/licensedcode/data/rules/mit_1078.RULE index 6ea82c5949..ad40e75c81 100644 --- a/src/licensedcode/data/rules/mit_1078.RULE +++ b/src/licensedcode/data/rules/mit_1078.RULE @@ -5,4 +5,4 @@ is_license_notice: yes ## License -The code of is released under the MIT License. There is no limitation for both academic and commercial usage. \ No newline at end of file +The code of is released {{under the MIT License}}. There is no limitation for both academic and commercial usage. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1079.RULE b/src/licensedcode/data/rules/mit_1079.RULE index ac03f5a726..e988a35a67 100644 --- a/src/licensedcode/data/rules/mit_1079.RULE +++ b/src/licensedcode/data/rules/mit_1079.RULE @@ -3,4 +3,4 @@ license_expression: mit is_license_notice: yes --- -The code of is released under the MIT License. There is no limitation for both academic and commercial usage. \ No newline at end of file +The code of is released {{under the MIT License}}. There is no limitation for both academic and commercial usage. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_108.RULE b/src/licensedcode/data/rules/mit_108.RULE index c869cc58bf..83e35e8536 100644 --- a/src/licensedcode/data/rules/mit_108.RULE +++ b/src/licensedcode/data/rules/mit_108.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Licensed under permissive MIT license \ No newline at end of file +Licensed under permissive {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1080.RULE b/src/licensedcode/data/rules/mit_1080.RULE index a1cbd2f67e..cd1a3f1f35 100644 --- a/src/licensedcode/data/rules/mit_1080.RULE +++ b/src/licensedcode/data/rules/mit_1080.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The code of is released under the MIT License. \ No newline at end of file +The code of is released {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1081.RULE b/src/licensedcode/data/rules/mit_1081.RULE index 1a42d5695c..ec878d1c26 100644 --- a/src/licensedcode/data/rules/mit_1081.RULE +++ b/src/licensedcode/data/rules/mit_1081.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under The MIT License [see LICENSE for details] \ No newline at end of file +{{Licensed under The MIT}} License [see LICENSE for details] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1082.RULE b/src/licensedcode/data/rules/mit_1082.RULE index 4c7dd6abc2..3ffb80fc32 100644 --- a/src/licensedcode/data/rules/mit_1082.RULE +++ b/src/licensedcode/data/rules/mit_1082.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is distributed under the MIT license. \ No newline at end of file +This software is {{distributed under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1088.RULE b/src/licensedcode/data/rules/mit_1088.RULE index ddc1c2810d..9261efd618 100644 --- a/src/licensedcode/data/rules/mit_1088.RULE +++ b/src/licensedcode/data/rules/mit_1088.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Licensed under the terms of the [MIT license](./LICENSE). \ No newline at end of file +Licensed under the terms of {{the [MIT license}}](./LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1089.RULE b/src/licensedcode/data/rules/mit_1089.RULE index 6d70076b67..cd9d959d19 100644 --- a/src/licensedcode/data/rules/mit_1089.RULE +++ b/src/licensedcode/data/rules/mit_1089.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- License -The code is using the **MIT license**, which is a very permissive license +The code is using {{the **MIT license}}**, which is a very permissive license suitable for non-commercial and commercial uses of alike. However, you have to include the copyright notice in your code. Read the full license for the exact terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1090.RULE b/src/licensedcode/data/rules/mit_1090.RULE index f4139af1a5..c37a5f3843 100644 --- a/src/licensedcode/data/rules/mit_1090.RULE +++ b/src/licensedcode/data/rules/mit_1090.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It is released under the MIT license. \ No newline at end of file +It is released {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1091.RULE b/src/licensedcode/data/rules/mit_1091.RULE index f7c00f9616..50e5647701 100644 --- a/src/licensedcode/data/rules/mit_1091.RULE +++ b/src/licensedcode/data/rules/mit_1091.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://spdx.org/licenses/MIT --- -LICENSE: MIT (https://spdx.org/licenses/MIT) \ No newline at end of file +{{LICENSE: MIT}} (https://spdx.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1092.RULE b/src/licensedcode/data/rules/mit_1092.RULE index ac147bc29d..b390fd85bd 100644 --- a/src/licensedcode/data/rules/mit_1092.RULE +++ b/src/licensedcode/data/rules/mit_1092.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Unless explicitly stated otherwise all files in this repository are licensed under the MIT License. \ No newline at end of file +Unless explicitly stated otherwise all files in this repository are {{licensed under the MIT}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1093.RULE b/src/licensedcode/data/rules/mit_1093.RULE index a03f4fe2e7..d49986073d 100644 --- a/src/licensedcode/data/rules/mit_1093.RULE +++ b/src/licensedcode/data/rules/mit_1093.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.txt --- -Distributed under the MIT License. See +{{Distributed under the MIT License}}. See LICENSE.txt for further details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1094.RULE b/src/licensedcode/data/rules/mit_1094.RULE index 6b51208982..d4c8753374 100644 --- a/src/licensedcode/data/rules/mit_1094.RULE +++ b/src/licensedcode/data/rules/mit_1094.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -project also under the MIT License. \ No newline at end of file +project also {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1095.RULE b/src/licensedcode/data/rules/mit_1095.RULE index e460ba5f7a..c9caea6d6b 100644 --- a/src/licensedcode/data/rules/mit_1095.RULE +++ b/src/licensedcode/data/rules/mit_1095.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -under MIT License: http://www.opensource.org/licenses/mit-license.php \ No newline at end of file +{{under MIT License}}: http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1096.RULE b/src/licensedcode/data/rules/mit_1096.RULE index 7ddfcf301d..f5c82ef7f9 100644 --- a/src/licensedcode/data/rules/mit_1096.RULE +++ b/src/licensedcode/data/rules/mit_1096.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -This code is licensed under the MIT license see LICENSE.txt \ No newline at end of file +This code is {{licensed under the MIT}} license see LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1098.RULE b/src/licensedcode/data/rules/mit_1098.RULE index f886e83639..90ace836d2 100644 --- a/src/licensedcode/data/rules/mit_1098.RULE +++ b/src/licensedcode/data/rules/mit_1098.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -Distributed under the terms of an MIT-style license \ No newline at end of file +Distributed under the terms of an {{MIT-style license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1099.RULE b/src/licensedcode/data/rules/mit_1099.RULE index fcd43415a9..22659ef617 100644 --- a/src/licensedcode/data/rules/mit_1099.RULE +++ b/src/licensedcode/data/rules/mit_1099.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is licensed under the MIT License (MIT). \ No newline at end of file +This code is {{licensed under the MIT}} {{License (MIT}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_110.RULE b/src/licensedcode/data/rules/mit_110.RULE index a561e24ead..6fcdc109ee 100644 --- a/src/licensedcode/data/rules/mit_110.RULE +++ b/src/licensedcode/data/rules/mit_110.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -musl as a whole is licensed under the following standard MIT license: \ No newline at end of file +musl as a whole is licensed under the following standard {{MIT license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1106.RULE b/src/licensedcode/data/rules/mit_1106.RULE index f6e8ab6ae3..ee5533c46a 100644 --- a/src/licensedcode/data/rules/mit_1106.RULE +++ b/src/licensedcode/data/rules/mit_1106.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: MIT License \ No newline at end of file +name: {{MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1113.RULE b/src/licensedcode/data/rules/mit_1113.RULE index 617504ffc3..2ebee45558 100644 --- a/src/licensedcode/data/rules/mit_1113.RULE +++ b/src/licensedcode/data/rules/mit_1113.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'MIT license (MIT)': 'MIT', \ No newline at end of file +'{{MIT license (MIT}})': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1115.RULE b/src/licensedcode/data/rules/mit_1115.RULE index 97e5de8699..31083f917b 100644 --- a/src/licensedcode/data/rules/mit_1115.RULE +++ b/src/licensedcode/data/rules/mit_1115.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'MIT-Style': 'MIT', \ No newline at end of file +'{{MIT-Style}}': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1117.RULE b/src/licensedcode/data/rules/mit_1117.RULE index 82acdda943..52c3b9112b 100644 --- a/src/licensedcode/data/rules/mit_1117.RULE +++ b/src/licensedcode/data/rules/mit_1117.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'Http://opensource.org/licenses/MIT': 'MIT', \ No newline at end of file +'{{Http://opensource.org/licenses/MIT}}': 'MIT', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1118.RULE b/src/licensedcode/data/rules/mit_1118.RULE index d98641f50e..b76becf003 100644 --- a/src/licensedcode/data/rules/mit_1118.RULE +++ b/src/licensedcode/data/rules/mit_1118.RULE @@ -4,6 +4,8 @@ is_license_reference: yes is_continuous: yes relevance: 100 minimum_coverage: 100 +ignorable_urls: + - http://www.opensource.org/licenses/MIT --- -'Http://www.opensource.org/licenses/MIT': 'MIT', \ No newline at end of file +http://www.opensource.org/licenses/MIT : MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_112.RULE b/src/licensedcode/data/rules/mit_112.RULE index 78274f5d64..fce204f43d 100644 --- a/src/licensedcode/data/rules/mit_112.RULE +++ b/src/licensedcode/data/rules/mit_112.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://jedwatson.github.io/classnames --- -Licensed under the MIT License (MIT), see http://jedwatson.github.io/classnames \ No newline at end of file +{{Licensed under the MIT}} {{License (MIT}}), see http://jedwatson.github.io/classnames \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1120.RULE b/src/licensedcode/data/rules/mit_1120.RULE index 1154a9c81a..6bbce41bd4 100644 --- a/src/licensedcode/data/rules/mit_1120.RULE +++ b/src/licensedcode/data/rules/mit_1120.RULE @@ -8,4 +8,4 @@ referenced_filenames: - LICENSE.md --- -MIT License, see LICENSE.md for details \ No newline at end of file +{{MIT License}}, see LICENSE.md for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1121.RULE b/src/licensedcode/data/rules/mit_1121.RULE index 9c09f642ee..4ea631e822 100644 --- a/src/licensedcode/data/rules/mit_1121.RULE +++ b/src/licensedcode/data/rules/mit_1121.RULE @@ -8,4 +8,4 @@ referenced_filenames: - LICENSE.md --- -MIT License, see LICENSE.md for details': 'MIT \ No newline at end of file +{{MIT License}}, see LICENSE.md for details': 'MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_113.RULE b/src/licensedcode/data/rules/mit_113.RULE index d59b307788..c13709f6bd 100644 --- a/src/licensedcode/data/rules/mit_113.RULE +++ b/src/licensedcode/data/rules/mit_113.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the MIT License (MIT), \ No newline at end of file +{{Licensed under the MIT}} {{License (MIT}}), \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1132.RULE b/src/licensedcode/data/rules/mit_1132.RULE index 565f18ac31..67feec1b6c 100644 --- a/src/licensedcode/data/rules/mit_1132.RULE +++ b/src/licensedcode/data/rules/mit_1132.RULE @@ -8,4 +8,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -MIT License (http://opensource.org/licenses/MIT): MIT \ No newline at end of file +{{MIT License}} (http://opensource.org/licenses/MIT): MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1133.RULE b/src/licensedcode/data/rules/mit_1133.RULE index 6488bfe1f8..ff08a8c6f6 100644 --- a/src/licensedcode/data/rules/mit_1133.RULE +++ b/src/licensedcode/data/rules/mit_1133.RULE @@ -8,4 +8,4 @@ ignorable_urls: - http://www.opensource.org/licenses/MIT --- -MIT License http://www.opensource.org/licenses/MIT: MIT \ No newline at end of file +{{MIT License}} http://www.opensource.org/licenses/MIT: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1134.RULE b/src/licensedcode/data/rules/mit_1134.RULE index eaa0a4bab5..0b41577b16 100644 --- a/src/licensedcode/data/rules/mit_1134.RULE +++ b/src/licensedcode/data/rules/mit_1134.RULE @@ -10,4 +10,4 @@ ignorable_holders: - First Rally --- -MIT License. Copyright First Rally. All rights reserved.: MIT \ No newline at end of file +{{MIT License}}. Copyright First Rally. All rights reserved.: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1139.RULE b/src/licensedcode/data/rules/mit_1139.RULE index 39148cad46..ec1afb472e 100644 --- a/src/licensedcode/data/rules/mit_1139.RULE +++ b/src/licensedcode/data/rules/mit_1139.RULE @@ -7,6 +7,6 @@ ignorable_urls: --- - - MIT License + <{{license> + MIT}} License https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1141.RULE b/src/licensedcode/data/rules/mit_1141.RULE index a16abc2633..427b8618d0 100644 --- a/src/licensedcode/data/rules/mit_1141.RULE +++ b/src/licensedcode/data/rules/mit_1141.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This library is distributed under the terms of the MIT License: \ No newline at end of file +This library is distributed under the terms of {{the MIT License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1142.RULE b/src/licensedcode/data/rules/mit_1142.RULE index 904550b032..0e43782b3c 100644 --- a/src/licensedcode/data/rules/mit_1142.RULE +++ b/src/licensedcode/data/rules/mit_1142.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- - - MIT License + <{{license> + MIT}} License http://httpunit.sourceforge.net/doc/license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1143.RULE b/src/licensedcode/data/rules/mit_1143.RULE index a8c97b489a..a67c9631b7 100644 --- a/src/licensedcode/data/rules/mit_1143.RULE +++ b/src/licensedcode/data/rules/mit_1143.RULE @@ -5,5 +5,5 @@ relevance: 100 --- - - MIT License \ No newline at end of file + <{{license> + MIT}} License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1145.RULE b/src/licensedcode/data/rules/mit_1145.RULE index 80d12d9155..2c7164f0cd 100644 --- a/src/licensedcode/data/rules/mit_1145.RULE +++ b/src/licensedcode/data/rules/mit_1145.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed under the OSI-approved MIT License. \ No newline at end of file +Distributed under the OSI-approved {{MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1148.RULE b/src/licensedcode/data/rules/mit_1148.RULE index 1410558c18..c8fe7d4488 100644 --- a/src/licensedcode/data/rules/mit_1148.RULE +++ b/src/licensedcode/data/rules/mit_1148.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://mths.be/mit --- -Available under MIT license \ No newline at end of file +Available {{under MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1160.RULE b/src/licensedcode/data/rules/mit_1160.RULE index 80cdb1d6a5..4e9a612d24 100644 --- a/src/licensedcode/data/rules/mit_1160.RULE +++ b/src/licensedcode/data/rules/mit_1160.RULE @@ -1,9 +1,9 @@ --- license_expression: mit is_license_tag: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 --- -{{license - name: MIT}} \ No newline at end of file +license> + MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1161.RULE b/src/licensedcode/data/rules/mit_1161.RULE index 5e878e494a..f8d7e92407 100644 --- a/src/licensedcode/data/rules/mit_1161.RULE +++ b/src/licensedcode/data/rules/mit_1161.RULE @@ -1,9 +1,9 @@ --- license_expression: mit is_license_tag: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 --- -{{licenses - name: MIT}} \ No newline at end of file +"licenses": + "name": "MIT" \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1162.RULE b/src/licensedcode/data/rules/mit_1162.RULE index 665337fcc5..e868950724 100644 --- a/src/licensedcode/data/rules/mit_1162.RULE +++ b/src/licensedcode/data/rules/mit_1162.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://opensource.org/licenses/mit-license --- -license": { - "name": "MIT", +{{license": { + "name": "MIT}}", "url": "http://opensource.org/licenses/mit-license" \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1163.RULE b/src/licensedcode/data/rules/mit_1163.RULE index 74b2955102..a89b11e6a3 100644 --- a/src/licensedcode/data/rules/mit_1163.RULE +++ b/src/licensedcode/data/rules/mit_1163.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is subject to the terms and conditions of the MIT License: \ No newline at end of file +This file is subject to the terms and conditions of {{the MIT License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1165.RULE b/src/licensedcode/data/rules/mit_1165.RULE index ade2cf49c9..1cb2a1c205 100644 --- a/src/licensedcode/data/rules/mit_1165.RULE +++ b/src/licensedcode/data/rules/mit_1165.RULE @@ -1,6 +1,7 @@ --- license_expression: mit is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/mit_1166.RULE b/src/licensedcode/data/rules/mit_1166.RULE index 1f19681dae..c2f9900805 100644 --- a/src/licensedcode/data/rules/mit_1166.RULE +++ b/src/licensedcode/data/rules/mit_1166.RULE @@ -6,4 +6,4 @@ relevance: 100 License -The project is licensed under the MIT license. SPDX-License-Identifier: MIT \ No newline at end of file +The project is {{licensed under the MIT}} license. SPDX-License-Identifier: MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_117.RULE b/src/licensedcode/data/rules/mit_117.RULE index 3be93d0e45..19ce39907f 100644 --- a/src/licensedcode/data/rules/mit_117.RULE +++ b/src/licensedcode/data/rules/mit_117.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Available under MIT license \ No newline at end of file +Available {{under MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1174.RULE b/src/licensedcode/data/rules/mit_1174.RULE index 9b8d77e788..57e7568768 100644 --- a/src/licensedcode/data/rules/mit_1174.RULE +++ b/src/licensedcode/data/rules/mit_1174.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -released under an X/MIT style Open Source license \ No newline at end of file +released under an {{X/MIT style}} Open Source license diff --git a/src/licensedcode/data/rules/mit_1183.RULE b/src/licensedcode/data/rules/mit_1183.RULE index 7c8e68629b..82943e1fdf 100644 --- a/src/licensedcode/data/rules/mit_1183.RULE +++ b/src/licensedcode/data/rules/mit_1183.RULE @@ -5,5 +5,5 @@ referenced_filenames: - doc/otp-base-license.txt --- -Portions of the following files are licensed under the MIT License: +Portions of the following files are {{licensed under the MIT}} License: Please see {{doc/otp-base-license.txt}} for the full terms of this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1186.RULE b/src/licensedcode/data/rules/mit_1186.RULE index caabf5df61..d85c8ea1f3 100644 --- a/src/licensedcode/data/rules/mit_1186.RULE +++ b/src/licensedcode/data/rules/mit_1186.RULE @@ -7,4 +7,4 @@ referenced_filenames: notes: seen in Python bottle --- -License: MIT (see LICENSE for details) \ No newline at end of file +{{License: MIT}} (see LICENSE for details) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1187.RULE b/src/licensedcode/data/rules/mit_1187.RULE index 62d84447d8..822a09eaba 100644 --- a/src/licensedcode/data/rules/mit_1187.RULE +++ b/src/licensedcode/data/rules/mit_1187.RULE @@ -7,4 +7,4 @@ referenced_filenames: notes: seen in Python bottle --- -License: MIT (see LICENSE) \ No newline at end of file +{{License: MIT}} (see LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1189.RULE b/src/licensedcode/data/rules/mit_1189.RULE index cb0c05adbd..8eb7cb690a 100644 --- a/src/licensedcode/data/rules/mit_1189.RULE +++ b/src/licensedcode/data/rules/mit_1189.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is freely distributable under the terms of the MIT License. \ No newline at end of file +This software is freely distributable under the terms of {{the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1192.RULE b/src/licensedcode/data/rules/mit_1192.RULE index ca3c069020..145a61afe2 100644 --- a/src/licensedcode/data/rules/mit_1192.RULE +++ b/src/licensedcode/data/rules/mit_1192.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License - [MIT License](LICENSE) \ No newline at end of file + [{{MIT License}}](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_11_1.RULE b/src/licensedcode/data/rules/mit_11_1.RULE index b7f17e3e51..18a06a8b99 100644 --- a/src/licensedcode/data/rules/mit_11_1.RULE +++ b/src/licensedcode/data/rules/mit_11_1.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The MIT license is as follows: \ No newline at end of file +{{The MIT license}} is as follows: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_12.RULE b/src/licensedcode/data/rules/mit_12.RULE index 8e6b09a49c..7db53ee4a5 100644 --- a/src/licensedcode/data/rules/mit_12.RULE +++ b/src/licensedcode/data/rules/mit_12.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the MIT license. \ No newline at end of file +{{Licensed under the MIT}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_120.RULE b/src/licensedcode/data/rules/mit_120.RULE index 04d645b7ba..97d4af1838 100644 --- a/src/licensedcode/data/rules/mit_120.RULE +++ b/src/licensedcode/data/rules/mit_120.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mit --- -Licensed under the MIT License at: * http://www.opensource.org/licenses/mit \ No newline at end of file +{{Licensed under the MIT}} License at: * http://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_121.RULE b/src/licensedcode/data/rules/mit_121.RULE index c5b6eadd08..4a5d9ca4c9 100644 --- a/src/licensedcode/data/rules/mit_121.RULE +++ b/src/licensedcode/data/rules/mit_121.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -MIT License http://www.opensource.org/licenses/mit-license.php \ No newline at end of file +{{MIT License}} http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1210.RULE b/src/licensedcode/data/rules/mit_1210.RULE index 95b08ab060..fd26640b42 100644 --- a/src/licensedcode/data/rules/mit_1210.RULE +++ b/src/licensedcode/data/rules/mit_1210.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -library distributed under the permissive MIT license. \ No newline at end of file +library distributed under the permissive {{MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1211.RULE b/src/licensedcode/data/rules/mit_1211.RULE index 0ef7c4caf1..90e13db419 100644 --- a/src/licensedcode/data/rules/mit_1211.RULE +++ b/src/licensedcode/data/rules/mit_1211.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the permissive MIT license. \ No newline at end of file +distributed under the permissive {{MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1212.RULE b/src/licensedcode/data/rules/mit_1212.RULE index 5931342b04..fa2814b2ae 100644 --- a/src/licensedcode/data/rules/mit_1212.RULE +++ b/src/licensedcode/data/rules/mit_1212.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the permissive MIT license. \ No newline at end of file +under the permissive {{MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1213.RULE b/src/licensedcode/data/rules/mit_1213.RULE index 4ac16396e5..38aa7926bf 100644 --- a/src/licensedcode/data/rules/mit_1213.RULE +++ b/src/licensedcode/data/rules/mit_1213.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -utilizes an MIT license. \ No newline at end of file +utilizes an {{MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1214.RULE b/src/licensedcode/data/rules/mit_1214.RULE index 3973223ede..c244077f1b 100644 --- a/src/licensedcode/data/rules/mit_1214.RULE +++ b/src/licensedcode/data/rules/mit_1214.RULE @@ -8,4 +8,4 @@ referenced_filenames: ## License -This project source code is available under MIT license. See [LICENSE](LICENSE). \ No newline at end of file +This project source code is available {{under MIT license}}. See [LICENSE](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1215.RULE b/src/licensedcode/data/rules/mit_1215.RULE index 0a00432580..c7e974f1b9 100644 --- a/src/licensedcode/data/rules/mit_1215.RULE +++ b/src/licensedcode/data/rules/mit_1215.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This project source code is available under MIT license. See [LICENSE](LICENSE). \ No newline at end of file +This project source code is available {{under MIT license}}. See [LICENSE](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1216.RULE b/src/licensedcode/data/rules/mit_1216.RULE index 7ec0d5a61c..da174bc81e 100644 --- a/src/licensedcode/data/rules/mit_1216.RULE +++ b/src/licensedcode/data/rules/mit_1216.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project source code is available under MIT license. \ No newline at end of file +This project source code is available {{under MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1218.RULE b/src/licensedcode/data/rules/mit_1218.RULE index a9f337ee28..2d0afe5d68 100644 --- a/src/licensedcode/data/rules/mit_1218.RULE +++ b/src/licensedcode/data/rules/mit_1218.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Unless otherwise specified, each is licensed under the MIT license. \ No newline at end of file +Unless otherwise specified, each is {{licensed under the MIT}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1219.RULE b/src/licensedcode/data/rules/mit_1219.RULE index a76de59247..8a62ecbe7d 100644 --- a/src/licensedcode/data/rules/mit_1219.RULE +++ b/src/licensedcode/data/rules/mit_1219.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -each is licensed under the MIT license. \ No newline at end of file +each is {{licensed under the MIT}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1220.RULE b/src/licensedcode/data/rules/mit_1220.RULE index 27d6238ff4..fa321e31d6 100644 --- a/src/licensedcode/data/rules/mit_1220.RULE +++ b/src/licensedcode/data/rules/mit_1220.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Conversion scripts are covered by MIT license. \ No newline at end of file +Conversion scripts are covered by {{MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1223.RULE b/src/licensedcode/data/rules/mit_1223.RULE index 5c67568be3..9706d7c1f9 100644 --- a/src/licensedcode/data/rules/mit_1223.RULE +++ b/src/licensedcode/data/rules/mit_1223.RULE @@ -3,9 +3,9 @@ license_expression: mit is_license_text: yes --- -Distributed under the terms of an {{MIT-style license:}} +{{Distributed under the terms of an MIT-style license: - The {{MIT License}} + The MIT License }} Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -23,4 +23,4 @@ Distributed under the terms of an {{MIT-style license:}} AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. \ No newline at end of file + THE SOFTWARE. diff --git a/src/licensedcode/data/rules/mit_1230.RULE b/src/licensedcode/data/rules/mit_1230.RULE index 62a0dc3cc4..a4b45ef75a 100644 --- a/src/licensedcode/data/rules/mit_1230.RULE +++ b/src/licensedcode/data/rules/mit_1230.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The MIT License (Expat) \ No newline at end of file +{{The MIT License}} (Expat) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1232.RULE b/src/licensedcode/data/rules/mit_1232.RULE index 3787697ace..5652192597 100644 --- a/src/licensedcode/data/rules/mit_1232.RULE +++ b/src/licensedcode/data/rules/mit_1232.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- This file is part of [zig](https://ziglang.org/), which is MIT licensed. -The MIT license requires this copyright notice to be included in all copies +{{The MIT license}} requires this copyright notice to be included in all copies and substantial portions of the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1233.RULE b/src/licensedcode/data/rules/mit_1233.RULE index 097db0a25f..c80c867a29 100644 --- a/src/licensedcode/data/rules/mit_1233.RULE +++ b/src/licensedcode/data/rules/mit_1233.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- This file is part of , which is MIT licensed. -The MIT license requires this copyright notice to be included in all copies +{{The MIT license}} requires this copyright notice to be included in all copies and substantial portions of the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1235.RULE b/src/licensedcode/data/rules/mit_1235.RULE index 55f9079dc2..fa6ed0e678 100644 --- a/src/licensedcode/data/rules/mit_1235.RULE +++ b/src/licensedcode/data/rules/mit_1235.RULE @@ -4,5 +4,5 @@ is_license_notice: yes --- MIT licensed. -The MIT license requires this copyright notice to be included in all copies +{{The MIT license}} requires this copyright notice to be included in all copies and substantial portions of the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1236.RULE b/src/licensedcode/data/rules/mit_1236.RULE index 94e0309b67..8d97035c7e 100644 --- a/src/licensedcode/data/rules/mit_1236.RULE +++ b/src/licensedcode/data/rules/mit_1236.RULE @@ -3,5 +3,5 @@ license_expression: mit is_license_notice: yes --- -The MIT license requires this copyright notice to be included in all copies +{{The MIT license}} requires this copyright notice to be included in all copies and substantial portions of the software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1237.RULE b/src/licensedcode/data/rules/mit_1237.RULE index 7944fa918c..d632100f74 100644 --- a/src/licensedcode/data/rules/mit_1237.RULE +++ b/src/licensedcode/data/rules/mit_1237.RULE @@ -5,5 +5,5 @@ ignorable_urls: - https://git.musl-libc.org/cgit/musl/tree/COPYRIGHT --- -Ported from musl, which is licensed under the MIT license: +Ported from musl, which is {{licensed under the MIT}} license: https://git.musl-libc.org/cgit/musl/tree/COPYRIGHT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1238.RULE b/src/licensedcode/data/rules/mit_1238.RULE index f44dffce2c..959a5373e6 100644 --- a/src/licensedcode/data/rules/mit_1238.RULE +++ b/src/licensedcode/data/rules/mit_1238.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the following standard MIT license: \ No newline at end of file +licensed under the following standard {{MIT license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1239.RULE b/src/licensedcode/data/rules/mit_1239.RULE index ad9cc7754f..2dd3bb2bdd 100644 --- a/src/licensedcode/data/rules/mit_1239.RULE +++ b/src/licensedcode/data/rules/mit_1239.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the following MIT license: \ No newline at end of file +licensed under the terms of the following {{MIT license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_124.RULE b/src/licensedcode/data/rules/mit_124.RULE index 4ba7a8d610..5a4ab78b3e 100644 --- a/src/licensedcode/data/rules/mit_124.RULE +++ b/src/licensedcode/data/rules/mit_124.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://codemirror.net/LICENSE --- -Distributed under an MIT license: http://codemirror.net/LICENSE \ No newline at end of file +Distributed under an {{MIT license}}: http://codemirror.net/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1243.RULE b/src/licensedcode/data/rules/mit_1243.RULE index 50c8c7847b..8f5081f400 100644 --- a/src/licensedcode/data/rules/mit_1243.RULE +++ b/src/licensedcode/data/rules/mit_1243.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Unless otherwise specified, these files are licensed under the MIT License. \ No newline at end of file +Unless otherwise specified, these files are {{licensed under the MIT}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1245.RULE b/src/licensedcode/data/rules/mit_1245.RULE index 93706df506..8fcbf27a5b 100644 --- a/src/licensedcode/data/rules/mit_1245.RULE +++ b/src/licensedcode/data/rules/mit_1245.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is licensed under the MIT License. \ No newline at end of file +This file is {{licensed under the MIT}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1247.RULE b/src/licensedcode/data/rules/mit_1247.RULE index 3319a1b2ab..84c6f9af51 100644 --- a/src/licensedcode/data/rules/mit_1247.RULE +++ b/src/licensedcode/data/rules/mit_1247.RULE @@ -8,4 +8,4 @@ referenced_filenames: License -This project is licensed under the terms of the [MIT license](LICENSE.md). \ No newline at end of file +This project is licensed under the terms of {{the [MIT license}}](LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1248.RULE b/src/licensedcode/data/rules/mit_1248.RULE index a359c3a183..cdfb3fd00d 100644 --- a/src/licensedcode/data/rules/mit_1248.RULE +++ b/src/licensedcode/data/rules/mit_1248.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.md --- -This project is licensed under the terms of the [MIT license](LICENSE.md). \ No newline at end of file +This project is licensed under the terms of {{the [MIT license}}](LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1249.RULE b/src/licensedcode/data/rules/mit_1249.RULE index 80a3986988..693ebe0d50 100644 --- a/src/licensedcode/data/rules/mit_1249.RULE +++ b/src/licensedcode/data/rules/mit_1249.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.rst --- -licensed under the MIT License - see the LICENSE.rst file for details. \ No newline at end of file +{{licensed under the MIT}} License - see the LICENSE.rst file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_125.RULE b/src/licensedcode/data/rules/mit_125.RULE index 71a7d18da6..11a609ba12 100644 --- a/src/licensedcode/data/rules/mit_125.RULE +++ b/src/licensedcode/data/rules/mit_125.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed under an MIT license: \ No newline at end of file +Distributed under an {{MIT license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1250.RULE b/src/licensedcode/data/rules/mit_1250.RULE index d6487573ec..19d6735808 100644 --- a/src/licensedcode/data/rules/mit_1250.RULE +++ b/src/licensedcode/data/rules/mit_1250.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.md --- -This file is distributed under the MIT License. See LICENSE.md for details. \ No newline at end of file +This file is {{distributed under the MIT License}}. See LICENSE.md for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1251.RULE b/src/licensedcode/data/rules/mit_1251.RULE index b922c77226..3118f2f76a 100644 --- a/src/licensedcode/data/rules/mit_1251.RULE +++ b/src/licensedcode/data/rules/mit_1251.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.md --- -distributed under the MIT License. See LICENSE.md for details. \ No newline at end of file +{{distributed under the MIT License}}. See LICENSE.md for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1252.RULE b/src/licensedcode/data/rules/mit_1252.RULE index 83bb5258c4..3cf7b843ce 100644 --- a/src/licensedcode/data/rules/mit_1252.RULE +++ b/src/licensedcode/data/rules/mit_1252.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -distributed under the MIT License. See LICENSE. \ No newline at end of file +{{distributed under the MIT License}}. See LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1253.RULE b/src/licensedcode/data/rules/mit_1253.RULE index 22b9621567..43abe73551 100644 --- a/src/licensedcode/data/rules/mit_1253.RULE +++ b/src/licensedcode/data/rules/mit_1253.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file is distributed under the MIT License. \ No newline at end of file +This file is {{distributed under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1254.RULE b/src/licensedcode/data/rules/mit_1254.RULE index 0f23cbc120..61bb36567f 100644 --- a/src/licensedcode/data/rules/mit_1254.RULE +++ b/src/licensedcode/data/rules/mit_1254.RULE @@ -8,5 +8,5 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -Each individual file, unless otherwise noted, is released under the terms of the [MIT License](https://opensource.org/licenses/MIT). +Each individual file, unless otherwise noted, is released under the terms of {{the [MIT License}}](https://opensource.org/licenses/MIT). A copy of this license can be found in [LICENSE.mit](LICENSE.mit). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1255.RULE b/src/licensedcode/data/rules/mit_1255.RULE index e9d16ab6e0..180292ce2e 100644 --- a/src/licensedcode/data/rules/mit_1255.RULE +++ b/src/licensedcode/data/rules/mit_1255.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under MIT Open Source \ No newline at end of file +{{Licensed under MIT}} Open Source \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1259.RULE b/src/licensedcode/data/rules/mit_1259.RULE index 41fd889210..42a524908e 100644 --- a/src/licensedcode/data/rules/mit_1259.RULE +++ b/src/licensedcode/data/rules/mit_1259.RULE @@ -7,4 +7,4 @@ ignorable_urls: - https://github.com/twbs/bootstrap/blob/main/LICENSE --- -Code released under the [MIT License](https://github.com/twbs/bootstrap/blob/main/LICENSE). \ No newline at end of file +Code released {{under the [MIT License}}](https://github.com/twbs/bootstrap/blob/main/LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1260.RULE b/src/licensedcode/data/rules/mit_1260.RULE index 76ad29c7e2..9da331d1fe 100644 --- a/src/licensedcode/data/rules/mit_1260.RULE +++ b/src/licensedcode/data/rules/mit_1260.RULE @@ -7,4 +7,4 @@ ignorable_urls: - https://github.com/twbs/bootstrap/blob/main/LICENSE --- -Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) \ No newline at end of file +{{Licensed under MIT}} (https://github.com/twbs/bootstrap/blob/main/LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1261.RULE b/src/licensedcode/data/rules/mit_1261.RULE index aef5350dae..260a228de8 100644 --- a/src/licensedcode/data/rules/mit_1261.RULE +++ b/src/licensedcode/data/rules/mit_1261.RULE @@ -3,4 +3,4 @@ license_expression: mit is_license_notice: yes --- -This software is distributed under the terms of the MIT license, available at the end of this document. \ No newline at end of file +This software is distributed under the terms of {{the MIT license}}, available at the end of this document. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1265.RULE b/src/licensedcode/data/rules/mit_1265.RULE index 641f4b0483..af17340176 100644 --- a/src/licensedcode/data/rules/mit_1265.RULE +++ b/src/licensedcode/data/rules/mit_1265.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/mit-license.php --- -MIT License (MIT) (http://opensource.org/licenses/mit-license.php) \ No newline at end of file +{{MIT License (MIT}}) (http://opensource.org/licenses/mit-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1267.RULE b/src/licensedcode/data/rules/mit_1267.RULE index e57e67cba0..673c23efe2 100644 --- a/src/licensedcode/data/rules/mit_1267.RULE +++ b/src/licensedcode/data/rules/mit_1267.RULE @@ -4,5 +4,5 @@ is_license_tag: yes relevance: 100 --- - - MIT License \ No newline at end of file +<{{license> + MIT}} License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1268.RULE b/src/licensedcode/data/rules/mit_1268.RULE index 8e97796bee..b23f2a2354 100644 --- a/src/licensedcode/data/rules/mit_1268.RULE +++ b/src/licensedcode/data/rules/mit_1268.RULE @@ -4,5 +4,5 @@ is_license_tag: yes relevance: 100 --- - - MIT License (MIT) \ No newline at end of file +<{{license> + MIT}} {{License (MIT}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1269.RULE b/src/licensedcode/data/rules/mit_1269.RULE index 3005e0fd49..eb918b84a9 100644 --- a/src/licensedcode/data/rules/mit_1269.RULE +++ b/src/licensedcode/data/rules/mit_1269.RULE @@ -5,4 +5,4 @@ relevance: 100 --- - The MIT License \ No newline at end of file + {{The MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_127.RULE b/src/licensedcode/data/rules/mit_127.RULE index 2c88599f5e..4f81f12c88 100644 --- a/src/licensedcode/data/rules/mit_127.RULE +++ b/src/licensedcode/data/rules/mit_127.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -may be freely distributed under the MIT license. \ No newline at end of file +may be freely {{distributed under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1271.RULE b/src/licensedcode/data/rules/mit_1271.RULE index 61f2a19156..bb10376e19 100644 --- a/src/licensedcode/data/rules/mit_1271.RULE +++ b/src/licensedcode/data/rules/mit_1271.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://opensource.org/licenses/mit --- - - MIT License +<{{license> + MIT}} License (http://opensource.org/licenses/mit) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1272.RULE b/src/licensedcode/data/rules/mit_1272.RULE index 011559361f..50a4ba4b6c 100644 --- a/src/licensedcode/data/rules/mit_1272.RULE +++ b/src/licensedcode/data/rules/mit_1272.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- - - MIT License +<{{license> + MIT}} License (http://www.opensource.org/licenses/mit-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_127_1.RULE b/src/licensedcode/data/rules/mit_127_1.RULE index c8d3d2b285..cef104a9c3 100644 --- a/src/licensedcode/data/rules/mit_127_1.RULE +++ b/src/licensedcode/data/rules/mit_127_1.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Plugin may be freely distributed under the MIT license. \ No newline at end of file +Plugin may be freely {{distributed under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_128.RULE b/src/licensedcode/data/rules/mit_128.RULE index 8aa45f36a5..68dd2f80f8 100644 --- a/src/licensedcode/data/rules/mit_128.RULE +++ b/src/licensedcode/data/rules/mit_128.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.MIT --- -Licensed under MIT - see LICENSE.MIT file for details \ No newline at end of file +{{Licensed under MIT}} - see LICENSE.MIT file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1283.RULE b/src/licensedcode/data/rules/mit_1283.RULE index c6f35f3b72..013697e509 100644 --- a/src/licensedcode/data/rules/mit_1283.RULE +++ b/src/licensedcode/data/rules/mit_1283.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -# License MIT - Use as you please and at your own risk \ No newline at end of file +# {{License MIT}} - Use as you please and at your own risk \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1284.RULE b/src/licensedcode/data/rules/mit_1284.RULE index 3018a0b015..0d8f4c4b02 100644 --- a/src/licensedcode/data/rules/mit_1284.RULE +++ b/src/licensedcode/data/rules/mit_1284.RULE @@ -5,5 +5,5 @@ relevance: 100 notes: Seen in https://github.com/SpiritSeeker/mpg123/blob/95fdddcea95339c1f922293e73edf50c6c841c76/src/libsyn123/geiger.c --- -licensed MIT-style. +licensed {{MIT-style}}. Essentially: This is just a bit of code that you can use as you please. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1285.RULE b/src/licensedcode/data/rules/mit_1285.RULE index 06286e618b..a24c23c34d 100644 --- a/src/licensedcode/data/rules/mit_1285.RULE +++ b/src/licensedcode/data/rules/mit_1285.RULE @@ -3,4 +3,4 @@ license_expression: mit is_license_notice: yes --- -This project is released under MIT license. Feel free to use as you please but keep the header in files you reuse \ No newline at end of file +This project is released {{under MIT license}}. Feel free to use as you please but keep the header in files you reuse \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1287.RULE b/src/licensedcode/data/rules/mit_1287.RULE index c7c2776eb1..1347042594 100644 --- a/src/licensedcode/data/rules/mit_1287.RULE +++ b/src/licensedcode/data/rules/mit_1287.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.md --- -Feel free to use as you please, see [MIT License](./LICENSE.md). \ No newline at end of file +Feel free to use as you please, see [{{MIT License}}](./LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1288.RULE b/src/licensedcode/data/rules/mit_1288.RULE index 369417ceb9..9e336a7424 100644 --- a/src/licensedcode/data/rules/mit_1288.RULE +++ b/src/licensedcode/data/rules/mit_1288.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This repo is under MIT License, use as you please. \ No newline at end of file +This repo is {{under MIT License}}, use as you please. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_129.RULE b/src/licensedcode/data/rules/mit_129.RULE index 3972dbb554..7c34ecb35d 100644 --- a/src/licensedcode/data/rules/mit_129.RULE +++ b/src/licensedcode/data/rules/mit_129.RULE @@ -9,4 +9,4 @@ ignorable_urls: - https://angular.io/license --- -Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license \ No newline at end of file +Use of this source code is governed by an {{MIT-style license}} that can be * found in the LICENSE file at https://angular.io/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1292.RULE b/src/licensedcode/data/rules/mit_1292.RULE index b94222b1a1..d303fae24e 100644 --- a/src/licensedcode/data/rules/mit_1292.RULE +++ b/src/licensedcode/data/rules/mit_1292.RULE @@ -9,5 +9,5 @@ ignorable_urls: --- // Source: http://opensource.org/ -// This code is distributed under MIT license. +// This code is {{distributed under MIT license}}. // See license.txt or http://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1296.RULE b/src/licensedcode/data/rules/mit_1296.RULE index 5eb7125a13..f3cf4ecff4 100644 --- a/src/licensedcode/data/rules/mit_1296.RULE +++ b/src/licensedcode/data/rules/mit_1296.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -# Licensed under the MIT License; +# {{Licensed under the MIT}} License; # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # diff --git a/src/licensedcode/data/rules/mit_1298.RULE b/src/licensedcode/data/rules/mit_1298.RULE index 609041e474..072d4a90e8 100644 --- a/src/licensedcode/data/rules/mit_1298.RULE +++ b/src/licensedcode/data/rules/mit_1298.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -* This library is distributed under the MIT License. See notice +* This library is {{distributed under the MIT License}}. See notice * at the end of this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_130.RULE b/src/licensedcode/data/rules/mit_130.RULE index c92c8262f6..f7610c7bae 100644 --- a/src/licensedcode/data/rules/mit_130.RULE +++ b/src/licensedcode/data/rules/mit_130.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file \ No newline at end of file +Use of this source code is governed by an {{MIT-style license}} that can be * found in the LICENSE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1301.RULE b/src/licensedcode/data/rules/mit_1301.RULE index 093c581932..94f7b466d3 100644 --- a/src/licensedcode/data/rules/mit_1301.RULE +++ b/src/licensedcode/data/rules/mit_1301.RULE @@ -1,7 +1,9 @@ --- license_expression: mit is_license_tag: yes +is_required_phrase: yes is_continuous: yes +relevance: 100 --- -{{"license": "type": "MIT",}} \ No newline at end of file +"license": "type": "MIT", \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1302.RULE b/src/licensedcode/data/rules/mit_1302.RULE index 7d7ea4e0bd..5fc649420e 100644 --- a/src/licensedcode/data/rules/mit_1302.RULE +++ b/src/licensedcode/data/rules/mit_1302.RULE @@ -5,4 +5,4 @@ referenced_filenames: - LICENSE --- -is free software: you can redistribute it and/or modify it under the terms of {{the MIT License}} as published by the Open Source Initiative. See the {{ LICENSE file }} for more details. \ No newline at end of file +is free software: you can redistribute it and/or modify it under the terms of {{the MIT License}} as published by the Open Source Initiative. See the LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1304.RULE b/src/licensedcode/data/rules/mit_1304.RULE index 947d689777..3c1bb871fb 100644 --- a/src/licensedcode/data/rules/mit_1304.RULE +++ b/src/licensedcode/data/rules/mit_1304.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed as Free Software under MIT License. \ No newline at end of file +licensed as Free Software {{under MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1305.RULE b/src/licensedcode/data/rules/mit_1305.RULE index 23914dca70..dae356c043 100644 --- a/src/licensedcode/data/rules/mit_1305.RULE +++ b/src/licensedcode/data/rules/mit_1305.RULE @@ -5,5 +5,5 @@ referenced_filenames: - LICENSES/MIT.txt --- -// This file is Free Software under the MIT License +// This file is Free Software {{under the MIT License}} // without warranty, see README.md and LICENSES/MIT.txt for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1306.RULE b/src/licensedcode/data/rules/mit_1306.RULE index b9f584b37b..e8afc6418e 100644 --- a/src/licensedcode/data/rules/mit_1306.RULE +++ b/src/licensedcode/data/rules/mit_1306.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -it is freely available under the MIT license. \ No newline at end of file +it is freely available {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1307.RULE b/src/licensedcode/data/rules/mit_1307.RULE index 6858e5bb33..8c0dc9749f 100644 --- a/src/licensedcode/data/rules/mit_1307.RULE +++ b/src/licensedcode/data/rules/mit_1307.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is freely available under the MIT license. \ No newline at end of file +is freely available {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1308.RULE b/src/licensedcode/data/rules/mit_1308.RULE index 9a9ee144a0..0824bd5054 100644 --- a/src/licensedcode/data/rules/mit_1308.RULE +++ b/src/licensedcode/data/rules/mit_1308.RULE @@ -5,5 +5,5 @@ referenced_filenames: - LICENSE --- -All the files in this distribution are covered under either the MIT -license (see the file LICENSE) except some files mentioned below. \ No newline at end of file +All the files in this distribution are covered under either {{the MIT +license}} (see the file LICENSE) except some files mentioned below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_131.RULE b/src/licensedcode/data/rules/mit_131.RULE index 87a054394a..d176daf7eb 100644 --- a/src/licensedcode/data/rules/mit_131.RULE +++ b/src/licensedcode/data/rules/mit_131.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Use of this source code is governed by an MIT-style license \ No newline at end of file +Use of this source code is governed by an {{MIT-style license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1310.RULE b/src/licensedcode/data/rules/mit_1310.RULE index b44da12671..8544d049bf 100644 --- a/src/licensedcode/data/rules/mit_1310.RULE +++ b/src/licensedcode/data/rules/mit_1310.RULE @@ -3,5 +3,5 @@ license_expression: mit is_license_notice: yes --- -A copy of the MIT license is reproduced below. This license applies only to +A copy of {{the MIT license}} is reproduced below. This license applies only to files that indicate as such in their license header. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1312.RULE b/src/licensedcode/data/rules/mit_1312.RULE index 883cc59225..a21e54f039 100644 --- a/src/licensedcode/data/rules/mit_1312.RULE +++ b/src/licensedcode/data/rules/mit_1312.RULE @@ -2,8 +2,9 @@ license_expression: mit is_license_notice: yes relevance: 100 +skip_for_required_phrase_generation: yes referenced_filenames: - LICENSE.RFL --- -licensed under a {{MIT like license (see LICENSE.RFL).}} \ No newline at end of file +licensed under a {{MIT like license (see LICENSE.RFL).}} diff --git a/src/licensedcode/data/rules/mit_1314.RULE b/src/licensedcode/data/rules/mit_1314.RULE index 21298a8c7b..9e64c57109 100644 --- a/src/licensedcode/data/rules/mit_1314.RULE +++ b/src/licensedcode/data/rules/mit_1314.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/license/mit --- -The custom code in this repo is governed by [The MIT License](https://opensource.org/license/mit/) \ No newline at end of file +The custom code in this repo is governed by [{{The MIT License}}](https://opensource.org/license/mit/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1315.RULE b/src/licensedcode/data/rules/mit_1315.RULE index 595b0568c3..c32aee12ce 100644 --- a/src/licensedcode/data/rules/mit_1315.RULE +++ b/src/licensedcode/data/rules/mit_1315.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/license/mit --- -governed by [The MIT License](https://opensource.org/license/mit/) \ No newline at end of file +governed by [{{The MIT License}}](https://opensource.org/license/mit/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1316.RULE b/src/licensedcode/data/rules/mit_1316.RULE index 22bf6cdeed..dc79478099 100644 --- a/src/licensedcode/data/rules/mit_1316.RULE +++ b/src/licensedcode/data/rules/mit_1316.RULE @@ -3,6 +3,6 @@ license_expression: mit is_license_notice: yes --- -released under the MIT license. +released {{under the MIT license}}. Basically, it means "feel free to use it; credit the source; don't sue me if something goes wrong." \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1318.RULE b/src/licensedcode/data/rules/mit_1318.RULE index a89933468a..0945e92f99 100644 --- a/src/licensedcode/data/rules/mit_1318.RULE +++ b/src/licensedcode/data/rules/mit_1318.RULE @@ -1,8 +1,8 @@ --- license_expression: mit -is_license_tag: yes -is_continuous: yes -relevance: 100 +is_license_reference: yes +is_required_phrase: yes +relevance: 90 --- -{{MIT License with Disclaimer}} \ No newline at end of file +MIT license with disclaimer \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1319.RULE b/src/licensedcode/data/rules/mit_1319.RULE index 5ed04d6f2e..0d47949ac0 100644 --- a/src/licensedcode/data/rules/mit_1319.RULE +++ b/src/licensedcode/data/rules/mit_1319.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING --- -released under the MIT license with disclaimer of warranty, included in the COPYING file. \ No newline at end of file +released under the {{MIT license with disclaimer}} of warranty, included in the COPYING file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1320.RULE b/src/licensedcode/data/rules/mit_1320.RULE index b9ec5e98af..1f0a3baa87 100644 --- a/src/licensedcode/data/rules/mit_1320.RULE +++ b/src/licensedcode/data/rules/mit_1320.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under the MIT license with disclaimer of warranty \ No newline at end of file +released under the {{MIT license with disclaimer}} of warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1321.RULE b/src/licensedcode/data/rules/mit_1321.RULE index d9f26827e6..e1750b8c1b 100644 --- a/src/licensedcode/data/rules/mit_1321.RULE +++ b/src/licensedcode/data/rules/mit_1321.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the MIT license with disclaimer of warranty \ No newline at end of file +under the {{MIT license with disclaimer}} of warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1322.RULE b/src/licensedcode/data/rules/mit_1322.RULE index 0e2633f04b..11d9668370 100644 --- a/src/licensedcode/data/rules/mit_1322.RULE +++ b/src/licensedcode/data/rules/mit_1322.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -MIT license with disclaimer of warranty \ No newline at end of file +{{MIT license with disclaimer}} of warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1323.RULE b/src/licensedcode/data/rules/mit_1323.RULE index 45b361b18b..34addd2ed5 100644 --- a/src/licensedcode/data/rules/mit_1323.RULE +++ b/src/licensedcode/data/rules/mit_1323.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -MIT_License/MIT with disclaimer \ No newline at end of file +{{MIT_License/MIT}} with disclaimer \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1324.RULE b/src/licensedcode/data/rules/mit_1324.RULE index df6bffefa3..badce9ae25 100644 --- a/src/licensedcode/data/rules/mit_1324.RULE +++ b/src/licensedcode/data/rules/mit_1324.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -MIT_License/MIT with disclaimer of warranty \ No newline at end of file +{{MIT_License/MIT}} with disclaimer of warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1328.RULE b/src/licensedcode/data/rules/mit_1328.RULE index 5cd196fb4f..c205491185 100644 --- a/src/licensedcode/data/rules/mit_1328.RULE +++ b/src/licensedcode/data/rules/mit_1328.RULE @@ -4,6 +4,6 @@ is_license_notice: yes notes: mit choice --- -This file may be licensed under MIT License or GPL-2.0. In this context MIT has +This file may be {{licensed under MIT}} License or GPL-2.0. In this context MIT has been chosen. This shall not restrict the freedom of future contributors to choose GPL-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1329.RULE b/src/licensedcode/data/rules/mit_1329.RULE index 2d845a2565..940cba8221 100644 --- a/src/licensedcode/data/rules/mit_1329.RULE +++ b/src/licensedcode/data/rules/mit_1329.RULE @@ -4,6 +4,6 @@ is_license_notice: yes notes: mit choice --- -This file may be licensed under MIT License or GPL v2. In this context MIT has +This file may be {{licensed under MIT}} License or GPL v2. In this context MIT has been chosen. This shall not restrict the freedom of future contributors to choose GPL-2.0. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1330.RULE b/src/licensedcode/data/rules/mit_1330.RULE index 45efd8318f..3a0e238e4d 100644 --- a/src/licensedcode/data/rules/mit_1330.RULE +++ b/src/licensedcode/data/rules/mit_1330.RULE @@ -4,5 +4,5 @@ is_license_notice: yes notes: mit choice --- -This file can be licensed under MIT or GPL-2.0+. In this case the MIT has been chosen. +This file can be {{licensed under MIT}} or GPL-2.0+. In this case the MIT has been chosen. This shall not restrict the freedom of future users to choose MIT or GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1333.RULE b/src/licensedcode/data/rules/mit_1333.RULE index ac67c4751f..ac66d795ae 100644 --- a/src/licensedcode/data/rules/mit_1333.RULE +++ b/src/licensedcode/data/rules/mit_1333.RULE @@ -5,4 +5,4 @@ relevance: 100 --- LICENSE -This is licensed under the `MIT license` \ No newline at end of file +This is {{licensed under the `MIT}} license` \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_1334.RULE b/src/licensedcode/data/rules/mit_1334.RULE index 1f0d4e21f8..804e88ee95 100644 --- a/src/licensedcode/data/rules/mit_1334.RULE +++ b/src/licensedcode/data/rules/mit_1334.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This is licensed under the `MIT license` \ No newline at end of file +This is {{licensed under the `MIT}} license` \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_134.RULE b/src/licensedcode/data/rules/mit_134.RULE index d7b97003d4..28afe1d76d 100644 --- a/src/licensedcode/data/rules/mit_134.RULE +++ b/src/licensedcode/data/rules/mit_134.RULE @@ -6,4 +6,4 @@ relevance: 100 #### License -Released under [MIT] LICENSE \ No newline at end of file +Released {{under [MIT] LICENSE}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_135.RULE b/src/licensedcode/data/rules/mit_135.RULE index 69d09a3a68..c4e712f59f 100644 --- a/src/licensedcode/data/rules/mit_135.RULE +++ b/src/licensedcode/data/rules/mit_135.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -[MIT]: mit-license.org/ \ No newline at end of file +[MIT]: {{mit-license}}.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_136.RULE b/src/licensedcode/data/rules/mit_136.RULE index 1ef86b3883..478235179e 100644 --- a/src/licensedcode/data/rules/mit_136.RULE +++ b/src/licensedcode/data/rules/mit_136.RULE @@ -8,5 +8,5 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -is released under the terms of the MIT license. See [COPYING](COPYING) for more +is released under the terms of {{the MIT license}}. See [COPYING](COPYING) for more information or see https://opensource.org/licenses/MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_137.RULE b/src/licensedcode/data/rules/mit_137.RULE index b3f1eb3e78..2a0d8c4a6f 100644 --- a/src/licensedcode/data/rules/mit_137.RULE +++ b/src/licensedcode/data/rules/mit_137.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is released under the terms of the MIT license. \ No newline at end of file +is released under the terms of {{the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_138.RULE b/src/licensedcode/data/rules/mit_138.RULE index 1a9bb660ab..17e3d42c5b 100644 --- a/src/licensedcode/data/rules/mit_138.RULE +++ b/src/licensedcode/data/rules/mit_138.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -[The MIT License](LICENSE). \ No newline at end of file +[{{The MIT License}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_139.RULE b/src/licensedcode/data/rules/mit_139.RULE index 9866004ea9..d6d6618432 100644 --- a/src/licensedcode/data/rules/mit_139.RULE +++ b/src/licensedcode/data/rules/mit_139.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- ## License -This library is under the [MIT License](http://opensource.org/licenses/MIT) \ No newline at end of file +This library is {{under the [MIT License}}](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_14.RULE b/src/licensedcode/data/rules/mit_14.RULE index bdc21ac2e2..b312e51d5d 100644 --- a/src/licensedcode/data/rules/mit_14.RULE +++ b/src/licensedcode/data/rules/mit_14.RULE @@ -1,8 +1,9 @@ --- license_expression: mit is_license_reference: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 --- -MIT license \ No newline at end of file +MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_140.RULE b/src/licensedcode/data/rules/mit_140.RULE index 315acb183e..38b25017bf 100644 --- a/src/licensedcode/data/rules/mit_140.RULE +++ b/src/licensedcode/data/rules/mit_140.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -mit-license.org \ No newline at end of file +{{mit-license}}.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_141.RULE b/src/licensedcode/data/rules/mit_141.RULE index 4adcf007d1..96e23e8725 100644 --- a/src/licensedcode/data/rules/mit_141.RULE +++ b/src/licensedcode/data/rules/mit_141.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This library is under the [MIT License] \ No newline at end of file +This library is {{under the [MIT License}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_142.RULE b/src/licensedcode/data/rules/mit_142.RULE index 522851684f..d405791ba2 100644 --- a/src/licensedcode/data/rules/mit_142.RULE +++ b/src/licensedcode/data/rules/mit_142.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -This library is under the [MIT License](http://opensource.org/licenses/MIT) \ No newline at end of file +This library is {{under the [MIT License}}](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_143.RULE b/src/licensedcode/data/rules/mit_143.RULE index 2ea354c4c9..17889778ae 100644 --- a/src/licensedcode/data/rules/mit_143.RULE +++ b/src/licensedcode/data/rules/mit_143.RULE @@ -6,4 +6,4 @@ relevance: 100 # License -The MIT License (MIT) \ No newline at end of file +{{The MIT License}} (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_144.RULE b/src/licensedcode/data/rules/mit_144.RULE index 940aeaef1e..d0a3ba9c7c 100644 --- a/src/licensedcode/data/rules/mit_144.RULE +++ b/src/licensedcode/data/rules/mit_144.RULE @@ -1,7 +1,8 @@ --- license_expression: mit is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -MIT License (MIT) \ No newline at end of file +MIT License (MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_145.RULE b/src/licensedcode/data/rules/mit_145.RULE index d90400a789..aedfc968f9 100644 --- a/src/licensedcode/data/rules/mit_145.RULE +++ b/src/licensedcode/data/rules/mit_145.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Code released under the [MIT License]( \ No newline at end of file +Code released {{under the [MIT License}}]( \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_148.RULE b/src/licensedcode/data/rules/mit_148.RULE index 6083abc60d..8c1012b98d 100644 --- a/src/licensedcode/data/rules/mit_148.RULE +++ b/src/licensedcode/data/rules/mit_148.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -It is available under the [MIT license](http://www.opensource.org/licenses/mit-license.php). \ No newline at end of file +It is available {{under the [MIT license}}](http://www.opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_149.RULE b/src/licensedcode/data/rules/mit_149.RULE index 1e1fd97163..05b0a48dd4 100644 --- a/src/licensedcode/data/rules/mit_149.RULE +++ b/src/licensedcode/data/rules/mit_149.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -It is available under the [MIT license](http://www.opensource.org/licenses/mit-license.php). +It is available {{under the [MIT license}}](http://www.opensource.org/licenses/mit-license.php). -- -The MIT License (MIT) \ No newline at end of file +{{The MIT License}} (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_150.RULE b/src/licensedcode/data/rules/mit_150.RULE index d434660a63..cf9ad65c17 100644 --- a/src/licensedcode/data/rules/mit_150.RULE +++ b/src/licensedcode/data/rules/mit_150.RULE @@ -9,8 +9,8 @@ ignorable_urls: ## License This code is made available under the same license as Bootstrap. - It is available under the [MIT license](http://www.opensource.org/licenses/mit-license.php). + It is available {{under the [MIT license}}](http://www.opensource.org/licenses/mit-license.php). -- -The MIT License (MIT) \ No newline at end of file +{{The MIT License}} (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_151.RULE b/src/licensedcode/data/rules/mit_151.RULE index 000b597e96..9a60cd93a7 100644 --- a/src/licensedcode/data/rules/mit_151.RULE +++ b/src/licensedcode/data/rules/mit_151.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- ## License -[MIT License](LICENSE.md) \ No newline at end of file +[{{MIT License}}](LICENSE.md) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_152.RULE b/src/licensedcode/data/rules/mit_152.RULE index 703e3e6d67..7b3c07365d 100644 --- a/src/licensedcode/data/rules/mit_152.RULE +++ b/src/licensedcode/data/rules/mit_152.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is licensed under the [The MIT License] \ No newline at end of file +is licensed under the [{{The MIT License}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_153.RULE b/src/licensedcode/data/rules/mit_153.RULE index 5ede67c3cf..562da2d8bf 100644 --- a/src/licensedcode/data/rules/mit_153.RULE +++ b/src/licensedcode/data/rules/mit_153.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://choosealicense.com/licenses/mit --- -License: [`mit`](http://choosealicense.com/licenses/mit/) \ No newline at end of file +{{License: [`mit}}`](http://choosealicense.com/licenses/mit/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_154.RULE b/src/licensedcode/data/rules/mit_154.RULE index bc052839d2..14ade97521 100644 --- a/src/licensedcode/data/rules/mit_154.RULE +++ b/src/licensedcode/data/rules/mit_154.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 --- License -MIT License (MIT) \ No newline at end of file +{{MIT License (MIT}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_155.RULE b/src/licensedcode/data/rules/mit_155.RULE index b6988aa25c..9f57843083 100644 --- a/src/licensedcode/data/rules/mit_155.RULE +++ b/src/licensedcode/data/rules/mit_155.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.md --- -is released under the [MIT License](LICENSE.md). \ No newline at end of file +is released {{under the [MIT License}}](LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_156.RULE b/src/licensedcode/data/rules/mit_156.RULE index 7b820b23a5..b17bdf75cf 100644 --- a/src/licensedcode/data/rules/mit_156.RULE +++ b/src/licensedcode/data/rules/mit_156.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Code licensed under the [MIT License]( \ No newline at end of file +Code {{licensed under the [MIT}} License]( \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_157.RULE b/src/licensedcode/data/rules/mit_157.RULE index e8ef2385bc..fd3085eae4 100644 --- a/src/licensedcode/data/rules/mit_157.RULE +++ b/src/licensedcode/data/rules/mit_157.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is released and distributed under the terms and conditions of the [MIT license] \ No newline at end of file +is released and distributed under the terms and conditions of {{the [MIT license}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_158.RULE b/src/licensedcode/data/rules/mit_158.RULE index 639fed49b8..6f66e28f65 100644 --- a/src/licensedcode/data/rules/mit_158.RULE +++ b/src/licensedcode/data/rules/mit_158.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -you agree that your contributions will be licensed under its MIT license. \ No newline at end of file +you agree that your contributions will be licensed under its {{MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_159.RULE b/src/licensedcode/data/rules/mit_159.RULE index 1abe5aa960..772cd3dac9 100644 --- a/src/licensedcode/data/rules/mit_159.RULE +++ b/src/licensedcode/data/rules/mit_159.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -is available under the [MIT license](http://opensource.org/licenses/MIT). \ No newline at end of file +is available {{under the [MIT license}}](http://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_16.RULE b/src/licensedcode/data/rules/mit_16.RULE index 5bb3204a82..66b845b892 100644 --- a/src/licensedcode/data/rules/mit_16.RULE +++ b/src/licensedcode/data/rules/mit_16.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under the MIT license \ No newline at end of file +Released {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_160.RULE b/src/licensedcode/data/rules/mit_160.RULE index 2da9b6eb7d..ab171d583c 100644 --- a/src/licensedcode/data/rules/mit_160.RULE +++ b/src/licensedcode/data/rules/mit_160.RULE @@ -8,4 +8,4 @@ ignorable_urls: ## License -is licensed under the MIT license. (http://opensource.org/licenses/MIT) \ No newline at end of file +is {{licensed under the MIT}} license. (http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_161.RULE b/src/licensedcode/data/rules/mit_161.RULE index 3e1e2e1271..67cc004be9 100644 --- a/src/licensedcode/data/rules/mit_161.RULE +++ b/src/licensedcode/data/rules/mit_161.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- #### License -This repository has been released under the [MIT License](LICENSE) \ No newline at end of file +This repository has been released {{under the [MIT License}}](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_162.RULE b/src/licensedcode/data/rules/mit_162.RULE index 3daa899f8b..9d21371571 100644 --- a/src/licensedcode/data/rules/mit_162.RULE +++ b/src/licensedcode/data/rules/mit_162.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://en.wikipedia.org/wiki/MIT_License --- -Available for use under the [MIT License](http://en.wikipedia.org/wiki/MIT_License) \ No newline at end of file +Available for use {{under the [MIT License}}](http://en.wikipedia.org/wiki/MIT_License) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_163.RULE b/src/licensedcode/data/rules/mit_163.RULE index 9e3c877a5a..6509f5159a 100644 --- a/src/licensedcode/data/rules/mit_163.RULE +++ b/src/licensedcode/data/rules/mit_163.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License All software included is bundled with own license -The MIT License (MIT) \ No newline at end of file +{{The MIT License}} (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_165.RULE b/src/licensedcode/data/rules/mit_165.RULE index 1dc68bcdbb..28970e4772 100644 --- a/src/licensedcode/data/rules/mit_165.RULE +++ b/src/licensedcode/data/rules/mit_165.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the MIT license. \ No newline at end of file +This project is {{licensed under the MIT}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_167.RULE b/src/licensedcode/data/rules/mit_167.RULE index e36cb3075b..c11dc6fdba 100644 --- a/src/licensedcode/data/rules/mit_167.RULE +++ b/src/licensedcode/data/rules/mit_167.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -is licensed under the [MIT License](https://opensource.org/licenses/MIT). \ No newline at end of file +is {{licensed under the [MIT}} License](https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_168.RULE b/src/licensedcode/data/rules/mit_168.RULE index b9eff152bc..96ff624dda 100644 --- a/src/licensedcode/data/rules/mit_168.RULE +++ b/src/licensedcode/data/rules/mit_168.RULE @@ -9,4 +9,4 @@ referenced_filenames: License ------- -Composer is licensed under the MIT License - see the [LICENSE](LICENSE) file for details \ No newline at end of file +Composer is {{licensed under the MIT}} License - see the [LICENSE](LICENSE) file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_168_1.RULE b/src/licensedcode/data/rules/mit_168_1.RULE index 812aea3661..162c42f51c 100644 --- a/src/licensedcode/data/rules/mit_168_1.RULE +++ b/src/licensedcode/data/rules/mit_168_1.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -licensed under the MIT License - see the [LICENSE](LICENSE) file for details \ No newline at end of file +{{licensed under the MIT}} License - see the [LICENSE](LICENSE) file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_169.RULE b/src/licensedcode/data/rules/mit_169.RULE index 9092eefb7e..5686c9c7d2 100644 --- a/src/licensedcode/data/rules/mit_169.RULE +++ b/src/licensedcode/data/rules/mit_169.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.TXT --- -is licensed under the [MIT license](LICENSE.TXT). \ No newline at end of file +is {{licensed under the [MIT}} license](LICENSE.TXT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_170.RULE b/src/licensedcode/data/rules/mit_170.RULE index 0c51a20fca..5db7700640 100644 --- a/src/licensedcode/data/rules/mit_170.RULE +++ b/src/licensedcode/data/rules/mit_170.RULE @@ -6,4 +6,4 @@ referenced_filenames: - MIT-LICENSE --- -uses the MIT license. Please check the MIT-LICENSE file for more details. \ No newline at end of file +uses {{the MIT license}}. Please check the MIT-LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_171.RULE b/src/licensedcode/data/rules/mit_171.RULE index c107d62e22..b2d85010ed 100644 --- a/src/licensedcode/data/rules/mit_171.RULE +++ b/src/licensedcode/data/rules/mit_171.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -uses the MIT license. \ No newline at end of file +uses {{the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_172.RULE b/src/licensedcode/data/rules/mit_172.RULE index 2dd3653230..49b84c6c97 100644 --- a/src/licensedcode/data/rules/mit_172.RULE +++ b/src/licensedcode/data/rules/mit_172.RULE @@ -1,7 +1,8 @@ --- license_expression: mit is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -Licensed under MIT \ No newline at end of file +licensed under MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_174.RULE b/src/licensedcode/data/rules/mit_174.RULE index b2a4441843..c820eaecc1 100644 --- a/src/licensedcode/data/rules/mit_174.RULE +++ b/src/licensedcode/data/rules/mit_174.RULE @@ -6,4 +6,4 @@ relevance: 100 License -Open source licensed under the MIT License. \ No newline at end of file +Open source {{licensed under the MIT}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_175.RULE b/src/licensedcode/data/rules/mit_175.RULE index d85f708a5b..93c2de2bc0 100644 --- a/src/licensedcode/data/rules/mit_175.RULE +++ b/src/licensedcode/data/rules/mit_175.RULE @@ -8,4 +8,4 @@ ignorable_urls: License --- -Open source licensed under the [MIT License](https://opensource.org/licenses/MIT). \ No newline at end of file +Open source {{licensed under the [MIT}} License](https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_178.RULE b/src/licensedcode/data/rules/mit_178.RULE index 6b1d578235..91af0e4a69 100644 --- a/src/licensedcode/data/rules/mit_178.RULE +++ b/src/licensedcode/data/rules/mit_178.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -is released under the MIT License, as described at http://www.opensource.org/licenses/mit-license.php. \ No newline at end of file +is released {{under the MIT License}}, as described at http://www.opensource.org/licenses/mit-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_179.RULE b/src/licensedcode/data/rules/mit_179.RULE index a3570adfb5..afd3cc4741 100644 --- a/src/licensedcode/data/rules/mit_179.RULE +++ b/src/licensedcode/data/rules/mit_179.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://github.com/twbs/bootstrap/blob/master/LICENSE --- -Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) \ No newline at end of file +{{Licensed under MIT}} (https://github.com/twbs/bootstrap/blob/master/LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_18.RULE b/src/licensedcode/data/rules/mit_18.RULE index 087592ddb9..f92751de9a 100644 --- a/src/licensedcode/data/rules/mit_18.RULE +++ b/src/licensedcode/data/rules/mit_18.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -are covered by the MIT license \ No newline at end of file +are covered by {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_183.RULE b/src/licensedcode/data/rules/mit_183.RULE index 3921ac09e2..ca74f8c681 100644 --- a/src/licensedcode/data/rules/mit_183.RULE +++ b/src/licensedcode/data/rules/mit_183.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -## License +## {{License -[MIT](http://opensource.org/licenses/MIT) \ No newline at end of file +[MIT}}](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_185.RULE b/src/licensedcode/data/rules/mit_185.RULE index 0da098127b..49af106e57 100644 --- a/src/licensedcode/data/rules/mit_185.RULE +++ b/src/licensedcode/data/rules/mit_185.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -License: MIT (http://www.opensource.org/licenses/mit-license.php) \ No newline at end of file +{{License: MIT}} (http://www.opensource.org/licenses/mit-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_187.RULE b/src/licensedcode/data/rules/mit_187.RULE index bafb95fc3e..1d5dc8da87 100644 --- a/src/licensedcode/data/rules/mit_187.RULE +++ b/src/licensedcode/data/rules/mit_187.RULE @@ -6,4 +6,4 @@ referenced_filenames: - License.txt --- -Licensed under the MIT License. See License.txt in the project root for license information. \ No newline at end of file +{{Licensed under the MIT}} License. See License.txt in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_188.RULE b/src/licensedcode/data/rules/mit_188.RULE index a995c44e91..97debeded2 100644 --- a/src/licensedcode/data/rules/mit_188.RULE +++ b/src/licensedcode/data/rules/mit_188.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is licensed under MIT. \ No newline at end of file +is {{licensed under MIT}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_189.RULE b/src/licensedcode/data/rules/mit_189.RULE index 006ae3bd8f..850eb970a4 100644 --- a/src/licensedcode/data/rules/mit_189.RULE +++ b/src/licensedcode/data/rules/mit_189.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -// Licensed under the MIT license. See LICENSE file in the project root for details. \ No newline at end of file +// {{Licensed under the MIT}} license. See LICENSE file in the project root for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_18_1.RULE b/src/licensedcode/data/rules/mit_18_1.RULE index f07601d3e1..2f095859b1 100644 --- a/src/licensedcode/data/rules/mit_18_1.RULE +++ b/src/licensedcode/data/rules/mit_18_1.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -by the MIT license \ No newline at end of file +by {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_190.RULE b/src/licensedcode/data/rules/mit_190.RULE index 39bc54920e..730b48c22a 100644 --- a/src/licensedcode/data/rules/mit_190.RULE +++ b/src/licensedcode/data/rules/mit_190.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -binary is licensed under the MIT License \ No newline at end of file +binary is {{licensed under the MIT}} License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_191.RULE b/src/licensedcode/data/rules/mit_191.RULE index 4f044eb0cf..9cef42161e 100644 --- a/src/licensedcode/data/rules/mit_191.RULE +++ b/src/licensedcode/data/rules/mit_191.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -source code is licensed under the MIT License \ No newline at end of file +source code is {{licensed under the MIT}} License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_192.RULE b/src/licensedcode/data/rules/mit_192.RULE index 09be6c90d2..ebc1d45535 100644 --- a/src/licensedcode/data/rules/mit_192.RULE +++ b/src/licensedcode/data/rules/mit_192.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -* Licensed under the MIT License. See LICENSE in the project root for license information. \ No newline at end of file +* {{Licensed under the MIT}} License. See LICENSE in the project root for license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_193.RULE b/src/licensedcode/data/rules/mit_193.RULE index 3e1c85b45d..deea65081e 100644 --- a/src/licensedcode/data/rules/mit_193.RULE +++ b/src/licensedcode/data/rules/mit_193.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Licensed under the MIT license. See LICENSE file in the project root for full license information. \ No newline at end of file +{{Licensed under the MIT}} license. See LICENSE file in the project root for full license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_194.RULE b/src/licensedcode/data/rules/mit_194.RULE index 70aa9d9c80..f92a98eba4 100644 --- a/src/licensedcode/data/rules/mit_194.RULE +++ b/src/licensedcode/data/rules/mit_194.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. \ No newline at end of file +{{Licensed under the MIT}} license. See LICENSE.txt file in the project root for full license information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_195.RULE b/src/licensedcode/data/rules/mit_195.RULE index c368c3008d..87e227c8cb 100644 --- a/src/licensedcode/data/rules/mit_195.RULE +++ b/src/licensedcode/data/rules/mit_195.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. \ No newline at end of file +licenses this file to you {{under the MIT license}}. See the LICENSE file in the project root for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_196.RULE b/src/licensedcode/data/rules/mit_196.RULE index af4b084dcc..1d34e15b00 100644 --- a/src/licensedcode/data/rules/mit_196.RULE +++ b/src/licensedcode/data/rules/mit_196.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- // Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. +// The .NET Foundation licenses this file to you {{under the MIT license}}. // See the LICENSE file in the project root for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_197.RULE b/src/licensedcode/data/rules/mit_197.RULE index 2370b0d24f..0092ce99a8 100644 --- a/src/licensedcode/data/rules/mit_197.RULE +++ b/src/licensedcode/data/rules/mit_197.RULE @@ -6,4 +6,4 @@ referenced_filenames: - License.txt --- -This project is subject to the MIT License. A copy of this license can be found in [License.txt](License.txt) at the root of this repo. \ No newline at end of file +This project is subject to {{the MIT License}}. A copy of this license can be found in [License.txt](License.txt) at the root of this repo. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_198.RULE b/src/licensedcode/data/rules/mit_198.RULE index 06cafdb18f..9bfe6619e7 100644 --- a/src/licensedcode/data/rules/mit_198.RULE +++ b/src/licensedcode/data/rules/mit_198.RULE @@ -5,7 +5,7 @@ ignorable_urls: - https://github.com/Microsoft/visualfsharp/blob/master/License.txt --- -Licensed under the MIT License (the "License"); you +{{Licensed under the MIT}} License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mit_199.RULE b/src/licensedcode/data/rules/mit_199.RULE index b256107090..775c7623e1 100644 --- a/src/licensedcode/data/rules/mit_199.RULE +++ b/src/licensedcode/data/rules/mit_199.RULE @@ -3,7 +3,7 @@ license_expression: mit is_license_notice: yes --- -Licensed under the MIT License (the "License"); you +{{Licensed under the MIT}} License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mit_2.RULE b/src/licensedcode/data/rules/mit_2.RULE index 3d5c07819c..a505fbc035 100644 --- a/src/licensedcode/data/rules/mit_2.RULE +++ b/src/licensedcode/data/rules/mit_2.RULE @@ -6,4 +6,4 @@ relevance: 99 The libraries are released under the terms of the MIT X11 -MIT/X11 License \ No newline at end of file +{{MIT/X11 License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_20.RULE b/src/licensedcode/data/rules/mit_20.RULE index e31d565773..0e2f6cd17d 100644 --- a/src/licensedcode/data/rules/mit_20.RULE +++ b/src/licensedcode/data/rules/mit_20.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This software is released under the MIT license. \ No newline at end of file +This software is released {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_201.RULE b/src/licensedcode/data/rules/mit_201.RULE index c3c20641a3..8bd968b10b 100644 --- a/src/licensedcode/data/rules/mit_201.RULE +++ b/src/licensedcode/data/rules/mit_201.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Terms of the MIT License: \ No newline at end of file +Terms of {{the MIT License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_202.RULE b/src/licensedcode/data/rules/mit_202.RULE index abad35d946..21a21d5c45 100644 --- a/src/licensedcode/data/rules/mit_202.RULE +++ b/src/licensedcode/data/rules/mit_202.RULE @@ -6,4 +6,4 @@ referenced_filenames: - license.txt --- -Yes, it is free under MIT license. It can be used in commercial applications. Please check the details in [license.txt] \ No newline at end of file +Yes, it is free {{under MIT license}}. It can be used in commercial applications. Please check the details in [license.txt] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_205.RULE b/src/licensedcode/data/rules/mit_205.RULE index 9d40d82229..634fa63207 100644 --- a/src/licensedcode/data/rules/mit_205.RULE +++ b/src/licensedcode/data/rules/mit_205.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The complete text of the MIT license is as follows: \ No newline at end of file +The complete text of {{the MIT license}} is as follows: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_206.RULE b/src/licensedcode/data/rules/mit_206.RULE index 5b99a72868..03132d8075 100644 --- a/src/licensedcode/data/rules/mit_206.RULE +++ b/src/licensedcode/data/rules/mit_206.RULE @@ -5,5 +5,5 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -This project bundles the following dependencies under the MIT license. (https://opensource.org/licenses/MIT) +This project bundles the following dependencies {{under the MIT license}}. (https://opensource.org/licenses/MIT) See bundled license files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_207.RULE b/src/licensedcode/data/rules/mit_207.RULE index b7d2d91a5f..63e3d94e52 100644 --- a/src/licensedcode/data/rules/mit_207.RULE +++ b/src/licensedcode/data/rules/mit_207.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This project is licenced under the MIT license, see LICENSE for details. \ No newline at end of file +This project is licenced {{under the MIT license}}, see LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_208.RULE b/src/licensedcode/data/rules/mit_208.RULE index c6b8f269bb..51845c50d0 100644 --- a/src/licensedcode/data/rules/mit_208.RULE +++ b/src/licensedcode/data/rules/mit_208.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This project is licensed under the MIT license, see LICENSE for details. \ No newline at end of file +This project is {{licensed under the MIT}} license, see LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_209.RULE b/src/licensedcode/data/rules/mit_209.RULE index 6b956ecb5e..78a59331ca 100644 --- a/src/licensedcode/data/rules/mit_209.RULE +++ b/src/licensedcode/data/rules/mit_209.RULE @@ -7,10 +7,10 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -# This program is distributed under the terms of the MIT License as found +# This program is distributed under the terms of {{the MIT License}} as found # in a file called LICENSE. If it is not present, the license # is always available at http://www.opensource.org/licenses/mit-license.php. # # This program is distributed in the hope that it will be useful, but # without any warrenty; without even the implied warranty of merchantability -# or fitness for a particular purpose. See the MIT License for full details. \ No newline at end of file +# or fitness for a particular purpose. See {{the MIT License}} for full details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_210.RULE b/src/licensedcode/data/rules/mit_210.RULE index 623a98e273..31abb71e8d 100644 --- a/src/licensedcode/data/rules/mit_210.RULE +++ b/src/licensedcode/data/rules/mit_210.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licenced under the MIT license \ No newline at end of file +This project is licenced {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_211.RULE b/src/licensedcode/data/rules/mit_211.RULE index ff7fb32b78..d9f1884f68 100644 --- a/src/licensedcode/data/rules/mit_211.RULE +++ b/src/licensedcode/data/rules/mit_211.RULE @@ -7,6 +7,6 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -# This program is distributed under the terms of the MIT License as found +# This program is distributed under the terms of {{the MIT License}} as found # in a file called LICENSE. If it is not present, the license # is always available at http://www.opensource.org/licenses/mit-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_213.RULE b/src/licensedcode/data/rules/mit_213.RULE index 7964d17770..3e4e75bf8b 100644 --- a/src/licensedcode/data/rules/mit_213.RULE +++ b/src/licensedcode/data/rules/mit_213.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -* Licensed under the MIT: +* {{Licensed under the MIT}}: * http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_214.RULE b/src/licensedcode/data/rules/mit_214.RULE index 5f16e5a247..6e09568de4 100644 --- a/src/licensedcode/data/rules/mit_214.RULE +++ b/src/licensedcode/data/rules/mit_214.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/mit-license.php --- -* Licensed under the MIT: +* {{Licensed under the MIT}}: * https://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_215.RULE b/src/licensedcode/data/rules/mit_215.RULE index 210fca25c8..beeb0e6f97 100644 --- a/src/licensedcode/data/rules/mit_215.RULE +++ b/src/licensedcode/data/rules/mit_215.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -All the files in this distribution are covered under either the MIT -license (see the file LICENSE) \ No newline at end of file +All the files in this distribution are covered under either {{the MIT +license}} (see the file LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_216.RULE b/src/licensedcode/data/rules/mit_216.RULE index aa4d61eab4..c9e69fbf05 100644 --- a/src/licensedcode/data/rules/mit_216.RULE +++ b/src/licensedcode/data/rules/mit_216.RULE @@ -6,4 +6,4 @@ relevance: 100 License -The is available as open source under the terms of the MIT License. \ No newline at end of file +The is available as open source under the terms of {{the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_217.RULE b/src/licensedcode/data/rules/mit_217.RULE index 8fca464dbe..33cafebf6f 100644 --- a/src/licensedcode/data/rules/mit_217.RULE +++ b/src/licensedcode/data/rules/mit_217.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -// Released as open source under the MIT License. See LICENSE file. \ No newline at end of file +// Released as open source {{under the MIT License}}. See LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_218.RULE b/src/licensedcode/data/rules/mit_218.RULE index 17456d024c..8f9ff284f8 100644 --- a/src/licensedcode/data/rules/mit_218.RULE +++ b/src/licensedcode/data/rules/mit_218.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -is licensed under the MIT license. Check the LICENSE file for details. \ No newline at end of file +is {{licensed under the MIT}} license. Check the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_219.RULE b/src/licensedcode/data/rules/mit_219.RULE index 8f3c9f694e..69b8ceab95 100644 --- a/src/licensedcode/data/rules/mit_219.RULE +++ b/src/licensedcode/data/rules/mit_219.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -// This file is available under the MIT license. \ No newline at end of file +// This file is available {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_22.RULE b/src/licensedcode/data/rules/mit_22.RULE index 89fe61e803..96079f5fe3 100644 --- a/src/licensedcode/data/rules/mit_22.RULE +++ b/src/licensedcode/data/rules/mit_22.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -* is distributed under the terms of the MIT license \ No newline at end of file +* is distributed under the terms of {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_221.RULE b/src/licensedcode/data/rules/mit_221.RULE index cbb91c6a05..33f329c13f 100644 --- a/src/licensedcode/data/rules/mit_221.RULE +++ b/src/licensedcode/data/rules/mit_221.RULE @@ -1,7 +1,10 @@ --- license_expression: mit is_license_reference: yes +is_required_phrase: yes relevance: 90 --- -license MIT/X11 \ No newline at end of file +License + +MIT/X11 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_222.RULE b/src/licensedcode/data/rules/mit_222.RULE index 1576d7f4b3..857cf941b7 100644 --- a/src/licensedcode/data/rules/mit_222.RULE +++ b/src/licensedcode/data/rules/mit_222.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is free software released under the MIT/X11 license: \ No newline at end of file +This project is free software released under the {{MIT/X11 license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_228.RULE b/src/licensedcode/data/rules/mit_228.RULE index bd1a772875..e02727d91c 100644 --- a/src/licensedcode/data/rules/mit_228.RULE +++ b/src/licensedcode/data/rules/mit_228.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under MIT license \ No newline at end of file +{{Licensed under MIT}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_231.RULE b/src/licensedcode/data/rules/mit_231.RULE index dd94a4157d..b09ed87dac 100644 --- a/src/licensedcode/data/rules/mit_231.RULE +++ b/src/licensedcode/data/rules/mit_231.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The free use of this software is granted under the terms of the MIT license. \ No newline at end of file +The free use of this software is granted under the terms of {{the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_233.RULE b/src/licensedcode/data/rules/mit_233.RULE index f47782ecbe..1c33e27f48 100644 --- a/src/licensedcode/data/rules/mit_233.RULE +++ b/src/licensedcode/data/rules/mit_233.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://github.com/hector/hector-client/wiki/License --- -License: MIT License (https://github.com/hector/hector-client/wiki/License \ No newline at end of file +License: {{MIT License}} (https://github.com/hector/hector-client/wiki/License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_234.RULE b/src/licensedcode/data/rules/mit_234.RULE index cf064c378b..f2d71c74ee 100644 --- a/src/licensedcode/data/rules/mit_234.RULE +++ b/src/licensedcode/data/rules/mit_234.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://raw.githubusercontent.com/irmen/Pyrolite/master/LICENSE --- -License: MIT License (https://raw.githubusercontent.com/irmen/Pyrolite/master/LICENSE \ No newline at end of file +License: {{MIT License}} (https://raw.githubusercontent.com/irmen/Pyrolite/master/LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_235.RULE b/src/licensedcode/data/rules/mit_235.RULE index 2fcbbd784c..e3dc0a6a41 100644 --- a/src/licensedcode/data/rules/mit_235.RULE +++ b/src/licensedcode/data/rules/mit_235.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -License: The MIT License (http://opensource.org/licenses/MIT \ No newline at end of file +License: {{The MIT License}} (http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_237.RULE b/src/licensedcode/data/rules/mit_237.RULE index 42b08827f1..78be01150b 100644 --- a/src/licensedcode/data/rules/mit_237.RULE +++ b/src/licensedcode/data/rules/mit_237.RULE @@ -1,6 +1,7 @@ --- license_expression: mit is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_241.RULE b/src/licensedcode/data/rules/mit_241.RULE index 83d116886e..02c2b2e26c 100644 --- a/src/licensedcode/data/rules/mit_241.RULE +++ b/src/licensedcode/data/rules/mit_241.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This library is available under an MIT license, \ No newline at end of file +This library is available under an {{MIT license}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_242.RULE b/src/licensedcode/data/rules/mit_242.RULE index b2b0fad4fe..0f0934857a 100644 --- a/src/licensedcode/data/rules/mit_242.RULE +++ b/src/licensedcode/data/rules/mit_242.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -software is licensed pursuant to the MIT license as follows \ No newline at end of file +software is licensed pursuant to {{the MIT license}} as follows \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_243.RULE b/src/licensedcode/data/rules/mit_243.RULE index 073c525e00..905cc28b05 100644 --- a/src/licensedcode/data/rules/mit_243.RULE +++ b/src/licensedcode/data/rules/mit_243.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opensource.org/licenses/mit-license.html --- -files are licensed under MIT License - +files are {{licensed under MIT}} License - * http://opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_244.RULE b/src/licensedcode/data/rules/mit_244.RULE index ea28397cb0..e8132a848b 100644 --- a/src/licensedcode/data/rules/mit_244.RULE +++ b/src/licensedcode/data/rules/mit_244.RULE @@ -5,4 +5,4 @@ relevance: 100 --- you may use this file under the -* following terms, known as the "MIT license": \ No newline at end of file +* following terms, known as {{the "MIT license}}": \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_246.RULE b/src/licensedcode/data/rules/mit_246.RULE index 2cbfdb20ae..0bf14bdfa3 100644 --- a/src/licensedcode/data/rules/mit_246.RULE +++ b/src/licensedcode/data/rules/mit_246.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -You are free to use this code under the MIT license: +You are free to use this code {{under the MIT license}}: http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_247.RULE b/src/licensedcode/data/rules/mit_247.RULE index a32f5cf9ab..8bb6598e13 100644 --- a/src/licensedcode/data/rules/mit_247.RULE +++ b/src/licensedcode/data/rules/mit_247.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -You are free to use this code under the MIT license: \ No newline at end of file +You are free to use this code {{under the MIT license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_249.RULE b/src/licensedcode/data/rules/mit_249.RULE index 46b60dda43..9b78c3d9e0 100644 --- a/src/licensedcode/data/rules/mit_249.RULE +++ b/src/licensedcode/data/rules/mit_249.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -licensed under the MIT license. (http://opensource.org/licenses/MIT) \ No newline at end of file +{{licensed under the MIT}} license. (http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_250.RULE b/src/licensedcode/data/rules/mit_250.RULE index 68729ce828..33d2b83a78 100644 --- a/src/licensedcode/data/rules/mit_250.RULE +++ b/src/licensedcode/data/rules/mit_250.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 99 --- -license: MIT/expat \ No newline at end of file +{{license: MIT}}/expat \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_251.RULE b/src/licensedcode/data/rules/mit_251.RULE index f91cbac7c2..64411761b5 100644 --- a/src/licensedcode/data/rules/mit_251.RULE +++ b/src/licensedcode/data/rules/mit_251.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -covered by the MIT license \ No newline at end of file +covered by {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_252.RULE b/src/licensedcode/data/rules/mit_252.RULE index 5576e83052..71793b5280 100644 --- a/src/licensedcode/data/rules/mit_252.RULE +++ b/src/licensedcode/data/rules/mit_252.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -// Use of this source code is governed by a MIT-license. -// See http://.mit-license.org/license.txt for details. \ No newline at end of file +// Use of this source code is governed by a {{MIT-license}}. +// See http://.{{mit-license}}.org/license.txt for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_253.RULE b/src/licensedcode/data/rules/mit_253.RULE index e9d822f889..aa55cf9395 100644 --- a/src/licensedcode/data/rules/mit_253.RULE +++ b/src/licensedcode/data/rules/mit_253.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -// Use of this source code is governed by a MIT style -// license that can be found in the LICENSE file. \ No newline at end of file +// Use of this source code is governed by a {{MIT style +// license}} that can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_254.RULE b/src/licensedcode/data/rules/mit_254.RULE index f822e17532..b48ed2eda1 100644 --- a/src/licensedcode/data/rules/mit_254.RULE +++ b/src/licensedcode/data/rules/mit_254.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -[MIT License]: LICENSE.txt \ No newline at end of file +[{{MIT License}}]: LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_255.RULE b/src/licensedcode/data/rules/mit_255.RULE index 7a4d415f0b..f3be76c372 100644 --- a/src/licensedcode/data/rules/mit_255.RULE +++ b/src/licensedcode/data/rules/mit_255.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE.txt --- -Released under the [MIT License]. +Released {{under the [MIT License}}]. -[MIT License]: LICENSE.txt \ No newline at end of file +[{{MIT License}}]: LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_256.RULE b/src/licensedcode/data/rules/mit_256.RULE index cc127d9cc1..9eaac0f868 100644 --- a/src/licensedcode/data/rules/mit_256.RULE +++ b/src/licensedcode/data/rules/mit_256.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -Released under the [MIT License](LICENSE.txt). \ No newline at end of file +Released {{under the [MIT License}}](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_257.RULE b/src/licensedcode/data/rules/mit_257.RULE index 31effab607..8543f164ff 100644 --- a/src/licensedcode/data/rules/mit_257.RULE +++ b/src/licensedcode/data/rules/mit_257.RULE @@ -8,4 +8,4 @@ referenced_filenames: ## License -The MIT License (MIT). Read [LICENSE](LICENSE). \ No newline at end of file +{{The MIT License}} (MIT). Read [LICENSE](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_259.RULE b/src/licensedcode/data/rules/mit_259.RULE index b683f16608..b5a9b4b915 100644 --- a/src/licensedcode/data/rules/mit_259.RULE +++ b/src/licensedcode/data/rules/mit_259.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -has an MIT license \ No newline at end of file +has an {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_26.RULE b/src/licensedcode/data/rules/mit_26.RULE index 2ba875bfea..cc02339174 100644 --- a/src/licensedcode/data/rules/mit_26.RULE +++ b/src/licensedcode/data/rules/mit_26.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The MIT License (MIT) \ No newline at end of file +{{The MIT License}} (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_260.RULE b/src/licensedcode/data/rules/mit_260.RULE index efc403e791..6005da6292 100644 --- a/src/licensedcode/data/rules/mit_260.RULE +++ b/src/licensedcode/data/rules/mit_260.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -MIT License (Expat) \ No newline at end of file +{{MIT License}} (Expat) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_261.RULE b/src/licensedcode/data/rules/mit_261.RULE index ee111d5f04..74de1778f9 100644 --- a/src/licensedcode/data/rules/mit_261.RULE +++ b/src/licensedcode/data/rules/mit_261.RULE @@ -1,6 +1,7 @@ --- license_expression: mit is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/mit_262.RULE b/src/licensedcode/data/rules/mit_262.RULE index 41422c188a..f7f797758f 100644 --- a/src/licensedcode/data/rules/mit_262.RULE +++ b/src/licensedcode/data/rules/mit_262.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the MIT general use license \ No newline at end of file +This project is {{licensed under the MIT}} general use license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_263.RULE b/src/licensedcode/data/rules/mit_263.RULE index fe6341f143..d2d1e1b89f 100644 --- a/src/licensedcode/data/rules/mit_263.RULE +++ b/src/licensedcode/data/rules/mit_263.RULE @@ -7,6 +7,6 @@ relevance: 100 License -- -This project is licensed under the MIT general use license. +This project is {{licensed under the MIT}} general use license. You're free to integrate, fork, and play with this code as you feel fit without consulting the author, as long as you provide proper credit to the author in your works \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_264.RULE b/src/licensedcode/data/rules/mit_264.RULE index 7d03d1d26a..6888976eeb 100644 --- a/src/licensedcode/data/rules/mit_264.RULE +++ b/src/licensedcode/data/rules/mit_264.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -// Use of this source code is governed by the MIT -// license which can be found in the LICENSE file. \ No newline at end of file +// Use of this source code is governed by {{the MIT +// license}} which can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_267.RULE b/src/licensedcode/data/rules/mit_267.RULE index c7b1a51720..2cf3a5dbec 100644 --- a/src/licensedcode/data/rules/mit_267.RULE +++ b/src/licensedcode/data/rules/mit_267.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE --- -## License +## {{License -MIT -- see `LICENSE` for more information. \ No newline at end of file +MIT}} -- see `LICENSE` for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_268.RULE b/src/licensedcode/data/rules/mit_268.RULE index 8f2081bb82..0bd0e34f9d 100644 --- a/src/licensedcode/data/rules/mit_268.RULE +++ b/src/licensedcode/data/rules/mit_268.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -is released under -# the MIT License: http://www.opensource.org/licenses/mit-license.php \ No newline at end of file +is released {{under +# the MIT License}}: http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_269.RULE b/src/licensedcode/data/rules/mit_269.RULE index 9489489e2e..dfded6f89a 100644 --- a/src/licensedcode/data/rules/mit_269.RULE +++ b/src/licensedcode/data/rules/mit_269.RULE @@ -1,6 +1,7 @@ --- license_expression: mit is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/mit_27.RULE b/src/licensedcode/data/rules/mit_27.RULE index 2db99c715d..61ebeb0226 100644 --- a/src/licensedcode/data/rules/mit_27.RULE +++ b/src/licensedcode/data/rules/mit_27.RULE @@ -1,7 +1,8 @@ --- license_expression: mit is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -the MIT License \ No newline at end of file +The MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_270.RULE b/src/licensedcode/data/rules/mit_270.RULE index bbd6606756..7a3809051e 100644 --- a/src/licensedcode/data/rules/mit_270.RULE +++ b/src/licensedcode/data/rules/mit_270.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -module under MIT license: \ No newline at end of file +module {{under MIT license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_271.RULE b/src/licensedcode/data/rules/mit_271.RULE index 909350404a..9940c00744 100644 --- a/src/licensedcode/data/rules/mit_271.RULE +++ b/src/licensedcode/data/rules/mit_271.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the following MIT license: \ No newline at end of file +under the following {{MIT license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_278.RULE b/src/licensedcode/data/rules/mit_278.RULE index 7c02c54074..b47b857650 100644 --- a/src/licensedcode/data/rules/mit_278.RULE +++ b/src/licensedcode/data/rules/mit_278.RULE @@ -5,6 +5,6 @@ relevance: 100 --- License - is released under the MIT License (see below). You are free to use it in any project, commercial or otherwise, as long as the copyright header is left intact. + is released {{under the MIT License}} (see below). You are free to use it in any project, commercial or otherwise, as long as the copyright header is left intact. The same is true for any demo code, sample code, or other code examples displayed in this site. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_28.RULE b/src/licensedcode/data/rules/mit_28.RULE index 2ae308c7b5..c214c19d0c 100644 --- a/src/licensedcode/data/rules/mit_28.RULE +++ b/src/licensedcode/data/rules/mit_28.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -The MIT License (http://www.opensource.org/licenses/mit-license.php) \ No newline at end of file +{{The MIT License}} (http://www.opensource.org/licenses/mit-license.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_299.RULE b/src/licensedcode/data/rules/mit_299.RULE index c06563a763..7c4b74be79 100644 --- a/src/licensedcode/data/rules/mit_299.RULE +++ b/src/licensedcode/data/rules/mit_299.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed with MIT X11 license (see license text below) \ No newline at end of file +licensed with {{MIT X11 license}} (see license text below) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_30.RULE b/src/licensedcode/data/rules/mit_30.RULE index da2ec700d9..22843f3f3f 100644 --- a/src/licensedcode/data/rules/mit_30.RULE +++ b/src/licensedcode/data/rules/mit_30.RULE @@ -1,6 +1,7 @@ --- license_expression: mit is_license_tag: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/mit_300.RULE b/src/licensedcode/data/rules/mit_300.RULE index 290e8ac312..bac9636409 100644 --- a/src/licensedcode/data/rules/mit_300.RULE +++ b/src/licensedcode/data/rules/mit_300.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -Licensed under MIT see License file. Each plugin licensed under parent license unless stated in it's readme file. \ No newline at end of file +{{Licensed under MIT}} see License file. Each plugin licensed under parent license unless stated in it's readme file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_306.RULE b/src/licensedcode/data/rules/mit_306.RULE index 2a82fd7f82..a56011397f 100644 --- a/src/licensedcode/data/rules/mit_306.RULE +++ b/src/licensedcode/data/rules/mit_306.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opensource.org/licenses/mit-license.php --- -The distribution is licensed under the MIT License (http://opensource.org/licenses/mit-license.php). +The distribution is {{licensed under the MIT}} License (http://opensource.org/licenses/mit-license.php). mozilla \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_307.RULE b/src/licensedcode/data/rules/mit_307.RULE index 3fdcb0a4cb..10e7807b53 100644 --- a/src/licensedcode/data/rules/mit_307.RULE +++ b/src/licensedcode/data/rules/mit_307.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -in accordance with the terms of the MIT license \ No newline at end of file +in accordance with the terms of {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_31.RULE b/src/licensedcode/data/rules/mit_31.RULE index 8c772fd3bb..36262478dd 100644 --- a/src/licensedcode/data/rules/mit_31.RULE +++ b/src/licensedcode/data/rules/mit_31.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: MIT license \ No newline at end of file +License: {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_32.RULE b/src/licensedcode/data/rules/mit_32.RULE index 295d1e8792..56ea60aa2a 100644 --- a/src/licensedcode/data/rules/mit_32.RULE +++ b/src/licensedcode/data/rules/mit_32.RULE @@ -8,4 +8,4 @@ referenced_filenames: --- * This library is free software; you can redistribute it and/or modify - * it under the terms of the MIT license. See LICENSE for details. \ No newline at end of file + * it under the terms of {{the MIT license}}. See LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_320.RULE b/src/licensedcode/data/rules/mit_320.RULE index 4dfa670ede..5faf4085ab 100644 --- a/src/licensedcode/data/rules/mit_320.RULE +++ b/src/licensedcode/data/rules/mit_320.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://gomakethings.com/mit/ --- -Licensed under MIT: http://gomakethings.com/mit/ \ No newline at end of file +{{Licensed under MIT}}: http://gomakethings.com/mit/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_323.RULE b/src/licensedcode/data/rules/mit_323.RULE index 0bff0545df..1bf4e923d7 100644 --- a/src/licensedcode/data/rules/mit_323.RULE +++ b/src/licensedcode/data/rules/mit_323.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/mit-license.php --- -MIT License - https://opensource.org/licenses/mit-license.php \ No newline at end of file +{{MIT License}} - https://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_324.RULE b/src/licensedcode/data/rules/mit_324.RULE index 8c1962a33b..afd5607769 100644 --- a/src/licensedcode/data/rules/mit_324.RULE +++ b/src/licensedcode/data/rules/mit_324.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/mit-license.php --- -MIT License - http://opensource.org/licenses/mit-license.php \ No newline at end of file +{{MIT License}} - http://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_325.RULE b/src/licensedcode/data/rules/mit_325.RULE index e1c6ee3ef8..1e1766ee52 100644 --- a/src/licensedcode/data/rules/mit_325.RULE +++ b/src/licensedcode/data/rules/mit_325.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -* The MIT License +* {{The MIT License}} http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_326.RULE b/src/licensedcode/data/rules/mit_326.RULE index 7b1ef283ac..d85f775051 100644 --- a/src/licensedcode/data/rules/mit_326.RULE +++ b/src/licensedcode/data/rules/mit_326.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -* The MIT License +* {{The MIT License}} https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_330.RULE b/src/licensedcode/data/rules/mit_330.RULE index 4c4f80e18d..cf5a16687f 100644 --- a/src/licensedcode/data/rules/mit_330.RULE +++ b/src/licensedcode/data/rules/mit_330.RULE @@ -7,5 +7,5 @@ ignorable_urls: - http://appsattic.mit-license.org/2012/ --- -# License # -MIT: [http://appsattic.mit-license.org/2012/](http://appsattic.mit-license.org/2012/) \ No newline at end of file +# {{License # +MIT}}: [http://appsattic.mit-license.org/2012/](http://appsattic.mit-license.org/2012/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_331.RULE b/src/licensedcode/data/rules/mit_331.RULE index c8bc59c348..9a09439bfd 100644 --- a/src/licensedcode/data/rules/mit_331.RULE +++ b/src/licensedcode/data/rules/mit_331.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://appsattic.mit-license.org/2012/ --- -License -MIT: http://appsattic.mit-license.org/2012/ \ No newline at end of file +{{License +MIT}}: http://appsattic.mit-license.org/2012/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_332.RULE b/src/licensedcode/data/rules/mit_332.RULE index 339b4f05db..0ab17481df 100644 --- a/src/licensedcode/data/rules/mit_332.RULE +++ b/src/licensedcode/data/rules/mit_332.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is published under the MIT license as published here: \ No newline at end of file +This software is published {{under the MIT license}} as published here: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_333.RULE b/src/licensedcode/data/rules/mit_333.RULE index 4d0d5ffeb7..5a9ca14fd1 100644 --- a/src/licensedcode/data/rules/mit_333.RULE +++ b/src/licensedcode/data/rules/mit_333.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://appsattic.mit-license.org/2012/ --- -This software is published under the MIT license as published here: +This software is published {{under the MIT license}} as published here: * http://appsattic.mit-license.org/2012/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_339.RULE b/src/licensedcode/data/rules/mit_339.RULE index 20c21760d9..c35d107416 100644 --- a/src/licensedcode/data/rules/mit_339.RULE +++ b/src/licensedcode/data/rules/mit_339.RULE @@ -8,4 +8,4 @@ ignorable_urls: ## License -The app is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). \ No newline at end of file +The app is available as open source under the terms of {{the [MIT License}}](https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_34.RULE b/src/licensedcode/data/rules/mit_34.RULE index 5a61f10c32..6341265a8b 100644 --- a/src/licensedcode/data/rules/mit_34.RULE +++ b/src/licensedcode/data/rules/mit_34.RULE @@ -8,5 +8,5 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -Distributed under MIT license. +{{Distributed under MIT license}}. See file LICENSE for detail or copy at https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_340.RULE b/src/licensedcode/data/rules/mit_340.RULE index b6b6f35adc..67f90c9d77 100644 --- a/src/licensedcode/data/rules/mit_340.RULE +++ b/src/licensedcode/data/rules/mit_340.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -The app is available as open source under the terms of the MIT License. \ No newline at end of file +The app is available as open source under the terms of {{the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_341.RULE b/src/licensedcode/data/rules/mit_341.RULE index 1afbe293ca..71d70cead5 100644 --- a/src/licensedcode/data/rules/mit_341.RULE +++ b/src/licensedcode/data/rules/mit_341.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.txt --- -// Use of this source code is governed by an MIT-style -// license that can be found in the LICENSE.txt file. \ No newline at end of file +// Use of this source code is governed by an {{MIT-style +// license}} that can be found in the LICENSE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_342.RULE b/src/licensedcode/data/rules/mit_342.RULE index e4c851de69..6123968686 100644 --- a/src/licensedcode/data/rules/mit_342.RULE +++ b/src/licensedcode/data/rules/mit_342.RULE @@ -9,4 +9,4 @@ ignorable_urls: --- License -This library is distributed under the [MIT License](https://opensource.org/licenses/MIT), see LICENSE.txt for more information. \ No newline at end of file +This library is {{distributed under the [MIT License}}](https://opensource.org/licenses/MIT), see LICENSE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_343.RULE b/src/licensedcode/data/rules/mit_343.RULE index 49701794c1..6e751feda6 100644 --- a/src/licensedcode/data/rules/mit_343.RULE +++ b/src/licensedcode/data/rules/mit_343.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -all included source files are distributed under terms of the MIT License. \ No newline at end of file +all included source files are distributed under terms of {{the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_344.RULE b/src/licensedcode/data/rules/mit_344.RULE index bd373c2c6b..60b328bcc6 100644 --- a/src/licensedcode/data/rules/mit_344.RULE +++ b/src/licensedcode/data/rules/mit_344.RULE @@ -7,4 +7,4 @@ relevance: 100 // Licensed under the {{MIT License}} (the "License"); you may not use this file except // in compliance with the License-> You may obtain a copy of the License at // -// http://opensource->org/{{licenses/MIT}} \ No newline at end of file +// {{ http://opensource->org/licenses/MIT}} diff --git a/src/licensedcode/data/rules/mit_345.RULE b/src/licensedcode/data/rules/mit_345.RULE index 39635bcceb..cd972270fc 100644 --- a/src/licensedcode/data/rules/mit_345.RULE +++ b/src/licensedcode/data/rules/mit_345.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -* This software is released under the MIT License-> - * http://opensource->org/licenses/mit-license->php - * http://opensource->org/licenses/mit-license->php \ No newline at end of file +* This software is released {{under the MIT License}}-> + * {{ http://opensource->org/licenses/mit-license->php }} + * {{ http://opensource->org/licenses/mit-license->php }} diff --git a/src/licensedcode/data/rules/mit_346.RULE b/src/licensedcode/data/rules/mit_346.RULE index 5507387a60..feab622089 100644 --- a/src/licensedcode/data/rules/mit_346.RULE +++ b/src/licensedcode/data/rules/mit_346.RULE @@ -1,7 +1,6 @@ --- license_expression: mit is_license_text: yes -relevance: 100 minimum_coverage: 99 --- diff --git a/src/licensedcode/data/rules/mit_347.RULE b/src/licensedcode/data/rules/mit_347.RULE index 870603f974..9f3aa4832a 100644 --- a/src/licensedcode/data/rules/mit_347.RULE +++ b/src/licensedcode/data/rules/mit_347.RULE @@ -6,4 +6,4 @@ relevance: 100 # License -This project is licensed under the terms of the MIT license. See the LICENSE file. \ No newline at end of file +This project is licensed under the terms of {{the MIT license}}. See the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_348.RULE b/src/licensedcode/data/rules/mit_348.RULE index 686255ea8c..a08b5da80e 100644 --- a/src/licensedcode/data/rules/mit_348.RULE +++ b/src/licensedcode/data/rules/mit_348.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This project is licensed under the terms of the MIT license. See the LICENSE file. \ No newline at end of file +This project is licensed under the terms of {{the MIT license}}. See the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_349.RULE b/src/licensedcode/data/rules/mit_349.RULE index 6d4f012f05..13fda1c8ca 100644 --- a/src/licensedcode/data/rules/mit_349.RULE +++ b/src/licensedcode/data/rules/mit_349.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the terms of the MIT license. \ No newline at end of file +This project is licensed under the terms of {{the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_35.RULE b/src/licensedcode/data/rules/mit_35.RULE index d38877f705..d6fea13259 100644 --- a/src/licensedcode/data/rules/mit_35.RULE +++ b/src/licensedcode/data/rules/mit_35.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 90 --- -This program is made available under the terms of the MIT License \ No newline at end of file +This program is made available under the terms of {{the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_350.RULE b/src/licensedcode/data/rules/mit_350.RULE index 6076906936..14a3e1ff58 100644 --- a/src/licensedcode/data/rules/mit_350.RULE +++ b/src/licensedcode/data/rules/mit_350.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is open source under the MIT license, which means you have full access to the source code and can modify it to fit your own needs. \ No newline at end of file +This project is open source {{under the MIT license}}, which means you have full access to the source code and can modify it to fit your own needs. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_352.RULE b/src/licensedcode/data/rules/mit_352.RULE index d2b1a4b3e4..fbcde98f3f 100644 --- a/src/licensedcode/data/rules/mit_352.RULE +++ b/src/licensedcode/data/rules/mit_352.RULE @@ -8,6 +8,6 @@ referenced_filenames: ## License -This project is licensed under the terms of the MIT license. See the [LICENSE](LICENSE) file. +This project is licensed under the terms of {{the MIT license}}. See the [LICENSE](LICENSE) file. -> This project and all fastlane tools are in no way affiliated with Apple Inc. This project is open source under the MIT license, which means you have full access to the source code and can modify it to fit your own needs. All fastlane tools run on your own computer or server, so your credentials or other sensitive information will never leave your own computer. You are responsible for how you use fastlane tools. \ No newline at end of file +> This project and all fastlane tools are in no way affiliated with Apple Inc. This project is open source {{under the MIT license}}, which means you have full access to the source code and can modify it to fit your own needs. All fastlane tools run on your own computer or server, so your credentials or other sensitive information will never leave your own computer. You are responsible for how you use fastlane tools. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_353.RULE b/src/licensedcode/data/rules/mit_353.RULE index 9536df9069..a7572c5e65 100644 --- a/src/licensedcode/data/rules/mit_353.RULE +++ b/src/licensedcode/data/rules/mit_353.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This project is licensed under the terms of the MIT license. See the [LICENSE](LICENSE) file. \ No newline at end of file +This project is licensed under the terms of {{the MIT license}}. See the [LICENSE](LICENSE) file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_355.RULE b/src/licensedcode/data/rules/mit_355.RULE index 6ac6938649..d2687d4b6e 100644 --- a/src/licensedcode/data/rules/mit_355.RULE +++ b/src/licensedcode/data/rules/mit_355.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG -Font-Awesome-SVG-PNG is licensed under the MIT license (see file license +Font-Awesome-SVG-PNG is {{licensed under the MIT}} license (see file license in current folder). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_356.RULE b/src/licensedcode/data/rules/mit_356.RULE index 1c64f9c70b..7c7cb7663d 100644 --- a/src/licensedcode/data/rules/mit_356.RULE +++ b/src/licensedcode/data/rules/mit_356.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://en.wikipedia.org/wiki/MIT_License --- -MIT License: https://en.wikipedia.org/wiki/MIT_License \ No newline at end of file +{{MIT License}}: https://en.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_357.RULE b/src/licensedcode/data/rules/mit_357.RULE index 485b9f60ba..132a69f287 100644 --- a/src/licensedcode/data/rules/mit_357.RULE +++ b/src/licensedcode/data/rules/mit_357.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://en.wikipedia.org/wiki/MIT_License --- -MIT License: http://en.wikipedia.org/wiki/MIT_License \ No newline at end of file +{{MIT License}}: http://en.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_36.RULE b/src/licensedcode/data/rules/mit_36.RULE index 2da714d71e..5a89fe9a44 100644 --- a/src/licensedcode/data/rules/mit_36.RULE +++ b/src/licensedcode/data/rules/mit_36.RULE @@ -6,4 +6,4 @@ minimum_coverage: 100 --- MIT: - The MIT license applies to all files in the directories: \ No newline at end of file + {{The MIT license}} applies to all files in the directories: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_360.RULE b/src/licensedcode/data/rules/mit_360.RULE index 982d67b330..410a0372a4 100644 --- a/src/licensedcode/data/rules/mit_360.RULE +++ b/src/licensedcode/data/rules/mit_360.RULE @@ -1,6 +1,7 @@ --- license_expression: mit is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/mit_362.RULE b/src/licensedcode/data/rules/mit_362.RULE index 6ec7f4e6cc..2e75df0cd9 100644 --- a/src/licensedcode/data/rules/mit_362.RULE +++ b/src/licensedcode/data/rules/mit_362.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://jquery.org/license/ --- -MIT license +{{MIT license}} https://jquery.org/license/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_363.RULE b/src/licensedcode/data/rules/mit_363.RULE index 975e617671..db3d9a3daf 100644 --- a/src/licensedcode/data/rules/mit_363.RULE +++ b/src/licensedcode/data/rules/mit_363.RULE @@ -8,7 +8,7 @@ ignorable_urls: - https://tldrlegal.com/license/mit-license --- -MIT license +{{MIT license}} https://jquery.org/license/ https://tldrlegal.com/license/mit-license diff --git a/src/licensedcode/data/rules/mit_364.RULE b/src/licensedcode/data/rules/mit_364.RULE index b504a2a33b..34eb9b789b 100644 --- a/src/licensedcode/data/rules/mit_364.RULE +++ b/src/licensedcode/data/rules/mit_364.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -# This module is provided under the terms of the MIT License. \ No newline at end of file +# This module is provided under the terms of {{the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_365.RULE b/src/licensedcode/data/rules/mit_365.RULE index 7dfd20c07c..2e97a7427f 100644 --- a/src/licensedcode/data/rules/mit_365.RULE +++ b/src/licensedcode/data/rules/mit_365.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The MIT X11 license \ No newline at end of file +The {{MIT X11 license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_367.RULE b/src/licensedcode/data/rules/mit_367.RULE index b8eb6f48a8..2c89efefdd 100644 --- a/src/licensedcode/data/rules/mit_367.RULE +++ b/src/licensedcode/data/rules/mit_367.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The code in this repo is made available under the MIT license. \ No newline at end of file +The code in this repo is made available {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_369.RULE b/src/licensedcode/data/rules/mit_369.RULE index 52d024626d..3ce8b0613d 100644 --- a/src/licensedcode/data/rules/mit_369.RULE +++ b/src/licensedcode/data/rules/mit_369.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://github.com/geertw/php-ip-anonymizer --- -Modified from https://github.com/geertw/php-ip-anonymizer, MIT license. \ No newline at end of file +Modified from https://github.com/geertw/php-ip-anonymizer, {{MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_370.RULE b/src/licensedcode/data/rules/mit_370.RULE index 36178b8ec7..7d435cdcad 100644 --- a/src/licensedcode/data/rules/mit_370.RULE +++ b/src/licensedcode/data/rules/mit_370.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -Licensed under the MIT license +{{Licensed under the MIT}} license http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_371.RULE b/src/licensedcode/data/rules/mit_371.RULE index 9b4c6c3321..f0b2fc82fb 100644 --- a/src/licensedcode/data/rules/mit_371.RULE +++ b/src/licensedcode/data/rules/mit_371.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.opensource.org/licenses/mit-license.php --- -Licensed under the MIT license +{{Licensed under the MIT}} license https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_372.RULE b/src/licensedcode/data/rules/mit_372.RULE index d8421db890..d58056dbe1 100644 --- a/src/licensedcode/data/rules/mit_372.RULE +++ b/src/licensedcode/data/rules/mit_372.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -You may use under the terms of the MIT license. Basically that +You may use under the terms of {{the MIT license}}. Basically that means you are free to use as long as this header is left intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_373.RULE b/src/licensedcode/data/rules/mit_373.RULE index 61741d5983..6f86fe8f2b 100644 --- a/src/licensedcode/data/rules/mit_373.RULE +++ b/src/licensedcode/data/rules/mit_373.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -released under the MIT License \ No newline at end of file +released {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_374.RULE b/src/licensedcode/data/rules/mit_374.RULE index 177290e89b..00d20f548e 100644 --- a/src/licensedcode/data/rules/mit_374.RULE +++ b/src/licensedcode/data/rules/mit_374.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.opensource.org/licenses/mit-license.php --- -is released under the MIT License \ No newline at end of file +is released {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_375.RULE b/src/licensedcode/data/rules/mit_375.RULE index f53723d4a0..71e3453932 100644 --- a/src/licensedcode/data/rules/mit_375.RULE +++ b/src/licensedcode/data/rules/mit_375.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/mit-license.php --- -released under the MIT License \ No newline at end of file +released {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_377.RULE b/src/licensedcode/data/rules/mit_377.RULE index a0ca35aae5..92d5b88452 100644 --- a/src/licensedcode/data/rules/mit_377.RULE +++ b/src/licensedcode/data/rules/mit_377.RULE @@ -6,4 +6,4 @@ relevance: 100 Licence -This is released under the MIT license. It's fully open source. \ No newline at end of file +This is released {{under the MIT license}}. It's fully open source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_378.RULE b/src/licensedcode/data/rules/mit_378.RULE index 897a45c095..4f52cf5765 100644 --- a/src/licensedcode/data/rules/mit_378.RULE +++ b/src/licensedcode/data/rules/mit_378.RULE @@ -6,4 +6,4 @@ relevance: 100 Licence -This is released under the MIT license. \ No newline at end of file +This is released {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_379.RULE b/src/licensedcode/data/rules/mit_379.RULE index 05ffd026dd..9d59388da9 100644 --- a/src/licensedcode/data/rules/mit_379.RULE +++ b/src/licensedcode/data/rules/mit_379.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This is released under the MIT license. It's fully open source. \ No newline at end of file +This is released {{under the MIT license}}. It's fully open source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_38.RULE b/src/licensedcode/data/rules/mit_38.RULE index 954e233c3a..fc61a3816e 100644 --- a/src/licensedcode/data/rules/mit_38.RULE +++ b/src/licensedcode/data/rules/mit_38.RULE @@ -1,8 +1,9 @@ --- license_expression: mit is_license_reference: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 --- -MIT/X11 License \ No newline at end of file +MIT/X11 license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_380.RULE b/src/licensedcode/data/rules/mit_380.RULE index f5eccb1b3d..025e391050 100644 --- a/src/licensedcode/data/rules/mit_380.RULE +++ b/src/licensedcode/data/rules/mit_380.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This is released under the MIT license. \ No newline at end of file +This is released {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_383.RULE b/src/licensedcode/data/rules/mit_383.RULE index 6fdad477de..2fc4aab239 100644 --- a/src/licensedcode/data/rules/mit_383.RULE +++ b/src/licensedcode/data/rules/mit_383.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -and is released under the MIT License: \ No newline at end of file +and is released {{under the MIT License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_384.RULE b/src/licensedcode/data/rules/mit_384.RULE index 28df8bbd73..25be2e5ba1 100644 --- a/src/licensedcode/data/rules/mit_384.RULE +++ b/src/licensedcode/data/rules/mit_384.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is released under the MIT License: \ No newline at end of file +is released {{under the MIT License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_386.RULE b/src/licensedcode/data/rules/mit_386.RULE index eb97a70258..5b497dc334 100644 --- a/src/licensedcode/data/rules/mit_386.RULE +++ b/src/licensedcode/data/rules/mit_386.RULE @@ -6,5 +6,5 @@ referenced_filenames: - FindCUDA.cmake --- -This code is licensed under the MIT License. See the FindCUDA.cmake script +This code is {{licensed under the MIT}} License. See the FindCUDA.cmake script for the text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_387.RULE b/src/licensedcode/data/rules/mit_387.RULE index 65045554a7..e5d722b3f8 100644 --- a/src/licensedcode/data/rules/mit_387.RULE +++ b/src/licensedcode/data/rules/mit_387.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is licensed under the MIT License. \ No newline at end of file +This code is {{licensed under the MIT}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_388.RULE b/src/licensedcode/data/rules/mit_388.RULE index 774c96b3b8..79a4fc03b1 100644 --- a/src/licensedcode/data/rules/mit_388.RULE +++ b/src/licensedcode/data/rules/mit_388.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This code is licensed under the MIT License. See the script +This code is {{licensed under the MIT}} License. See the script for the text of the license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_389.RULE b/src/licensedcode/data/rules/mit_389.RULE index ae7458bc44..62ebea819c 100644 --- a/src/licensedcode/data/rules/mit_389.RULE +++ b/src/licensedcode/data/rules/mit_389.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -License -MIT licensed. https://opensource.org/licenses/MIT \ No newline at end of file +{{License +MIT}} licensed. https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_390.RULE b/src/licensedcode/data/rules/mit_390.RULE index c7ea73afb5..6be6c19b19 100644 --- a/src/licensedcode/data/rules/mit_390.RULE +++ b/src/licensedcode/data/rules/mit_390.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE --- -License +{{License -MIT licensed. See the bundled LICENSE file for more details. \ No newline at end of file +MIT}} licensed. See the bundled LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_393.RULE b/src/licensedcode/data/rules/mit_393.RULE index be538fe026..93e96d235e 100644 --- a/src/licensedcode/data/rules/mit_393.RULE +++ b/src/licensedcode/data/rules/mit_393.RULE @@ -8,5 +8,5 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -"Distributed under the MIT license, see the accompanying file COPYING or +"{{Distributed under the MIT license}}, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_394.RULE b/src/licensedcode/data/rules/mit_394.RULE index 6edc927963..fb1fc64e6f 100644 --- a/src/licensedcode/data/rules/mit_394.RULE +++ b/src/licensedcode/data/rules/mit_394.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Released under the MIT license. See the LICENSE file for details. \ No newline at end of file +Released {{under the MIT license}}. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_395.RULE b/src/licensedcode/data/rules/mit_395.RULE index 46c612aaca..38d3b93114 100644 --- a/src/licensedcode/data/rules/mit_395.RULE +++ b/src/licensedcode/data/rules/mit_395.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the terms of MIT License. \ No newline at end of file +under the terms of {{MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_397.RULE b/src/licensedcode/data/rules/mit_397.RULE index dbf533d09b..af9a4ad888 100644 --- a/src/licensedcode/data/rules/mit_397.RULE +++ b/src/licensedcode/data/rules/mit_397.RULE @@ -5,8 +5,8 @@ relevance: 100 referenced_filenames: - COPYING ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php + - https://www.opensource.org/licenses/mit-license.php --- // Distributed under the MIT software license, see the accompanying -// file COPYING or shttp://www.opensource.org/licenses/mit-license.php. \ No newline at end of file +// file COPYING or https://www.opensource.org/licenses/mit-license.php. diff --git a/src/licensedcode/data/rules/mit_399.RULE b/src/licensedcode/data/rules/mit_399.RULE index 67645d3f5d..28b1599959 100644 --- a/src/licensedcode/data/rules/mit_399.RULE +++ b/src/licensedcode/data/rules/mit_399.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.opensource.org/licenses/mit-license.php --- -The MIT License: https://www.opensource.org/licenses/mit-license.php \ No newline at end of file +{{The MIT License}}: https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_4.RULE b/src/licensedcode/data/rules/mit_4.RULE index cf1b0a1a0b..fa74178f6f 100644 --- a/src/licensedcode/data/rules/mit_4.RULE +++ b/src/licensedcode/data/rules/mit_4.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -distributed under the terms of the MIT license \ No newline at end of file +distributed under the terms of {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_400.RULE b/src/licensedcode/data/rules/mit_400.RULE index 6c196ac4bd..6939adbdf4 100644 --- a/src/licensedcode/data/rules/mit_400.RULE +++ b/src/licensedcode/data/rules/mit_400.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://creativecommons.org/licenses/MIT/ --- -MIT License (MIT) +{{MIT License (MIT}}) link: http://creativecommons.org/licenses/MIT/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_401.RULE b/src/licensedcode/data/rules/mit_401.RULE index b5672ca0ff..3a8da0a729 100644 --- a/src/licensedcode/data/rules/mit_401.RULE +++ b/src/licensedcode/data/rules/mit_401.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://neekware.com/license/MIT.html --- -* Use of this source code is governed by an MIT-style license that can be +* Use of this source code is governed by an {{MIT-style license}} that can be * found in the LICENSE file at http://neekware.com/license/MIT.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_402.RULE b/src/licensedcode/data/rules/mit_402.RULE index 819f3d38c8..bf28072212 100644 --- a/src/licensedcode/data/rules/mit_402.RULE +++ b/src/licensedcode/data/rules/mit_402.RULE @@ -8,4 +8,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -This library is distributed under the [MIT License](https://opensource.org/licenses/MIT), see LICENSE.txt for more information. \ No newline at end of file +This library is {{distributed under the [MIT License}}](https://opensource.org/licenses/MIT), see LICENSE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_403.RULE b/src/licensedcode/data/rules/mit_403.RULE index 8e85d5c10f..a03d2f4323 100644 --- a/src/licensedcode/data/rules/mit_403.RULE +++ b/src/licensedcode/data/rules/mit_403.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -Use of this source code is governed by an MIT-style -license that can be found in the LICENSE file or at +Use of this source code is governed by an {{MIT-style +license}} that can be found in the LICENSE file or at https://opensource.org/licenses/MIT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_404.RULE b/src/licensedcode/data/rules/mit_404.RULE index 448bb5228d..184fd443f1 100644 --- a/src/licensedcode/data/rules/mit_404.RULE +++ b/src/licensedcode/data/rules/mit_404.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -This library is distributed under the MIT License, see LICENSE.txt for more information. \ No newline at end of file +This library is {{distributed under the MIT License}}, see LICENSE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_405.RULE b/src/licensedcode/data/rules/mit_405.RULE index 78edc03d3d..8e75180a38 100644 --- a/src/licensedcode/data/rules/mit_405.RULE +++ b/src/licensedcode/data/rules/mit_405.RULE @@ -10,4 +10,4 @@ ignorable_urls: ## License -This library is distributed under the [MIT License](https://opensource.org/licenses/MIT), see LICENSE for more information. \ No newline at end of file +This library is {{distributed under the [MIT License}}](https://opensource.org/licenses/MIT), see LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_406.RULE b/src/licensedcode/data/rules/mit_406.RULE index ea6fec377b..561c968fee 100644 --- a/src/licensedcode/data/rules/mit_406.RULE +++ b/src/licensedcode/data/rules/mit_406.RULE @@ -8,4 +8,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -This library is distributed under the [MIT License](https://opensource.org/licenses/MIT), see LICENSE for more information. \ No newline at end of file +This library is {{distributed under the [MIT License}}](https://opensource.org/licenses/MIT), see LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_407.RULE b/src/licensedcode/data/rules/mit_407.RULE index a35075efd5..83b911cfb3 100644 --- a/src/licensedcode/data/rules/mit_407.RULE +++ b/src/licensedcode/data/rules/mit_407.RULE @@ -8,4 +8,4 @@ referenced_filenames: ## License -This library is distributed under the [MIT License](httpss://opensource.org/licenses/MIT), see LICENSE.txt for more information. \ No newline at end of file +This library is {{distributed under the [MIT License}}]({{httpss://opensource.org/licenses/MIT}}), see LICENSE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_408.RULE b/src/licensedcode/data/rules/mit_408.RULE index c69b504942..5df1033d08 100644 --- a/src/licensedcode/data/rules/mit_408.RULE +++ b/src/licensedcode/data/rules/mit_408.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -This library is distributed under the [MIT License](httpss://opensource.org/licenses/MIT), see LICENSE.txt for more information. \ No newline at end of file +This library is {{distributed under the [MIT License}}]({{httpss://opensource.org/licenses/MIT}}), see LICENSE.txt for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_409.RULE b/src/licensedcode/data/rules/mit_409.RULE index b92a856d73..e9c09afcd3 100644 --- a/src/licensedcode/data/rules/mit_409.RULE +++ b/src/licensedcode/data/rules/mit_409.RULE @@ -8,4 +8,4 @@ referenced_filenames: ## License -This library is distributed under the [MIT License](httpss://opensource.org/licenses/MIT), see LICENSE for more information. \ No newline at end of file +This library is {{distributed under the [MIT License}}]({{httpss://opensource.org/licenses/MIT}}), see LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_410.RULE b/src/licensedcode/data/rules/mit_410.RULE index 80e32d487f..d81f31097b 100644 --- a/src/licensedcode/data/rules/mit_410.RULE +++ b/src/licensedcode/data/rules/mit_410.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -This library is distributed under the [MIT License](httpss://opensource.org/licenses/MIT), see LICENSE for more information. \ No newline at end of file +This library is {{distributed under the [MIT License}}]({{httpss://opensource.org/licenses/MIT}}), see LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_411.RULE b/src/licensedcode/data/rules/mit_411.RULE index 2bf2fe4ef0..22e77c70c0 100644 --- a/src/licensedcode/data/rules/mit_411.RULE +++ b/src/licensedcode/data/rules/mit_411.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -free under MIT license \ No newline at end of file +free {{under MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_412.RULE b/src/licensedcode/data/rules/mit_412.RULE index a6a88125f3..622432a219 100644 --- a/src/licensedcode/data/rules/mit_412.RULE +++ b/src/licensedcode/data/rules/mit_412.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -Use of this source code is governed by the MIT license that can be found +Use of this source code is governed by {{the MIT license}} that can be found in the LICENSE file \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_413.RULE b/src/licensedcode/data/rules/mit_413.RULE index 24c10953f5..dfb6de53af 100644 --- a/src/licensedcode/data/rules/mit_413.RULE +++ b/src/licensedcode/data/rules/mit_413.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Use of this source code is governed by the MIT license \ No newline at end of file +Use of this source code is governed by {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_417.RULE b/src/licensedcode/data/rules/mit_417.RULE index e36e190168..9db4d4a57e 100644 --- a/src/licensedcode/data/rules/mit_417.RULE +++ b/src/licensedcode/data/rules/mit_417.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -released under the MIT license +released {{under the MIT license}} and therefore the MIT notice is retained in this file for that code only. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_418.RULE b/src/licensedcode/data/rules/mit_418.RULE index 6fba688011..339c9870ab 100644 --- a/src/licensedcode/data/rules/mit_418.RULE +++ b/src/licensedcode/data/rules/mit_418.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed - * under the MIT/X11 License. \ No newline at end of file +{{licensed + * under the MIT}}/X11 License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_419.RULE b/src/licensedcode/data/rules/mit_419.RULE index 0a222e02de..a75c5930a4 100644 --- a/src/licensedcode/data/rules/mit_419.RULE +++ b/src/licensedcode/data/rules/mit_419.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -License Agreement (MIT License) \ No newline at end of file +License Agreement ({{MIT License}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_420.RULE b/src/licensedcode/data/rules/mit_420.RULE index 0d4bca25e0..976464ef84 100644 --- a/src/licensedcode/data/rules/mit_420.RULE +++ b/src/licensedcode/data/rules/mit_420.RULE @@ -5,4 +5,4 @@ relevance: 100 --- # Some portions of this file are derived from material in the -# project licensed under the terms of the MIT license, provided below. \ No newline at end of file +# project licensed under the terms of {{the MIT license}}, provided below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_421.RULE b/src/licensedcode/data/rules/mit_421.RULE index d0594e426d..d744879d0b 100644 --- a/src/licensedcode/data/rules/mit_421.RULE +++ b/src/licensedcode/data/rules/mit_421.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the MIT license \ No newline at end of file +licensed under the terms of {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_422.RULE b/src/licensedcode/data/rules/mit_422.RULE index 97609237d1..12ac1ce4ed 100644 --- a/src/licensedcode/data/rules/mit_422.RULE +++ b/src/licensedcode/data/rules/mit_422.RULE @@ -5,4 +5,4 @@ relevance: 100 --- # Some portions of this file are derived from material in the diff -# project licensed under the terms of the MIT license, provided below. \ No newline at end of file +# project licensed under the terms of {{the MIT license}}, provided below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_423.RULE b/src/licensedcode/data/rules/mit_423.RULE index 7743499c4e..c942786fd6 100644 --- a/src/licensedcode/data/rules/mit_423.RULE +++ b/src/licensedcode/data/rules/mit_423.RULE @@ -1,7 +1,6 @@ --- license_expression: mit is_license_text: yes -relevance: 100 --- # License:: MIT diff --git a/src/licensedcode/data/rules/mit_425.RULE b/src/licensedcode/data/rules/mit_425.RULE index 4baae5299f..2d1955f6ea 100644 --- a/src/licensedcode/data/rules/mit_425.RULE +++ b/src/licensedcode/data/rules/mit_425.RULE @@ -5,4 +5,4 @@ relevance: 100 --- Some portions are verbatim copies of software - licensed under the MIT license. That license is included below: \ No newline at end of file + {{licensed under the MIT}} license. That license is included below: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_426.RULE b/src/licensedcode/data/rules/mit_426.RULE index ede5984e2b..e0f43740aa 100644 --- a/src/licensedcode/data/rules/mit_426.RULE +++ b/src/licensedcode/data/rules/mit_426.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the MIT license, which is copied below \ No newline at end of file +{{distributed under the MIT license}}, which is copied below \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_427.RULE b/src/licensedcode/data/rules/mit_427.RULE index d9f8ee2d7d..28afbeaaee 100644 --- a/src/licensedcode/data/rules/mit_427.RULE +++ b/src/licensedcode/data/rules/mit_427.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -available under the MIT license \ No newline at end of file +available {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_428.RULE b/src/licensedcode/data/rules/mit_428.RULE index 2254ca1def..3aa28499b5 100644 --- a/src/licensedcode/data/rules/mit_428.RULE +++ b/src/licensedcode/data/rules/mit_428.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -The MIT License (MIT) - http://www.opensource.org/licenses/mit-license.php \ No newline at end of file +{{The MIT License}} (MIT) - http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_429.RULE b/src/licensedcode/data/rules/mit_429.RULE index 58a98a51ad..cf88c22459 100644 --- a/src/licensedcode/data/rules/mit_429.RULE +++ b/src/licensedcode/data/rules/mit_429.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.opensource.org/licenses/mit-license.php --- -The MIT License (MIT) - https://www.opensource.org/licenses/mit-license.php \ No newline at end of file +{{The MIT License}} (MIT) - https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_430.RULE b/src/licensedcode/data/rules/mit_430.RULE index 0d985dc2fa..f8d1d05332 100644 --- a/src/licensedcode/data/rules/mit_430.RULE +++ b/src/licensedcode/data/rules/mit_430.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -MIT License +{{MIT License}} -The MIT License (MIT) \ No newline at end of file +{{The MIT License}} (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_431.RULE b/src/licensedcode/data/rules/mit_431.RULE index 584e5a0ef8..965830222b 100644 --- a/src/licensedcode/data/rules/mit_431.RULE +++ b/src/licensedcode/data/rules/mit_431.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opensource.org/licenses/mit-license.html --- -files are licensed under the MIT License: +files are {{licensed under the MIT}} License: http://opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_432.RULE b/src/licensedcode/data/rules/mit_432.RULE index d6e51e3d07..20204356bc 100644 --- a/src/licensedcode/data/rules/mit_432.RULE +++ b/src/licensedcode/data/rules/mit_432.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/mit-license.html --- -files are licensed under the MIT License: +files are {{licensed under the MIT}} License: https://opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_433.RULE b/src/licensedcode/data/rules/mit_433.RULE index 4d7d75d21b..1562502f81 100644 --- a/src/licensedcode/data/rules/mit_433.RULE +++ b/src/licensedcode/data/rules/mit_433.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opensource.org/licenses/mit-license.html --- -Font Awesome CSS, LESS, and Sass files are licensed under the MIT License: +Font Awesome CSS, LESS, and Sass files are {{licensed under the MIT}} License: http://opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_434.RULE b/src/licensedcode/data/rules/mit_434.RULE index 72d6e01bb9..27dc2df47d 100644 --- a/src/licensedcode/data/rules/mit_434.RULE +++ b/src/licensedcode/data/rules/mit_434.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -The MIT License (MIT): http://opensource.org/licenses/MIT \ No newline at end of file +{{The MIT License}} (MIT): http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_435.RULE b/src/licensedcode/data/rules/mit_435.RULE index defd851397..0da5d37d06 100644 --- a/src/licensedcode/data/rules/mit_435.RULE +++ b/src/licensedcode/data/rules/mit_435.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -The MIT License (MIT): https://opensource.org/licenses/MIT \ No newline at end of file +{{The MIT License}} (MIT): https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_436.RULE b/src/licensedcode/data/rules/mit_436.RULE index 0eb91ebb0b..89270dcfbf 100644 --- a/src/licensedcode/data/rules/mit_436.RULE +++ b/src/licensedcode/data/rules/mit_436.RULE @@ -6,6 +6,6 @@ referenced_filenames: - COPYING --- -## License +## {{License -MIT - see the **COPYING** file. \ No newline at end of file +MIT}} - see the **COPYING** file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_44.RULE b/src/licensedcode/data/rules/mit_44.RULE index 01c5f0dc51..5904be140d 100644 --- a/src/licensedcode/data/rules/mit_44.RULE +++ b/src/licensedcode/data/rules/mit_44.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- * is free software; you can redistribute it and/or modify - * it under the terms of the MIT license. See LICENSE for details. + * it under the terms of {{the MIT license}}. See LICENSE for details. * \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_45.RULE b/src/licensedcode/data/rules/mit_45.RULE index b9c99c071a..d987205b99 100644 --- a/src/licensedcode/data/rules/mit_45.RULE +++ b/src/licensedcode/data/rules/mit_45.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/mit-license.php --- -http://opensource.org/licenses/mit-license.php MIT License \ No newline at end of file +http://opensource.org/licenses/mit-license.php {{MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_46.RULE b/src/licensedcode/data/rules/mit_46.RULE index 666fa9d32e..09f340d086 100644 --- a/src/licensedcode/data/rules/mit_46.RULE +++ b/src/licensedcode/data/rules/mit_46.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/MIT --- -Licensed under the MIT license: +{{Licensed under the MIT}} license: http://www.opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_464.RULE b/src/licensedcode/data/rules/mit_464.RULE index 068e0f639a..1a922869df 100644 --- a/src/licensedcode/data/rules/mit_464.RULE +++ b/src/licensedcode/data/rules/mit_464.RULE @@ -9,4 +9,4 @@ referenced_filenames: License -This project is licensed under the MIT License - see the LICENSE file for details \ No newline at end of file +This project is {{licensed under the MIT}} License - see the LICENSE file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_465.RULE b/src/licensedcode/data/rules/mit_465.RULE index 044bb3aaa8..04e0f07457 100644 --- a/src/licensedcode/data/rules/mit_465.RULE +++ b/src/licensedcode/data/rules/mit_465.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This project is licensed under the MIT License \ No newline at end of file +This project is {{licensed under the MIT}} License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_470.RULE b/src/licensedcode/data/rules/mit_470.RULE index bf2c600b17..ea0955a0fe 100644 --- a/src/licensedcode/data/rules/mit_470.RULE +++ b/src/licensedcode/data/rules/mit_470.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -"license": { - "name": "MIT", +"{{license": { + "name": "MIT}}", "url": "https://opensource.org/licenses/MIT" \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_471.RULE b/src/licensedcode/data/rules/mit_471.RULE index 6441bcc78e..c6360b83af 100644 --- a/src/licensedcode/data/rules/mit_471.RULE +++ b/src/licensedcode/data/rules/mit_471.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE.md --- -License +{{License -MIT/X11, see LICENSE.md for details. \ No newline at end of file +MIT/X11}}, see LICENSE.md for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_472.RULE b/src/licensedcode/data/rules/mit_472.RULE index 350701b2c6..d492defb0a 100644 --- a/src/licensedcode/data/rules/mit_472.RULE +++ b/src/licensedcode/data/rules/mit_472.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/mit-license --- -MIT License http://opensource.org/licenses/mit-license \ No newline at end of file +{{MIT License}} http://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_473.RULE b/src/licensedcode/data/rules/mit_473.RULE index c56a9ddbd7..a0ed86b203 100644 --- a/src/licensedcode/data/rules/mit_473.RULE +++ b/src/licensedcode/data/rules/mit_473.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license --- -MIT License http://www.opensource.org/licenses/mit-license \ No newline at end of file +{{MIT License}} http://www.opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_474.RULE b/src/licensedcode/data/rules/mit_474.RULE index 184b7a213c..a460c7c1b6 100644 --- a/src/licensedcode/data/rules/mit_474.RULE +++ b/src/licensedcode/data/rules/mit_474.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/mit-license --- -MIT License https://opensource.org/licenses/mit-license \ No newline at end of file +{{MIT License}} https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_475.RULE b/src/licensedcode/data/rules/mit_475.RULE index 86f2301cc8..ba0d24b702 100644 --- a/src/licensedcode/data/rules/mit_475.RULE +++ b/src/licensedcode/data/rules/mit_475.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.opensource.org/licenses/mit-license --- -MIT License https://www.opensource.org/licenses/mit-license \ No newline at end of file +{{MIT License}} https://www.opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_476.RULE b/src/licensedcode/data/rules/mit_476.RULE index a8c66909f0..a7775be18e 100644 --- a/src/licensedcode/data/rules/mit_476.RULE +++ b/src/licensedcode/data/rules/mit_476.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Available for use under the MIT License \ No newline at end of file +Available for use {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_477.RULE b/src/licensedcode/data/rules/mit_477.RULE index 3b35e64f86..4ccdb002e6 100644 --- a/src/licensedcode/data/rules/mit_477.RULE +++ b/src/licensedcode/data/rules/mit_477.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://mit-license.org/ --- -* This code is licensed under the MIT +* This code is {{licensed under the MIT}} * For the full license see: http://mit-license.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_478.RULE b/src/licensedcode/data/rules/mit_478.RULE index 1f7d44404a..e09304cfb8 100644 --- a/src/licensedcode/data/rules/mit_478.RULE +++ b/src/licensedcode/data/rules/mit_478.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://mit-license.org/ --- -* This code is licensed under the MIT +* This code is {{licensed under the MIT}} * For the full license see: https://mit-license.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_481.RULE b/src/licensedcode/data/rules/mit_481.RULE index 30f1b5ca9b..f51503e157 100644 --- a/src/licensedcode/data/rules/mit_481.RULE +++ b/src/licensedcode/data/rules/mit_481.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License - Free software: MIT license \ No newline at end of file + Free software: {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_485.RULE b/src/licensedcode/data/rules/mit_485.RULE index 61b78ec8bf..6f5bfada3a 100644 --- a/src/licensedcode/data/rules/mit_485.RULE +++ b/src/licensedcode/data/rules/mit_485.RULE @@ -8,5 +8,5 @@ ignorable_urls: - https://github.com/max-elia/licensr --- -# This file is part of the project reuse-checker which is released under the MIT license. +# This file is part of the project reuse-checker which is released {{under the MIT license}}. # See file LICENSE or go to https://github.com/max-elia/licensr for full license details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_486.RULE b/src/licensedcode/data/rules/mit_486.RULE index 07198eb5ae..aa8b691f61 100644 --- a/src/licensedcode/data/rules/mit_486.RULE +++ b/src/licensedcode/data/rules/mit_486.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE.txt --- -The software in this package is published under the terms of the MIT -license, a copy of which has been included with this distribution in the +The software in this package is published under the terms of {{the MIT +license}}, a copy of which has been included with this distribution in the LICENSE.txt file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_487.RULE b/src/licensedcode/data/rules/mit_487.RULE index 9962335f60..c7a16bbf69 100644 --- a/src/licensedcode/data/rules/mit_487.RULE +++ b/src/licensedcode/data/rules/mit_487.RULE @@ -9,4 +9,4 @@ referenced_filenames: License -This library is licensed under the MIT license. For further information see LICENSE file. \ No newline at end of file +This library is {{licensed under the MIT}} license. For further information see LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_488.RULE b/src/licensedcode/data/rules/mit_488.RULE index 1b81b624f0..d5b1b8c971 100644 --- a/src/licensedcode/data/rules/mit_488.RULE +++ b/src/licensedcode/data/rules/mit_488.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This library is licensed under the MIT license. For further information see LICENSE file. \ No newline at end of file +This library is {{licensed under the MIT}} license. For further information see LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_489.RULE b/src/licensedcode/data/rules/mit_489.RULE index 4624b22259..29e9a466d9 100644 --- a/src/licensedcode/data/rules/mit_489.RULE +++ b/src/licensedcode/data/rules/mit_489.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- ### License -The MIT License (MIT). Please see [License File](LICENSE.md) for more information. \ No newline at end of file +{{The MIT License}} (MIT). Please see [License File](LICENSE.md) for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_49.RULE b/src/licensedcode/data/rules/mit_49.RULE index bf7bc511dc..3d2ca780a4 100644 --- a/src/licensedcode/data/rules/mit_49.RULE +++ b/src/licensedcode/data/rules/mit_49.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -Licensed under the MIT License (LICENSE.txt). \ No newline at end of file +{{Licensed under the MIT}} License (LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_490.RULE b/src/licensedcode/data/rules/mit_490.RULE index 977c2fc893..d39669cc0d 100644 --- a/src/licensedcode/data/rules/mit_490.RULE +++ b/src/licensedcode/data/rules/mit_490.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.md --- -The MIT License (MIT). Please see [License File](LICENSE.md) for more information. \ No newline at end of file +{{The MIT License}} (MIT). Please see [License File](LICENSE.md) for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_491.RULE b/src/licensedcode/data/rules/mit_491.RULE index 34d17b82ad..620920388f 100644 --- a/src/licensedcode/data/rules/mit_491.RULE +++ b/src/licensedcode/data/rules/mit_491.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -The package, including all examples, code snippets and attached documentation is covered by the MIT license. \ No newline at end of file +The package, including all examples, code snippets and attached documentation is covered by {{the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_492.RULE b/src/licensedcode/data/rules/mit_492.RULE index 3819d9ce36..93e732c4d3 100644 --- a/src/licensedcode/data/rules/mit_492.RULE +++ b/src/licensedcode/data/rules/mit_492.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The testkraut package, including all examples, code snippets and attached documentation is covered by the MIT license. \ No newline at end of file +The testkraut package, including all examples, code snippets and attached documentation is covered by {{the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_493.RULE b/src/licensedcode/data/rules/mit_493.RULE index 0575d740aa..8a1795ade6 100644 --- a/src/licensedcode/data/rules/mit_493.RULE +++ b/src/licensedcode/data/rules/mit_493.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The package, including all examples, code snippets and attached documentation is covered by the MIT license. \ No newline at end of file +The package, including all examples, code snippets and attached documentation is covered by {{the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_494.RULE b/src/licensedcode/data/rules/mit_494.RULE index 40ac835177..da62ebe49a 100644 --- a/src/licensedcode/data/rules/mit_494.RULE +++ b/src/licensedcode/data/rules/mit_494.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License -This project is licensed under the terms of the MIT license. For more details, see the LICENSE file. \ No newline at end of file +This project is licensed under the terms of {{the MIT license}}. For more details, see the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_495.RULE b/src/licensedcode/data/rules/mit_495.RULE index 45a3c4691c..2a65b2e9c0 100644 --- a/src/licensedcode/data/rules/mit_495.RULE +++ b/src/licensedcode/data/rules/mit_495.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -offered under MIT license. \ No newline at end of file +offered {{under MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_496.RULE b/src/licensedcode/data/rules/mit_496.RULE index 56c1b97a6e..07756c0395 100644 --- a/src/licensedcode/data/rules/mit_496.RULE +++ b/src/licensedcode/data/rules/mit_496.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://jquery.org/license --- -* Released under the MIT license +* Released {{under the MIT license}} * https://jquery.org/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_497.RULE b/src/licensedcode/data/rules/mit_497.RULE index 0ee976f3bb..efb33bfd9e 100644 --- a/src/licensedcode/data/rules/mit_497.RULE +++ b/src/licensedcode/data/rules/mit_497.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -license Licensed under MIT license \ No newline at end of file +license {{Licensed under MIT}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_5.RULE b/src/licensedcode/data/rules/mit_5.RULE index 8b7bdaad43..c9f491941a 100644 --- a/src/licensedcode/data/rules/mit_5.RULE +++ b/src/licensedcode/data/rules/mit_5.RULE @@ -5,4 +5,4 @@ relevance: 99 minimum_coverage: 100 --- -libraries which are made available under an MIT-style license \ No newline at end of file +libraries which are made available under an {{MIT-style license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_50.RULE b/src/licensedcode/data/rules/mit_50.RULE index 3251bd4af3..175d1ed248 100644 --- a/src/licensedcode/data/rules/mit_50.RULE +++ b/src/licensedcode/data/rules/mit_50.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -licence MIT License - http://www.opensource.org/licenses/mit-license.php \ No newline at end of file +licence {{MIT License}} - http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_500.RULE b/src/licensedcode/data/rules/mit_500.RULE index 864743d8e4..02ab47f17b 100644 --- a/src/licensedcode/data/rules/mit_500.RULE +++ b/src/licensedcode/data/rules/mit_500.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -open source software released under an MIT license \ No newline at end of file +open source software released under an {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_502.RULE b/src/licensedcode/data/rules/mit_502.RULE index 860ced89c6..ae1d110097 100644 --- a/src/licensedcode/data/rules/mit_502.RULE +++ b/src/licensedcode/data/rules/mit_502.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released under an MIT license \ No newline at end of file +released under an {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_505.RULE b/src/licensedcode/data/rules/mit_505.RULE index 49fb74ec43..662c6dfb4d 100644 --- a/src/licensedcode/data/rules/mit_505.RULE +++ b/src/licensedcode/data/rules/mit_505.RULE @@ -6,4 +6,4 @@ relevance: 100 License - is licensed under a liberal, and commercial friendly, MIT license. The goal to the license is to minimize friction in adoption, use, and contribution. \ No newline at end of file + is licensed under a liberal, and commercial friendly, {{MIT license}}. The goal to the license is to minimize friction in adoption, use, and contribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_506.RULE b/src/licensedcode/data/rules/mit_506.RULE index e49e7b6978..56a27c3025 100644 --- a/src/licensedcode/data/rules/mit_506.RULE +++ b/src/licensedcode/data/rules/mit_506.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under a liberal, and commercial friendly, MIT license. The goal to the license is to minimize friction in adoption, use, and contribution. \ No newline at end of file +licensed under a liberal, and commercial friendly, {{MIT license}}. The goal to the license is to minimize friction in adoption, use, and contribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_507.RULE b/src/licensedcode/data/rules/mit_507.RULE index 58c0cf3cef..b3da441a11 100644 --- a/src/licensedcode/data/rules/mit_507.RULE +++ b/src/licensedcode/data/rules/mit_507.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -This project is licensed under MIT. \ No newline at end of file +This project is {{licensed under MIT}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_508.RULE b/src/licensedcode/data/rules/mit_508.RULE index 93bdcd4db2..2f3bad7fd3 100644 --- a/src/licensedcode/data/rules/mit_508.RULE +++ b/src/licensedcode/data/rules/mit_508.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under MIT. \ No newline at end of file +This project is {{licensed under MIT}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_51.RULE b/src/licensedcode/data/rules/mit_51.RULE index 856f9f5c8c..6c5f88d706 100644 --- a/src/licensedcode/data/rules/mit_51.RULE +++ b/src/licensedcode/data/rules/mit_51.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -License: MIT License - http://www.opensource.org/licenses/mit-license.php \ No newline at end of file +License: {{MIT License}} - http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_513.RULE b/src/licensedcode/data/rules/mit_513.RULE index 19dc77e970..e4bf6298eb 100644 --- a/src/licensedcode/data/rules/mit_513.RULE +++ b/src/licensedcode/data/rules/mit_513.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -and an MIT license: \ No newline at end of file +and an {{MIT license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_515.RULE b/src/licensedcode/data/rules/mit_515.RULE index 6408691913..078bea4802 100644 --- a/src/licensedcode/data/rules/mit_515.RULE +++ b/src/licensedcode/data/rules/mit_515.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -and shared under the MIT license: \ No newline at end of file +and shared {{under the MIT license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_516.RULE b/src/licensedcode/data/rules/mit_516.RULE index 166c3e0c76..a0e42060f2 100644 --- a/src/licensedcode/data/rules/mit_516.RULE +++ b/src/licensedcode/data/rules/mit_516.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -shared under the MIT license: \ No newline at end of file +shared {{under the MIT license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_517.RULE b/src/licensedcode/data/rules/mit_517.RULE index 55b8eb5c7b..a8d9820419 100644 --- a/src/licensedcode/data/rules/mit_517.RULE +++ b/src/licensedcode/data/rules/mit_517.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It is licensed under the MIT license: \ No newline at end of file +It is {{licensed under the MIT}} license: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_519.RULE b/src/licensedcode/data/rules/mit_519.RULE index 1bedbb3f46..e5954ebf1c 100644 --- a/src/licensedcode/data/rules/mit_519.RULE +++ b/src/licensedcode/data/rules/mit_519.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under an MIT style license \ No newline at end of file +licensed under an {{MIT style license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_52.RULE b/src/licensedcode/data/rules/mit_52.RULE index 61cc3de71a..1d6cec03ad 100644 --- a/src/licensedcode/data/rules/mit_52.RULE +++ b/src/licensedcode/data/rules/mit_52.RULE @@ -1,7 +1,8 @@ --- license_expression: mit is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -distributed under the MIT license \ No newline at end of file +Distributed under the MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_520.RULE b/src/licensedcode/data/rules/mit_520.RULE index f1f1cbcfcf..83cbee757a 100644 --- a/src/licensedcode/data/rules/mit_520.RULE +++ b/src/licensedcode/data/rules/mit_520.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License -Provided under the MIT License (MIT). See LICENSE for details. \ No newline at end of file +Provided {{under the MIT License}} (MIT). See LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_521.RULE b/src/licensedcode/data/rules/mit_521.RULE index 20724e6b50..133a60cc15 100644 --- a/src/licensedcode/data/rules/mit_521.RULE +++ b/src/licensedcode/data/rules/mit_521.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Provided under the MIT License (MIT). See LICENSE for details. \ No newline at end of file +Provided {{under the MIT License}} (MIT). See LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_522.RULE b/src/licensedcode/data/rules/mit_522.RULE index 06dbc5d512..50fb692948 100644 --- a/src/licensedcode/data/rules/mit_522.RULE +++ b/src/licensedcode/data/rules/mit_522.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -Provided under the MIT License (MIT). \ No newline at end of file +Provided {{under the MIT License}} (MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_523.RULE b/src/licensedcode/data/rules/mit_523.RULE index bdf0391662..3d321061dd 100644 --- a/src/licensedcode/data/rules/mit_523.RULE +++ b/src/licensedcode/data/rules/mit_523.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Provided under the MIT License (MIT). \ No newline at end of file +Provided {{under the MIT License}} (MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_526.RULE b/src/licensedcode/data/rules/mit_526.RULE index dcf524998b..035e915cc9 100644 --- a/src/licensedcode/data/rules/mit_526.RULE +++ b/src/licensedcode/data/rules/mit_526.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -Licence: This software is provided under the MIT Licence (http://opensource.org/licenses/MIT): The MIT License (MIT) \ No newline at end of file +Licence: This software is provided under the MIT Licence (http://opensource.org/licenses/MIT): {{The MIT License}} (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_53.RULE b/src/licensedcode/data/rules/mit_53.RULE index cefd08fb57..48b2c3fe87 100644 --- a/src/licensedcode/data/rules/mit_53.RULE +++ b/src/licensedcode/data/rules/mit_53.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released under MIT License \ No newline at end of file +Released {{under MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_54.RULE b/src/licensedcode/data/rules/mit_54.RULE index 46e558f4c9..7a8a069495 100644 --- a/src/licensedcode/data/rules/mit_54.RULE +++ b/src/licensedcode/data/rules/mit_54.RULE @@ -6,4 +6,4 @@ relevance: 100 licenses license -The MIT License \ No newline at end of file +{{The MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_545.RULE b/src/licensedcode/data/rules/mit_545.RULE index 8f62739eb1..59822a7b6d 100644 --- a/src/licensedcode/data/rules/mit_545.RULE +++ b/src/licensedcode/data/rules/mit_545.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -provided under the MIT License (what the Free Software Foundation calls the X11 License). \ No newline at end of file +provided {{under the MIT License}} (what the Free Software Foundation calls the X11 License). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_546.RULE b/src/licensedcode/data/rules/mit_546.RULE index 7dfcfe698f..90aa05f49c 100644 --- a/src/licensedcode/data/rules/mit_546.RULE +++ b/src/licensedcode/data/rules/mit_546.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -provided under the MIT license, as specified below \ No newline at end of file +provided {{under the MIT license}}, as specified below \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_547.RULE b/src/licensedcode/data/rules/mit_547.RULE index 4b96532a7f..1ce4917ff8 100644 --- a/src/licensedcode/data/rules/mit_547.RULE +++ b/src/licensedcode/data/rules/mit_547.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Portal and all its original contents are provided under the MIT License. \ No newline at end of file +Portal and all its original contents are provided {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_548.RULE b/src/licensedcode/data/rules/mit_548.RULE index 2ee2de372f..4edcde3441 100644 --- a/src/licensedcode/data/rules/mit_548.RULE +++ b/src/licensedcode/data/rules/mit_548.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -open source libraries provided under the MIT license. \ No newline at end of file +open source libraries provided {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_549.RULE b/src/licensedcode/data/rules/mit_549.RULE index 656b7ac788..4dad193774 100644 --- a/src/licensedcode/data/rules/mit_549.RULE +++ b/src/licensedcode/data/rules/mit_549.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -provided under the MIT license, free for everyone to use. \ No newline at end of file +provided {{under the MIT license}}, free for everyone to use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_55.RULE b/src/licensedcode/data/rules/mit_55.RULE index 01dd69cc1a..ae4b5dadea 100644 --- a/src/licensedcode/data/rules/mit_55.RULE +++ b/src/licensedcode/data/rules/mit_55.RULE @@ -9,4 +9,4 @@ ignorable_urls: licenses license -The MIT License http://jsoup.com/license \ No newline at end of file +{{The MIT License}} http://jsoup.com/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_550.RULE b/src/licensedcode/data/rules/mit_550.RULE index 795e2b74b0..ccfdaa40e5 100644 --- a/src/licensedcode/data/rules/mit_550.RULE +++ b/src/licensedcode/data/rules/mit_550.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All software is provided under the MIT license. \ No newline at end of file +All software is provided {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_551.RULE b/src/licensedcode/data/rules/mit_551.RULE index a879729dc5..323b7ce732 100644 --- a/src/licensedcode/data/rules/mit_551.RULE +++ b/src/licensedcode/data/rules/mit_551.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -provided under the MIT license. See LICENSE. \ No newline at end of file +provided {{under the MIT license}}. See LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_552.RULE b/src/licensedcode/data/rules/mit_552.RULE index 9a431d003b..e36978b461 100644 --- a/src/licensedcode/data/rules/mit_552.RULE +++ b/src/licensedcode/data/rules/mit_552.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The dataset has been provided under the MIT License \ No newline at end of file +The dataset has been provided {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_553.RULE b/src/licensedcode/data/rules/mit_553.RULE index 4537d9addc..e36a2468f2 100644 --- a/src/licensedcode/data/rules/mit_553.RULE +++ b/src/licensedcode/data/rules/mit_553.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The library is provided under the MIT license \ No newline at end of file +The library is provided {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_554.RULE b/src/licensedcode/data/rules/mit_554.RULE index 7b3d137458..c94cfc5de2 100644 --- a/src/licensedcode/data/rules/mit_554.RULE +++ b/src/licensedcode/data/rules/mit_554.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -open source software provided under the MIT license \ No newline at end of file +open source software provided {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_555.RULE b/src/licensedcode/data/rules/mit_555.RULE index 634bc65c55..80ffc93529 100644 --- a/src/licensedcode/data/rules/mit_555.RULE +++ b/src/licensedcode/data/rules/mit_555.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This component is provided under the MIT License \ No newline at end of file +This component is provided {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_556.RULE b/src/licensedcode/data/rules/mit_556.RULE index 47ee21a7b0..ed57df03e0 100644 --- a/src/licensedcode/data/rules/mit_556.RULE +++ b/src/licensedcode/data/rules/mit_556.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -provided under the MIT license, which is available to read in the [LICENSE][] file \ No newline at end of file +provided {{under the MIT license}}, which is available to read in the [LICENSE][] file \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_557.RULE b/src/licensedcode/data/rules/mit_557.RULE index ead5010116..d2dc281098 100644 --- a/src/licensedcode/data/rules/mit_557.RULE +++ b/src/licensedcode/data/rules/mit_557.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The code is provided under the MIT license. \ No newline at end of file +The code is provided {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_558.RULE b/src/licensedcode/data/rules/mit_558.RULE index 35707c80bc..8f216cf504 100644 --- a/src/licensedcode/data/rules/mit_558.RULE +++ b/src/licensedcode/data/rules/mit_558.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This Project is provided under the MIT license, \ No newline at end of file +This Project is provided {{under the MIT license}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_559.RULE b/src/licensedcode/data/rules/mit_559.RULE index 1e64f251c5..1c11d5172b 100644 --- a/src/licensedcode/data/rules/mit_559.RULE +++ b/src/licensedcode/data/rules/mit_559.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The software is provided under the MIT License. \ No newline at end of file +The software is provided {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_56.RULE b/src/licensedcode/data/rules/mit_56.RULE index 6be8c6e458..fad6ab7459 100644 --- a/src/licensedcode/data/rules/mit_56.RULE +++ b/src/licensedcode/data/rules/mit_56.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://jquery.org/license --- -* Released under the MIT license +* Released {{under the MIT license}} * http://jquery.org/license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_560.RULE b/src/licensedcode/data/rules/mit_560.RULE index 5c0c06958a..ebc787d645 100644 --- a/src/licensedcode/data/rules/mit_560.RULE +++ b/src/licensedcode/data/rules/mit_560.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -These files are provided under the MIT License. \ No newline at end of file +These files are provided {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_561.RULE b/src/licensedcode/data/rules/mit_561.RULE index 2933e5bd3a..966e3dae00 100644 --- a/src/licensedcode/data/rules/mit_561.RULE +++ b/src/licensedcode/data/rules/mit_561.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -all newly contributed code is provided under the MIT License. \ No newline at end of file +all newly contributed code is provided {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_562.RULE b/src/licensedcode/data/rules/mit_562.RULE index ebd2a74d7d..452a218d64 100644 --- a/src/licensedcode/data/rules/mit_562.RULE +++ b/src/licensedcode/data/rules/mit_562.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is provided under the MIT License (MIT). \ No newline at end of file +This code is provided {{under the MIT License}} (MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_563.RULE b/src/licensedcode/data/rules/mit_563.RULE index f22332a99b..214e4aca2c 100644 --- a/src/licensedcode/data/rules/mit_563.RULE +++ b/src/licensedcode/data/rules/mit_563.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It's an open source project provided under the MIT license \ No newline at end of file +It's an open source project provided {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_564.RULE b/src/licensedcode/data/rules/mit_564.RULE index 3f0fb9a08e..e531e308b5 100644 --- a/src/licensedcode/data/rules/mit_564.RULE +++ b/src/licensedcode/data/rules/mit_564.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -source is provided under the MIT License \ No newline at end of file +source is provided {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_566.RULE b/src/licensedcode/data/rules/mit_566.RULE index f1978d8f15..2a352b8943 100644 --- a/src/licensedcode/data/rules/mit_566.RULE +++ b/src/licensedcode/data/rules/mit_566.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- ### License -is an open source project by that is licensed under [MIT](http://opensource.org/licenses/MIT). \ No newline at end of file +is an open source project by that is {{licensed under [MIT}}](http://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_567.RULE b/src/licensedcode/data/rules/mit_567.RULE index 369e2e7ecc..ee7a4e313f 100644 --- a/src/licensedcode/data/rules/mit_567.RULE +++ b/src/licensedcode/data/rules/mit_567.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://raw.githubusercontent.com/ --- -License [MIT License](https://raw.githubusercontent.com/ /master/LICENSE) \ No newline at end of file +License [{{MIT License}}](https://raw.githubusercontent.com/ /master/LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_570.RULE b/src/licensedcode/data/rules/mit_570.RULE index 5c4de8a6d0..74f1beb2c0 100644 --- a/src/licensedcode/data/rules/mit_570.RULE +++ b/src/licensedcode/data/rules/mit_570.RULE @@ -7,4 +7,4 @@ ignorable_urls: - https://raw.githubusercontent.com/master/LICENSE --- -License MIT https://img.shields.io/badge/license-MIT https://raw.githubusercontent.com//master/LICENSE) \ No newline at end of file +{{License MIT}} https://img.shields.io/badge/license-MIT https://raw.githubusercontent.com//master/LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_571.RULE b/src/licensedcode/data/rules/mit_571.RULE index f7020b5eea..0fda365c07 100644 --- a/src/licensedcode/data/rules/mit_571.RULE +++ b/src/licensedcode/data/rules/mit_571.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -provided under the MIT license. See LICENSE file for details. \ No newline at end of file +provided {{under the MIT license}}. See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_572.RULE b/src/licensedcode/data/rules/mit_572.RULE index c0d45d2785..d1073d3791 100644 --- a/src/licensedcode/data/rules/mit_572.RULE +++ b/src/licensedcode/data/rules/mit_572.RULE @@ -9,7 +9,7 @@ ignorable_urls: ## Legal Issues -This software is distributed under the [MIT license](https://raw.github.com/master/LICENSE.txt). +This software is {{distributed under the [MIT license}}](https://raw.github.com/master/LICENSE.txt). In particular, please be aware that diff --git a/src/licensedcode/data/rules/mit_573.RULE b/src/licensedcode/data/rules/mit_573.RULE index 1f24f86e4c..4167ccca56 100644 --- a/src/licensedcode/data/rules/mit_573.RULE +++ b/src/licensedcode/data/rules/mit_573.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Open Source Software Licensed Under the MIT License: \ No newline at end of file +Open Source Software {{Licensed Under the MIT}} License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_574.RULE b/src/licensedcode/data/rules/mit_574.RULE index 696e98187b..03ac1f332d 100644 --- a/src/licensedcode/data/rules/mit_574.RULE +++ b/src/licensedcode/data/rules/mit_574.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -released under the very permissive [MIT license](LICENSE) \ No newline at end of file +released under the very permissive [{{MIT license}}](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_575.RULE b/src/licensedcode/data/rules/mit_575.RULE index 776a830ec5..2cf591f24d 100644 --- a/src/licensedcode/data/rules/mit_575.RULE +++ b/src/licensedcode/data/rules/mit_575.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License - is released under the very permissive [MIT license](LICENSE) \ No newline at end of file + is released under the very permissive [{{MIT license}}](LICENSE) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_578.RULE b/src/licensedcode/data/rules/mit_578.RULE index 6f9d1f69a3..ea17663874 100644 --- a/src/licensedcode/data/rules/mit_578.RULE +++ b/src/licensedcode/data/rules/mit_578.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -software is mostly under the MIT license. \ No newline at end of file +software is mostly {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_579.RULE b/src/licensedcode/data/rules/mit_579.RULE index bc2e061ae3..9dc1dbba21 100644 --- a/src/licensedcode/data/rules/mit_579.RULE +++ b/src/licensedcode/data/rules/mit_579.RULE @@ -8,5 +8,5 @@ ignorable_urls: # License -is licensed under the [MIT license](http://.mit-license.org). +is {{licensed under the [MIT}} license](http://.{{mit-license}}.org). Read more about MIT at [TLDRLegal](https://tldrlegal.com/license/mit-license). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_58.RULE b/src/licensedcode/data/rules/mit_58.RULE index 65ee15289d..b228f5d380 100644 --- a/src/licensedcode/data/rules/mit_58.RULE +++ b/src/licensedcode/data/rules/mit_58.RULE @@ -8,6 +8,6 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -mit MIT License +mit {{MIT License}} http://www.opensource.org/licenses/mit-license.php mpl10 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_580.RULE b/src/licensedcode/data/rules/mit_580.RULE index 68e6d925a2..fef8a87866 100644 --- a/src/licensedcode/data/rules/mit_580.RULE +++ b/src/licensedcode/data/rules/mit_580.RULE @@ -6,4 +6,4 @@ relevance: 100 # License -is licensed under the [MIT license](http://.mit-license.org). \ No newline at end of file +is {{licensed under the [MIT}} license](http://.{{mit-license}}.org). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_581.RULE b/src/licensedcode/data/rules/mit_581.RULE index 56dcf129b8..c3d0b3cbb2 100644 --- a/src/licensedcode/data/rules/mit_581.RULE +++ b/src/licensedcode/data/rules/mit_581.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the [MIT license](http://.mit-license.org). \ No newline at end of file +{{licensed under the [MIT}} license](http://.{{mit-license}}.org). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_582.RULE b/src/licensedcode/data/rules/mit_582.RULE index c2a56d2bdd..ca63178490 100644 --- a/src/licensedcode/data/rules/mit_582.RULE +++ b/src/licensedcode/data/rules/mit_582.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the "MIT Expat" license. \ No newline at end of file +{{licensed under the "MIT}} Expat" license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_583.RULE b/src/licensedcode/data/rules/mit_583.RULE index 91c00bc98f..26f17e094d 100644 --- a/src/licensedcode/data/rules/mit_583.RULE +++ b/src/licensedcode/data/rules/mit_583.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All client-side JavaScript (when served directly or after being compiled, arranged, augmented, or combined), is licensed under the "MIT Expat" license. \ No newline at end of file +All client-side JavaScript (when served directly or after being compiled, arranged, augmented, or combined), is {{licensed under the "MIT}} Expat" license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_587.RULE b/src/licensedcode/data/rules/mit_587.RULE index e3975aa70f..6f96e043af 100644 --- a/src/licensedcode/data/rules/mit_587.RULE +++ b/src/licensedcode/data/rules/mit_587.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -language is licensed under the MIT License \ No newline at end of file +language is {{licensed under the MIT}} License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_591.RULE b/src/licensedcode/data/rules/mit_591.RULE index cc08fac33b..573c16e14e 100644 --- a/src/licensedcode/data/rules/mit_591.RULE +++ b/src/licensedcode/data/rules/mit_591.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://jquery.org/license --- -is published under the terms of the [MIT license](https://jquery.org/license/). \ No newline at end of file +is published under the terms of {{the [MIT license}}](https://jquery.org/license/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_592.RULE b/src/licensedcode/data/rules/mit_592.RULE index ce4e974441..a0949e00dd 100644 --- a/src/licensedcode/data/rules/mit_592.RULE +++ b/src/licensedcode/data/rules/mit_592.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://jquery.org/license --- -published under the terms of the [MIT license](https://jquery.org/license/). \ No newline at end of file +published under the terms of {{the [MIT license}}](https://jquery.org/license/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_593.RULE b/src/licensedcode/data/rules/mit_593.RULE index 8b08a15933..c6a2206ca2 100644 --- a/src/licensedcode/data/rules/mit_593.RULE +++ b/src/licensedcode/data/rules/mit_593.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -published under the terms of the [MIT license] \ No newline at end of file +published under the terms of {{the [MIT license}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_594.RULE b/src/licensedcode/data/rules/mit_594.RULE index e55477ea78..53dd68f774 100644 --- a/src/licensedcode/data/rules/mit_594.RULE +++ b/src/licensedcode/data/rules/mit_594.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is published under the terms of the [MIT license] \ No newline at end of file +is published under the terms of {{the [MIT license}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_595.RULE b/src/licensedcode/data/rules/mit_595.RULE index e650938f68..461ab9bdef 100644 --- a/src/licensedcode/data/rules/mit_595.RULE +++ b/src/licensedcode/data/rules/mit_595.RULE @@ -7,5 +7,5 @@ ignorable_urls: - https://jquery.org/license --- -published under the terms of the [MIT license](https://jquery.org/license/). -## MIT License \ No newline at end of file +published under the terms of {{the [MIT license}}](https://jquery.org/license/). +## {{MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_596.RULE b/src/licensedcode/data/rules/mit_596.RULE index 10644d5be0..556ba7e0a4 100644 --- a/src/licensedcode/data/rules/mit_596.RULE +++ b/src/licensedcode/data/rules/mit_596.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the MIT License. \ No newline at end of file +This software is {{licensed under the MIT}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_597.RULE b/src/licensedcode/data/rules/mit_597.RULE index ef04bef707..cb52801012 100644 --- a/src/licensedcode/data/rules/mit_597.RULE +++ b/src/licensedcode/data/rules/mit_597.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -A copy of the MIT License is included in this file. \ No newline at end of file +A copy of {{the MIT License}} is included in this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_598.RULE b/src/licensedcode/data/rules/mit_598.RULE index 11a5930247..c18dd64f11 100644 --- a/src/licensedcode/data/rules/mit_598.RULE +++ b/src/licensedcode/data/rules/mit_598.RULE @@ -6,5 +6,5 @@ referenced_filenames: - system/lib/libc/musl/COPYRIGHT --- -it has the MIT license, see +it has {{the MIT license}}, see system/lib/libc/musl/COPYRIGHT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_599.RULE b/src/licensedcode/data/rules/mit_599.RULE index e8abbdeb3d..410d50b092 100644 --- a/src/licensedcode/data/rules/mit_599.RULE +++ b/src/licensedcode/data/rules/mit_599.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -it has the MIT license \ No newline at end of file +it has {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_6.RULE b/src/licensedcode/data/rules/mit_6.RULE index 5f3223e612..e03cc40315 100644 --- a/src/licensedcode/data/rules/mit_6.RULE +++ b/src/licensedcode/data/rules/mit_6.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -patch are covered by a MIT license \ No newline at end of file +patch are covered by a {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_600.RULE b/src/licensedcode/data/rules/mit_600.RULE index b1161d64ee..e80f56f9e4 100644 --- a/src/licensedcode/data/rules/mit_600.RULE +++ b/src/licensedcode/data/rules/mit_600.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -# Code: MIT License (https://opensource.org/licenses/MIT) \ No newline at end of file +# Code: {{MIT License}} (https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_601.RULE b/src/licensedcode/data/rules/mit_601.RULE index 64590a3d6c..a821653093 100644 --- a/src/licensedcode/data/rules/mit_601.RULE +++ b/src/licensedcode/data/rules/mit_601.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -MIT License (https://opensource.org/licenses/MIT) \ No newline at end of file +{{MIT License}} (https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_609.RULE b/src/licensedcode/data/rules/mit_609.RULE index 182a8cc2e9..e31461e4e4 100644 --- a/src/licensedcode/data/rules/mit_609.RULE +++ b/src/licensedcode/data/rules/mit_609.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/pcollections_LICENSE.txt --- -License: MIT ([license/third_party/pcollections_LICENSE.txt][pcollections]) \ No newline at end of file +{{License: MIT}} ([license/third_party/pcollections_LICENSE.txt][pcollections]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_61.RULE b/src/licensedcode/data/rules/mit_61.RULE index dc0207ae76..6447fd2055 100644 --- a/src/licensedcode/data/rules/mit_61.RULE +++ b/src/licensedcode/data/rules/mit_61.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -is under the MIT license. \ No newline at end of file +is {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_611.RULE b/src/licensedcode/data/rules/mit_611.RULE index 3afaf82cda..1466d17063 100644 --- a/src/licensedcode/data/rules/mit_611.RULE +++ b/src/licensedcode/data/rules/mit_611.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/qunit_license.txt --- -License: MIT ([license/third_party/qunit_license.txt][qunit]) \ No newline at end of file +{{License: MIT}} ([license/third_party/qunit_license.txt][qunit]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_613.RULE b/src/licensedcode/data/rules/mit_613.RULE index 3a20594548..69f7209526 100644 --- a/src/licensedcode/data/rules/mit_613.RULE +++ b/src/licensedcode/data/rules/mit_613.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/testdata/lombok_license.txt --- -License: MIT ([license/third_party/testdata/lombok_license.txt][lombok]) \ No newline at end of file +{{License: MIT}} ([license/third_party/testdata/lombok_license.txt][lombok]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_615.RULE b/src/licensedcode/data/rules/mit_615.RULE index c6c878988b..9d3354eed6 100644 --- a/src/licensedcode/data/rules/mit_615.RULE +++ b/src/licensedcode/data/rules/mit_615.RULE @@ -8,5 +8,5 @@ referenced_filenames: - license/third_party/karma-teamcity-reporter_LICENSE.txt --- -License: MIT ([license/third_party/karma_LICENSE.txt](third_party/karma_LICENSE.txt) +{{License: MIT}} ([license/third_party/karma_LICENSE.txt](third_party/karma_LICENSE.txt) and [license/third_party/karma-teamcity-reporter_LICENSE.txt](third_party/karma-teamcity-reporter_LICENSE.txt)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_616.RULE b/src/licensedcode/data/rules/mit_616.RULE index 0b62e7ff6c..3ed29a92dd 100644 --- a/src/licensedcode/data/rules/mit_616.RULE +++ b/src/licensedcode/data/rules/mit_616.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/mocha-teamcity-reporter_LICENSE.txt --- -License: MIT ([license/third_party/mocha-teamcity-reporter_LICENSE.txt](third_party/mocha-teamcity-reporter_LICENSE.txt)) \ No newline at end of file +{{License: MIT}} ([license/third_party/mocha-teamcity-reporter_LICENSE.txt](third_party/mocha-teamcity-reporter_LICENSE.txt)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_617.RULE b/src/licensedcode/data/rules/mit_617.RULE index c9683937ba..c654618e0a 100644 --- a/src/licensedcode/data/rules/mit_617.RULE +++ b/src/licensedcode/data/rules/mit_617.RULE @@ -8,5 +8,5 @@ referenced_filenames: - license/third_party/lodash_LICENSE.txt --- -License: MIT ([license/third_party/teamcity-service-messages_LICENSE.txt](third_party/teamcity-service-messages_LICENSE.txt) +{{License: MIT}} ([license/third_party/teamcity-service-messages_LICENSE.txt](third_party/teamcity-service-messages_LICENSE.txt) and [license/third_party/lodash_LICENSE.txt](third_party/lodash_LICENSE.txt)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_618.RULE b/src/licensedcode/data/rules/mit_618.RULE index 40cb827915..9178fe6676 100644 --- a/src/licensedcode/data/rules/mit_618.RULE +++ b/src/licensedcode/data/rules/mit_618.RULE @@ -8,5 +8,5 @@ referenced_filenames: - license/third_party/teamcity-service-messages_LICENSE.txt --- -License: MIT ([license/third_party/mocha-teamcity-reporter_LICENSE.txt](third_party/mocha-teamcity-reporter_LICENSE.txt) +{{License: MIT}} ([license/third_party/mocha-teamcity-reporter_LICENSE.txt](third_party/mocha-teamcity-reporter_LICENSE.txt) and [license/third_party/teamcity-service-messages_LICENSE.txt](third_party/teamcity-service-messages_LICENSE.txt)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_619.RULE b/src/licensedcode/data/rules/mit_619.RULE index 3fb8b4d7bd..0251e87110 100644 --- a/src/licensedcode/data/rules/mit_619.RULE +++ b/src/licensedcode/data/rules/mit_619.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/source-map-loader_LICENSE.txt --- -License: MIT ([license/third_party/source-map-loader_LICENSE.txt](third_party/source-map-loader_LICENSE.txt)) \ No newline at end of file +{{License: MIT}} ([license/third_party/source-map-loader_LICENSE.txt](third_party/source-map-loader_LICENSE.txt)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_62.RULE b/src/licensedcode/data/rules/mit_62.RULE index 9458410a5c..3c2e869173 100644 --- a/src/licensedcode/data/rules/mit_62.RULE +++ b/src/licensedcode/data/rules/mit_62.RULE @@ -9,4 +9,4 @@ ignorable_urls: The example programs and other software included in this repository are made available under the [OSI](http://opensource.org)-approved -[MIT license](http://opensource.org/licenses/mit-license.html). \ No newline at end of file +[{{MIT license}}](http://opensource.org/licenses/mit-license.html). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_620.RULE b/src/licensedcode/data/rules/mit_620.RULE index 6034634a41..438e27efd8 100644 --- a/src/licensedcode/data/rules/mit_620.RULE +++ b/src/licensedcode/data/rules/mit_620.RULE @@ -7,4 +7,4 @@ referenced_filenames: - license/third_party/jquery_license.txt --- -License: MIT ([license/third_party/jquery_license.txt][jquery]) \ No newline at end of file +{{License: MIT}} ([license/third_party/jquery_license.txt][jquery]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_622.RULE b/src/licensedcode/data/rules/mit_622.RULE index 2fb8a8fdd1..6f0efe74a3 100644 --- a/src/licensedcode/data/rules/mit_622.RULE +++ b/src/licensedcode/data/rules/mit_622.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -is an open source project by that is licensed under [MIT](http://opensource.org/licenses/MIT) \ No newline at end of file +is an open source project by that is {{licensed under [MIT}}](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_623.RULE b/src/licensedcode/data/rules/mit_623.RULE index cc5c525fa7..bc5e8c53bd 100644 --- a/src/licensedcode/data/rules/mit_623.RULE +++ b/src/licensedcode/data/rules/mit_623.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: [MIT][MIT] \ No newline at end of file +{{License: [MIT}}][MIT] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_624.RULE b/src/licensedcode/data/rules/mit_624.RULE index 53d58ac4fe..f630a5aa7a 100644 --- a/src/licensedcode/data/rules/mit_624.RULE +++ b/src/licensedcode/data/rules/mit_624.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -`MIT` - [MIT License](http://opensource.org/licenses/MIT) \ No newline at end of file +`MIT` - [{{MIT License}}](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_626.RULE b/src/licensedcode/data/rules/mit_626.RULE index 94e54dce2a..df71bb68e4 100644 --- a/src/licensedcode/data/rules/mit_626.RULE +++ b/src/licensedcode/data/rules/mit_626.RULE @@ -8,4 +8,4 @@ referenced_filenames: License ============== - is provided under the MIT license. See LICENSE file for details. \ No newline at end of file + is provided {{under the MIT license}}. See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_627.RULE b/src/licensedcode/data/rules/mit_627.RULE index 8428efeafb..0d5a58676d 100644 --- a/src/licensedcode/data/rules/mit_627.RULE +++ b/src/licensedcode/data/rules/mit_627.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -is provided under the MIT license. See LICENSE file for details. \ No newline at end of file +is provided {{under the MIT license}}. See LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_628.RULE b/src/licensedcode/data/rules/mit_628.RULE index 9295ecfd3c..30418a9041 100644 --- a/src/licensedcode/data/rules/mit_628.RULE +++ b/src/licensedcode/data/rules/mit_628.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -provided under the MIT License \ No newline at end of file +provided {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_63.RULE b/src/licensedcode/data/rules/mit_63.RULE index dd3c2e5502..095211e3fa 100644 --- a/src/licensedcode/data/rules/mit_63.RULE +++ b/src/licensedcode/data/rules/mit_63.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -all code by the MIT License \ No newline at end of file +all code by {{the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_630.RULE b/src/licensedcode/data/rules/mit_630.RULE index 943f6a8e05..36c86fc647 100644 --- a/src/licensedcode/data/rules/mit_630.RULE +++ b/src/licensedcode/data/rules/mit_630.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.md --- -released under the [MIT License](LICENSE.md). \ No newline at end of file +released {{under the [MIT License}}](LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_631.RULE b/src/licensedcode/data/rules/mit_631.RULE index b5e3f31c66..cb0b713001 100644 --- a/src/licensedcode/data/rules/mit_631.RULE +++ b/src/licensedcode/data/rules/mit_631.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- license -is released under the [MIT License](LICENSE.md). \ No newline at end of file +is released {{under the [MIT License}}](LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_633.RULE b/src/licensedcode/data/rules/mit_633.RULE index 0cb153ee5b..47c5db60f6 100644 --- a/src/licensedcode/data/rules/mit_633.RULE +++ b/src/licensedcode/data/rules/mit_633.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- ## License -repo is licensed under the [MIT license](LICENSE.TXT). \ No newline at end of file +repo is {{licensed under the [MIT}} license](LICENSE.TXT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_634.RULE b/src/licensedcode/data/rules/mit_634.RULE index a426b211e7..2475d41f5b 100644 --- a/src/licensedcode/data/rules/mit_634.RULE +++ b/src/licensedcode/data/rules/mit_634.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- ## License -repo is licensed under the [MIT license](LICENSE). \ No newline at end of file +repo is {{licensed under the [MIT}} license](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_635.RULE b/src/licensedcode/data/rules/mit_635.RULE index 2893218a69..d30e765c78 100644 --- a/src/licensedcode/data/rules/mit_635.RULE +++ b/src/licensedcode/data/rules/mit_635.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.TXT --- -repo is licensed under the [MIT license](LICENSE.TXT). \ No newline at end of file +repo is {{licensed under the [MIT}} license](LICENSE.TXT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_636.RULE b/src/licensedcode/data/rules/mit_636.RULE index 6c2193b96f..6d22781ee4 100644 --- a/src/licensedcode/data/rules/mit_636.RULE +++ b/src/licensedcode/data/rules/mit_636.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -repo is licensed under the [MIT license](LICENSE). \ No newline at end of file +repo is {{licensed under the [MIT}} license](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_637.RULE b/src/licensedcode/data/rules/mit_637.RULE index 613b1ddfda..1af1268e31 100644 --- a/src/licensedcode/data/rules/mit_637.RULE +++ b/src/licensedcode/data/rules/mit_637.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- ## License - is licensed under the [MIT license](LICENSE.TXT). \ No newline at end of file + is {{licensed under the [MIT}} license](LICENSE.TXT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_638.RULE b/src/licensedcode/data/rules/mit_638.RULE index 06799c00d4..bb56cdddb7 100644 --- a/src/licensedcode/data/rules/mit_638.RULE +++ b/src/licensedcode/data/rules/mit_638.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- ## License - is licensed under the [MIT license](LICENSE). \ No newline at end of file + is {{licensed under the [MIT}} license](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_639.RULE b/src/licensedcode/data/rules/mit_639.RULE index 1c3a39d87b..1e76077f57 100644 --- a/src/licensedcode/data/rules/mit_639.RULE +++ b/src/licensedcode/data/rules/mit_639.RULE @@ -9,4 +9,4 @@ referenced_filenames: License -This project is licensed under the MIT License - see the LICENSE.txt file for details \ No newline at end of file +This project is {{licensed under the MIT}} License - see the LICENSE.txt file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_640.RULE b/src/licensedcode/data/rules/mit_640.RULE index d140781856..1707309b1a 100644 --- a/src/licensedcode/data/rules/mit_640.RULE +++ b/src/licensedcode/data/rules/mit_640.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.TXT --- -This project is licensed under the MIT License - see the LICENSE.txt file for details \ No newline at end of file +This project is {{licensed under the MIT}} License - see the LICENSE.txt file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_641.RULE b/src/licensedcode/data/rules/mit_641.RULE index d923e62579..38677e4a5a 100644 --- a/src/licensedcode/data/rules/mit_641.RULE +++ b/src/licensedcode/data/rules/mit_641.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.TXT --- -licensed under the MIT License - see the LICENSE.txt file for details \ No newline at end of file +{{licensed under the MIT}} License - see the LICENSE.txt file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_642.RULE b/src/licensedcode/data/rules/mit_642.RULE index 95a6175b0b..14da3b8030 100644 --- a/src/licensedcode/data/rules/mit_642.RULE +++ b/src/licensedcode/data/rules/mit_642.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE.txt --- -distributed under the MIT license which encourages both commercial +{{distributed under the MIT license}} which encourages both commercial and non-commercial usage. Please see the file called LICENSE.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_643.RULE b/src/licensedcode/data/rules/mit_643.RULE index 4955488589..5ef6631b71 100644 --- a/src/licensedcode/data/rules/mit_643.RULE +++ b/src/licensedcode/data/rules/mit_643.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -licensed under a modified version of the MIT/X11 license. \ No newline at end of file +licensed under a modified version of the {{MIT/X11 license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_645.RULE b/src/licensedcode/data/rules/mit_645.RULE index eb68e3f00c..bc0de81de8 100644 --- a/src/licensedcode/data/rules/mit_645.RULE +++ b/src/licensedcode/data/rules/mit_645.RULE @@ -1,7 +1,6 @@ --- license_expression: mit is_license_text: yes -relevance: 100 minimum_coverage: 98 --- diff --git a/src/licensedcode/data/rules/mit_649.RULE b/src/licensedcode/data/rules/mit_649.RULE index bb510d67e6..b8557ce6b9 100644 --- a/src/licensedcode/data/rules/mit_649.RULE +++ b/src/licensedcode/data/rules/mit_649.RULE @@ -5,4 +5,4 @@ relevance: 100 --- ## License -(The MIT License) \ No newline at end of file +({{The MIT License}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_652.RULE b/src/licensedcode/data/rules/mit_652.RULE index 9fe61a7556..d2e3a34a50 100644 --- a/src/licensedcode/data/rules/mit_652.RULE +++ b/src/licensedcode/data/rules/mit_652.RULE @@ -8,4 +8,4 @@ ignorable_urls: ## License - is licensed under the [MIT License](https://github.com//LICENSE). \ No newline at end of file + is {{licensed under the [MIT}} License](https://github.com//LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_653.RULE b/src/licensedcode/data/rules/mit_653.RULE index 3fd6ab3fae..40a040de14 100644 --- a/src/licensedcode/data/rules/mit_653.RULE +++ b/src/licensedcode/data/rules/mit_653.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://github.com/LICENSE --- -licensed under the [MIT License](https://github.com//LICENSE). \ No newline at end of file +{{licensed under the [MIT}} License](https://github.com//LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_654.RULE b/src/licensedcode/data/rules/mit_654.RULE index b81af1411f..1dd60b10c8 100644 --- a/src/licensedcode/data/rules/mit_654.RULE +++ b/src/licensedcode/data/rules/mit_654.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -Code licensed under the MIT License: http://opensource.org/licenses/MIT \ No newline at end of file +Code {{licensed under the MIT}} License: http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_655.RULE b/src/licensedcode/data/rules/mit_655.RULE index 69efcb7e59..ed91a1f494 100644 --- a/src/licensedcode/data/rules/mit_655.RULE +++ b/src/licensedcode/data/rules/mit_655.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -Code licensed under the MIT License: https://opensource.org/licenses/MIT \ No newline at end of file +Code {{licensed under the MIT}} License: https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_656.RULE b/src/licensedcode/data/rules/mit_656.RULE index 80248029ad..cfef3ddd40 100644 --- a/src/licensedcode/data/rules/mit_656.RULE +++ b/src/licensedcode/data/rules/mit_656.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -licensed under the MIT License: https://opensource.org/licenses/MIT \ No newline at end of file +{{licensed under the MIT}} License: https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_657.RULE b/src/licensedcode/data/rules/mit_657.RULE index ca0ed9f576..2c9d269023 100644 --- a/src/licensedcode/data/rules/mit_657.RULE +++ b/src/licensedcode/data/rules/mit_657.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -open-source software, freely distributable under the terms of an [MIT-style license](LICENSE). \ No newline at end of file +open-source software, freely distributable under the terms of an [{{MIT-style license}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_658.RULE b/src/licensedcode/data/rules/mit_658.RULE index 13a06aaf1e..350537628e 100644 --- a/src/licensedcode/data/rules/mit_658.RULE +++ b/src/licensedcode/data/rules/mit_658.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -freely distributable under the terms of an [MIT-style license](LICENSE). \ No newline at end of file +freely distributable under the terms of an [{{MIT-style license}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_659.RULE b/src/licensedcode/data/rules/mit_659.RULE index 3dd4deaa8a..22075c7f18 100644 --- a/src/licensedcode/data/rules/mit_659.RULE +++ b/src/licensedcode/data/rules/mit_659.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -distributable under the terms of an [MIT-style license](LICENSE). \ No newline at end of file +distributable under the terms of an [{{MIT-style license}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_66.RULE b/src/licensedcode/data/rules/mit_66.RULE index 2f1021d1ec..83bc2031f9 100644 --- a/src/licensedcode/data/rules/mit_66.RULE +++ b/src/licensedcode/data/rules/mit_66.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -that is licensed under [MIT](http://opensource.org/licenses/MIT). \ No newline at end of file +that is {{licensed under [MIT}}](http://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_660.RULE b/src/licensedcode/data/rules/mit_660.RULE index 18cda2473f..47283761a1 100644 --- a/src/licensedcode/data/rules/mit_660.RULE +++ b/src/licensedcode/data/rules/mit_660.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -[MIT-style license](LICENSE). \ No newline at end of file +[{{MIT-style license}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_662.RULE b/src/licensedcode/data/rules/mit_662.RULE index b17fc3413d..00043aa503 100644 --- a/src/licensedcode/data/rules/mit_662.RULE +++ b/src/licensedcode/data/rules/mit_662.RULE @@ -1,7 +1,6 @@ --- license_expression: mit is_license_text: yes -relevance: 100 minimum_coverage: 99 ignorable_urls: - http://www.opensource.org/licenses/mit-license.php diff --git a/src/licensedcode/data/rules/mit_663.RULE b/src/licensedcode/data/rules/mit_663.RULE index e8fef017aa..838976d91c 100644 --- a/src/licensedcode/data/rules/mit_663.RULE +++ b/src/licensedcode/data/rules/mit_663.RULE @@ -8,5 +8,5 @@ ignorable_urls: Use, reproduction, distribution, and modification of this code is subject to the terms and * conditions -of the MIT license, available at +of {{the MIT license}}, available at http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_664.RULE b/src/licensedcode/data/rules/mit_664.RULE index 672aaaaade..7b47d5651a 100644 --- a/src/licensedcode/data/rules/mit_664.RULE +++ b/src/licensedcode/data/rules/mit_664.RULE @@ -6,4 +6,4 @@ relevance: 100 Use, reproduction, distribution, and modification of this code is subject to the terms and * conditions -of the MIT license \ No newline at end of file +of {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_665.RULE b/src/licensedcode/data/rules/mit_665.RULE index 770503f3d0..42cdc00438 100644 --- a/src/licensedcode/data/rules/mit_665.RULE +++ b/src/licensedcode/data/rules/mit_665.RULE @@ -8,5 +8,5 @@ ignorable_urls: Use, reproduction, distribution, and modification of this code is subject to the terms and * conditions -of the MIT license, available at +of {{the MIT license}}, available at https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_666.RULE b/src/licensedcode/data/rules/mit_666.RULE index 933490921c..bce0908e70 100644 --- a/src/licensedcode/data/rules/mit_666.RULE +++ b/src/licensedcode/data/rules/mit_666.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- this code is subject to the terms and * conditions -of the MIT license, available at +of {{the MIT license}}, available at https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_667.RULE b/src/licensedcode/data/rules/mit_667.RULE index 929782a097..4db0942f6a 100644 --- a/src/licensedcode/data/rules/mit_667.RULE +++ b/src/licensedcode/data/rules/mit_667.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- this code is subject to the terms and * conditions -of the MIT license, available at +of {{the MIT license}}, available at http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_668.RULE b/src/licensedcode/data/rules/mit_668.RULE index 32ff4b35cc..dc27c12202 100644 --- a/src/licensedcode/data/rules/mit_668.RULE +++ b/src/licensedcode/data/rules/mit_668.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -this code is subject to the terms and conditions of the MIT license \ No newline at end of file +this code is subject to the terms and conditions of {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_67.RULE b/src/licensedcode/data/rules/mit_67.RULE index 731ea0189b..f97fbf064a 100644 --- a/src/licensedcode/data/rules/mit_67.RULE +++ b/src/licensedcode/data/rules/mit_67.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -that is licensed under [MIT](https://opensource.org/licenses/MIT). \ No newline at end of file +that is {{licensed under [MIT}}](https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_671.RULE b/src/licensedcode/data/rules/mit_671.RULE index 21d3b20ae9..0d1c7ba887 100644 --- a/src/licensedcode/data/rules/mit_671.RULE +++ b/src/licensedcode/data/rules/mit_671.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -(This is an MIT-style license) \ No newline at end of file +(This is an {{MIT-style license}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_672.RULE b/src/licensedcode/data/rules/mit_672.RULE index 01a33b13b7..e56732728c 100644 --- a/src/licensedcode/data/rules/mit_672.RULE +++ b/src/licensedcode/data/rules/mit_672.RULE @@ -1,6 +1,7 @@ --- license_expression: mit is_license_reference: yes +is_required_phrase: yes relevance: 99 --- diff --git a/src/licensedcode/data/rules/mit_674.RULE b/src/licensedcode/data/rules/mit_674.RULE index 1f75f257fb..ca369423d2 100644 --- a/src/licensedcode/data/rules/mit_674.RULE +++ b/src/licensedcode/data/rules/mit_674.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opensource.org/licenses/mit-license.html --- -* - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - +* - Font Awesome CSS, LESS, and SASS files are {{licensed under MIT}} License - * http://opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_675.RULE b/src/licensedcode/data/rules/mit_675.RULE index cdeff16ae9..2197fb134f 100644 --- a/src/licensedcode/data/rules/mit_675.RULE +++ b/src/licensedcode/data/rules/mit_675.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/mit-license.html --- -files are licensed under MIT License - +files are {{licensed under MIT}} License - https://opensource.org/licenses/mit-license.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_676.RULE b/src/licensedcode/data/rules/mit_676.RULE index 516a46b705..6063c580a5 100644 --- a/src/licensedcode/data/rules/mit_676.RULE +++ b/src/licensedcode/data/rules/mit_676.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.libexpat.org/ --- -Licensed under MIT license http://www.libexpat.org \ No newline at end of file +{{Licensed under MIT}} license http://www.libexpat.org \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_677.RULE b/src/licensedcode/data/rules/mit_677.RULE index 902d740652..e47219584d 100644 --- a/src/licensedcode/data/rules/mit_677.RULE +++ b/src/licensedcode/data/rules/mit_677.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The annotations are licensed under the MIT License. \ No newline at end of file +The annotations are {{licensed under the MIT}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_678.RULE b/src/licensedcode/data/rules/mit_678.RULE index 6a41d43ee8..90be4c4517 100644 --- a/src/licensedcode/data/rules/mit_678.RULE +++ b/src/licensedcode/data/rules/mit_678.RULE @@ -5,5 +5,5 @@ relevance: 100 --- all the parts of the Checker -Framework that you might want to include with your own program use the -MIT License. \ No newline at end of file +Framework that you might want to include with your own program use {{the +MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_679.RULE b/src/licensedcode/data/rules/mit_679.RULE index 77148eb940..43b9542854 100644 --- a/src/licensedcode/data/rules/mit_679.RULE +++ b/src/licensedcode/data/rules/mit_679.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -are licensed under the MIT License \ No newline at end of file +are {{licensed under the MIT}} License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_680.RULE b/src/licensedcode/data/rules/mit_680.RULE index a377b79e6e..c8fc4fb78a 100644 --- a/src/licensedcode/data/rules/mit_680.RULE +++ b/src/licensedcode/data/rules/mit_680.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is licensed under the MIT License. \ No newline at end of file +is {{licensed under the MIT}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_682.RULE b/src/licensedcode/data/rules/mit_682.RULE index 7a24d9a53f..57d0f71847 100644 --- a/src/licensedcode/data/rules/mit_682.RULE +++ b/src/licensedcode/data/rules/mit_682.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -released under the MIT License. See LICENSE for more information. \ No newline at end of file +released {{under the MIT License}}. See LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_686.RULE b/src/licensedcode/data/rules/mit_686.RULE index f95b0a3b4b..d0faae73c0 100644 --- a/src/licensedcode/data/rules/mit_686.RULE +++ b/src/licensedcode/data/rules/mit_686.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -distributed with an MIT-style license: \ No newline at end of file +distributed with an {{MIT-style license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_687.RULE b/src/licensedcode/data/rules/mit_687.RULE index 5702ed82a7..2197f0d2a2 100644 --- a/src/licensedcode/data/rules/mit_687.RULE +++ b/src/licensedcode/data/rules/mit_687.RULE @@ -8,4 +8,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT) \ No newline at end of file +{{MIT license}} (LICENSE-MIT or http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_688.RULE b/src/licensedcode/data/rules/mit_688.RULE index fabb7a83d9..198aa35d36 100644 --- a/src/licensedcode/data/rules/mit_688.RULE +++ b/src/licensedcode/data/rules/mit_688.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the MIT open source license. \ No newline at end of file +{{licensed under the MIT}} open source license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_690.RULE b/src/licensedcode/data/rules/mit_690.RULE index 2eed8422c3..335fb46c9b 100644 --- a/src/licensedcode/data/rules/mit_690.RULE +++ b/src/licensedcode/data/rules/mit_690.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://en.wikipedia.org/wiki/MIT_License --- -distributed under the [MIT License](https://en.wikipedia.org/wiki/MIT_License). This gives everyone the freedoms to use openFrameworks in any context: commercial or non-commercial, public or private, open or closed source. \ No newline at end of file +{{distributed under the [MIT License}}](https://en.wikipedia.org/wiki/MIT_License). This gives everyone the freedoms to use openFrameworks in any context: commercial or non-commercial, public or private, open or closed source. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_691.RULE b/src/licensedcode/data/rules/mit_691.RULE index 5b4f3d43ef..4984a30b02 100644 --- a/src/licensedcode/data/rules/mit_691.RULE +++ b/src/licensedcode/data/rules/mit_691.RULE @@ -5,4 +5,4 @@ relevance: 100 --- SDK SOFTWARE END USER LICENSE AGREEMENT -The MIT License (MIT) \ No newline at end of file +{{The MIT License}} (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_692.RULE b/src/licensedcode/data/rules/mit_692.RULE index a7c11586c5..aa788c81be 100644 --- a/src/licensedcode/data/rules/mit_692.RULE +++ b/src/licensedcode/data/rules/mit_692.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- * This software may be modified and distributed under the terms - * of the MIT license. See the LICENSE file for details. \ No newline at end of file + * of {{the MIT license}}. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_693.RULE b/src/licensedcode/data/rules/mit_693.RULE index 75d8dfb89c..5832697461 100644 --- a/src/licensedcode/data/rules/mit_693.RULE +++ b/src/licensedcode/data/rules/mit_693.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -* This software may be modified and distributed under the terms of the MIT license. \ No newline at end of file +* This software may be modified and distributed under the terms of {{the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_694.RULE b/src/licensedcode/data/rules/mit_694.RULE index 126ec10f11..1e117eb954 100644 --- a/src/licensedcode/data/rules/mit_694.RULE +++ b/src/licensedcode/data/rules/mit_694.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- This file may be modified and distributed under the terms -of the MIT license. See the LICENSE file for details. \ No newline at end of file +of {{the MIT license}}. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_695.RULE b/src/licensedcode/data/rules/mit_695.RULE index ead01bbcdb..f25a567362 100644 --- a/src/licensedcode/data/rules/mit_695.RULE +++ b/src/licensedcode/data/rules/mit_695.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- ## This bootstrap script may be modified and distributed under the terms -## of the MIT license. See the LICENSE file for details \ No newline at end of file +## of {{the MIT license}}. See the LICENSE file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_696.RULE b/src/licensedcode/data/rules/mit_696.RULE index d59a76fd12..9bc7a3fe14 100644 --- a/src/licensedcode/data/rules/mit_696.RULE +++ b/src/licensedcode/data/rules/mit_696.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- ## This script may be modified and distributed under the terms -## of the MIT license. See the LICENSE file for details \ No newline at end of file +## of {{the MIT license}}. See the LICENSE file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_697.RULE b/src/licensedcode/data/rules/mit_697.RULE index b5cddd1156..08bcb9e25c 100644 --- a/src/licensedcode/data/rules/mit_697.RULE +++ b/src/licensedcode/data/rules/mit_697.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- ## This Makefile may be modified and distributed under the terms -## of the MIT license. See the LICENSE file for details. \ No newline at end of file +## of {{the MIT license}}. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_698.RULE b/src/licensedcode/data/rules/mit_698.RULE index 3af612aa83..0bf6ea1383 100644 --- a/src/licensedcode/data/rules/mit_698.RULE +++ b/src/licensedcode/data/rules/mit_698.RULE @@ -6,4 +6,4 @@ referenced_filenames: - License --- -This software may be modified and distributed under the terms of the MIT license. To learn more, see the License. \ No newline at end of file +This software may be modified and distributed under the terms of {{the MIT license}}. To learn more, see the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_699.RULE b/src/licensedcode/data/rules/mit_699.RULE index 1424c190cb..2720005084 100644 --- a/src/licensedcode/data/rules/mit_699.RULE +++ b/src/licensedcode/data/rules/mit_699.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -* This software may be modified and distributed under the terms * of the MIT license. See the LICENSE.txt file for details. \ No newline at end of file +* This software may be modified and distributed under the terms * of {{the MIT license}}. See the LICENSE.txt file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_70.RULE b/src/licensedcode/data/rules/mit_70.RULE index 11f9a61cf9..07e1bf7ec4 100644 --- a/src/licensedcode/data/rules/mit_70.RULE +++ b/src/licensedcode/data/rules/mit_70.RULE @@ -8,4 +8,4 @@ referenced_filenames: ## License -This program is free software and is distributed under an [MIT License](LICENSE). \ No newline at end of file +This program is free software and is distributed under an [{{MIT License}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_700.RULE b/src/licensedcode/data/rules/mit_700.RULE index 4658247300..c2abd595bc 100644 --- a/src/licensedcode/data/rules/mit_700.RULE +++ b/src/licensedcode/data/rules/mit_700.RULE @@ -5,4 +5,4 @@ relevance: 100 --- subject to the following license: -The MIT License \ No newline at end of file +{{The MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_708.RULE b/src/licensedcode/data/rules/mit_708.RULE index 86b05a20fa..ca8f661536 100644 --- a/src/licensedcode/data/rules/mit_708.RULE +++ b/src/licensedcode/data/rules/mit_708.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -licensed under the terms of the MIT license. +licensed under the terms of {{the MIT license}}. See the file COPYING in the top directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_709.RULE b/src/licensedcode/data/rules/mit_709.RULE index 2fd2b0d84b..9c1b4d1cc5 100644 --- a/src/licensedcode/data/rules/mit_709.RULE +++ b/src/licensedcode/data/rules/mit_709.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -component licensed under the MIT \ No newline at end of file +component {{licensed under the MIT}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_710.RULE b/src/licensedcode/data/rules/mit_710.RULE index 8e2ac9250b..85fa8eccd7 100644 --- a/src/licensedcode/data/rules/mit_710.RULE +++ b/src/licensedcode/data/rules/mit_710.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING.MIT --- -Released under the MIT license (see COPYING.MIT for the terms) \ No newline at end of file +Released {{under the MIT license}} (see COPYING.MIT for the terms) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_711.RULE b/src/licensedcode/data/rules/mit_711.RULE index b65ea73319..056e15b913 100644 --- a/src/licensedcode/data/rules/mit_711.RULE +++ b/src/licensedcode/data/rules/mit_711.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -License: [MIT License](http://opensource.org/licenses/MIT) \ No newline at end of file +License: [{{MIT License}}](http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_713.RULE b/src/licensedcode/data/rules/mit_713.RULE index 84c5507886..330f3388e1 100644 --- a/src/licensedcode/data/rules/mit_713.RULE +++ b/src/licensedcode/data/rules/mit_713.RULE @@ -6,4 +6,4 @@ referenced_filenames: - COPYING.mit --- -provided under the MIT license (see COPYING.mit). \ No newline at end of file +provided {{under the MIT license}} (see COPYING.mit). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_714.RULE b/src/licensedcode/data/rules/mit_714.RULE index bc803ad780..73afcf13bb 100644 --- a/src/licensedcode/data/rules/mit_714.RULE +++ b/src/licensedcode/data/rules/mit_714.RULE @@ -7,5 +7,5 @@ referenced_filenames: - docs --- -The code itself is licensed under the MIT which you can read in the LICENSE file. +The code itself is {{licensed under the MIT}} which you can read in the LICENSE file. Read more about the release licensing in the docs folder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_715.RULE b/src/licensedcode/data/rules/mit_715.RULE index 7b2daf5a6d..b056a78b71 100644 --- a/src/licensedcode/data/rules/mit_715.RULE +++ b/src/licensedcode/data/rules/mit_715.RULE @@ -6,4 +6,4 @@ relevance: 100 License - is licensed under the MIT license. \ No newline at end of file + is {{licensed under the MIT}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_716.RULE b/src/licensedcode/data/rules/mit_716.RULE index 105ad154d1..d33fa6a2ab 100644 --- a/src/licensedcode/data/rules/mit_716.RULE +++ b/src/licensedcode/data/rules/mit_716.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -which is available under the MIT License. \ No newline at end of file +which is available {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_717.RULE b/src/licensedcode/data/rules/mit_717.RULE index 4e90540e63..4be85a2ba1 100644 --- a/src/licensedcode/data/rules/mit_717.RULE +++ b/src/licensedcode/data/rules/mit_717.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.md --- -This software is provided under the terms of the MIT license, which is provided in the file "LICENSE.md". \ No newline at end of file +This software is provided under the terms of {{the MIT license}}, which is provided in the file "LICENSE.md". \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_718.RULE b/src/licensedcode/data/rules/mit_718.RULE index 7687f59200..051cea7d2b 100644 --- a/src/licensedcode/data/rules/mit_718.RULE +++ b/src/licensedcode/data/rules/mit_718.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is provided under the terms of the MIT license \ No newline at end of file +This software is provided under the terms of {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_72.RULE b/src/licensedcode/data/rules/mit_72.RULE index daf5612e17..2891fdcd39 100644 --- a/src/licensedcode/data/rules/mit_72.RULE +++ b/src/licensedcode/data/rules/mit_72.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This program is free software and is distributed under an [MIT License] \ No newline at end of file +This program is free software and is distributed under an [{{MIT License}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_723.RULE b/src/licensedcode/data/rules/mit_723.RULE index 32f81450ea..2576f45289 100644 --- a/src/licensedcode/data/rules/mit_723.RULE +++ b/src/licensedcode/data/rules/mit_723.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -freely distributable under the terms of an [MIT-style license] \ No newline at end of file +freely distributable under the terms of an [{{MIT-style license}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_724.RULE b/src/licensedcode/data/rules/mit_724.RULE index 1408c85709..b5cca98d9d 100644 --- a/src/licensedcode/data/rules/mit_724.RULE +++ b/src/licensedcode/data/rules/mit_724.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributable under the terms of an [MIT-style license] \ No newline at end of file +distributable under the terms of an [{{MIT-style license}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_725.RULE b/src/licensedcode/data/rules/mit_725.RULE index 2dd3091e08..25f044dbf6 100644 --- a/src/licensedcode/data/rules/mit_725.RULE +++ b/src/licensedcode/data/rules/mit_725.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/mit-license.php --- -Licensed under the MIT license http://opensource.org/licenses/mit-license.php \ No newline at end of file +{{Licensed under the MIT}} license http://opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_726.RULE b/src/licensedcode/data/rules/mit_726.RULE index b9c133df73..8b98d461e8 100644 --- a/src/licensedcode/data/rules/mit_726.RULE +++ b/src/licensedcode/data/rules/mit_726.RULE @@ -5,7 +5,7 @@ relevance: 100 --- This source file is free software, available under the following license: - MIT license + {{MIT license}} This source file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the license files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_727.RULE b/src/licensedcode/data/rules/mit_727.RULE index 7edcba88a4..6ea9c0bd17 100644 --- a/src/licensedcode/data/rules/mit_727.RULE +++ b/src/licensedcode/data/rules/mit_727.RULE @@ -5,7 +5,7 @@ relevance: 100 --- This source file is free software, available under the following license: - MIT license + {{MIT license}} This source file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_729.RULE b/src/licensedcode/data/rules/mit_729.RULE index ca86eadfdf..9e471ed9cd 100644 --- a/src/licensedcode/data/rules/mit_729.RULE +++ b/src/licensedcode/data/rules/mit_729.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed under the terms of the MIT license. See the License file for details \ No newline at end of file +Distributed under the terms of {{the MIT license}}. See the License file for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_731.RULE b/src/licensedcode/data/rules/mit_731.RULE index cec5ecff42..a42ae0dc83 100644 --- a/src/licensedcode/data/rules/mit_731.RULE +++ b/src/licensedcode/data/rules/mit_731.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The proejct is licensed under the terms of the MIT license \ No newline at end of file +The proejct is licensed under the terms of {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_732.RULE b/src/licensedcode/data/rules/mit_732.RULE index fa88820c75..0e0e43febe 100644 --- a/src/licensedcode/data/rules/mit_732.RULE +++ b/src/licensedcode/data/rules/mit_732.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The project is licensed under the terms of the MIT license \ No newline at end of file +The project is licensed under the terms of {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_734.RULE b/src/licensedcode/data/rules/mit_734.RULE index 47245daf25..c5e2ff714e 100644 --- a/src/licensedcode/data/rules/mit_734.RULE +++ b/src/licensedcode/data/rules/mit_734.RULE @@ -7,6 +7,6 @@ referenced_filenames: - LICENSE-MIT.txt --- -The files are licensed under the **MIT** license - see the [LICENSE-MIT](LICENSE-MIT.txt) file for details. +The files are {{licensed under the **MIT}}** license - see the [{{LICENSE-MIT}}](LICENSE-MIT.txt) file for details. These files contain the following tag instead of the full license text: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_736.RULE b/src/licensedcode/data/rules/mit_736.RULE index fb1232762d..813debf9c3 100644 --- a/src/licensedcode/data/rules/mit_736.RULE +++ b/src/licensedcode/data/rules/mit_736.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -you can redistribute it and/or modify it under the terms of the MIT License as +you can redistribute it and/or modify it under the terms of {{the MIT License}} as published by the Open Source Initiative. See the LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_737.RULE b/src/licensedcode/data/rules/mit_737.RULE index 406ec06b5c..41449ef63d 100644 --- a/src/licensedcode/data/rules/mit_737.RULE +++ b/src/licensedcode/data/rules/mit_737.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -you can redistribute it and/or modify it under the terms of the MIT License as +you can redistribute it and/or modify it under the terms of {{the MIT License}} as published by the Open Source Initiative. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_738.RULE b/src/licensedcode/data/rules/mit_738.RULE index 9fc0d6c0f2..87f2d753ed 100644 --- a/src/licensedcode/data/rules/mit_738.RULE +++ b/src/licensedcode/data/rules/mit_738.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -This is free software you can redistribute it and/or modify it under the terms of the MIT License as +This is free software you can redistribute it and/or modify it under the terms of {{the MIT License}} as published by the Open Source Initiative. See the LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_739.RULE b/src/licensedcode/data/rules/mit_739.RULE index 12798696ab..4ab6021200 100644 --- a/src/licensedcode/data/rules/mit_739.RULE +++ b/src/licensedcode/data/rules/mit_739.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -This is free software you can redistribute it and/or modify it under the terms of the MIT License as +This is free software you can redistribute it and/or modify it under the terms of {{the MIT License}} as published by the Open Source Initiative. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_740.RULE b/src/licensedcode/data/rules/mit_740.RULE index 33bb210526..4c1f4f9b08 100644 --- a/src/licensedcode/data/rules/mit_740.RULE +++ b/src/licensedcode/data/rules/mit_740.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This is free software you can redistribute it and/or modify it under the terms of the MIT License \ No newline at end of file +This is free software you can redistribute it and/or modify it under the terms of {{the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_741.RULE b/src/licensedcode/data/rules/mit_741.RULE index b0ebc3df61..894d4fa61f 100644 --- a/src/licensedcode/data/rules/mit_741.RULE +++ b/src/licensedcode/data/rules/mit_741.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -you can redistribute it and/or modify it under the terms of the MIT License \ No newline at end of file +you can redistribute it and/or modify it under the terms of {{the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_742.RULE b/src/licensedcode/data/rules/mit_742.RULE index 0fc26b2b9b..15b627b8f7 100644 --- a/src/licensedcode/data/rules/mit_742.RULE +++ b/src/licensedcode/data/rules/mit_742.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- This is free software: you can redistribute it and/or modify it under the terms of -the MIT License as published by the Open Source Initiative. See the [LICENSE](LICENSE) file for more details. \ No newline at end of file +{{the MIT License}} as published by the Open Source Initiative. See the [LICENSE](LICENSE) file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_744.RULE b/src/licensedcode/data/rules/mit_744.RULE index d3fcd7cc05..1817d41ff1 100644 --- a/src/licensedcode/data/rules/mit_744.RULE +++ b/src/licensedcode/data/rules/mit_744.RULE @@ -8,4 +8,4 @@ ignorable_urls: - https://github.com/kr/pty --- -This product contains software (https://github.com/kr/pty) developed by Keith Rarick, licensed under the MIT License. \ No newline at end of file +This product contains software (https://github.com/kr/pty) developed by Keith Rarick, {{licensed under the MIT}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_745.RULE b/src/licensedcode/data/rules/mit_745.RULE index cff947b75b..cd239a085e 100644 --- a/src/licensedcode/data/rules/mit_745.RULE +++ b/src/licensedcode/data/rules/mit_745.RULE @@ -1,7 +1,6 @@ --- license_expression: mit is_license_text: yes -relevance: 100 minimum_coverage: 99 --- diff --git a/src/licensedcode/data/rules/mit_747.RULE b/src/licensedcode/data/rules/mit_747.RULE index 4eee399887..665d24d329 100644 --- a/src/licensedcode/data/rules/mit_747.RULE +++ b/src/licensedcode/data/rules/mit_747.RULE @@ -5,4 +5,4 @@ relevance: 100 --- MIT: -(The MIT License) \ No newline at end of file +({{The MIT License}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_749.RULE b/src/licensedcode/data/rules/mit_749.RULE index 5a059d2225..d2e6e63aa2 100644 --- a/src/licensedcode/data/rules/mit_749.RULE +++ b/src/licensedcode/data/rules/mit_749.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The library is licensed under the MIT license \ No newline at end of file +The library is {{licensed under the MIT}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_75.RULE b/src/licensedcode/data/rules/mit_75.RULE index 919d4baa6a..e77f52b565 100644 --- a/src/licensedcode/data/rules/mit_75.RULE +++ b/src/licensedcode/data/rules/mit_75.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.md --- -[MIT License](LICENSE.md) \ No newline at end of file +[{{MIT License}}](LICENSE.md) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_750.RULE b/src/licensedcode/data/rules/mit_750.RULE index 2c287a96f5..0edbbe3d83 100644 --- a/src/licensedcode/data/rules/mit_750.RULE +++ b/src/licensedcode/data/rules/mit_750.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This library is licensed under the MIT license \ No newline at end of file +This library is {{licensed under the MIT}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_751.RULE b/src/licensedcode/data/rules/mit_751.RULE index 24baaf0581..e59b7acf90 100644 --- a/src/licensedcode/data/rules/mit_751.RULE +++ b/src/licensedcode/data/rules/mit_751.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The script is licensed under the MIT license. \ No newline at end of file +The script is {{licensed under the MIT}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_753.RULE b/src/licensedcode/data/rules/mit_753.RULE index cd1ef099b0..79bb9aaa25 100644 --- a/src/licensedcode/data/rules/mit_753.RULE +++ b/src/licensedcode/data/rules/mit_753.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -* Licensed under the MIT License (the "License"). +* {{Licensed under the MIT}} License (the "License"). * You may not use this file except in compliance with the License. * You may obtain a copy of the License at: * diff --git a/src/licensedcode/data/rules/mit_754.RULE b/src/licensedcode/data/rules/mit_754.RULE index dd36e56137..14aeba188d 100644 --- a/src/licensedcode/data/rules/mit_754.RULE +++ b/src/licensedcode/data/rules/mit_754.RULE @@ -3,11 +3,11 @@ license_expression: mit is_license_notice: yes relevance: 100 ignorable_urls: - - http://www.opensource.org/licenses/mit-license.php + - https://www.opensource.org/licenses/mit-license.php --- -* Licensed under the MIT License (the "License"). +* {{Licensed under the MIT}} License (the "License"). * You may not use this file except in compliance with the License. * You may obtain a copy of the License at: * - * httpz://www.opensource.org/licenses/mit-license.php \ No newline at end of file + * https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_755.RULE b/src/licensedcode/data/rules/mit_755.RULE index cfa909ebc1..a1355c89a8 100644 --- a/src/licensedcode/data/rules/mit_755.RULE +++ b/src/licensedcode/data/rules/mit_755.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -Licensed under the MIT License (the "License"); you may not use this file except +{{Licensed under the MIT}} License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_756.RULE b/src/licensedcode/data/rules/mit_756.RULE index 481ee1d074..2049d7d346 100644 --- a/src/licensedcode/data/rules/mit_756.RULE +++ b/src/licensedcode/data/rules/mit_756.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -Licensed under the MIT License (the "License"); +{{Licensed under the MIT}} License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mit_757.RULE b/src/licensedcode/data/rules/mit_757.RULE index 55fcfef7c6..4396c1a9c0 100644 --- a/src/licensedcode/data/rules/mit_757.RULE +++ b/src/licensedcode/data/rules/mit_757.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -Licensed under the MIT License (the "License"); +{{Licensed under the MIT}} License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mit_758.RULE b/src/licensedcode/data/rules/mit_758.RULE index 8ef1c4a544..dd414bccd0 100644 --- a/src/licensedcode/data/rules/mit_758.RULE +++ b/src/licensedcode/data/rules/mit_758.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -This code is licensed under the MIT License. THE SOFTWARE IS PROVIDED "AS IS", +This code is {{licensed under the MIT}} License. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_759.RULE b/src/licensedcode/data/rules/mit_759.RULE index 9dffcc1a05..c89cbca585 100644 --- a/src/licensedcode/data/rules/mit_759.RULE +++ b/src/licensedcode/data/rules/mit_759.RULE @@ -8,7 +8,7 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -Licensed under the MIT License(the "License"); you may not use this file except +{{Licensed under the MIT}} License(the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License in the README file or at https://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_76.RULE b/src/licensedcode/data/rules/mit_76.RULE index de34f64bc2..2778f82435 100644 --- a/src/licensedcode/data/rules/mit_76.RULE +++ b/src/licensedcode/data/rules/mit_76.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -repository is under MIT license. \ No newline at end of file +repository is {{under MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_760.RULE b/src/licensedcode/data/rules/mit_760.RULE index 9836db1205..c24469dcbd 100644 --- a/src/licensedcode/data/rules/mit_760.RULE +++ b/src/licensedcode/data/rules/mit_760.RULE @@ -6,5 +6,5 @@ referenced_filenames: - License.txt --- -* It is licensed under the MIT license. The full license text can be found +* It is {{licensed under the MIT}} license. The full license text can be found * in the License.txt file at the root of this project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_762.RULE b/src/licensedcode/data/rules/mit_762.RULE index a47ffcedac..c349e75a66 100644 --- a/src/licensedcode/data/rules/mit_762.RULE +++ b/src/licensedcode/data/rules/mit_762.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The following libraries are licensed under the MIT License: \ No newline at end of file +The following libraries are {{licensed under the MIT}} License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_763.RULE b/src/licensedcode/data/rules/mit_763.RULE index 31e1cec31b..e4b8144080 100644 --- a/src/licensedcode/data/rules/mit_763.RULE +++ b/src/licensedcode/data/rules/mit_763.RULE @@ -6,4 +6,4 @@ relevance: 100 Licensing - The library is licensed under the MIT license \ No newline at end of file + The library is {{licensed under the MIT}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_764.RULE b/src/licensedcode/data/rules/mit_764.RULE index d7232c1cc7..536cfc550a 100644 --- a/src/licensedcode/data/rules/mit_764.RULE +++ b/src/licensedcode/data/rules/mit_764.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The initial list of generic feature phones & smartphones came from Mobile Web OSP under the MIT license \ No newline at end of file +The initial list of generic feature phones & smartphones came from Mobile Web OSP {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_765.RULE b/src/licensedcode/data/rules/mit_765.RULE index 34b265eb15..223e3bf211 100644 --- a/src/licensedcode/data/rules/mit_765.RULE +++ b/src/licensedcode/data/rules/mit_765.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The initial list of spiders was taken from 's profile project under the MIT license. \ No newline at end of file +The initial list of spiders was taken from 's profile project {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_766.RULE b/src/licensedcode/data/rules/mit_766.RULE index 6a14229aa3..5638d505a8 100644 --- a/src/licensedcode/data/rules/mit_766.RULE +++ b/src/licensedcode/data/rules/mit_766.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The library is licenced under the MIT license \ No newline at end of file +The library is licenced {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_767.RULE b/src/licensedcode/data/rules/mit_767.RULE index de932a8a62..8b952dc03c 100644 --- a/src/licensedcode/data/rules/mit_767.RULE +++ b/src/licensedcode/data/rules/mit_767.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This library is licenced under the MIT license \ No newline at end of file +This library is licenced {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_768.RULE b/src/licensedcode/data/rules/mit_768.RULE index b68cddc749..dd55e63039 100644 --- a/src/licensedcode/data/rules/mit_768.RULE +++ b/src/licensedcode/data/rules/mit_768.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The script is licenced under the MIT license. \ No newline at end of file +The script is licenced {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_769.RULE b/src/licensedcode/data/rules/mit_769.RULE index 96f5321123..885f262094 100644 --- a/src/licensedcode/data/rules/mit_769.RULE +++ b/src/licensedcode/data/rules/mit_769.RULE @@ -6,5 +6,5 @@ referenced_filenames: - License.txt --- -* It is licenced under the MIT license. The full license text can be found +* It is licenced {{under the MIT license}}. The full license text can be found * in the License.txt file at the root of this project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_77.RULE b/src/licensedcode/data/rules/mit_77.RULE index a988ebcc93..ef27afa206 100644 --- a/src/licensedcode/data/rules/mit_77.RULE +++ b/src/licensedcode/data/rules/mit_77.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is under MIT license. \ No newline at end of file +is {{under MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_770.RULE b/src/licensedcode/data/rules/mit_770.RULE index bcf782f46a..0af39f36b9 100644 --- a/src/licensedcode/data/rules/mit_770.RULE +++ b/src/licensedcode/data/rules/mit_770.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The following libraries are licenced under the MIT License: \ No newline at end of file +The following libraries are licenced {{under the MIT License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_771.RULE b/src/licensedcode/data/rules/mit_771.RULE index c297989148..df31e89f07 100644 --- a/src/licensedcode/data/rules/mit_771.RULE +++ b/src/licensedcode/data/rules/mit_771.RULE @@ -6,4 +6,4 @@ relevance: 100 Licensing - The library is licenced under the MIT license \ No newline at end of file + The library is licenced {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_776.RULE b/src/licensedcode/data/rules/mit_776.RULE index 37117a236b..10c19f09ba 100644 --- a/src/licensedcode/data/rules/mit_776.RULE +++ b/src/licensedcode/data/rules/mit_776.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/mit-license --- -Licensed under the MIT license. +{{Licensed under the MIT}} license. * https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_777.RULE b/src/licensedcode/data/rules/mit_777.RULE index 5b95cdc409..44a6bcd6ed 100644 --- a/src/licensedcode/data/rules/mit_777.RULE +++ b/src/licensedcode/data/rules/mit_777.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.opensource.org/licenses/mit --- -Licensed under the MIT license. +{{Licensed under the MIT}} license. * https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_778.RULE b/src/licensedcode/data/rules/mit_778.RULE index 2d36123508..711648e297 100644 --- a/src/licensedcode/data/rules/mit_778.RULE +++ b/src/licensedcode/data/rules/mit_778.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.opensource.org/licenses/mit --- -under the MIT license. +{{under the MIT license}}. * https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_779.RULE b/src/licensedcode/data/rules/mit_779.RULE index 5cd8ae28ac..c1c250b112 100644 --- a/src/licensedcode/data/rules/mit_779.RULE +++ b/src/licensedcode/data/rules/mit_779.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/mit --- -under the MIT license. +{{under the MIT license}}. * https://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_780.RULE b/src/licensedcode/data/rules/mit_780.RULE index ea6c5d5d1a..7ceb9f05a7 100644 --- a/src/licensedcode/data/rules/mit_780.RULE +++ b/src/licensedcode/data/rules/mit_780.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opensource.org/licenses/mit --- -under the MIT license. +{{under the MIT license}}. * http://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_781.RULE b/src/licensedcode/data/rules/mit_781.RULE index 776aaf21f5..930680d380 100644 --- a/src/licensedcode/data/rules/mit_781.RULE +++ b/src/licensedcode/data/rules/mit_781.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.opensource.org/licenses/mit-license.php --- -under the MIT license. +{{under the MIT license}}. * https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_782.RULE b/src/licensedcode/data/rules/mit_782.RULE index 229afa8bc3..446260ab6b 100644 --- a/src/licensedcode/data/rules/mit_782.RULE +++ b/src/licensedcode/data/rules/mit_782.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/mit-license --- -under the MIT license. +{{under the MIT license}}. * https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_783.RULE b/src/licensedcode/data/rules/mit_783.RULE index e3ec42850a..44a79092f8 100644 --- a/src/licensedcode/data/rules/mit_783.RULE +++ b/src/licensedcode/data/rules/mit_783.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/mit-license --- -the MIT license. +{{the MIT license}}. * https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_784.RULE b/src/licensedcode/data/rules/mit_784.RULE index 11f845ed7e..4d1f091a1a 100644 --- a/src/licensedcode/data/rules/mit_784.RULE +++ b/src/licensedcode/data/rules/mit_784.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.opensource.org/licenses/mit --- -the MIT license. +{{the MIT license}}. * https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_785.RULE b/src/licensedcode/data/rules/mit_785.RULE index b085c1846b..62fd27bd1a 100644 --- a/src/licensedcode/data/rules/mit_785.RULE +++ b/src/licensedcode/data/rules/mit_785.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.opensource.org/licenses/mit-license.php --- -MIT license. +{{MIT license}}. * https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_786.RULE b/src/licensedcode/data/rules/mit_786.RULE index bea548d5a4..41968fc18e 100644 --- a/src/licensedcode/data/rules/mit_786.RULE +++ b/src/licensedcode/data/rules/mit_786.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.opensource.org/licenses/mit --- -MIT license. +{{MIT license}}. * https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_787.RULE b/src/licensedcode/data/rules/mit_787.RULE index 7d9b8bb0a5..e0aa04f5bb 100644 --- a/src/licensedcode/data/rules/mit_787.RULE +++ b/src/licensedcode/data/rules/mit_787.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opensource.org/licenses/mit --- -MIT license. +{{MIT license}}. * http://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_788.RULE b/src/licensedcode/data/rules/mit_788.RULE index 2f2c856ece..5e64c13b0c 100644 --- a/src/licensedcode/data/rules/mit_788.RULE +++ b/src/licensedcode/data/rules/mit_788.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.opensource.org/licenses/mit-license.php --- -Licensed under the MIT licence. +{{Licensed under the MIT}} licence. * https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_789.RULE b/src/licensedcode/data/rules/mit_789.RULE index a6af4f5714..4ad8d25cbc 100644 --- a/src/licensedcode/data/rules/mit_789.RULE +++ b/src/licensedcode/data/rules/mit_789.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/mit-license --- -Licensed under the MIT licence. +{{Licensed under the MIT}} licence. * https://opensource.org/licenses/mit-license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_79.RULE b/src/licensedcode/data/rules/mit_79.RULE index 6a26bad1d3..9f7ead638b 100644 --- a/src/licensedcode/data/rules/mit_79.RULE +++ b/src/licensedcode/data/rules/mit_79.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://mit-license.org/ --- -is distributed under [MIT license](http://mit-license.org/). \ No newline at end of file +is {{distributed under [MIT license}}](http://mit-license.org/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_790.RULE b/src/licensedcode/data/rules/mit_790.RULE index 6f175c131e..2ccdf99b72 100644 --- a/src/licensedcode/data/rules/mit_790.RULE +++ b/src/licensedcode/data/rules/mit_790.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.opensource.org/licenses/mit --- -Licensed under the MIT licence. +{{Licensed under the MIT}} licence. * https://www.opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_791.RULE b/src/licensedcode/data/rules/mit_791.RULE index c15049df1a..b6b0cee95d 100644 --- a/src/licensedcode/data/rules/mit_791.RULE +++ b/src/licensedcode/data/rules/mit_791.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/mit --- -Licensed under the MIT licence. +{{Licensed under the MIT}} licence. * https://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_792.RULE b/src/licensedcode/data/rules/mit_792.RULE index ef1917f4fb..aaf4aa735a 100644 --- a/src/licensedcode/data/rules/mit_792.RULE +++ b/src/licensedcode/data/rules/mit_792.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://opensource.org/licenses/mit --- -Licensed under the MIT licence. +{{Licensed under the MIT}} licence. * http://opensource.org/licenses/mit \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_8.RULE b/src/licensedcode/data/rules/mit_8.RULE index 55cac1126b..2feefda208 100644 --- a/src/licensedcode/data/rules/mit_8.RULE +++ b/src/licensedcode/data/rules/mit_8.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is covered by the MIT license \ No newline at end of file +is covered by {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_80.RULE b/src/licensedcode/data/rules/mit_80.RULE index 5e372aa5c7..9452146f70 100644 --- a/src/licensedcode/data/rules/mit_80.RULE +++ b/src/licensedcode/data/rules/mit_80.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -I’m now releasing my software under the MIT license for anyone’s use \ No newline at end of file +I’m now releasing my software {{under the MIT license}} for anyone’s use \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_81.RULE b/src/licensedcode/data/rules/mit_81.RULE index 60e1e03b4e..d5ee2439c1 100644 --- a/src/licensedcode/data/rules/mit_81.RULE +++ b/src/licensedcode/data/rules/mit_81.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -* This software is released under the MIT License-> - * http://opensource->org/licenses/mit-license->php \ No newline at end of file +* This software is released {{under the MIT License}}-> + * {{ http://opensource->org/licenses/mit-license->php }} diff --git a/src/licensedcode/data/rules/mit_814.RULE b/src/licensedcode/data/rules/mit_814.RULE index 0f9e0bae2b..e4dbede3a1 100644 --- a/src/licensedcode/data/rules/mit_814.RULE +++ b/src/licensedcode/data/rules/mit_814.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Free to use and distribute under the MIT License. \ No newline at end of file +Free to use and distribute {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_815.RULE b/src/licensedcode/data/rules/mit_815.RULE index 4565401725..f6bf69ad6f 100644 --- a/src/licensedcode/data/rules/mit_815.RULE +++ b/src/licensedcode/data/rules/mit_815.RULE @@ -1,7 +1,8 @@ --- license_expression: mit is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -distributed under MIT license \ No newline at end of file +Distributed under MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_82.RULE b/src/licensedcode/data/rules/mit_82.RULE index a598d6cba5..c57233f237 100644 --- a/src/licensedcode/data/rules/mit_82.RULE +++ b/src/licensedcode/data/rules/mit_82.RULE @@ -1,7 +1,10 @@ --- license_expression: mit is_license_reference: yes +is_required_phrase: yes relevance: 100 +ignorable_urls: + - http://opensource.org/licenses/MIT --- -"http://opensource->org/licenses/MIT" \ No newline at end of file +http://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_822.RULE b/src/licensedcode/data/rules/mit_822.RULE index 540fc28f85..5b4bda170a 100644 --- a/src/licensedcode/data/rules/mit_822.RULE +++ b/src/licensedcode/data/rules/mit_822.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -documentation is licensed under the MIT License: \ No newline at end of file +documentation is {{licensed under the MIT}} License: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_824.RULE b/src/licensedcode/data/rules/mit_824.RULE index dee81d5666..b7bc4f22f2 100644 --- a/src/licensedcode/data/rules/mit_824.RULE +++ b/src/licensedcode/data/rules/mit_824.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -core libraries are distributed under the MIT license. \ No newline at end of file +core libraries are {{distributed under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_835.RULE b/src/licensedcode/data/rules/mit_835.RULE index 78f681d377..3e70fc50a4 100644 --- a/src/licensedcode/data/rules/mit_835.RULE +++ b/src/licensedcode/data/rules/mit_835.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is made available under the MIT license: \ No newline at end of file +is made available {{under the MIT license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_836.RULE b/src/licensedcode/data/rules/mit_836.RULE index 3a78cb9de7..d87c8028b4 100644 --- a/src/licensedcode/data/rules/mit_836.RULE +++ b/src/licensedcode/data/rules/mit_836.RULE @@ -6,5 +6,5 @@ referenced_filenames: - COPYING --- -// This software is made available under the MIT License +// This software is made available {{under the MIT License}} // See COPYING for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_837.RULE b/src/licensedcode/data/rules/mit_837.RULE index 7e43b3e667..281acc9222 100644 --- a/src/licensedcode/data/rules/mit_837.RULE +++ b/src/licensedcode/data/rules/mit_837.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -* This file is made available under the MIT License (view the LICENSE file for more information). \ No newline at end of file +* This file is made available {{under the MIT License}} (view the LICENSE file for more information). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_838.RULE b/src/licensedcode/data/rules/mit_838.RULE index bab82443bb..8b1ca91317 100644 --- a/src/licensedcode/data/rules/mit_838.RULE +++ b/src/licensedcode/data/rules/mit_838.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -is made available under the MIT license. +is made available {{under the MIT license}}. /// Do not use it if you have not received an associated LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_839.RULE b/src/licensedcode/data/rules/mit_839.RULE index 37e9c5ee19..7ae7e42eb9 100644 --- a/src/licensedcode/data/rules/mit_839.RULE +++ b/src/licensedcode/data/rules/mit_839.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE --- -This work is made available under the "MIT License". +This work is made available {{under the "MIT License}}". Please see the file LICENSE in this distribution for license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_840.RULE b/src/licensedcode/data/rules/mit_840.RULE index f96e73208f..cfc82ed5e3 100644 --- a/src/licensedcode/data/rules/mit_840.RULE +++ b/src/licensedcode/data/rules/mit_840.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- is -made available under the MIT license. See the file LICENSE that accompanies +made available {{under the MIT license}}. See the file LICENSE that accompanies this software for license terms and conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_841.RULE b/src/licensedcode/data/rules/mit_841.RULE index fe600733cb..46ca5879af 100644 --- a/src/licensedcode/data/rules/mit_841.RULE +++ b/src/licensedcode/data/rules/mit_841.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -made available under the MIT license. See the file LICENSE that accompanies +made available {{under the MIT license}}. See the file LICENSE that accompanies this software for license terms and conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_842.RULE b/src/licensedcode/data/rules/mit_842.RULE index 02239317f1..82ed27a510 100644 --- a/src/licensedcode/data/rules/mit_842.RULE +++ b/src/licensedcode/data/rules/mit_842.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -is made available under the MIT license. Pleace see the LICENSE file +is made available {{under the MIT license}}. Pleace see the LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_843.RULE b/src/licensedcode/data/rules/mit_843.RULE index c4ac217963..3411a7107b 100644 --- a/src/licensedcode/data/rules/mit_843.RULE +++ b/src/licensedcode/data/rules/mit_843.RULE @@ -8,5 +8,5 @@ referenced_filenames: License -This program is made available under the MIT License, a copy of which can be +This program is made available {{under the MIT License}}, a copy of which can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_844.RULE b/src/licensedcode/data/rules/mit_844.RULE index ad21ec9e52..0b5ae7297a 100644 --- a/src/licensedcode/data/rules/mit_844.RULE +++ b/src/licensedcode/data/rules/mit_844.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -This program is made available under the MIT License, a copy of which can be +This program is made available {{under the MIT License}}, a copy of which can be found in the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_845.RULE b/src/licensedcode/data/rules/mit_845.RULE index 0ec59f7183..ac73945d86 100644 --- a/src/licensedcode/data/rules/mit_845.RULE +++ b/src/licensedcode/data/rules/mit_845.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -made available under the MIT license. Pleace see the LICENSE file +made available {{under the MIT license}}. Pleace see the LICENSE file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_846.RULE b/src/licensedcode/data/rules/mit_846.RULE index 6bc05e4937..c570220805 100644 --- a/src/licensedcode/data/rules/mit_846.RULE +++ b/src/licensedcode/data/rules/mit_846.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -This program is made available under the MIT License +This program is made available {{under the MIT License}} See the LICENSE file for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_847.RULE b/src/licensedcode/data/rules/mit_847.RULE index 31e9bdbac9..a1fd7d7474 100644 --- a/src/licensedcode/data/rules/mit_847.RULE +++ b/src/licensedcode/data/rules/mit_847.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- is free software -that is made available under the MIT license. Consult the file "LICENSE" +that is made available {{under the MIT license}}. Consult the file "LICENSE" that is distributed together with this file for the exact licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_848.RULE b/src/licensedcode/data/rules/mit_848.RULE index 91bbd15dc0..14d2e50fb9 100644 --- a/src/licensedcode/data/rules/mit_848.RULE +++ b/src/licensedcode/data/rules/mit_848.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- free software -that is made available under the MIT license. Consult the file "LICENSE" +that is made available {{under the MIT license}}. Consult the file "LICENSE" that is distributed together with this file for the exact licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_849.RULE b/src/licensedcode/data/rules/mit_849.RULE index 41185ee2a8..39aa6a7078 100644 --- a/src/licensedcode/data/rules/mit_849.RULE +++ b/src/licensedcode/data/rules/mit_849.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -is made available under the MIT license. Consult the file "LICENSE" +is made available {{under the MIT license}}. Consult the file "LICENSE" that is distributed together with this file for the exact licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_850.RULE b/src/licensedcode/data/rules/mit_850.RULE index 1483c1cce9..2e2678dfb4 100644 --- a/src/licensedcode/data/rules/mit_850.RULE +++ b/src/licensedcode/data/rules/mit_850.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -made available under the MIT license. Consult the file "LICENSE" +made available {{under the MIT license}}. Consult the file "LICENSE" that is distributed together with this file for the exact licensing terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_851.RULE b/src/licensedcode/data/rules/mit_851.RULE index 10ea9a6ecd..92dc8f6cd9 100644 --- a/src/licensedcode/data/rules/mit_851.RULE +++ b/src/licensedcode/data/rules/mit_851.RULE @@ -7,5 +7,5 @@ referenced_filenames: --- License -As with all my work, all code in this repository is made available under the -MIT License. See LICENSE for more. \ No newline at end of file +As with all my work, all code in this repository is made available {{under the +MIT License}}. See LICENSE for more. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_852.RULE b/src/licensedcode/data/rules/mit_852.RULE index d3c80657d4..1266d4be59 100644 --- a/src/licensedcode/data/rules/mit_852.RULE +++ b/src/licensedcode/data/rules/mit_852.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -As with all my work, all code in this repository is made available under the -MIT License. See LICENSE for more. \ No newline at end of file +As with all my work, all code in this repository is made available {{under the +MIT License}}. See LICENSE for more. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_853.RULE b/src/licensedcode/data/rules/mit_853.RULE index cf3254c459..c59181fb5b 100644 --- a/src/licensedcode/data/rules/mit_853.RULE +++ b/src/licensedcode/data/rules/mit_853.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -all code in this repository is made available under the -MIT License. See LICENSE for more. \ No newline at end of file +all code in this repository is made available {{under the +MIT License}}. See LICENSE for more. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_854.RULE b/src/licensedcode/data/rules/mit_854.RULE index 4b9d9ab116..222346119d 100644 --- a/src/licensedcode/data/rules/mit_854.RULE +++ b/src/licensedcode/data/rules/mit_854.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE.txt --- -The code in this distribution is made available under the MIT License. +The code in this distribution is made available {{under the MIT License}}. See LICENSE.txt for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_855.RULE b/src/licensedcode/data/rules/mit_855.RULE index 18e8166622..bf07a84de3 100644 --- a/src/licensedcode/data/rules/mit_855.RULE +++ b/src/licensedcode/data/rules/mit_855.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License -This project is made available under the MIT license. See the file LICENSE in this distribution for license terms. \ No newline at end of file +This project is made available {{under the MIT license}}. See the file LICENSE in this distribution for license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_856.RULE b/src/licensedcode/data/rules/mit_856.RULE index 8fbd9494f9..efc1c421fa 100644 --- a/src/licensedcode/data/rules/mit_856.RULE +++ b/src/licensedcode/data/rules/mit_856.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This project is made available under the MIT license. See the file LICENSE in this distribution for license terms. \ No newline at end of file +This project is made available {{under the MIT license}}. See the file LICENSE in this distribution for license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_857.RULE b/src/licensedcode/data/rules/mit_857.RULE index 3f1a35e7a3..4669559268 100644 --- a/src/licensedcode/data/rules/mit_857.RULE +++ b/src/licensedcode/data/rules/mit_857.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License -The application is made available under the [MIT License](LICENSE). \ No newline at end of file +The application is made available {{under the [MIT License}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_858.RULE b/src/licensedcode/data/rules/mit_858.RULE index 8b235bb2b2..2864033663 100644 --- a/src/licensedcode/data/rules/mit_858.RULE +++ b/src/licensedcode/data/rules/mit_858.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -The application is made available under the [MIT License](LICENSE). \ No newline at end of file +The application is made available {{under the [MIT License}}](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_859.RULE b/src/licensedcode/data/rules/mit_859.RULE index d2c2d970c8..41e8f399a6 100644 --- a/src/licensedcode/data/rules/mit_859.RULE +++ b/src/licensedcode/data/rules/mit_859.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -is made available under the MIT license. The license can be viewed [here](LICENSE.txt). \ No newline at end of file +is made available {{under the MIT license}}. The license can be viewed [here](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_86.RULE b/src/licensedcode/data/rules/mit_86.RULE index bd1355b971..033d7c5aaa 100644 --- a/src/licensedcode/data/rules/mit_86.RULE +++ b/src/licensedcode/data/rules/mit_86.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- This source file is free software, available under the following license: - MIT license - http://datatables.net/license/mit + {{MIT license}} - http://datatables.net/license/mit This source file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY diff --git a/src/licensedcode/data/rules/mit_860.RULE b/src/licensedcode/data/rules/mit_860.RULE index 3d54a731f7..ad1682b1c3 100644 --- a/src/licensedcode/data/rules/mit_860.RULE +++ b/src/licensedcode/data/rules/mit_860.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -made available under the MIT license. The license can be viewed [here](LICENSE.txt). \ No newline at end of file +made available {{under the MIT license}}. The license can be viewed [here](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_861.RULE b/src/licensedcode/data/rules/mit_861.RULE index 8d5233f73e..cf38e17a69 100644 --- a/src/licensedcode/data/rules/mit_861.RULE +++ b/src/licensedcode/data/rules/mit_861.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is made available under the MIT license. \ No newline at end of file +This project is made available {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_862.RULE b/src/licensedcode/data/rules/mit_862.RULE index 24d1c1da75..a097f3638f 100644 --- a/src/licensedcode/data/rules/mit_862.RULE +++ b/src/licensedcode/data/rules/mit_862.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/mit-license.php --- -is made available under the [MIT License](http://opensource.org/licenses/mit-license.php). \ No newline at end of file +is made available {{under the [MIT License}}](http://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_863.RULE b/src/licensedcode/data/rules/mit_863.RULE index 67dfb50d56..3bc26a1fb8 100644 --- a/src/licensedcode/data/rules/mit_863.RULE +++ b/src/licensedcode/data/rules/mit_863.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Everything else is made available under the MIT license: \ No newline at end of file +Everything else is made available {{under the MIT license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_864.RULE b/src/licensedcode/data/rules/mit_864.RULE index 89e8b067f7..c6a23df62c 100644 --- a/src/licensedcode/data/rules/mit_864.RULE +++ b/src/licensedcode/data/rules/mit_864.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License -This utility is made available under the "MIT License". Please see the file LICENSE in this distribution for license terms. \ No newline at end of file +This utility is made available {{under the "MIT License}}". Please see the file LICENSE in this distribution for license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_865.RULE b/src/licensedcode/data/rules/mit_865.RULE index 6928030328..624fa1b42f 100644 --- a/src/licensedcode/data/rules/mit_865.RULE +++ b/src/licensedcode/data/rules/mit_865.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License -is made available under the [MIT license](LICENSE.md). \ No newline at end of file +is made available {{under the [MIT license}}](LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_866.RULE b/src/licensedcode/data/rules/mit_866.RULE index f0599be8dd..2f63cce02d 100644 --- a/src/licensedcode/data/rules/mit_866.RULE +++ b/src/licensedcode/data/rules/mit_866.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.md --- -is made available under the [MIT license](LICENSE.md). \ No newline at end of file +is made available {{under the [MIT license}}](LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_867.RULE b/src/licensedcode/data/rules/mit_867.RULE index 081d686d65..18c2e80f2f 100644 --- a/src/licensedcode/data/rules/mit_867.RULE +++ b/src/licensedcode/data/rules/mit_867.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.md --- -made available under the [MIT license](LICENSE.md). \ No newline at end of file +made available {{under the [MIT license}}](LICENSE.md). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_868.RULE b/src/licensedcode/data/rules/mit_868.RULE index fa98a8da6d..f2133d13a2 100644 --- a/src/licensedcode/data/rules/mit_868.RULE +++ b/src/licensedcode/data/rules/mit_868.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- License -This code is made available under the [MIT license](LICENSE.txt). \ No newline at end of file +This code is made available {{under the [MIT license}}](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_869.RULE b/src/licensedcode/data/rules/mit_869.RULE index ff70dac63a..8394739707 100644 --- a/src/licensedcode/data/rules/mit_869.RULE +++ b/src/licensedcode/data/rules/mit_869.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -This code is made available under the [MIT license](LICENSE.txt). \ No newline at end of file +This code is made available {{under the [MIT license}}](LICENSE.txt). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_87.RULE b/src/licensedcode/data/rules/mit_87.RULE index a607898e5c..0588923ffb 100644 --- a/src/licensedcode/data/rules/mit_87.RULE +++ b/src/licensedcode/data/rules/mit_87.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- This source file is free software, available under the following license: - MIT license - http://datatables.net/license + {{MIT license}} - http://datatables.net/license This source file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY diff --git a/src/licensedcode/data/rules/mit_870.RULE b/src/licensedcode/data/rules/mit_870.RULE index 85af636e5f..2c5dcd9612 100644 --- a/src/licensedcode/data/rules/mit_870.RULE +++ b/src/licensedcode/data/rules/mit_870.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- License -The software code contained within this repository is made available under the -[MIT license](https://opensource.org/licenses/mit-license.php). \ No newline at end of file +The software code contained within this repository is made available {{under the +[MIT license}}](https://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_871.RULE b/src/licensedcode/data/rules/mit_871.RULE index 7bb8e4c3ed..90eff6749f 100644 --- a/src/licensedcode/data/rules/mit_871.RULE +++ b/src/licensedcode/data/rules/mit_871.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/mit-license.php --- -The software code contained within this repository is made available under the -[MIT license](https://opensource.org/licenses/mit-license.php). \ No newline at end of file +The software code contained within this repository is made available {{under the +[MIT license}}](https://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_872.RULE b/src/licensedcode/data/rules/mit_872.RULE index 9a804298d8..b7d2921eb9 100644 --- a/src/licensedcode/data/rules/mit_872.RULE +++ b/src/licensedcode/data/rules/mit_872.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -The software code contained within this repository is made available under the -[MIT license] \ No newline at end of file +The software code contained within this repository is made available {{under the +[MIT license}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_873.RULE b/src/licensedcode/data/rules/mit_873.RULE index 1ef44fc9b6..a3e7d794c6 100644 --- a/src/licensedcode/data/rules/mit_873.RULE +++ b/src/licensedcode/data/rules/mit_873.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -all code in this repository is made available under the MIT License \ No newline at end of file +all code in this repository is made available {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_874.RULE b/src/licensedcode/data/rules/mit_874.RULE index 2623673a0c..5357acdcee 100644 --- a/src/licensedcode/data/rules/mit_874.RULE +++ b/src/licensedcode/data/rules/mit_874.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This program is made available under the MIT License \ No newline at end of file +This program is made available {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_875.RULE b/src/licensedcode/data/rules/mit_875.RULE index d20b542dbe..f6d447a7b8 100644 --- a/src/licensedcode/data/rules/mit_875.RULE +++ b/src/licensedcode/data/rules/mit_875.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This program is made available under the MIT License, reproduced below. \ No newline at end of file +This program is made available {{under the MIT License}}, reproduced below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_876.RULE b/src/licensedcode/data/rules/mit_876.RULE index 729ffc1246..b66b504e46 100644 --- a/src/licensedcode/data/rules/mit_876.RULE +++ b/src/licensedcode/data/rules/mit_876.RULE @@ -5,4 +5,4 @@ relevance: 100 --- license -This program is made available under the MIT License, reproduced below. \ No newline at end of file +This program is made available {{under the MIT License}}, reproduced below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_877.RULE b/src/licensedcode/data/rules/mit_877.RULE index aeba5d0047..6313b19077 100644 --- a/src/licensedcode/data/rules/mit_877.RULE +++ b/src/licensedcode/data/rules/mit_877.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -free software that is made available under the MIT license \ No newline at end of file +free software that is made available {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_878.RULE b/src/licensedcode/data/rules/mit_878.RULE index 844762f575..46f7f3c961 100644 --- a/src/licensedcode/data/rules/mit_878.RULE +++ b/src/licensedcode/data/rules/mit_878.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The software in this repository is made available under the MIT license. \ No newline at end of file +The software in this repository is made available {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_879.RULE b/src/licensedcode/data/rules/mit_879.RULE index 54b2d0dedb..b987397ccc 100644 --- a/src/licensedcode/data/rules/mit_879.RULE +++ b/src/licensedcode/data/rules/mit_879.RULE @@ -5,4 +5,4 @@ relevance: 100 --- license -The software in this repository is made available under the MIT license. \ No newline at end of file +The software in this repository is made available {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_88.RULE b/src/licensedcode/data/rules/mit_88.RULE index 38b312b450..367004cdac 100644 --- a/src/licensedcode/data/rules/mit_88.RULE +++ b/src/licensedcode/data/rules/mit_88.RULE @@ -1,6 +1,7 @@ --- license_expression: mit is_license_notice: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/mit_880.RULE b/src/licensedcode/data/rules/mit_880.RULE index 0c2bc93d09..96e159d05a 100644 --- a/src/licensedcode/data/rules/mit_880.RULE +++ b/src/licensedcode/data/rules/mit_880.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -The software in this repository is made available under the MIT license. -MIT License \ No newline at end of file +The software in this repository is made available {{under the MIT license}}. +{{MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_881.RULE b/src/licensedcode/data/rules/mit_881.RULE index 1158e188e5..c50c8fe533 100644 --- a/src/licensedcode/data/rules/mit_881.RULE +++ b/src/licensedcode/data/rules/mit_881.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The application is made available under the [MIT License] \ No newline at end of file +The application is made available {{under the [MIT License}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_882.RULE b/src/licensedcode/data/rules/mit_882.RULE index c0c2418ec4..3186676233 100644 --- a/src/licensedcode/data/rules/mit_882.RULE +++ b/src/licensedcode/data/rules/mit_882.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -The source is made available under the MIT license. \ No newline at end of file +The source is made available {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_883.RULE b/src/licensedcode/data/rules/mit_883.RULE index c40efbc099..ef71641018 100644 --- a/src/licensedcode/data/rules/mit_883.RULE +++ b/src/licensedcode/data/rules/mit_883.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The source is made available under the MIT license. \ No newline at end of file +The source is made available {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_884.RULE b/src/licensedcode/data/rules/mit_884.RULE index d3e92c8546..3fd83da54c 100644 --- a/src/licensedcode/data/rules/mit_884.RULE +++ b/src/licensedcode/data/rules/mit_884.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/mit-license.php --- -made available under the [MIT License](http://opensource.org/licenses/mit-license.php). \ No newline at end of file +made available {{under the [MIT License}}](http://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_885.RULE b/src/licensedcode/data/rules/mit_885.RULE index c08d8798d2..64bac56379 100644 --- a/src/licensedcode/data/rules/mit_885.RULE +++ b/src/licensedcode/data/rules/mit_885.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/mit-license.php --- -made available under the [MIT License](https://opensource.org/licenses/mit-license.php). \ No newline at end of file +made available {{under the [MIT License}}](https://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_886.RULE b/src/licensedcode/data/rules/mit_886.RULE index 7a4679b720..a18efe03c7 100644 --- a/src/licensedcode/data/rules/mit_886.RULE +++ b/src/licensedcode/data/rules/mit_886.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/mit-license.php --- -is made available under the [MIT License](https://opensource.org/licenses/mit-license.php). \ No newline at end of file +is made available {{under the [MIT License}}](https://opensource.org/licenses/mit-license.php). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_887.RULE b/src/licensedcode/data/rules/mit_887.RULE index 74350a3678..5e45e7c98d 100644 --- a/src/licensedcode/data/rules/mit_887.RULE +++ b/src/licensedcode/data/rules/mit_887.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Data is made available under the MIT License \ No newline at end of file +Data is made available {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_888.RULE b/src/licensedcode/data/rules/mit_888.RULE index 616415c39d..c6323e45cf 100644 --- a/src/licensedcode/data/rules/mit_888.RULE +++ b/src/licensedcode/data/rules/mit_888.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The library is made available under the MIT license. \ No newline at end of file +The library is made available {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_889.RULE b/src/licensedcode/data/rules/mit_889.RULE index 7978f371c2..bf9205ce18 100644 --- a/src/licensedcode/data/rules/mit_889.RULE +++ b/src/licensedcode/data/rules/mit_889.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://en.m.wikipedia.org/wiki/MIT_License --- -The library is made available under the MIT license. +The library is made available {{under the MIT license}}. http://en.m.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_89.RULE b/src/licensedcode/data/rules/mit_89.RULE index 8f3d48ebd2..0a68c87e70 100644 --- a/src/licensedcode/data/rules/mit_89.RULE +++ b/src/licensedcode/data/rules/mit_89.RULE @@ -5,4 +5,4 @@ relevance: 100 --- The code is based on code from , which is -distributed under this license, sometimes called the "MIT" license. \ No newline at end of file +distributed under this license, sometimes called {{the "MIT" license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_890.RULE b/src/licensedcode/data/rules/mit_890.RULE index 913d3b3888..54cd10ab85 100644 --- a/src/licensedcode/data/rules/mit_890.RULE +++ b/src/licensedcode/data/rules/mit_890.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://en.wikipedia.org/wiki/MIT_License --- -The library is made available under the MIT license. +The library is made available {{under the MIT license}}. http://en.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_891.RULE b/src/licensedcode/data/rules/mit_891.RULE index f875284270..312f5c967f 100644 --- a/src/licensedcode/data/rules/mit_891.RULE +++ b/src/licensedcode/data/rules/mit_891.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://en.m.wikipedia.org/wiki/MIT_License --- -The library is made available under the MIT license. +The library is made available {{under the MIT license}}. https://en.m.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_892.RULE b/src/licensedcode/data/rules/mit_892.RULE index c0a40224b3..9a78971783 100644 --- a/src/licensedcode/data/rules/mit_892.RULE +++ b/src/licensedcode/data/rules/mit_892.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://en.wikipedia.org/wiki/MIT_License --- -The library is made available under the MIT license. +The library is made available {{under the MIT license}}. https://en.wikipedia.org/wiki/MIT_License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_893.RULE b/src/licensedcode/data/rules/mit_893.RULE index 3223afd8ad..7ddbfbb2b7 100644 --- a/src/licensedcode/data/rules/mit_893.RULE +++ b/src/licensedcode/data/rules/mit_893.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -The work is made available under the [MIT License](http://opensource.org/licenses/MIT). \ No newline at end of file +The work is made available {{under the [MIT License}}](http://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_894.RULE b/src/licensedcode/data/rules/mit_894.RULE index 43e92ff5c7..2bb8ec8ffd 100644 --- a/src/licensedcode/data/rules/mit_894.RULE +++ b/src/licensedcode/data/rules/mit_894.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -The work is made available under the [MIT License](https://opensource.org/licenses/MIT). \ No newline at end of file +The work is made available {{under the [MIT License}}](https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_895.RULE b/src/licensedcode/data/rules/mit_895.RULE index 0ac1a66b07..5eaf72b625 100644 --- a/src/licensedcode/data/rules/mit_895.RULE +++ b/src/licensedcode/data/rules/mit_895.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.html/ --- -This code is made available under the MIT License. +This code is made available {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_896.RULE b/src/licensedcode/data/rules/mit_896.RULE index b9bad856ef..bbb09073e2 100644 --- a/src/licensedcode/data/rules/mit_896.RULE +++ b/src/licensedcode/data/rules/mit_896.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It is made available under the MIT License \ No newline at end of file +It is made available {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_897.RULE b/src/licensedcode/data/rules/mit_897.RULE index 9b9c5a68f1..1ace723e5a 100644 --- a/src/licensedcode/data/rules/mit_897.RULE +++ b/src/licensedcode/data/rules/mit_897.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is made available under the [MIT License][mit]. \ No newline at end of file +is made available {{under the [MIT License}}][mit]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_898.RULE b/src/licensedcode/data/rules/mit_898.RULE index 27f787b115..0454605bac 100644 --- a/src/licensedcode/data/rules/mit_898.RULE +++ b/src/licensedcode/data/rules/mit_898.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -This work is made available under [The MIT License](https://opensource.org/licenses/MIT). \ No newline at end of file +This work is made available {{under [The MIT License}}](https://opensource.org/licenses/MIT). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_899.RULE b/src/licensedcode/data/rules/mit_899.RULE index 1eb658e6fb..01b3f6f280 100644 --- a/src/licensedcode/data/rules/mit_899.RULE +++ b/src/licensedcode/data/rules/mit_899.RULE @@ -5,4 +5,4 @@ relevance: 100 --- license -This project is made available under the MIT License. \ No newline at end of file +This project is made available {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_89_2.RULE b/src/licensedcode/data/rules/mit_89_2.RULE index a297dbf619..aa067a0092 100644 --- a/src/licensedcode/data/rules/mit_89_2.RULE +++ b/src/licensedcode/data/rules/mit_89_2.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under this license, sometimes called the "MIT" license. \ No newline at end of file +distributed under this license, sometimes called {{the "MIT" license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_9.RULE b/src/licensedcode/data/rules/mit_9.RULE index 880c7a83ab..aa35a913a4 100644 --- a/src/licensedcode/data/rules/mit_9.RULE +++ b/src/licensedcode/data/rules/mit_9.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://en.wikipedia.org/wiki/MIT_License --- -Licensed under the MIT (http://en.wikipedia.org/wiki/MIT_License) license. \ No newline at end of file +{{Licensed under the MIT}} (http://en.wikipedia.org/wiki/MIT_License) license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_90.RULE b/src/licensedcode/data/rules/mit_90.RULE index 78463c53b2..958457f9c8 100644 --- a/src/licensedcode/data/rules/mit_90.RULE +++ b/src/licensedcode/data/rules/mit_90.RULE @@ -6,4 +6,4 @@ minimum_coverage: 100 --- "License :: OSI Approved", - "License :: OSI Approved :: MIT License", \ No newline at end of file + "License :: OSI Approved :: {{MIT License}}", \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_900.RULE b/src/licensedcode/data/rules/mit_900.RULE index f05913d65a..7bfa7a024d 100644 --- a/src/licensedcode/data/rules/mit_900.RULE +++ b/src/licensedcode/data/rules/mit_900.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is made available under the MIT License. \ No newline at end of file +This code is made available {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_901.RULE b/src/licensedcode/data/rules/mit_901.RULE index 7b60dda6c6..f2f9ef8a91 100644 --- a/src/licensedcode/data/rules/mit_901.RULE +++ b/src/licensedcode/data/rules/mit_901.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This work is made available under the "MIT License". \ No newline at end of file +This work is made available {{under the "MIT License}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_902.RULE b/src/licensedcode/data/rules/mit_902.RULE index 9251447fcc..5c6e193fd5 100644 --- a/src/licensedcode/data/rules/mit_902.RULE +++ b/src/licensedcode/data/rules/mit_902.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -* This file is made available under the MIT License \ No newline at end of file +* This file is made available {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_903.RULE b/src/licensedcode/data/rules/mit_903.RULE index 72deb95fdf..a2ae5ba694 100644 --- a/src/licensedcode/data/rules/mit_903.RULE +++ b/src/licensedcode/data/rules/mit_903.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -// This software is made available under the MIT License \ No newline at end of file +// This software is made available {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_904.RULE b/src/licensedcode/data/rules/mit_904.RULE index 0ce8a2e534..b237561ebc 100644 --- a/src/licensedcode/data/rules/mit_904.RULE +++ b/src/licensedcode/data/rules/mit_904.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.opensource.org/licenses/mit-license.html --- -This code is made available under the MIT License. +This code is made available {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_905.RULE b/src/licensedcode/data/rules/mit_905.RULE index 1106a155ef..d15f004a42 100644 --- a/src/licensedcode/data/rules/mit_905.RULE +++ b/src/licensedcode/data/rules/mit_905.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -This utility is made available under the "MIT License". \ No newline at end of file +This utility is made available {{under the "MIT License}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_906.RULE b/src/licensedcode/data/rules/mit_906.RULE index cadd4f2cd6..651abb111d 100644 --- a/src/licensedcode/data/rules/mit_906.RULE +++ b/src/licensedcode/data/rules/mit_906.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This utility is made available under the "MIT License". \ No newline at end of file +This utility is made available {{under the "MIT License}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_907.RULE b/src/licensedcode/data/rules/mit_907.RULE index 6eeb74b6d8..1dc0c0c9a4 100644 --- a/src/licensedcode/data/rules/mit_907.RULE +++ b/src/licensedcode/data/rules/mit_907.RULE @@ -5,4 +5,4 @@ relevance: 100 --- NOTICE -This code is made available under the MIT License \ No newline at end of file +This code is made available {{under the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_908.RULE b/src/licensedcode/data/rules/mit_908.RULE index 994139a686..09d78db84a 100644 --- a/src/licensedcode/data/rules/mit_908.RULE +++ b/src/licensedcode/data/rules/mit_908.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://choosealicense.com/licenses/mit --- -is made available under the [MIT License](http://choosealicense.com/licenses/mit/). \ No newline at end of file +is made available {{under the [MIT License}}](http://choosealicense.com/licenses/mit/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_909.RULE b/src/licensedcode/data/rules/mit_909.RULE index 8ebd7dd8cb..722f601c3c 100644 --- a/src/licensedcode/data/rules/mit_909.RULE +++ b/src/licensedcode/data/rules/mit_909.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://choosealicense.com/licenses/mit --- -made available under the [MIT License](http://choosealicense.com/licenses/mit/). \ No newline at end of file +made available {{under the [MIT License}}](http://choosealicense.com/licenses/mit/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_910.RULE b/src/licensedcode/data/rules/mit_910.RULE index 69068275f5..99b9987fa7 100644 --- a/src/licensedcode/data/rules/mit_910.RULE +++ b/src/licensedcode/data/rules/mit_910.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://choosealicense.com/licenses/mit --- -is made available under the [MIT License](https://choosealicense.com/licenses/mit/). \ No newline at end of file +is made available {{under the [MIT License}}](https://choosealicense.com/licenses/mit/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_911.RULE b/src/licensedcode/data/rules/mit_911.RULE index 728ea3bf25..3fe0eaf2c5 100644 --- a/src/licensedcode/data/rules/mit_911.RULE +++ b/src/licensedcode/data/rules/mit_911.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -The code in this repo is made available under the MIT license. +The code in this repo is made available {{under the MIT license}}. You may re-use my theme, but I advise that you change it at least a little in order to preserve your integrity and self-respect as a developer or designer :) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_912.RULE b/src/licensedcode/data/rules/mit_912.RULE index d240d0e256..06c94f9980 100644 --- a/src/licensedcode/data/rules/mit_912.RULE +++ b/src/licensedcode/data/rules/mit_912.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This sample code is made available under the MIT license. See the LICENSE file. \ No newline at end of file +This sample code is made available {{under the MIT license}}. See the LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_913.RULE b/src/licensedcode/data/rules/mit_913.RULE index b61eefcec9..409127c63c 100644 --- a/src/licensedcode/data/rules/mit_913.RULE +++ b/src/licensedcode/data/rules/mit_913.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This sample code is made available under the MIT license \ No newline at end of file +This sample code is made available {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_919.RULE b/src/licensedcode/data/rules/mit_919.RULE index 08c113bdf0..cd22457d9e 100644 --- a/src/licensedcode/data/rules/mit_919.RULE +++ b/src/licensedcode/data/rules/mit_919.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -used according to terms of MIT License, as follows \ No newline at end of file +used according to terms of {{MIT License}}, as follows \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_92.RULE b/src/licensedcode/data/rules/mit_92.RULE index 14262b04d0..a1d9f556cf 100644 --- a/src/licensedcode/data/rules/mit_92.RULE +++ b/src/licensedcode/data/rules/mit_92.RULE @@ -6,4 +6,4 @@ referenced_filenames: - license.txt --- -Released under MIT License. Please refer to license.txt for details \ No newline at end of file +Released {{under MIT License}}. Please refer to license.txt for details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_920.RULE b/src/licensedcode/data/rules/mit_920.RULE index 3af3af02ff..80b0a4351c 100644 --- a/src/licensedcode/data/rules/mit_920.RULE +++ b/src/licensedcode/data/rules/mit_920.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -used according to terms of MIT License \ No newline at end of file +used according to terms of {{MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_921.RULE b/src/licensedcode/data/rules/mit_921.RULE index 9fc41e985d..f34ced8c84 100644 --- a/src/licensedcode/data/rules/mit_921.RULE +++ b/src/licensedcode/data/rules/mit_921.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -licensed under the MIT license (see the LICENSE file for details). \ No newline at end of file +{{licensed under the MIT}} license (see the LICENSE file for details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_922.RULE b/src/licensedcode/data/rules/mit_922.RULE index 87ed1496a1..11a4f1d0e4 100644 --- a/src/licensedcode/data/rules/mit_922.RULE +++ b/src/licensedcode/data/rules/mit_922.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -MIT The MIT License (MIT) \ No newline at end of file +MIT {{The MIT License}} (MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_924.RULE b/src/licensedcode/data/rules/mit_924.RULE index 9b33dd26d5..edf131e198 100644 --- a/src/licensedcode/data/rules/mit_924.RULE +++ b/src/licensedcode/data/rules/mit_924.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -Distributed under the MIT License. See LICENSE for more information. \ No newline at end of file +{{Distributed under the MIT License}}. See LICENSE for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_925.RULE b/src/licensedcode/data/rules/mit_925.RULE index 23a4e5cbe9..307de31a17 100644 --- a/src/licensedcode/data/rules/mit_925.RULE +++ b/src/licensedcode/data/rules/mit_925.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under terms of the MIT License - \ No newline at end of file +This project is licensed under terms of {{the MIT License}} - \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_926.RULE b/src/licensedcode/data/rules/mit_926.RULE index e79b14bc7a..ce711aca62 100644 --- a/src/licensedcode/data/rules/mit_926.RULE +++ b/src/licensedcode/data/rules/mit_926.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -This project is licensed under terms of the MIT License - +This project is licensed under terms of {{the MIT License}} - https://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_927.RULE b/src/licensedcode/data/rules/mit_927.RULE index 2d0ef108ac..28ea461518 100644 --- a/src/licensedcode/data/rules/mit_927.RULE +++ b/src/licensedcode/data/rules/mit_927.RULE @@ -7,7 +7,7 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -This project is licensed under terms of the MIT License - +This project is licensed under terms of {{the MIT License}} - https://opensource.org/licenses/MIT See also: diff --git a/src/licensedcode/data/rules/mit_928.RULE b/src/licensedcode/data/rules/mit_928.RULE index 28073c14cc..b678611d12 100644 --- a/src/licensedcode/data/rules/mit_928.RULE +++ b/src/licensedcode/data/rules/mit_928.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -this is the MIT License. \ No newline at end of file +this is {{the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_929.RULE b/src/licensedcode/data/rules/mit_929.RULE index 6664526afb..fe4bd18647 100644 --- a/src/licensedcode/data/rules/mit_929.RULE +++ b/src/licensedcode/data/rules/mit_929.RULE @@ -7,4 +7,4 @@ ignorable_urls: - https://jquery.org/license --- -* jQuery__ is published under the terms of the [MIT license](https://jquery.org/license/). \ No newline at end of file +* jQuery__ is published under the terms of {{the [MIT license}}](https://jquery.org/license/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_93.RULE b/src/licensedcode/data/rules/mit_93.RULE index 7ba6e34421..bb3b00790c 100644 --- a/src/licensedcode/data/rules/mit_93.RULE +++ b/src/licensedcode/data/rules/mit_93.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -This software is distributed under [MIT license](http://www.opensource.org/licenses/mit-license.php), +This software is {{distributed under [MIT license}}](http://www.opensource.org/licenses/mit-license.php), so feel free to integrate it in your commercial products. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_930.RULE b/src/licensedcode/data/rules/mit_930.RULE index 0bea75c52c..ea7ed98be6 100644 --- a/src/licensedcode/data/rules/mit_930.RULE +++ b/src/licensedcode/data/rules/mit_930.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- License -date- is licensed under the [MIT license](http://.mit-license.org). +date- is {{licensed under the [MIT}} license](http://.{{mit-license}}.org). Read more about MIT at [TLDRLegal](https://tldrlegal.com/license/mit-license). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_931.RULE b/src/licensedcode/data/rules/mit_931.RULE index 4e816504d1..955d547c87 100644 --- a/src/licensedcode/data/rules/mit_931.RULE +++ b/src/licensedcode/data/rules/mit_931.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -This project is licensed under the terms of the MIT license. +This project is licensed under the terms of {{the MIT license}}. Please see the file LICENSE for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_932.RULE b/src/licensedcode/data/rules/mit_932.RULE index 4c28a56b50..56d5955af6 100644 --- a/src/licensedcode/data/rules/mit_932.RULE +++ b/src/licensedcode/data/rules/mit_932.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -This project is licensed under the terms of the MIT license. +This project is licensed under the terms of {{the MIT license}}. Please see the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_933.RULE b/src/licensedcode/data/rules/mit_933.RULE index 25a27ac374..cca576e36c 100644 --- a/src/licensedcode/data/rules/mit_933.RULE +++ b/src/licensedcode/data/rules/mit_933.RULE @@ -8,4 +8,4 @@ notes: https://github.com/newren/git-filter-repo/blob/e9e0308df1e9e792598b8e41d0 --- most the files in this repository (exceptions -noted below) are provided under the MIT license (see COPYING.mit). \ No newline at end of file +noted below) are provided {{under the MIT license}} (see COPYING.mit). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_934.RULE b/src/licensedcode/data/rules/mit_934.RULE index d98f6b0848..0ea411de7a 100644 --- a/src/licensedcode/data/rules/mit_934.RULE +++ b/src/licensedcode/data/rules/mit_934.RULE @@ -7,4 +7,4 @@ relevance: 100 If not stated explicitly differently, all files and contents of this directory and its subdirectories are subject to the following copyright notice. -All files are licensed under MIT License. \ No newline at end of file +All files are {{licensed under MIT}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_935.RULE b/src/licensedcode/data/rules/mit_935.RULE index 45ffbde1d0..62331ce5a4 100644 --- a/src/licensedcode/data/rules/mit_935.RULE +++ b/src/licensedcode/data/rules/mit_935.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All files are licensed under MIT License. \ No newline at end of file +All files are {{licensed under MIT}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_936.RULE b/src/licensedcode/data/rules/mit_936.RULE index ae8d970774..86fe1f65ac 100644 --- a/src/licensedcode/data/rules/mit_936.RULE +++ b/src/licensedcode/data/rules/mit_936.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -files are licensed under MIT License. \ No newline at end of file +files are {{licensed under MIT}} License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_937.RULE b/src/licensedcode/data/rules/mit_937.RULE index 0095f7a8d2..32bd5804fe 100644 --- a/src/licensedcode/data/rules/mit_937.RULE +++ b/src/licensedcode/data/rules/mit_937.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -open source, licensed under a standard MIT license \ No newline at end of file +open source, licensed under a standard {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_938.RULE b/src/licensedcode/data/rules/mit_938.RULE index 81e6f3a93b..235e29859d 100644 --- a/src/licensedcode/data/rules/mit_938.RULE +++ b/src/licensedcode/data/rules/mit_938.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under a standard MIT license \ No newline at end of file +licensed under a standard {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_939.RULE b/src/licensedcode/data/rules/mit_939.RULE index 18784c8509..1311e205ce 100644 --- a/src/licensedcode/data/rules/mit_939.RULE +++ b/src/licensedcode/data/rules/mit_939.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -open source, licensed under a standard MIT license +open source, licensed under a standard {{MIT license}} (included in this repository as ``LICENSE``). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_94.RULE b/src/licensedcode/data/rules/mit_94.RULE index dcbcad1217..3c33e21b11 100644 --- a/src/licensedcode/data/rules/mit_94.RULE +++ b/src/licensedcode/data/rules/mit_94.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -This software is distributed under [MIT license](http://www.opensource.org/licenses/mit-license.php), \ No newline at end of file +This software is {{distributed under [MIT license}}](http://www.opensource.org/licenses/mit-license.php), \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_948.RULE b/src/licensedcode/data/rules/mit_948.RULE index ba8c86f466..8cfb0d9fe1 100644 --- a/src/licensedcode/data/rules/mit_948.RULE +++ b/src/licensedcode/data/rules/mit_948.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- X.Org Preferred License -The X.Org Foundation has chosen the following format of the MIT License as the +The X.Org Foundation has chosen the following format of {{the MIT License}} as the preferred format for code included in the X Window System distribution. This is -a slight variant of the common MIT license form published by the Open Source +a slight variant of the common {{MIT license}} form published by the Open Source Initiative at https://www.opensource.org/licenses/mit-license.php. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_949.RULE b/src/licensedcode/data/rules/mit_949.RULE index 7cf6338fb9..5d64afb98f 100644 --- a/src/licensedcode/data/rules/mit_949.RULE +++ b/src/licensedcode/data/rules/mit_949.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- * License -This project is licensed under MIT (see [[./LICENSE]]) \ No newline at end of file +This project is {{licensed under MIT}} (see [[./LICENSE]]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_950.RULE b/src/licensedcode/data/rules/mit_950.RULE index 1e2c2f665e..ec4f7d2b7b 100644 --- a/src/licensedcode/data/rules/mit_950.RULE +++ b/src/licensedcode/data/rules/mit_950.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -This project is licensed under MIT (see [[./LICENSE]]) \ No newline at end of file +This project is {{licensed under MIT}} (see [[./LICENSE]]) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_951.RULE b/src/licensedcode/data/rules/mit_951.RULE index 44ee7e57ba..5465379e62 100644 --- a/src/licensedcode/data/rules/mit_951.RULE +++ b/src/licensedcode/data/rules/mit_951.RULE @@ -6,4 +6,4 @@ notes: Seen in json-cpp --- In jurisdictions which do not recognize Public Domain property (e.g. Germany as of -2010), this software is Copyright , and is released under the terms of the MIT License (see below) +2010), this software is Copyright , and is released under the terms of {{the MIT License}} (see below) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_952.RULE b/src/licensedcode/data/rules/mit_952.RULE index 1a02288340..407cca5c1b 100644 --- a/src/licensedcode/data/rules/mit_952.RULE +++ b/src/licensedcode/data/rules/mit_952.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.rst --- -Licensed under the MIT License (see file LICENSE.rst for details). \ No newline at end of file +{{Licensed under the MIT}} License (see file LICENSE.rst for details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_953.RULE b/src/licensedcode/data/rules/mit_953.RULE index 9e700c442a..82076382da 100644 --- a/src/licensedcode/data/rules/mit_953.RULE +++ b/src/licensedcode/data/rules/mit_953.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://mit-license.org/ --- -made available under [the MIT -license](http://mit-license.org/). \ No newline at end of file +made available {{under [the MIT +license}}](http://mit-license.org/). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_954.RULE b/src/licensedcode/data/rules/mit_954.RULE index e02d3b7bab..5f02670b36 100644 --- a/src/licensedcode/data/rules/mit_954.RULE +++ b/src/licensedcode/data/rules/mit_954.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/mit-license.php --- -This is the MIT license: http://www.opensource.org/licenses/mit-license.php \ No newline at end of file +This is {{the MIT license}}: http://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_955.RULE b/src/licensedcode/data/rules/mit_955.RULE index d378e22d45..680480ccfe 100644 --- a/src/licensedcode/data/rules/mit_955.RULE +++ b/src/licensedcode/data/rules/mit_955.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.opensource.org/licenses/mit-license.php --- -This is the MIT license: https://www.opensource.org/licenses/mit-license.php \ No newline at end of file +This is {{the MIT license}}: https://www.opensource.org/licenses/mit-license.php \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_956.RULE b/src/licensedcode/data/rules/mit_956.RULE index 4e6c63aeb3..4d626e6d9b 100644 --- a/src/licensedcode/data/rules/mit_956.RULE +++ b/src/licensedcode/data/rules/mit_956.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -This software is released under MIT license. +This software is released {{under MIT license}}. The full license information can be found in LICENSE in the root directory of this project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_957.RULE b/src/licensedcode/data/rules/mit_957.RULE index cd05fd67b7..f420274f1d 100644 --- a/src/licensedcode/data/rules/mit_957.RULE +++ b/src/licensedcode/data/rules/mit_957.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is released under MIT license. \ No newline at end of file +This software is released {{under MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_958.RULE b/src/licensedcode/data/rules/mit_958.RULE index 08847d9044..aace2148e3 100644 --- a/src/licensedcode/data/rules/mit_958.RULE +++ b/src/licensedcode/data/rules/mit_958.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -software is released under MIT license. \ No newline at end of file +software is released {{under MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_959.RULE b/src/licensedcode/data/rules/mit_959.RULE index b5d1e8c16a..63f763940c 100644 --- a/src/licensedcode/data/rules/mit_959.RULE +++ b/src/licensedcode/data/rules/mit_959.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MIT LICENSE. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF {{THE MIT LICENSE}}. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_960.RULE b/src/licensedcode/data/rules/mit_960.RULE index 4fea8423e1..ea11028907 100644 --- a/src/licensedcode/data/rules/mit_960.RULE +++ b/src/licensedcode/data/rules/mit_960.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE [MIT LICENSE]. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF {{THE [MIT LICENSE}}]. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_961.RULE b/src/licensedcode/data/rules/mit_961.RULE index fcc52bc5b7..a64d034ae9 100644 --- a/src/licensedcode/data/rules/mit_961.RULE +++ b/src/licensedcode/data/rules/mit_961.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -UNDER THE TERMS OF THE MIT LICENSE. \ No newline at end of file +UNDER THE TERMS OF {{THE MIT LICENSE}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_962.RULE b/src/licensedcode/data/rules/mit_962.RULE index 2766ad8afb..b829f78fb0 100644 --- a/src/licensedcode/data/rules/mit_962.RULE +++ b/src/licensedcode/data/rules/mit_962.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 95 --- -LICENSE INFORMATION: MIT STYLE \ No newline at end of file +LICENSE INFORMATION: {{MIT STYLE}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_964.RULE b/src/licensedcode/data/rules/mit_964.RULE index c8de263955..c79e2a0f74 100644 --- a/src/licensedcode/data/rules/mit_964.RULE +++ b/src/licensedcode/data/rules/mit_964.RULE @@ -1,8 +1,8 @@ --- license_expression: mit is_license_reference: yes +is_required_phrase: yes relevance: 80 -is_continuous: yes --- -MIT STYLE +MIT-Style \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_965.RULE b/src/licensedcode/data/rules/mit_965.RULE index cdbfaef13f..d117832de5 100644 --- a/src/licensedcode/data/rules/mit_965.RULE +++ b/src/licensedcode/data/rules/mit_965.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 95 --- -LICENSE: MIT STYLE \ No newline at end of file +{{LICENSE: MIT}} STYLE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_967.RULE b/src/licensedcode/data/rules/mit_967.RULE index b953071904..b389e0efa2 100644 --- a/src/licensedcode/data/rules/mit_967.RULE +++ b/src/licensedcode/data/rules/mit_967.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licenced under the MIT license \ No newline at end of file +Licenced {{under the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_968.RULE b/src/licensedcode/data/rules/mit_968.RULE index b56ba5ad47..1606b2ea8a 100644 --- a/src/licensedcode/data/rules/mit_968.RULE +++ b/src/licensedcode/data/rules/mit_968.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -programming language distributed under MIT License \ No newline at end of file +programming language {{distributed under MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_97.RULE b/src/licensedcode/data/rules/mit_97.RULE index 4a80c67366..3271e34d28 100644 --- a/src/licensedcode/data/rules/mit_97.RULE +++ b/src/licensedcode/data/rules/mit_97.RULE @@ -5,4 +5,4 @@ relevance: 100 --- which is -distributed under this license, sometimes called the "MIT" license. \ No newline at end of file +distributed under this license, sometimes called {{the "MIT" license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_972.RULE b/src/licensedcode/data/rules/mit_972.RULE index cce60f5e27..9787337ebb 100644 --- a/src/licensedcode/data/rules/mit_972.RULE +++ b/src/licensedcode/data/rules/mit_972.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All files, with the exceptions below, are released under the MIT License: \ No newline at end of file +All files, with the exceptions below, are released {{under the MIT License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_973.RULE b/src/licensedcode/data/rules/mit_973.RULE index b8f2d12a0a..0df35d79dc 100644 --- a/src/licensedcode/data/rules/mit_973.RULE +++ b/src/licensedcode/data/rules/mit_973.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -All files are released under the MIT License: \ No newline at end of file +All files are released {{under the MIT License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_974.RULE b/src/licensedcode/data/rules/mit_974.RULE index c875f19b13..004f820259 100644 --- a/src/licensedcode/data/rules/mit_974.RULE +++ b/src/licensedcode/data/rules/mit_974.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -are released under the MIT License: \ No newline at end of file +are released {{under the MIT License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_98.RULE b/src/licensedcode/data/rules/mit_98.RULE index 88df199f16..f4fcf8a942 100644 --- a/src/licensedcode/data/rules/mit_98.RULE +++ b/src/licensedcode/data/rules/mit_98.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project has been released under the MIT License. \ No newline at end of file +This project has been released {{under the MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_983.RULE b/src/licensedcode/data/rules/mit_983.RULE index 272ba3c734..c8cd3bd91c 100644 --- a/src/licensedcode/data/rules/mit_983.RULE +++ b/src/licensedcode/data/rules/mit_983.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -library is licensed under the MIT "expat" license (https://opensource.org/licenses/MIT) \ No newline at end of file +library is {{licensed under the MIT}} "expat" license (https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_984.RULE b/src/licensedcode/data/rules/mit_984.RULE index 8a376ecd42..a1bb7ddeef 100644 --- a/src/licensedcode/data/rules/mit_984.RULE +++ b/src/licensedcode/data/rules/mit_984.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -is licensed under the MIT "expat" license (https://opensource.org/licenses/MIT) \ No newline at end of file +is {{licensed under the MIT}} "expat" license (https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_985.RULE b/src/licensedcode/data/rules/mit_985.RULE index 13c248cd9c..a737ae1a3f 100644 --- a/src/licensedcode/data/rules/mit_985.RULE +++ b/src/licensedcode/data/rules/mit_985.RULE @@ -5,4 +5,4 @@ relevance: 100 --- ## License - is licensed under the [MIT License](https:///LICENSE). \ No newline at end of file + is {{licensed under the [MIT}} License](https:///LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_986.RULE b/src/licensedcode/data/rules/mit_986.RULE index ce3d785abf..09b48a8799 100644 --- a/src/licensedcode/data/rules/mit_986.RULE +++ b/src/licensedcode/data/rules/mit_986.RULE @@ -7,4 +7,4 @@ ignorable_urls: --- ## License - is licensed under the [MIT License](https://github.com/blob/master/LICENSE). \ No newline at end of file + is {{licensed under the [MIT}} License](https://github.com/blob/master/LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_987.RULE b/src/licensedcode/data/rules/mit_987.RULE index fc1cad9251..154242fa96 100644 --- a/src/licensedcode/data/rules/mit_987.RULE +++ b/src/licensedcode/data/rules/mit_987.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -licensed under the MIT "expat" license (https://opensource.org/licenses/MIT) \ No newline at end of file +{{licensed under the MIT}} "expat" license (https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_988.RULE b/src/licensedcode/data/rules/mit_988.RULE index 6d4a3802c3..4368a74bd3 100644 --- a/src/licensedcode/data/rules/mit_988.RULE +++ b/src/licensedcode/data/rules/mit_988.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -library is licensed under the MIT "expat" license (http://opensource.org/licenses/MIT) \ No newline at end of file +library is {{licensed under the MIT}} "expat" license (http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_989.RULE b/src/licensedcode/data/rules/mit_989.RULE index c46d7ebf1c..697c2c3ee3 100644 --- a/src/licensedcode/data/rules/mit_989.RULE +++ b/src/licensedcode/data/rules/mit_989.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -is licensed under the MIT "expat" license (http://opensource.org/licenses/MIT) \ No newline at end of file +is {{licensed under the MIT}} "expat" license (http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_99.RULE b/src/licensedcode/data/rules/mit_99.RULE index 61d49e2576..7ae6371043 100644 --- a/src/licensedcode/data/rules/mit_99.RULE +++ b/src/licensedcode/data/rules/mit_99.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -# This software is released as open source software under the "MIT" license: \ No newline at end of file +# This software is released as open source software {{under the "MIT" license}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_990.RULE b/src/licensedcode/data/rules/mit_990.RULE index 2e5e709eeb..0a6afa5182 100644 --- a/src/licensedcode/data/rules/mit_990.RULE +++ b/src/licensedcode/data/rules/mit_990.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -licensed under the MIT "expat" license (http://opensource.org/licenses/MIT) \ No newline at end of file +{{licensed under the MIT}} "expat" license (http://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_991.RULE b/src/licensedcode/data/rules/mit_991.RULE index a45946a391..8d6a26378a 100644 --- a/src/licensedcode/data/rules/mit_991.RULE +++ b/src/licensedcode/data/rules/mit_991.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 95 --- -Changed license from BSD to MIT style. \ No newline at end of file +Changed license from BSD to {{MIT style}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_992.RULE b/src/licensedcode/data/rules/mit_992.RULE index a8e264ffe3..29ffe6b22a 100644 --- a/src/licensedcode/data/rules/mit_992.RULE +++ b/src/licensedcode/data/rules/mit_992.RULE @@ -8,7 +8,7 @@ ignorable_urls: osi-certified osi certified Lua is free software distributed under the terms of the -http://www.opensource.org/licenses/mit-license.html MIT license +http://www.opensource.org/licenses/mit-license.html {{MIT license}} reproduced below; it may be used for any purpose, including commercial purposes, at absolutely no cost without having to ask us. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_993.RULE b/src/licensedcode/data/rules/mit_993.RULE index 773d7b9a1b..06d1989eed 100644 --- a/src/licensedcode/data/rules/mit_993.RULE +++ b/src/licensedcode/data/rules/mit_993.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -under an MIT LICENSE +under an {{MIT LICENSE - MIT Compiled License \ No newline at end of file + MIT}} Compiled License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_994.RULE b/src/licensedcode/data/rules/mit_994.RULE index ee45dbb207..298bca72db 100644 --- a/src/licensedcode/data/rules/mit_994.RULE +++ b/src/licensedcode/data/rules/mit_994.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -directories are made available under an MIT license \ No newline at end of file +directories are made available under an {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_995.RULE b/src/licensedcode/data/rules/mit_995.RULE index 6f9509225b..47ee536324 100644 --- a/src/licensedcode/data/rules/mit_995.RULE +++ b/src/licensedcode/data/rules/mit_995.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -made available under an MIT license \ No newline at end of file +made available under an {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_996.RULE b/src/licensedcode/data/rules/mit_996.RULE index b0ab36c834..6c34b05016 100644 --- a/src/licensedcode/data/rules/mit_996.RULE +++ b/src/licensedcode/data/rules/mit_996.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under an MIT license \ No newline at end of file +under an {{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_997.RULE b/src/licensedcode/data/rules/mit_997.RULE index 25bb3ee702..cceb887d03 100644 --- a/src/licensedcode/data/rules/mit_997.RULE +++ b/src/licensedcode/data/rules/mit_997.RULE @@ -6,6 +6,6 @@ referenced_filenames: - LICENSE --- -License +{{License -MIT. See [LICENSE](LICENSE) for more information. \ No newline at end of file +MIT}}. See [LICENSE](LICENSE) for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_998.RULE b/src/licensedcode/data/rules/mit_998.RULE index a548dc48a9..1d27a6ba16 100644 --- a/src/licensedcode/data/rules/mit_998.RULE +++ b/src/licensedcode/data/rules/mit_998.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -published under the X11/MIT License. \ No newline at end of file +published under the {{X11/MIT License}}. diff --git a/src/licensedcode/data/rules/mit_999.RULE b/src/licensedcode/data/rules/mit_999.RULE index 2748288de0..05b09b6415 100644 --- a/src/licensedcode/data/rules/mit_999.RULE +++ b/src/licensedcode/data/rules/mit_999.RULE @@ -5,4 +5,4 @@ relevance: 100 --- code-base (include source and compiled packages) are distributed -under the open source MIT license as described below. \ No newline at end of file +under the open source {{MIT license}} as described below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_an2.RULE b/src/licensedcode/data/rules/mit_an2.RULE index 54b7443986..f5e91ad4d6 100644 --- a/src/licensedcode/data/rules/mit_an2.RULE +++ b/src/licensedcode/data/rules/mit_an2.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://github.com/jsforce/jsforce/blob/master/LICENSE --- -Code licensed under https://github.com/jsforce/jsforce/blob/master/LICENSE">the MIT License \ No newline at end of file +Code licensed under https://github.com/jsforce/jsforce/blob/master/LICENSE">{{the MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_atomic.RULE b/src/licensedcode/data/rules/mit_atomic.RULE index 6a42a12243..24eb10f9f1 100644 --- a/src/licensedcode/data/rules/mit_atomic.RULE +++ b/src/licensedcode/data/rules/mit_atomic.RULE @@ -8,4 +8,4 @@ referenced_filenames: License -Licensed under the MIT, see LICENSE. \ No newline at end of file +{{Licensed under the MIT}}, see LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_augur.RULE b/src/licensedcode/data/rules/mit_augur.RULE index 7fc9dc18f6..7ae94f7756 100644 --- a/src/licensedcode/data/rules/mit_augur.RULE +++ b/src/licensedcode/data/rules/mit_augur.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -is free software: you can redistribute it and/or modify it under the terms of the MIT License as published by the Open Source Initiative. See the file LICENSE for more details. \ No newline at end of file +is free software: you can redistribute it and/or modify it under the terms of {{the MIT License}} as published by the Open Source Initiative. See the file LICENSE for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_by_request.RULE b/src/licensedcode/data/rules/mit_by_request.RULE index 57aa10b7cd..4649f5416a 100644 --- a/src/licensedcode/data/rules/mit_by_request.RULE +++ b/src/licensedcode/data/rules/mit_by_request.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under MIT by request to the author \ No newline at end of file +{{licensed under MIT}} by request to the author \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_choice_from_mit_or_gpl-2.0_1.RULE b/src/licensedcode/data/rules/mit_choice_from_mit_or_gpl-2.0_1.RULE index 857a4b11e1..8800ec39a6 100644 --- a/src/licensedcode/data/rules/mit_choice_from_mit_or_gpl-2.0_1.RULE +++ b/src/licensedcode/data/rules/mit_choice_from_mit_or_gpl-2.0_1.RULE @@ -3,5 +3,5 @@ license_expression: mit is_license_notice: yes --- -To the extend files may be licensed under MIT or GPL v2, in this context MIT has been chosen. +To the extend files may be {{licensed under MIT}} or GPL v2, in this context MIT has been chosen. This shall not restrict the freedom of future contributors to choose either MIT or GPL v2. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_dist.RULE b/src/licensedcode/data/rules/mit_dist.RULE index 90b1c00082..c326fbe74e 100644 --- a/src/licensedcode/data/rules/mit_dist.RULE +++ b/src/licensedcode/data/rules/mit_dist.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Distributed under the terms of MIT License. \ No newline at end of file +Distributed under the terms of {{MIT License}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_doctrine.RULE b/src/licensedcode/data/rules/mit_doctrine.RULE index 23d7297022..667ca226c1 100644 --- a/src/licensedcode/data/rules/mit_doctrine.RULE +++ b/src/licensedcode/data/rules/mit_doctrine.RULE @@ -19,4 +19,4 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. This software consists of voluntary contributions made by many individuals -and is licensed under the MIT license. \ No newline at end of file +and is {{licensed under the MIT}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_file.RULE b/src/licensedcode/data/rules/mit_file.RULE index 37738eea3f..6b7fc164e1 100644 --- a/src/licensedcode/data/rules/mit_file.RULE +++ b/src/licensedcode/data/rules/mit_file.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -is released under the terms of the MIT license. Full details in LICENSE file. \ No newline at end of file +is released under the terms of {{the MIT license}}. Full details in LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_file2.RULE b/src/licensedcode/data/rules/mit_file2.RULE index 0afb02c452..55c1776e9a 100644 --- a/src/licensedcode/data/rules/mit_file2.RULE +++ b/src/licensedcode/data/rules/mit_file2.RULE @@ -7,4 +7,4 @@ referenced_filenames: --- license -is released under the terms of the MIT license. Full details in LICENSE file. \ No newline at end of file +is released under the terms of {{the MIT license}}. Full details in LICENSE file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_fluendo.RULE b/src/licensedcode/data/rules/mit_fluendo.RULE index 4d5a635912..68be342508 100644 --- a/src/licensedcode/data/rules/mit_fluendo.RULE +++ b/src/licensedcode/data/rules/mit_fluendo.RULE @@ -6,4 +6,4 @@ relevance: 100 License: -Unless otherwise indicated, Source Code is licensed under MIT license. \ No newline at end of file +Unless otherwise indicated, Source Code is {{licensed under MIT}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_fluendo1.RULE b/src/licensedcode/data/rules/mit_fluendo1.RULE index 7df23836da..9697f59b04 100644 --- a/src/licensedcode/data/rules/mit_fluendo1.RULE +++ b/src/licensedcode/data/rules/mit_fluendo1.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Unless otherwise indicated, Source Code is licensed under MIT license. \ No newline at end of file +Unless otherwise indicated, Source Code is {{licensed under MIT}} license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_fluendo2.RULE b/src/licensedcode/data/rules/mit_fluendo2.RULE index 5762fb56d2..64b35f573f 100644 --- a/src/licensedcode/data/rules/mit_fluendo2.RULE +++ b/src/licensedcode/data/rules/mit_fluendo2.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -Unless otherwise indicated, Source Code is licensed under MIT license. See -further explanation below, under "MIT license Statements \ No newline at end of file +Unless otherwise indicated, Source Code is {{licensed under MIT}} license. See +further explanation below, {{under "MIT license}} Statements \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_fluendo4.RULE b/src/licensedcode/data/rules/mit_fluendo4.RULE index ed5abf0671..93f2d9508e 100644 --- a/src/licensedcode/data/rules/mit_fluendo4.RULE +++ b/src/licensedcode/data/rules/mit_fluendo4.RULE @@ -18,13 +18,13 @@ Intel Performance Primitives library source code decoder/mp3-ipp.h decoder/mp3-ipp.c -MIT license Statements for Fluendo's mp3 plug-in Source Code +{{MIT license}} Statements for Fluendo's mp3 plug-in Source Code ------------------------------------------------------------ -Fluendo's mp3 software Source Code (the "Source Code") is licensed under the -MIT license provisions. +Fluendo's mp3 software Source Code (the "Source Code") is {{licensed under the +MIT}} license provisions. -The MIT license is an open source license that permits the User to operate and +{{The MIT license}} is an open source license that permits the User to operate and use in many forms the Source Code, which would be governed under its regulations. @@ -32,10 +32,10 @@ The purpose of this note is to clarify the intellectual property rights granted over the Source Code by Fluendo, as well as other legal issues that concern your use of it. -MIT license contents and provisions +{{MIT license}} contents and provisions ----------------------------------- -The MIT license allows you to do the following things with the Source Code: +{{The MIT license}} allows you to do the following things with the Source Code: - Copy and use the Source Code alone or jointly with other code for any purposes. @@ -45,27 +45,27 @@ The MIT license allows you to do the following things with the Source Code: limits. - Modifying the Source Code for developing the plug-in or for implementing the - plug-in in other applications for any purposes. The MIT License does not + plug-in in other applications for any purposes. {{The MIT License}} does not require you to share these modifications with anyone. - Publish, distribute, sublicense and sell copies of the Source Code to third parties. - Permit anyone to whom the Source Code is licensed to enjoy the rights above - subject to the MIT license provisions. + subject to {{the MIT license}} provisions. -By licensing this Source Code under the MIT License, Fluendo is offering to the +By licensing this Source Code {{under the MIT License}}, Fluendo is offering to the community the rights set out above without restriction and without any obligation for the User of the Source Code to release his/her modifications back to the community. Anyone operating with the Source Code released from -Fluendo must grant the same MIT license rights to the community, except for any +Fluendo must grant the same {{MIT license}} rights to the community, except for any modifications operated on the Source Code which can be granted under a different license (even a proprietary license). All these rights granted to the User for the Source Code hold a limitation which is to include MIT permission notice and the following copyright notice: -"Copyright 2005 Fluendo, S.L. This Source Code is licensed under MIT license -and the explanations attached in MIT License Statements". These notices shall +"Copyright 2005 Fluendo, S.L. This Source Code is {{licensed under MIT}} license +and the explanations attached in {{MIT License}} Statements". These notices shall be included in all copies of the Source Code or in substantial parts of the Source Code which may be released separately or with modifications. @@ -89,13 +89,13 @@ The patent license granted to Fluendo only covers Fluendo's own Software and Source Code activities. In any case, this software license does not allow you to redistribute or copy complete, ready to use mp3 software decoder binaries made from the Source Code as made available by Fluendo. You can of course -distribute binaries you make yourself under any terms allowed by the MIT -license and whatever necessary rights you have or have acquired according to +distribute binaries you make yourself under any terms allowed by {{the MIT +license}} and whatever necessary rights you have or have acquired according to applicable patent regulations. As Fluendo can not assure that any of the activities you undertake do not infringe any patents or other industrial or intellectual property rights, Fluendo hereby disclaims any liability for any patent infringement that may be claimed to you or to any other person from any legitimate right's owner, as -stated in MIT license. So it is your responsibility to get information and to +stated in {{MIT license}}. So it is your responsibility to get information and to acquire the necessary patent licenses to undertake your activities legally. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_fr_1.RULE b/src/licensedcode/data/rules/mit_fr_1.RULE index 4e2a0228f3..f4a5c1751b 100644 --- a/src/licensedcode/data/rules/mit_fr_1.RULE +++ b/src/licensedcode/data/rules/mit_fr_1.RULE @@ -6,4 +6,4 @@ relevance: 100 notes: https://github.com/GouvernementFR/dsfr/blob/a734e4093658f1eae8bc1757652cb967604ad219/LICENSE.md --- -placé sous licence MIT License \ No newline at end of file +placé sous licence {{MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_freely.RULE b/src/licensedcode/data/rules/mit_freely.RULE index 2fbf18b7df..dc66917cee 100644 --- a/src/licensedcode/data/rules/mit_freely.RULE +++ b/src/licensedcode/data/rules/mit_freely.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -freely distributable under the terms of the MIT license \ No newline at end of file +freely distributable under the terms of {{the MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_ibm2.RULE b/src/licensedcode/data/rules/mit_ibm2.RULE index 8d64ae710a..ef667c32cb 100644 --- a/src/licensedcode/data/rules/mit_ibm2.RULE +++ b/src/licensedcode/data/rules/mit_ibm2.RULE @@ -4,8 +4,8 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the MIT License, full text below. +This project is {{licensed under the MIT}} License, full text below. -------- -MIT license \ No newline at end of file +{{MIT license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_ibm3.RULE b/src/licensedcode/data/rules/mit_ibm3.RULE index a15f3f1f94..546f0d48e3 100644 --- a/src/licensedcode/data/rules/mit_ibm3.RULE +++ b/src/licensedcode/data/rules/mit_ibm3.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This project is licensed under the MIT License, full text below. \ No newline at end of file +This project is {{licensed under the MIT}} License, full text below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_k.RULE b/src/licensedcode/data/rules/mit_k.RULE index 926164e4eb..64fbed7dde 100644 --- a/src/licensedcode/data/rules/mit_k.RULE +++ b/src/licensedcode/data/rules/mit_k.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -# This file is part of which is licensed under the MIT. \ No newline at end of file +# This file is part of which is {{licensed under the MIT}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_license.RULE b/src/licensedcode/data/rules/mit_license.RULE index 9e572e6768..912f853696 100644 --- a/src/licensedcode/data/rules/mit_license.RULE +++ b/src/licensedcode/data/rules/mit_license.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -license: MIT License, see LICENSE for more details \ No newline at end of file +license: {{MIT License}}, see LICENSE for more details \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_licensed2.RULE b/src/licensedcode/data/rules/mit_licensed2.RULE index a64f0fc79a..16f41e2970 100644 --- a/src/licensedcode/data/rules/mit_licensed2.RULE +++ b/src/licensedcode/data/rules/mit_licensed2.RULE @@ -8,4 +8,4 @@ ignorable_urls: ## License -[MIT License](https://opensource.org/licenses/MIT) \ No newline at end of file +[{{MIT License}}](https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_not_apache-2.0.RULE b/src/licensedcode/data/rules/mit_not_apache-2.0.RULE index b186f5f14d..f39dfc73f2 100644 --- a/src/licensedcode/data/rules/mit_not_apache-2.0.RULE +++ b/src/licensedcode/data/rules/mit_not_apache-2.0.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://opensource.org/licenses/MIT --- -Licensed under the MIT License (the "License"); you may not use this file except +{{Licensed under the MIT}} License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://opensource.org/licenses/MIT diff --git a/src/licensedcode/data/rules/mit_required_phrase_1.RULE b/src/licensedcode/data/rules/mit_required_phrase_1.RULE new file mode 100644 index 0000000000..6250041a87 --- /dev/null +++ b/src/licensedcode/data/rules/mit_required_phrase_1.RULE @@ -0,0 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +MIT-style license: The MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_required_phrase_2.RULE b/src/licensedcode/data/rules/mit_required_phrase_2.RULE new file mode 100644 index 0000000000..019dcf8999 --- /dev/null +++ b/src/licensedcode/data/rules/mit_required_phrase_2.RULE @@ -0,0 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +MIT_License/MIT License with Disclaimer \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_required_phrase_3.RULE b/src/licensedcode/data/rules/mit_required_phrase_3.RULE new file mode 100644 index 0000000000..3740cca289 --- /dev/null +++ b/src/licensedcode/data/rules/mit_required_phrase_3.RULE @@ -0,0 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +MIT-style license: MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_required_phrase_4.RULE b/src/licensedcode/data/rules/mit_required_phrase_4.RULE new file mode 100644 index 0000000000..5f6d837ee0 --- /dev/null +++ b/src/licensedcode/data/rules/mit_required_phrase_4.RULE @@ -0,0 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +X/MIT style \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_required_phrase_5.RULE b/src/licensedcode/data/rules/mit_required_phrase_5.RULE new file mode 100644 index 0000000000..5a0a0b91f4 --- /dev/null +++ b/src/licensedcode/data/rules/mit_required_phrase_5.RULE @@ -0,0 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +httpss://opensource.org/licenses/MIT \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_required_phrase_6.RULE b/src/licensedcode/data/rules/mit_required_phrase_6.RULE new file mode 100644 index 0000000000..fc0eb740f9 --- /dev/null +++ b/src/licensedcode/data/rules/mit_required_phrase_6.RULE @@ -0,0 +1,10 @@ +--- +license_expression: mit +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +ignorable_urls: + - http://img.shields.io/badge/license-MIT-blue.svg +--- + +http://img.shields.io/badge/license-MIT-blue.svg \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_required_phrase_7.RULE b/src/licensedcode/data/rules/mit_required_phrase_7.RULE new file mode 100644 index 0000000000..c4c3bc16da --- /dev/null +++ b/src/licensedcode/data/rules/mit_required_phrase_7.RULE @@ -0,0 +1,8 @@ +--- +license_expression: mit +is_license_reference: yes +is_required_phrase: yes +relevance: 100 +--- + +X11/MIT License \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_under_1.RULE b/src/licensedcode/data/rules/mit_under_1.RULE index c63b5bd26b..ba367ca914 100644 --- a/src/licensedcode/data/rules/mit_under_1.RULE +++ b/src/licensedcode/data/rules/mit_under_1.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This software is released by under the MIT license. \ No newline at end of file +This software is released by {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_under_2.RULE b/src/licensedcode/data/rules/mit_under_2.RULE index 2be4e66138..3bb4fa0020 100644 --- a/src/licensedcode/data/rules/mit_under_2.RULE +++ b/src/licensedcode/data/rules/mit_under_2.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This software is released under the MIT license. \ No newline at end of file +This software is released {{under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mit_url.RULE b/src/licensedcode/data/rules/mit_url.RULE index cdf988e637..ab72a66ea9 100644 --- a/src/licensedcode/data/rules/mit_url.RULE +++ b/src/licensedcode/data/rules/mit_url.RULE @@ -1,9 +1,8 @@ --- license_expression: mit is_license_reference: yes +is_required_phrase: yes relevance: 100 -ignorable_urls: - - http://opensource.org/licenses/mit-license.php --- -http://opensource.org/licenses/mit-license.php \ No newline at end of file +http://opensource->org/licenses/mit-license->php diff --git a/src/licensedcode/data/rules/mit_url_badge.RULE b/src/licensedcode/data/rules/mit_url_badge.RULE index 0af7a35743..aa510246ff 100644 --- a/src/licensedcode/data/rules/mit_url_badge.RULE +++ b/src/licensedcode/data/rules/mit_url_badge.RULE @@ -7,4 +7,4 @@ ignorable_urls: - https://opensource.org/licenses/MIT --- -[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) \ No newline at end of file +[![{{License: MIT}}](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.0_15.RULE b/src/licensedcode/data/rules/mpl-1.0_15.RULE index fa46d03585..05d3949dbe 100644 --- a/src/licensedcode/data/rules/mpl-1.0_15.RULE +++ b/src/licensedcode/data/rules/mpl-1.0_15.RULE @@ -1,7 +1,10 @@ --- license_expression: mpl-1.0 is_license_reference: yes -relevance: 100 +skip_for_required_phrase_generation: yes +relevance: 99 +notes: this could be MPL 1.1 or 2.0. The 1.0 and up allow upgrade to newer versions So 1.0 this + is always correct --- -Mozilla Public License \ No newline at end of file +{{ Mozilla Public License }} diff --git a/src/licensedcode/data/rules/mpl-1.1_1.RULE b/src/licensedcode/data/rules/mpl-1.1_1.RULE index 2c7d9064f5..e2564cf5a4 100644 --- a/src/licensedcode/data/rules/mpl-1.1_1.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_1.RULE @@ -5,9 +5,9 @@ ignorable_urls: - http://www.mozilla.org/MPL/ --- -MPL 1.1 +{{MPL 1.1}} -The contents of this file are subject to the Mozilla Public License +The contents of this file are subject to the {{Mozilla Public License}} Version 11 \(the ("License")|("MPL")\); you may not use this file except in compliance with the (License)|(MPL) You may obtain a copy of the (License)|(MPL) at http://www.mozilla.org/MPL/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_14.RULE b/src/licensedcode/data/rules/mpl-1.1_14.RULE index 58b877574e..fefe1c2a90 100644 --- a/src/licensedcode/data/rules/mpl-1.1_14.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_14.RULE @@ -6,14 +6,14 @@ ignorable_urls: - http://www.mozilla.org/MPL/ --- -licensed under the Mozilla Public License 1.1 +{{licensed under the Mozilla Public License}} 1.1 Authors and Copyright are as described below: The Initial Developer of the Original Code is - MOZILLA PUBLIC LICENSE - Version 1.1 + {{MOZILLA PUBLIC LICENSE + Version 1.1}} --------------- @@ -311,7 +311,7 @@ Authors and Copyright are as described below: "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license - contains terms which differ from the Mozilla Public License and + contains terms which differ from the {{Mozilla Public License}} and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of @@ -446,10 +446,10 @@ Authors and Copyright are as described below: Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. -EXHIBIT A -Mozilla Public License. +EXHIBIT A -{{Mozilla Public License}}. - ``The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in + ``The contents of this file are subject to the {{Mozilla Public License + Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_15.RULE b/src/licensedcode/data/rules/mpl-1.1_15.RULE index b093ac1730..2a94344850 100644 --- a/src/licensedcode/data/rules/mpl-1.1_15.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_15.RULE @@ -4,7 +4,7 @@ is_license_text: yes notes: MPL 1.1 alternative --- -Mozilla Public License Version 1.1 +{{Mozilla Public License Version 1.1}} 1. Definitions. 1.0.1. "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. @@ -97,7 +97,7 @@ Netscape Communications Corporation ("Netscape") may publish revised and/or new Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. 6.3. Derivative Works -If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) +If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the {{Mozilla Public License}} and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) 7. Disclaimer of warranty Covered code is provided under this license on an "as is" basis, without warranty of any kind, either expressed or implied, including, without limitation, warranties that the covered code is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the covered code is with you. Should any covered code prove defective in any respect, you (not the initial developer or any other contributor) assume the cost of any necessary servicing, repair or correction. This disclaimer of warranty constitutes an essential part of this license. No use of any covered code is authorized hereunder except under this disclaimer. diff --git a/src/licensedcode/data/rules/mpl-1.1_16.RULE b/src/licensedcode/data/rules/mpl-1.1_16.RULE index 4e8937968b..81f1b9bd54 100644 --- a/src/licensedcode/data/rules/mpl-1.1_16.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_16.RULE @@ -1,8 +1,9 @@ --- license_expression: mpl-1.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 --- -Mozilla Public License version 1.1 \ No newline at end of file +{{Mozilla Public License}} version 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_17.RULE b/src/licensedcode/data/rules/mpl-1.1_17.RULE index dd9c556f2d..e1456685f4 100644 --- a/src/licensedcode/data/rules/mpl-1.1_17.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_17.RULE @@ -1,7 +1,8 @@ --- license_expression: mpl-1.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Mozilla Public License 1.1 \ No newline at end of file +{{Mozilla Public License}} 1.1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_18.RULE b/src/licensedcode/data/rules/mpl-1.1_18.RULE index dd7540b9c5..1da0658408 100644 --- a/src/licensedcode/data/rules/mpl-1.1_18.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_18.RULE @@ -5,8 +5,8 @@ ignorable_urls: - http://www.mozilla.org/MPL/ --- -MOZILLA PUBLIC LICENSE - Version 1.1 +{{MOZILLA PUBLIC LICENSE + Version 1.1}} --------------- @@ -304,7 +304,7 @@ MOZILLA PUBLIC LICENSE "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license - contains terms which differ from the Mozilla Public License and + contains terms which differ from the {{Mozilla Public License}} and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of @@ -439,10 +439,10 @@ MOZILLA PUBLIC LICENSE Your choice of the MPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. -EXHIBIT A -Mozilla Public License. +EXHIBIT A -{{Mozilla Public License}}. - ``The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in + ``The contents of this file are subject to the {{Mozilla Public License + Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_19.RULE b/src/licensedcode/data/rules/mpl-1.1_19.RULE index ac6a6b6e86..7e6fb80a37 100644 --- a/src/licensedcode/data/rules/mpl-1.1_19.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_19.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.mozilla.org/MPL/ --- -The contents of this file are subject to the Mozilla Public License Version 1.1 +The contents of this file are subject to the {{Mozilla Public License Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_2.RULE b/src/licensedcode/data/rules/mpl-1.1_2.RULE index 009c4c043f..9a7f8f736a 100644 --- a/src/licensedcode/data/rules/mpl-1.1_2.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_2.RULE @@ -5,8 +5,8 @@ ignorable_urls: - http://www.mozilla.org/MPL/ --- -MOZILLA PUBLIC LICENSE - Version 1.1 +{{MOZILLA PUBLIC LICENSE + Version 1.1}} --------------- @@ -304,7 +304,7 @@ MOZILLA PUBLIC LICENSE "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license - contains terms which differ from the Mozilla Public License and + contains terms which differ from the {{Mozilla Public License}} and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of @@ -439,10 +439,10 @@ MOZILLA PUBLIC LICENSE Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. -EXHIBIT A -Mozilla Public License. +EXHIBIT A -{{Mozilla Public License}}. - ``The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in + ``The contents of this file are subject to the {{Mozilla Public License + Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_20.RULE b/src/licensedcode/data/rules/mpl-1.1_20.RULE index 4445955659..d7132207e2 100644 --- a/src/licensedcode/data/rules/mpl-1.1_20.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_20.RULE @@ -7,8 +7,8 @@ ignorable_urls: The MPL v1.1: - The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in + The contents of this file are subject to the {{Mozilla Public License + Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at Software distributed under the License is distributed on an "AS IS" @@ -23,8 +23,8 @@ The MPL v1.1: Portions created by and are Copyright (C) - MOZILLA PUBLIC LICENSE - Version 1.1 + {{MOZILLA PUBLIC LICENSE + Version 1.1}} --------------- @@ -322,7 +322,7 @@ The MPL v1.1: "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license - contains terms which differ from the Mozilla Public License and + contains terms which differ from the {{Mozilla Public License}} and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of @@ -457,10 +457,10 @@ The MPL v1.1: Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. -EXHIBIT A - Mozilla Public License. +EXHIBIT A - {{Mozilla Public License}}. - ``The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in + ``The contents of this file are subject to the {{Mozilla Public License + Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_21.RULE b/src/licensedcode/data/rules/mpl-1.1_21.RULE index 62947e4d51..475eeb6bca 100644 --- a/src/licensedcode/data/rules/mpl-1.1_21.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_21.RULE @@ -8,8 +8,8 @@ ignorable_urls: The MPL License --------------------------- -MOZILLA PUBLIC LICENSE -Version 1.1 +{{MOZILLA PUBLIC LICENSE +Version 1.1}} 1. Definitions. @@ -305,7 +305,7 @@ Version 1.1 "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license - contains terms which differ from the Mozilla Public License and + contains terms which differ from the {{Mozilla Public License}} and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of @@ -440,10 +440,10 @@ Version 1.1 Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. -EXHIBIT A -Mozilla Public License. +EXHIBIT A -{{Mozilla Public License}}. - ``The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in + ``The contents of this file are subject to the {{Mozilla Public License + Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_22.RULE b/src/licensedcode/data/rules/mpl-1.1_22.RULE index a5ae56dbbd..3dbeb8ac0e 100644 --- a/src/licensedcode/data/rules/mpl-1.1_22.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_22.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.mozilla.org/MPL/MPL-1.1.html --- -Mozilla Public License Version 1.1 (available at "http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file +{{Mozilla Public License Version 1.1}} (available at "http://www.mozilla.org/MPL/MPL-1.1.html">http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_23.RULE b/src/licensedcode/data/rules/mpl-1.1_23.RULE index 0e526e7f7e..a509101e4d 100644 --- a/src/licensedcode/data/rules/mpl-1.1_23.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_23.RULE @@ -8,8 +8,8 @@ ignorable_urls: The MPL v1.1: - The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in + The contents of this file are subject to the {{Mozilla Public License + Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.rabbitmq.com/mpl.html diff --git a/src/licensedcode/data/rules/mpl-1.1_24.RULE b/src/licensedcode/data/rules/mpl-1.1_24.RULE index b9e643acc9..329881b72f 100644 --- a/src/licensedcode/data/rules/mpl-1.1_24.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_24.RULE @@ -1,7 +1,8 @@ --- license_expression: mpl-1.1 is_license_tag: yes +is_required_phrase: yes relevance: 100 --- -License: MPL-1.1 \ No newline at end of file +License: {{MPL-1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_25.RULE b/src/licensedcode/data/rules/mpl-1.1_25.RULE index ae8b8a60af..73c6362386 100644 --- a/src/licensedcode/data/rules/mpl-1.1_25.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_25.RULE @@ -6,10 +6,10 @@ ignorable_urls: --- * ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1 + * Version: {{MPL 1.1}} * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with + * The contents of this file are subject to the {{Mozilla Public License Version + * 1.1}} (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * diff --git a/src/licensedcode/data/rules/mpl-1.1_26.RULE b/src/licensedcode/data/rules/mpl-1.1_26.RULE index 3edf9e9c33..5dbaed4052 100644 --- a/src/licensedcode/data/rules/mpl-1.1_26.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_26.RULE @@ -6,4 +6,4 @@ notes: No version is provided and the MPL 1.1 is as good a candidate as any othe with the GPL there is no notion of an MPL without version. --- -is licensed under the MPL 1.1 \ No newline at end of file +is {{licensed under the MPL 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_28.RULE b/src/licensedcode/data/rules/mpl-1.1_28.RULE index 07c592ea73..3a03f86eb9 100644 --- a/src/licensedcode/data/rules/mpl-1.1_28.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_28.RULE @@ -5,8 +5,8 @@ ignorable_urls: - http://www.mozilla.org/MPL/ --- -MOZILLA PUBLIC LICENSE -Version 1.1 +{{MOZILLA PUBLIC LICENSE +Version 1.1}} 1. Definitions. 1.0.1. "Commercial Use" means distribution or otherwise making the Covered Code @@ -235,7 +235,7 @@ License), You must (a) rename Your license so that the phrases ''Mozilla'', ''MOZILLAPL'', ''MOZPL'', ''Netscape'', "MPL", ''NPL'' or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of -the license contains terms which differ from the Mozilla Public License and +the license contains terms which differ from the {{Mozilla Public License}} and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) @@ -339,9 +339,9 @@ permits you to utilize portions of the Covered Code under Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. -EXHIBIT A -Mozilla Public License. -``The contents of this file are subject to the Mozilla Public License Version -1.1 (the "License"); you may not use this file except in compliance with the +EXHIBIT A -{{Mozilla Public License}}. +``The contents of this file are subject to the {{Mozilla Public License Version +1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, diff --git a/src/licensedcode/data/rules/mpl-1.1_29.RULE b/src/licensedcode/data/rules/mpl-1.1_29.RULE index d58e09916a..b89ede5b1e 100644 --- a/src/licensedcode/data/rules/mpl-1.1_29.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_29.RULE @@ -5,8 +5,8 @@ ignorable_urls: - http://www.mozilla.org/MPL/ --- -MOZILLA PUBLIC LICENSE - Version 1.1 +{{MOZILLA PUBLIC LICENSE + Version 1.1}} --------------- @@ -304,7 +304,7 @@ MOZILLA PUBLIC LICENSE "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license - contains terms which differ from the Mozilla Public License and + contains terms which differ from the {{Mozilla Public License}} and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of @@ -439,10 +439,10 @@ MOZILLA PUBLIC LICENSE Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. -EXHIBIT A - Mozilla Public License. +EXHIBIT A - {{Mozilla Public License}}. - ``The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in + ``The contents of this file are subject to the {{Mozilla Public License + Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_30.RULE b/src/licensedcode/data/rules/mpl-1.1_30.RULE index 199ee3ef0f..d5206c93b0 100644 --- a/src/licensedcode/data/rules/mpl-1.1_30.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_30.RULE @@ -5,8 +5,8 @@ ignorable_urls: - http://www.mozilla.org/MPL/ --- -MOZILLA PUBLIC LICENSE - Version 1.1 +{{MOZILLA PUBLIC LICENSE + Version 1.1}} --------------- @@ -304,7 +304,7 @@ MOZILLA PUBLIC LICENSE "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license - contains terms which differ from the Mozilla Public License and + contains terms which differ from the {{Mozilla Public License}} and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of @@ -439,10 +439,10 @@ MOZILLA PUBLIC LICENSE Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. -EXHIBIT A - Mozilla Public License. +EXHIBIT A - {{Mozilla Public License}}. - ``The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in + ``The contents of this file are subject to the {{Mozilla Public License + Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_31.RULE b/src/licensedcode/data/rules/mpl-1.1_31.RULE index 48e39f7f2b..07f21feb7b 100644 --- a/src/licensedcode/data/rules/mpl-1.1_31.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_31.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.mozilla.org/MPL/MPL-1.1.html --- -License: MPL 1.1 (http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file +{{License: MPL 1.1}} (http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_32.RULE b/src/licensedcode/data/rules/mpl-1.1_32.RULE index 533d83a5ff..44111c7496 100644 --- a/src/licensedcode/data/rules/mpl-1.1_32.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_32.RULE @@ -1,7 +1,8 @@ --- license_expression: mpl-1.1 is_license_reference: yes +is_required_phrase: yes relevance: 80 --- -MPL-1.1-style \ No newline at end of file +{{MPL-1.1}}-style \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_34.RULE b/src/licensedcode/data/rules/mpl-1.1_34.RULE index 64b0e34ca6..8a6be9c875 100644 --- a/src/licensedcode/data/rules/mpl-1.1_34.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_34.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://www.mozilla.org/MPL/ --- -this file is available under the Mozilla Public * -* License Version 1.1. You may obtain a copy of the License at * +this file is available under the {{Mozilla Public * +* License Version 1.1}}. You may obtain a copy of the License at * * http://www.mozilla.org/MPL/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_35.RULE b/src/licensedcode/data/rules/mpl-1.1_35.RULE index 1bd067a274..4f138b5765 100644 --- a/src/licensedcode/data/rules/mpl-1.1_35.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_35.RULE @@ -7,8 +7,8 @@ ignorable_urls: The MPL v1.1: - The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in + The contents of this file are subject to the {{Mozilla Public License + Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www. .com/mpl.html @@ -28,8 +28,8 @@ The MPL v1.1: Contributor(s): ______________________________________. - MOZILLA PUBLIC LICENSE - Version 1.1 + {{MOZILLA PUBLIC LICENSE + Version 1.1}} --------------- @@ -327,7 +327,7 @@ The MPL v1.1: "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license - contains terms which differ from the Mozilla Public License and + contains terms which differ from the {{Mozilla Public License}} and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of @@ -462,10 +462,10 @@ The MPL v1.1: Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. -EXHIBIT A - Mozilla Public License. +EXHIBIT A - {{Mozilla Public License}}. - ``The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in + ``The contents of this file are subject to the {{Mozilla Public License + Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_37.RULE b/src/licensedcode/data/rules/mpl-1.1_37.RULE index 0b292e8ee0..7db603fe19 100644 --- a/src/licensedcode/data/rules/mpl-1.1_37.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_37.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://opensource.org/licenses/mozilla1.1.php --- -The distribution is licensed under the Mozilla Public License. (http://opensource.org/licenses/mozilla1.0.php or http://opensource.org/licenses/mozilla1.1.php) \ No newline at end of file +The distribution is {{licensed under the Mozilla Public License}}. (http://opensource.org/licenses/mozilla1.0.php or http://opensource.org/licenses/mozilla1.1.php) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_39.RULE b/src/licensedcode/data/rules/mpl-1.1_39.RULE index 1bc5438757..9b5caab7b1 100644 --- a/src/licensedcode/data/rules/mpl-1.1_39.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_39.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.mozilla.org/MPL/ --- -MOZILLA PUBLIC LICENSE - Version 1.1 +{{MOZILLA PUBLIC LICENSE + Version 1.1}} --------------- @@ -305,7 +305,7 @@ MOZILLA PUBLIC LICENSE "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license - contains terms which differ from the Mozilla Public License and + contains terms which differ from the {{Mozilla Public License}} and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of @@ -440,10 +440,10 @@ MOZILLA PUBLIC LICENSE Your choice of the MPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. -EXHIBIT A -Mozilla Public License. +EXHIBIT A -{{Mozilla Public License}}. - ``The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in + ``The contents of this file are subject to the {{Mozilla Public License + Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_41.RULE b/src/licensedcode/data/rules/mpl-1.1_41.RULE index 77282f5227..202806bfdc 100644 --- a/src/licensedcode/data/rules/mpl-1.1_41.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_41.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.mozilla.org/media/MPL/1.1/index.txt --- -`MPL-1.1` - [Mozilla Public License Version 1.1](https://www.mozilla.org/media/MPL/1.1/index.txt) \ No newline at end of file +`{{MPL-1.1}}` - [{{Mozilla Public License Version 1.1}}](https://www.mozilla.org/media/MPL/1.1/index.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_42.RULE b/src/licensedcode/data/rules/mpl-1.1_42.RULE index 62d76be9df..44b32c2284 100644 --- a/src/licensedcode/data/rules/mpl-1.1_42.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_42.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -Mozilla Public License (MPL) 1.1 \ No newline at end of file +{{Mozilla Public License}} ({{MPL) 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_43.RULE b/src/licensedcode/data/rules/mpl-1.1_43.RULE index dc2e3e9b25..da2a2f1bf2 100644 --- a/src/licensedcode/data/rules/mpl-1.1_43.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_43.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Mozilla Public licence (MPL) 1.1 \ No newline at end of file +Mozilla Public licence ({{MPL) 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_44.RULE b/src/licensedcode/data/rules/mpl-1.1_44.RULE index ae20115248..92c5c92d1d 100644 --- a/src/licensedcode/data/rules/mpl-1.1_44.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_44.RULE @@ -6,8 +6,8 @@ ignorable_urls: - http://www.mozilla.org/MPL/ --- -The contents of this file are subject to the Mozilla Public License -Version 1.1 (the "License"); you may not use this file except in +The contents of this file are subject to the {{Mozilla Public License +Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_45.RULE b/src/licensedcode/data/rules/mpl-1.1_45.RULE index 082ffc3a29..07dff8b89f 100644 --- a/src/licensedcode/data/rules/mpl-1.1_45.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_45.RULE @@ -6,8 +6,8 @@ ignorable_urls: - https://www.mozilla.org/MPL/ --- -The contents of this file are subject to the Mozilla Public License -Version 1.1 (the "License"); you may not use this file except in +The contents of this file are subject to the {{Mozilla Public License +Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_46.RULE b/src/licensedcode/data/rules/mpl-1.1_46.RULE index 31dcac03ba..4164ca92c7 100644 --- a/src/licensedcode/data/rules/mpl-1.1_46.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_46.RULE @@ -13,4 +13,4 @@ ignorable_urls: - https://www.mozilla.org/MPL/MPL-1.1.html --- -Mozilla Public License Version 1.1 or later (the "MPL") https://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file +{{Mozilla Public License Version 1.1}} or later (the "MPL") https://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_47.RULE b/src/licensedcode/data/rules/mpl-1.1_47.RULE index 41668ef30b..176b875159 100644 --- a/src/licensedcode/data/rules/mpl-1.1_47.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_47.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE-MPL-RabbitMQ --- -licensed under the MPL 1.1. For the -MPL 1.1, please see LICENSE-MPL-RabbitMQ. \ No newline at end of file +{{licensed under the MPL 1.1}}. For the +{{MPL 1.1}}, please see LICENSE-MPL-RabbitMQ. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_48.RULE b/src/licensedcode/data/rules/mpl-1.1_48.RULE index 26b00fd417..9f00c52fe5 100644 --- a/src/licensedcode/data/rules/mpl-1.1_48.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_48.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.mozilla.org/MPL/MPL-1.1.html --- -The original Mozilla Public License 1.1 can be found at: +The original {{Mozilla Public License 1.1}} can be found at: http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_49.RULE b/src/licensedcode/data/rules/mpl-1.1_49.RULE index ba5eccafcf..621c15ed85 100644 --- a/src/licensedcode/data/rules/mpl-1.1_49.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_49.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://www.mozilla.org/MPL/MPL-1.1.html --- -Mozilla Public License 1.1 can be found at: +{{Mozilla Public License 1.1}} can be found at: http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_5.RULE b/src/licensedcode/data/rules/mpl-1.1_5.RULE index 51a82f00a5..2ebc5a8cd2 100644 --- a/src/licensedcode/data/rules/mpl-1.1_5.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_5.RULE @@ -7,4 +7,4 @@ ignorable_urls: - http://www.mozilla.org/MPL/MPL-1.1.html --- -MPL 1.1 http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file +{{MPL 1.1}} http://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_50.RULE b/src/licensedcode/data/rules/mpl-1.1_50.RULE index cbc75164e4..ef3507a8b4 100644 --- a/src/licensedcode/data/rules/mpl-1.1_50.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_50.RULE @@ -5,5 +5,5 @@ ignorable_urls: - https://www.mozilla.org/MPL/MPL-1.1.html --- -The original Mozilla Public License 1.1 can be found at: +The original {{Mozilla Public License 1.1}} can be found at: https://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_51.RULE b/src/licensedcode/data/rules/mpl-1.1_51.RULE index 92978fde5c..b6012cb64a 100644 --- a/src/licensedcode/data/rules/mpl-1.1_51.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_51.RULE @@ -5,5 +5,5 @@ ignorable_urls: - https://www.mozilla.org/MPL/MPL-1.1.html --- -Mozilla Public License 1.1 can be found at: +{{Mozilla Public License 1.1}} can be found at: https://www.mozilla.org/MPL/MPL-1.1.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_52.RULE b/src/licensedcode/data/rules/mpl-1.1_52.RULE index d4c15dcce0..aa633d0025 100644 --- a/src/licensedcode/data/rules/mpl-1.1_52.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_52.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: Mozilla Public License 1.1 \ No newline at end of file +name: {{Mozilla Public License 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_53.RULE b/src/licensedcode/data/rules/mpl-1.1_53.RULE index 7e364812c0..eb140eaaca 100644 --- a/src/licensedcode/data/rules/mpl-1.1_53.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_53.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -MPL-1.1 Mozilla Public License 1.1 \ No newline at end of file +{{MPL-1.1}} {{Mozilla Public License 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_54.RULE b/src/licensedcode/data/rules/mpl-1.1_54.RULE index 46ee3bb20c..faad151232 100644 --- a/src/licensedcode/data/rules/mpl-1.1_54.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_54.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Mozilla Public License 1.1 MPL-1.1 \ No newline at end of file +{{Mozilla Public License 1.1}} {{MPL-1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_55.RULE b/src/licensedcode/data/rules/mpl-1.1_55.RULE index c792e37216..4556ab725f 100644 --- a/src/licensedcode/data/rules/mpl-1.1_55.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_55.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: Mozilla Public License 1.1 \ No newline at end of file +license: {{Mozilla Public License 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_56.RULE b/src/licensedcode/data/rules/mpl-1.1_56.RULE index ad0c02981b..81f94e586b 100644 --- a/src/licensedcode/data/rules/mpl-1.1_56.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_56.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: MPL-1.1 \ No newline at end of file +licenseId: {{MPL-1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_57.RULE b/src/licensedcode/data/rules/mpl-1.1_57.RULE index 487064c168..31311099d1 100644 --- a/src/licensedcode/data/rules/mpl-1.1_57.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_57.RULE @@ -6,6 +6,6 @@ ignorable_urls: --- - Mozilla Public License Version 1.1 + {{Mozilla Public License Version 1.1}} https://www.mozilla.org/en-US/MPL/1.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_58.RULE b/src/licensedcode/data/rules/mpl-1.1_58.RULE index b37b5585d8..31194e0769 100644 --- a/src/licensedcode/data/rules/mpl-1.1_58.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_58.RULE @@ -5,5 +5,5 @@ ignorable_urls: - https://www.mozilla.org/en-US/MPL/1.1/ --- -Mozilla Public License Version 1.1 +{{Mozilla Public License Version 1.1}} https://www.mozilla.org/en-US/MPL/1.1/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_59.RULE b/src/licensedcode/data/rules/mpl-1.1_59.RULE index e93f4c4a1e..7149056edc 100644 --- a/src/licensedcode/data/rules/mpl-1.1_59.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_59.RULE @@ -3,4 +3,4 @@ license_expression: mpl-1.1 is_license_notice: yes --- -Rhino is licensed under the Mozilla Public License (MPL). See Mozilla Public License Version 1.1 for Rhino . \ No newline at end of file +Rhino is {{licensed under the Mozilla Public License}} (MPL). See {{Mozilla Public License Version 1.1}} for Rhino . \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_61.RULE b/src/licensedcode/data/rules/mpl-1.1_61.RULE index 5d2e4fe2c4..d07d40631a 100644 --- a/src/licensedcode/data/rules/mpl-1.1_61.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_61.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -opensource.org/licenses/MPL-1.1 \ No newline at end of file +opensource.org/licenses/{{MPL-1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_64.RULE b/src/licensedcode/data/rules/mpl-1.1_64.RULE index 45f6a0e584..56b0814453 100644 --- a/src/licensedcode/data/rules/mpl-1.1_64.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_64.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.mozilla.org/MPL/ --- -Mozilla Public License Version 1.1 +{{Mozilla Public License Version 1.1}} 1. Definitions. @@ -318,7 +318,7 @@ Mozilla Public License Version 1.1 any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which - differ from the Mozilla Public License and Netscape Public License. + differ from the {{Mozilla Public License}} and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) @@ -451,10 +451,10 @@ Mozilla Public License Version 1.1 Your choice of the MPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. -Exhibit A - Mozilla Public License. +Exhibit A - {{Mozilla Public License}}. -"The contents of this file are subject to the Mozilla Public License -Version 1.1 (the "License"); you may not use this file except in +"The contents of this file are subject to the {{Mozilla Public License +Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_65.RULE b/src/licensedcode/data/rules/mpl-1.1_65.RULE index 89638e3351..cdeddf2e57 100644 --- a/src/licensedcode/data/rules/mpl-1.1_65.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_65.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/MPL-1.1 \ No newline at end of file +licenses.nuget.org/{{MPL-1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_69.RULE b/src/licensedcode/data/rules/mpl-1.1_69.RULE index a817f2da55..266486bbcc 100644 --- a/src/licensedcode/data/rules/mpl-1.1_69.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_69.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License Mozilla Public License 1.1 (MPL 1.1) \ No newline at end of file +License {{Mozilla Public License 1.1}} ({{MPL 1.1}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_70.RULE b/src/licensedcode/data/rules/mpl-1.1_70.RULE index de6b8c4ec9..f86ff6791a 100644 --- a/src/licensedcode/data/rules/mpl-1.1_70.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_70.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.mozilla.org/MPL/MPL-1.1.html --- -Mozilla Public License 1.1 (MPL 1.1) (http://www.mozilla.org/MPL/MPL-1.1.html) \ No newline at end of file +{{Mozilla Public License 1.1}} ({{MPL 1.1}}) (http://www.mozilla.org/MPL/MPL-1.1.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_71.RULE b/src/licensedcode/data/rules/mpl-1.1_71.RULE index ffdb59e98e..630f3d27c5 100644 --- a/src/licensedcode/data/rules/mpl-1.1_71.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_71.RULE @@ -5,4 +5,4 @@ relevance: 100 --- - Mozilla Public License 1.1 (MPL 1.1) \ No newline at end of file + {{Mozilla Public License 1.1}} ({{MPL 1.1}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_72.RULE b/src/licensedcode/data/rules/mpl-1.1_72.RULE index 9f23cce85e..93b28ba4ae 100644 --- a/src/licensedcode/data/rules/mpl-1.1_72.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_72.RULE @@ -6,5 +6,5 @@ ignorable_urls: --- - Mozilla Public License 1.1 (MPL 1.1) + {{Mozilla Public License 1.1}} ({{MPL 1.1}}) (http://www.mozilla.org/MPL/MPL-1.1.html) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_73.RULE b/src/licensedcode/data/rules/mpl-1.1_73.RULE index 26b6faba02..2b5f9719c1 100644 --- a/src/licensedcode/data/rules/mpl-1.1_73.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_73.RULE @@ -5,7 +5,7 @@ ignorable_urls: - http://www.mozilla.org/MPL/ --- -Mozilla Public License Version 1.1 +{{Mozilla Public License Version 1.1}} 1. Definitions. 1.0.1. "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. 1.1. "Contributor" means each entity that creates or contributes to the creation of Modifications. @@ -59,7 +59,7 @@ Mozilla Public License Version 1.1 6.2. Effect of New Versions Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. 6.3. Derivative Works - If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) + If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the {{Mozilla Public License}} and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) 7. DISCLAIMER OF WARRANTY COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. 8. Termination @@ -79,8 +79,8 @@ Mozilla Public License Version 1.1 As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. 13. Multiple-licensed code Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the MPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. - Exhibit A - Mozilla Public License. - "The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ + Exhibit A - {{Mozilla Public License}}. + "The contents of this file are subject to the {{Mozilla Public License Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is ______________________________________. The Initial Developer of the Original Code is ________________________. diff --git a/src/licensedcode/data/rules/mpl-1.1_8.RULE b/src/licensedcode/data/rules/mpl-1.1_8.RULE index ca00bba75d..2119085b46 100644 --- a/src/licensedcode/data/rules/mpl-1.1_8.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_8.RULE @@ -6,6 +6,6 @@ minimum_coverage: 70 The MPL v1.1: - The contents of this file are subject to the Mozilla Public License - Version 1.1 (the "License"); you may not use this file except in + The contents of this file are subject to the {{Mozilla Public License + Version 1.1}} (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_9.RULE b/src/licensedcode/data/rules/mpl-1.1_9.RULE index 278da901ec..6d7ffc5af1 100644 --- a/src/licensedcode/data/rules/mpl-1.1_9.RULE +++ b/src/licensedcode/data/rules/mpl-1.1_9.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://www.mozilla.org/MPL/ --- -Mozilla Public License Version 1.1 +{{Mozilla Public License Version 1.1}} 1. Definitions. @@ -121,7 +121,7 @@ Once Covered Code has been published under a particular version of the License, 6.3. Derivative Works -If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) +If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the {{Mozilla Public License}} and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) 7. DISCLAIMER OF WARRANTY @@ -159,9 +159,9 @@ As between Initial Developer and the Contributors, each party is responsible for Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the MPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. -Exhibit A - Mozilla Public License. +Exhibit A - {{Mozilla Public License}}. -"The contents of this file are subject to the Mozilla Public License +"The contents of this file are subject to the {{Mozilla Public License}} Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ diff --git a/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_41.RULE b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_41.RULE new file mode 100644 index 0000000000..8640322401 --- /dev/null +++ b/src/licensedcode/data/rules/mpl-1.1_or_gpl-2.0-plus_or_lgpl-2.1-plus_41.RULE @@ -0,0 +1,45 @@ +--- +license_expression: mpl-1.1 OR gpl-2.0-plus OR lgpl-2.1-plus +is_license_notice: yes +ignorable_copyrights: + - Portions created by the Initial Developer are Copyright the Initial Developer +ignorable_holders: + - the Initial Developer +ignorable_urls: + - http://www.mozilla.org/MPL/ +--- + +// ***** BEGIN LICENSE BLOCK ***** +// Version: MPL 1.1/GPL 2.0/LGPL 2.1 +// +// The contents of this file are subject to the Mozilla Public License Version +// 1.1 (the "License"); you may not use this file except in compliance with +// the License. You may obtain a copy of the License at +// http://www.mozilla.org/MPL/ +// +// Software distributed under the License is distributed on an "AS IS" basis, +// WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +// for the specific language governing rights and limitations under the +// License. +// +// The Original Code is . +// +// The Initial Developer of the Original Code is +// Portions created by the Initial Developer are Copyright +// the Initial Developer. All Rights Reserved. +// +// Contributor(s): +// +// Alternatively, the contents of this file may be used under the terms of +// either the GNU General Public License Version 2 or later (the "GPL"), or +// the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), +// in which case the provisions of the GPL or the LGPL are applicable instead +// of those above. If you wish to allow use of your version of this file only +// under the terms of either the GPL or the LGPL, and not to allow others to +// use your version of this file under the terms of the MPL, indicate your +// decision by deleting the provisions above and replace them with the notice +// and other provisions required by the GPL or the LGPL. If you do not delete +// the provisions above, a recipient may use your version of this file under +// the terms of any one of the MPL, the GPL or the LGPL. +// +// ***** END LICENSE BLOCK ***** \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_required_phrase_1.RULE b/src/licensedcode/data/rules/mpl-1.1_required_phrase_1.RULE new file mode 100644 index 0000000000..c187750167 --- /dev/null +++ b/src/licensedcode/data/rules/mpl-1.1_required_phrase_1.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mpl-1.1 +is_license_tag: yes +is_required_phrase: yes +--- + +mpl 1 1+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_required_phrase_2.RULE b/src/licensedcode/data/rules/mpl-1.1_required_phrase_2.RULE new file mode 100644 index 0000000000..f6dfab3085 --- /dev/null +++ b/src/licensedcode/data/rules/mpl-1.1_required_phrase_2.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mpl-1.1 +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under {{mpl 1 1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-1.1_required_phrase_3.RULE b/src/licensedcode/data/rules/mpl-1.1_required_phrase_3.RULE new file mode 100644 index 0000000000..4b78255226 --- /dev/null +++ b/src/licensedcode/data/rules/mpl-1.1_required_phrase_3.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mpl-1.1 +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under the {{mpl 1 1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_10.RULE b/src/licensedcode/data/rules/mpl-2.0_10.RULE index 5061fae559..f13a6ae7ce 100644 --- a/src/licensedcode/data/rules/mpl-2.0_10.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_10.RULE @@ -5,8 +5,8 @@ ignorable_urls: - https://mozilla.org/MPL/2.0 --- -Mozilla Public License -Version 2.0 +{{Mozilla Public License +Version 2.0}} 1. Definitions diff --git a/src/licensedcode/data/rules/mpl-2.0_105.RULE b/src/licensedcode/data/rules/mpl-2.0_105.RULE index 31d0ee7bd0..35c3d1417e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_105.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_105.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://mozilla.org/MPL/2.0 --- -licensed under the MPL 2.0 (http://mozilla.org/MPL/2.0/) \ No newline at end of file +{{licensed under the MPL 2.0}} (http://mozilla.org/MPL/2.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_111.RULE b/src/licensedcode/data/rules/mpl-2.0_111.RULE index fd2597efaa..2e4e372faa 100644 --- a/src/licensedcode/data/rules/mpl-2.0_111.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_111.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -MPL-2.0 Mozilla Public License 2.0 \ No newline at end of file +{{MPL-2.0}} {{Mozilla Public License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_113.RULE b/src/licensedcode/data/rules/mpl-2.0_113.RULE index db6eaab578..6e9825710e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_113.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_113.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: MPL-2.0 \ No newline at end of file +licenseId: {{MPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_114.RULE b/src/licensedcode/data/rules/mpl-2.0_114.RULE index f9c0dad317..6db2889e7b 100644 --- a/src/licensedcode/data/rules/mpl-2.0_114.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_114.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -['MPL', 'MPL-2.0'], \ No newline at end of file +['MPL', '{{MPL-2.0}}'], \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_115.RULE b/src/licensedcode/data/rules/mpl-2.0_115.RULE index 8034afe018..17e2085ba9 100644 --- a/src/licensedcode/data/rules/mpl-2.0_115.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_115.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'Mozilla Public License version 2': 'MPL-2.0', \ No newline at end of file +'Mozilla Public License version 2': '{{MPL-2.0}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_116.RULE b/src/licensedcode/data/rules/mpl-2.0_116.RULE index 8ef8f12e96..0dcf58e331 100644 --- a/src/licensedcode/data/rules/mpl-2.0_116.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_116.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'Mozilla Public License, v. 2.0': 'MPL-2.0', \ No newline at end of file +'Mozilla Public License, v. 2.0': '{{MPL-2.0}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_117.RULE b/src/licensedcode/data/rules/mpl-2.0_117.RULE index fb620fcf9a..3c2da5091f 100644 --- a/src/licensedcode/data/rules/mpl-2.0_117.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_117.RULE @@ -1,9 +1,10 @@ --- license_expression: mpl-2.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 --- -'Mozilla Public License, version 2.0': 'MPL-2.0', \ No newline at end of file +Mozilla Public License Version 2.0 ({{MPL 2.0}}) diff --git a/src/licensedcode/data/rules/mpl-2.0_118.RULE b/src/licensedcode/data/rules/mpl-2.0_118.RULE index a85208aa2f..ff23851218 100644 --- a/src/licensedcode/data/rules/mpl-2.0_118.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_118.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -'Http://www.mozilla.org/MPL/2.0/': 'MPL-2.0', \ No newline at end of file +'Http://www.mozilla.org/{{MPL/2.0}}/': '{{MPL-2.0}}', \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_122.RULE b/src/licensedcode/data/rules/mpl-2.0_122.RULE index 29904e0d95..2868521fbf 100644 --- a/src/licensedcode/data/rules/mpl-2.0_122.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_122.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -opensource.org/licenses/MPL-2.0 \ No newline at end of file +opensource.org/licenses/{{MPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_124.RULE b/src/licensedcode/data/rules/mpl-2.0_124.RULE index 201876115b..9f09576075 100644 --- a/src/licensedcode/data/rules/mpl-2.0_124.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_124.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/MPL-2.0 \ No newline at end of file +licenses.nuget.org/{{MPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_13.RULE b/src/licensedcode/data/rules/mpl-2.0_13.RULE index 6ca53637f6..8018d710bd 100644 --- a/src/licensedcode/data/rules/mpl-2.0_13.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_13.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://choosealicense.com/licenses/mpl-2.0 --- -License: [`mpl-2.0`](http://choosealicense.com/licenses/mpl-2.0/) \ No newline at end of file +License: [`{{mpl-2.0}}`](http://choosealicense.com/licenses/mpl-2.0/) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_130.RULE b/src/licensedcode/data/rules/mpl-2.0_130.RULE index 4a06988331..483a28a826 100644 --- a/src/licensedcode/data/rules/mpl-2.0_130.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_130.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -mozilla.org/MPL/2.0/ \ No newline at end of file +mozilla.org/{{MPL/2.0}}/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_134.RULE b/src/licensedcode/data/rules/mpl-2.0_134.RULE index d3e77da188..8b6294784b 100644 --- a/src/licensedcode/data/rules/mpl-2.0_134.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_134.RULE @@ -6,6 +6,6 @@ ignorable_urls: - https://www.mozilla.org/en-US/MPL/2.0/FAQ --- -Eigen is licensed under {{Mozilla Public License Version 2.0}} (MPL 2.0). A MPL 2.0 -and FAQ's for MPL 2.0 can be found at: https://www.mozilla.org/en-US/MPL/2.0/ +Eigen is {{licensed under Mozilla Public License Version 2.0}} ({{MPL 2.0}}). A {{MPL 2.0}} +and FAQ's for {{MPL 2.0}} can be found at: https://www.mozilla.org/en-US/MPL/2.0/ and https://www.mozilla.org/en-US/MPL/2.0/FAQ/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_135.RULE b/src/licensedcode/data/rules/mpl-2.0_135.RULE index 2eed7fa411..c0b2ea1e21 100644 --- a/src/licensedcode/data/rules/mpl-2.0_135.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_135.RULE @@ -7,6 +7,6 @@ ignorable_urls: - https://www.mozilla.org/en-US/MPL/2.0/FAQ --- -licensed under {{Mozilla Public License Version 2.0}} (MPL 2.0). A MPL 2.0 -and FAQ's for MPL 2.0 can be found at: {{https://www.mozilla.org/en-US/MPL/2.0/}} +licensed under {{Mozilla Public License Version 2.0}} ({{MPL 2.0}}). A {{MPL 2.0}} +and FAQ's for {{MPL 2.0}} can be found at: {{https://www.mozilla.org/en-US/MPL/2.0/}} and https://www.mozilla.org/en-US/MPL/2.0/FAQ/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_136.RULE b/src/licensedcode/data/rules/mpl-2.0_136.RULE index 6bac645608..bc1e2cf884 100644 --- a/src/licensedcode/data/rules/mpl-2.0_136.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_136.RULE @@ -7,6 +7,6 @@ ignorable_urls: - https://www.mozilla.org/en-US/MPL/2.0/FAQ --- -is licensed under {{Mozilla Public License Version 2.0 (MPL 2.0)}}. A MPL 2.0 -and FAQ's for MPL 2.0 can be found at: {{https://www.mozilla.org/en-US/MPL/2.0/}} +is licensed under {{Mozilla Public License Version 2.0 (MPL 2.0)}}. A {{MPL 2.0}} +and FAQ's for {{MPL 2.0}} can be found at: {{https://www.mozilla.org/en-US/MPL/2.0/}} and https://www.mozilla.org/en-US/MPL/2.0/FAQ/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_137.RULE b/src/licensedcode/data/rules/mpl-2.0_137.RULE index bfc4719c72..7e9484622e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_137.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_137.RULE @@ -8,6 +8,6 @@ ignorable_urls: eigen NOTICE ================================================================================ -Eigen is licensed under Mozilla Public License Version 2.0 (MPL 2.0). A MPL 2.0 -and FAQ's for MPL 2.0 can be found at: https://www.mozilla.org/en-US/MPL/2.0/ +Eigen is {{licensed under Mozilla Public License Version 2.0}} ({{MPL 2.0}}). A {{MPL 2.0}} +and FAQ's for {{MPL 2.0}} can be found at: https://www.mozilla.org/en-US/MPL/2.0/ and https://www.mozilla.org/en-US/MPL/2.0/FAQ/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_139.RULE b/src/licensedcode/data/rules/mpl-2.0_139.RULE index 10487fbc8a..efe6a41354 100644 --- a/src/licensedcode/data/rules/mpl-2.0_139.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_139.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- - Mozilla Public License Version 2.0 + {{Mozilla Public License Version 2.0}} http://www.mozilla.org/MPL/2.0/ repo \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_14.RULE b/src/licensedcode/data/rules/mpl-2.0_14.RULE index f833a5feb5..573ab7cd4c 100644 --- a/src/licensedcode/data/rules/mpl-2.0_14.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_14.RULE @@ -7,4 +7,4 @@ relevance: 100 License ------- -Code is licensed under MPL 2.0 \ No newline at end of file +Code is {{licensed under MPL 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_140.RULE b/src/licensedcode/data/rules/mpl-2.0_140.RULE index 8a4c7c7e9e..538c984e1a 100644 --- a/src/licensedcode/data/rules/mpl-2.0_140.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_140.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.mozilla.org/MPL/2.0/ --- -- name: Mozilla Public License Version 2.0 +- name: {{Mozilla Public License Version 2.0}} url: http://www.mozilla.org/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_142.RULE b/src/licensedcode/data/rules/mpl-2.0_142.RULE index fd10a142c5..94f529be5d 100644 --- a/src/licensedcode/data/rules/mpl-2.0_142.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_142.RULE @@ -1,7 +1,9 @@ --- license_expression: mpl-2.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes +relevance: 100 --- -{{zeromq/libzmq LICENSE}} \ No newline at end of file +zeromq/libzmq LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_143.RULE b/src/licensedcode/data/rules/mpl-2.0_143.RULE index c26a5576a4..f52bdd85eb 100644 --- a/src/licensedcode/data/rules/mpl-2.0_143.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_143.RULE @@ -7,6 +7,6 @@ referenced_filenames: LICENSE ------- -Free use of this software is granted under the terms of the Mozilla Public -License Version 2.0 (MPL-2.0). For details see the file `LICENSE` included with +Free use of this software is granted under the terms of the {{Mozilla Public +License Version 2.0 (MPL-2.0}}). For details see the file `LICENSE` included with the 0MQ distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_16.RULE b/src/licensedcode/data/rules/mpl-2.0_16.RULE index b2c403d997..b3a0ac1800 100644 --- a/src/licensedcode/data/rules/mpl-2.0_16.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_16.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://mozilla.org/MPL/2.0/ --- -This data file is licensed under the MPL-2.0 license. +This data file is licensed under the {{MPL-2.0 license}}. # http://mozilla.org/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_17.RULE b/src/licensedcode/data/rules/mpl-2.0_17.RULE index 225b19381d..7dbb4d15c1 100644 --- a/src/licensedcode/data/rules/mpl-2.0_17.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_17.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://mozilla.org/MPL/2.0/ --- -is licensed under the MPL-2.0 license. +is {{licensed under the MPL-2.0}} license. # http://mozilla.org/MPL/2.0/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_31.RULE b/src/licensedcode/data/rules/mpl-2.0_31.RULE index c98b57504d..306af953ac 100644 --- a/src/licensedcode/data/rules/mpl-2.0_31.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_31.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -is licensed under the MPL 2.0 (see LICENSE.txt) \ No newline at end of file +is {{licensed under the MPL 2.0}} (see LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_32.RULE b/src/licensedcode/data/rules/mpl-2.0_32.RULE index 5df42f148f..8b785d91ab 100644 --- a/src/licensedcode/data/rules/mpl-2.0_32.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_32.RULE @@ -1,7 +1,8 @@ --- license_expression: mpl-2.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -licensed under the MPL 2.0 \ No newline at end of file +licensed under the {{MPL 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_33.RULE b/src/licensedcode/data/rules/mpl-2.0_33.RULE index 174f9ca338..435e4775e5 100644 --- a/src/licensedcode/data/rules/mpl-2.0_33.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_33.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is licensed under the MPL 2.0 \ No newline at end of file +is {{licensed under the MPL 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_34.RULE b/src/licensedcode/data/rules/mpl-2.0_34.RULE index 2345bdb9ae..e4ac477530 100644 --- a/src/licensedcode/data/rules/mpl-2.0_34.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_34.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE.txt --- -Licensed under MPL 2.0 (see LICENSE.txt) \ No newline at end of file +{{Licensed under MPL 2.0}} (see LICENSE.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_35.RULE b/src/licensedcode/data/rules/mpl-2.0_35.RULE index dbcb549aae..523be79164 100644 --- a/src/licensedcode/data/rules/mpl-2.0_35.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_35.RULE @@ -1,7 +1,8 @@ --- license_expression: mpl-2.0 is_license_notice: yes +is_required_phrase: yes relevance: 100 --- -Licensed under MPL 2.0 \ No newline at end of file +Licensed under {{MPL 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_36.RULE b/src/licensedcode/data/rules/mpl-2.0_36.RULE index f1fe159da3..26c58bfd56 100644 --- a/src/licensedcode/data/rules/mpl-2.0_36.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_36.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://www.mozilla.org/en-US/MPL/2.0 --- -License: Mozilla Public License version 2.0 (https://www.mozilla.org/en-US/MPL/2.0 \ No newline at end of file +License: {{Mozilla Public License version 2.0}} (https://www.mozilla.org/en-US/MPL/2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_39.RULE b/src/licensedcode/data/rules/mpl-2.0_39.RULE index c45060d603..24d822dc42 100644 --- a/src/licensedcode/data/rules/mpl-2.0_39.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_39.RULE @@ -1,7 +1,8 @@ --- license_expression: mpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Mozilla Public License version 2.0 \ No newline at end of file +Mozilla Public License Version 2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_40.RULE b/src/licensedcode/data/rules/mpl-2.0_40.RULE index 84e6f630d3..609fc9e33f 100644 --- a/src/licensedcode/data/rules/mpl-2.0_40.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_40.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://mozilla.org/MPL/2.0 --- -Mozilla Public License Version 2.0 +{{Mozilla Public License Version 2.0}} ================================== 1. Definitions diff --git a/src/licensedcode/data/rules/mpl-2.0_41.RULE b/src/licensedcode/data/rules/mpl-2.0_41.RULE index 30dc6c55f5..2f34e071d9 100644 --- a/src/licensedcode/data/rules/mpl-2.0_41.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_41.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the [Mozilla Public License Version 2.0] \ No newline at end of file +licensed under the [{{Mozilla Public License Version 2.0}}] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_42.RULE b/src/licensedcode/data/rules/mpl-2.0_42.RULE index c16c266b08..186508ff93 100644 --- a/src/licensedcode/data/rules/mpl-2.0_42.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_42.RULE @@ -6,7 +6,7 @@ ignorable_urls: --- ## License - is licensed under the [Mozilla Public License Version 2.0] + is licensed under the [{{Mozilla Public License Version 2.0}}] Mozilla summarizes the license scope as follows: > MPL: The copyleft applies to any files containing MPLed code. @@ -14,9 +14,9 @@ Mozilla summarizes the license scope as follows: That means: * You can **use** the **unchanged** source code both in private and commercially - * When distributing, you **must publish** the source code of any **changed files** licensed under the MPL 2.0 under a) the MPL 2.0 itself or b) a compatible license (e.g. GPL 3.0 or Apache License 2.0) - * You **needn't publish** the source code of your library as long as the files licensed under the MPL 2.0 are **unchanged** + * When distributing, you **must publish** the source code of any **changed files** {{licensed under the MPL 2.0}} under a) the {{MPL 2.0}} itself or b) a compatible license (e.g. GPL 3.0 or Apache License 2.0) + * You **needn't publish** the source code of your library as long as the files {{licensed under the MPL 2.0}} are **unchanged** -Please read the [MPL 2.0 FAQ](http://www.mozilla.org/MPL/2.0/FAQ.html) if you have further questions regarding the license. +Please read the [{{MPL 2.0}} FAQ](http://www.mozilla.org/MPL/2.0/FAQ.html) if you have further questions regarding the license. You can read the full terms here: \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_49.RULE b/src/licensedcode/data/rules/mpl-2.0_49.RULE index 92d6623d4c..9d86a8597f 100644 --- a/src/licensedcode/data/rules/mpl-2.0_49.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_49.RULE @@ -8,4 +8,4 @@ referenced_filenames: License -This code is licensed under the MPL 2.0 [LICENSE](LICENSE). \ No newline at end of file +This code is {{licensed under the MPL 2.0}} [LICENSE](LICENSE). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_5.RULE b/src/licensedcode/data/rules/mpl-2.0_5.RULE index e661b12403..b2515e06a0 100644 --- a/src/licensedcode/data/rules/mpl-2.0_5.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_5.RULE @@ -1,6 +1,7 @@ --- license_expression: mpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 ignorable_urls: - https://www.mozilla.org/en-US/MPL/2.0/ diff --git a/src/licensedcode/data/rules/mpl-2.0_50.RULE b/src/licensedcode/data/rules/mpl-2.0_50.RULE index 2a1e26eb15..4ea8054dba 100644 --- a/src/licensedcode/data/rules/mpl-2.0_50.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_50.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This code is licensed under the MPL 2.0 LICENSE. \ No newline at end of file +This code is {{licensed under the MPL 2.0}} LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_51.RULE b/src/licensedcode/data/rules/mpl-2.0_51.RULE index e469b845a8..d45814141e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_51.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_51.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is licensed under the MPL 2.0 LICENSE. \ No newline at end of file +This code is {{licensed under the MPL 2.0}} LICENSE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_52.RULE b/src/licensedcode/data/rules/mpl-2.0_52.RULE index fe4eff631f..9bf168e9f2 100644 --- a/src/licensedcode/data/rules/mpl-2.0_52.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_52.RULE @@ -8,6 +8,6 @@ referenced_filenames: License - is provided under the Mozilla Public License 2.0 license (MPL) that can be found in the LICENSE file. By using, distributing, or contributing to this project, you agree to the terms and conditions of this license. + is provided under the {{Mozilla Public License 2.0}} license (MPL) that can be found in the LICENSE file. By using, distributing, or contributing to this project, you agree to the terms and conditions of this license. -Informally, MPL 2.0 is a not a "viral" license. It may be combined with other work, including commercial software. However, you must disclose your modifications to pikepdf in source code form. In other works, fork this repository on GitHub or elsewhere and commit your contributions there, and you've satisfied your obligations. MPL 2.0 is compatible with the GPL and LGPL - see the guidelines for notes on use in GPL. \ No newline at end of file +Informally, {{MPL 2.0}} is a not a "viral" license. It may be combined with other work, including commercial software. However, you must disclose your modifications to pikepdf in source code form. In other works, fork this repository on GitHub or elsewhere and commit your contributions there, and you've satisfied your obligations. {{MPL 2.0}} is compatible with the GPL and LGPL - see the guidelines for notes on use in GPL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_54.RULE b/src/licensedcode/data/rules/mpl-2.0_54.RULE index 484bbe14d2..ed46cf04ae 100644 --- a/src/licensedcode/data/rules/mpl-2.0_54.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_54.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -Mozilla Public License 2.0 (MPL 2.0) \ No newline at end of file +{{Mozilla Public License 2.0}} ({{MPL 2.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_61.RULE b/src/licensedcode/data/rules/mpl-2.0_61.RULE index b759279337..a92790c604 100644 --- a/src/licensedcode/data/rules/mpl-2.0_61.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_61.RULE @@ -9,7 +9,7 @@ ignorable_urls: Full license text: -Mozilla Public License Version 2.0 +{{Mozilla Public License Version 2.0}} ================================== 1. Definitions diff --git a/src/licensedcode/data/rules/mpl-2.0_68.RULE b/src/licensedcode/data/rules/mpl-2.0_68.RULE index d0a2ab9957..e44264a631 100644 --- a/src/licensedcode/data/rules/mpl-2.0_68.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_68.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -mozilla.org/en-US/MPL/2.0/ \ No newline at end of file +mozilla.org/en-US/{{MPL/2.0}}/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_69.RULE b/src/licensedcode/data/rules/mpl-2.0_69.RULE index f5ae3bf68f..bac3cf8052 100644 --- a/src/licensedcode/data/rules/mpl-2.0_69.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_69.RULE @@ -7,4 +7,4 @@ ignorable_urls: - https://www.mozilla.org/MPL/2.0/index.txt --- -`MPL-2.0` - [Mozilla Public License](https://www.mozilla.org/MPL/2.0/index.txt) \ No newline at end of file +`{{MPL-2.0}}` - [Mozilla Public License](https://www.mozilla.org/MPL/2.0/index.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_70.RULE b/src/licensedcode/data/rules/mpl-2.0_70.RULE index 5ce3e1eb8a..02a7d0723a 100644 --- a/src/licensedcode/data/rules/mpl-2.0_70.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_70.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is licensed under the terms of the Mozilla Public License v2.0. \ No newline at end of file +This software is licensed under the terms of the {{Mozilla Public License v2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_71.RULE b/src/licensedcode/data/rules/mpl-2.0_71.RULE index 2dc5ec012a..a6994e3855 100644 --- a/src/licensedcode/data/rules/mpl-2.0_71.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_71.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the terms of the Mozilla Public License v2.0. \ No newline at end of file +licensed under the terms of the {{Mozilla Public License v2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_72.RULE b/src/licensedcode/data/rules/mpl-2.0_72.RULE index d2c2041370..1ecc0e3d55 100644 --- a/src/licensedcode/data/rules/mpl-2.0_72.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_72.RULE @@ -7,4 +7,4 @@ referenced_filenames: - LICENSE --- -This software is licensed under the terms of the Mozilla Public License v2.0. See the [COPYRIGHT] COPYRIGHT and [LICENSE]LICENSE) files. \ No newline at end of file +This software is licensed under the terms of the {{Mozilla Public License v2.0}}. See the [COPYRIGHT] COPYRIGHT and [LICENSE]LICENSE) files. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_73.RULE b/src/licensedcode/data/rules/mpl-2.0_73.RULE index 1e554aa662..0a82479560 100644 --- a/src/licensedcode/data/rules/mpl-2.0_73.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_73.RULE @@ -1,7 +1,8 @@ --- license_expression: mpl-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- -Mozilla Public License v2.0. \ No newline at end of file +[Mozilla Public License v2.0] \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_74.RULE b/src/licensedcode/data/rules/mpl-2.0_74.RULE index c60ad4f205..069d93cf4e 100644 --- a/src/licensedcode/data/rules/mpl-2.0_74.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_74.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the Mozilla Public License v2.0. \ No newline at end of file +the {{Mozilla Public License v2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_75.RULE b/src/licensedcode/data/rules/mpl-2.0_75.RULE index 5ce48996f8..ae63313479 100644 --- a/src/licensedcode/data/rules/mpl-2.0_75.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_75.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: MPL-2.0 \ No newline at end of file +License: {{MPL-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_77.RULE b/src/licensedcode/data/rules/mpl-2.0_77.RULE index 7d26da42c4..33f6282f74 100644 --- a/src/licensedcode/data/rules/mpl-2.0_77.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_77.RULE @@ -7,7 +7,7 @@ ignorable_urls: - http://mozilla.org/MPL/2.0/ --- -Licensed under the Mozilla Public License, Version 2.0 (the "License"); you may +Licensed under the {{Mozilla Public License, Version 2.0}} (the "License"); you may not use this software except in compliance with the License. You may obtain a copy of the License at diff --git a/src/licensedcode/data/rules/mpl-2.0_78.RULE b/src/licensedcode/data/rules/mpl-2.0_78.RULE index 007035ea34..e6f7854614 100644 --- a/src/licensedcode/data/rules/mpl-2.0_78.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_78.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The license for this file is MPL/2.0. \ No newline at end of file +The license for this file is {{MPL/2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_79.RULE b/src/licensedcode/data/rules/mpl-2.0_79.RULE index 52b050e1f9..d625de98e0 100644 --- a/src/licensedcode/data/rules/mpl-2.0_79.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_79.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://mozilla.org/MPL/2.0 --- -The license for this file is MPL/2.0. +The license for this file is {{MPL/2.0}}. The header of that file reads as follows: // This Source Code Form is subject to the terms of the Mozilla Public diff --git a/src/licensedcode/data/rules/mpl-2.0_80.RULE b/src/licensedcode/data/rules/mpl-2.0_80.RULE index 7d4f670aa9..64de781147 100644 --- a/src/licensedcode/data/rules/mpl-2.0_80.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_80.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -Mozilla Public License (MPL) 2.0 \ No newline at end of file +Mozilla Public License ({{MPL) 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_81.RULE b/src/licensedcode/data/rules/mpl-2.0_81.RULE index c74d73c7bd..753e8ae71f 100644 --- a/src/licensedcode/data/rules/mpl-2.0_81.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_81.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Mozilla Public licence (MPL) 2.0 \ No newline at end of file +Mozilla Public licence ({{MPL) 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_82.RULE b/src/licensedcode/data/rules/mpl-2.0_82.RULE index 4255ece924..74141981d8 100644 --- a/src/licensedcode/data/rules/mpl-2.0_82.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_82.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -the mpl-2.0 \ No newline at end of file +the {{mpl-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_83.RULE b/src/licensedcode/data/rules/mpl-2.0_83.RULE index de69c6df89..9db0fd8e85 100644 --- a/src/licensedcode/data/rules/mpl-2.0_83.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_83.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -UNDER THE TERMS OF THE MPL 2.0 \ No newline at end of file +UNDER THE TERMS OF THE {{MPL 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_84.RULE b/src/licensedcode/data/rules/mpl-2.0_84.RULE index 619852d79a..c09fca889f 100644 --- a/src/licensedcode/data/rules/mpl-2.0_84.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_84.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MPL 2.0. -PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE MPL 2.0. \ No newline at end of file +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{MPL 2.0}}. +PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE {{MPL 2.0}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_85.RULE b/src/licensedcode/data/rules/mpl-2.0_85.RULE index 6eabe96419..d1b20df385 100644 --- a/src/licensedcode/data/rules/mpl-2.0_85.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_85.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE MPL 2.0. -PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE MPL 2.0. +ELECTS TO USE AND DISTRIBUTE THIS COMPONENT UNDER THE TERMS OF THE {{MPL 2.0}}. +PLEASE SEE THE APPENDIX TO REVIEW THE FULL TEXT OF THE {{MPL 2.0}}. THE ORIGINAL LICENSE TERMS ARE REPRODUCED BELOW ONLY AS A REFERENCE. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_86.RULE b/src/licensedcode/data/rules/mpl-2.0_86.RULE index aea9265448..520388b196 100644 --- a/src/licensedcode/data/rules/mpl-2.0_86.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_86.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -LICENSE INFORMATION: MPL 2.0 \ No newline at end of file +LICENSE INFORMATION: {{MPL 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_87.RULE b/src/licensedcode/data/rules/mpl-2.0_87.RULE index a89cd3a873..de210466b0 100644 --- a/src/licensedcode/data/rules/mpl-2.0_87.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_87.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://mozilla.org/MPL/2.0 --- -This Source Code Form is subject to the terms of the Mozilla Public -License, v2.0. If a copy of the MPL was not distributed with this file, +This Source Code Form is subject to the terms of the {{Mozilla Public +License, v2.0}}. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_88.RULE b/src/licensedcode/data/rules/mpl-2.0_88.RULE index a575be486e..697b0ced8f 100644 --- a/src/licensedcode/data/rules/mpl-2.0_88.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_88.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Mozilla Public License, V2.0 is applicable to the following component(s). \ No newline at end of file +{{Mozilla Public License, V2.0}} is applicable to the following component(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_89.RULE b/src/licensedcode/data/rules/mpl-2.0_89.RULE index 54498af745..133357114b 100644 --- a/src/licensedcode/data/rules/mpl-2.0_89.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_89.RULE @@ -6,9 +6,9 @@ ignorable_urls: - http://mozilla.org/MPL/2.0 --- -Mozilla Public License +{{Mozilla Public License -Version 2.0 +Version 2.0}} diff --git a/src/licensedcode/data/rules/mpl-2.0_required_phrase_1.RULE b/src/licensedcode/data/rules/mpl-2.0_required_phrase_1.RULE new file mode 100644 index 0000000000..29e2bc3fea --- /dev/null +++ b/src/licensedcode/data/rules/mpl-2.0_required_phrase_1.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under mozilla public license version 2 0 diff --git a/src/licensedcode/data/rules/mpl-2.0_required_phrase_2.RULE b/src/licensedcode/data/rules/mpl-2.0_required_phrase_2.RULE new file mode 100644 index 0000000000..fc4c865eed --- /dev/null +++ b/src/licensedcode/data/rules/mpl-2.0_required_phrase_2.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_tag: yes +is_required_phrase: yes +--- + +{{mpl 2 0}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_required_phrase_3.RULE b/src/licensedcode/data/rules/mpl-2.0_required_phrase_3.RULE new file mode 100644 index 0000000000..21a07e6d1c --- /dev/null +++ b/src/licensedcode/data/rules/mpl-2.0_required_phrase_3.RULE @@ -0,0 +1,7 @@ +--- +license_expression: mpl-2.0 +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under mozilla public license \ No newline at end of file diff --git a/src/licensedcode/data/rules/mpl-2.0_url_badge.RULE b/src/licensedcode/data/rules/mpl-2.0_url_badge.RULE index 0234458fa2..cdd46137ac 100644 --- a/src/licensedcode/data/rules/mpl-2.0_url_badge.RULE +++ b/src/licensedcode/data/rules/mpl-2.0_url_badge.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/MPL-2.0 --- -[![License: MPL 2.0](https://img.shields.io/badge/License-MPL%202.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0) \ No newline at end of file +[![License: {{MPL 2.0}}](https://img.shields.io/badge/License-MPL%202.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0) \ No newline at end of file diff --git a/src/licensedcode/data/rules/nsis_1.RULE b/src/licensedcode/data/rules/nsis_1.RULE index 9b0b63468b..b0cb24aa79 100644 --- a/src/licensedcode/data/rules/nsis_1.RULE +++ b/src/licensedcode/data/rules/nsis_1.RULE @@ -6,6 +6,6 @@ minimum_coverage: 70 All NSIS source code, plug-ins, documentation, examples, header files and graphics, with the exception of the compression modules and where otherwise -noted, are licensed under the zlib/libpng license. +noted, are licensed under the {{zlib/libpng license}}. -The zlib compression module for NSIS is licensed under the zlib/libpng license. \ No newline at end of file +The zlib compression module for NSIS is licensed under the {{zlib/libpng license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/nsis_3.RULE b/src/licensedcode/data/rules/nsis_3.RULE index 8c7701e7c3..70b34a3942 100644 --- a/src/licensedcode/data/rules/nsis_3.RULE +++ b/src/licensedcode/data/rules/nsis_3.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -The zlib compression module for NSIS is licensed under the zlib/libpng license. \ No newline at end of file +The zlib compression module for NSIS is licensed under the {{zlib/libpng license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.0_3.RULE b/src/licensedcode/data/rules/ofl-1.0_3.RULE index 2fa350a91f..7592845103 100644 --- a/src/licensedcode/data/rules/ofl-1.0_3.RULE +++ b/src/licensedcode/data/rules/ofl-1.0_3.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/OFL \ No newline at end of file +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This Font Software is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_1.RULE b/src/licensedcode/data/rules/ofl-1.1_1.RULE index 1f85be4926..976577515a 100644 --- a/src/licensedcode/data/rules/ofl-1.1_1.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_1.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -SIL Open Font License 1.1 \ No newline at end of file +{{SIL Open Font License 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_10.RULE b/src/licensedcode/data/rules/ofl-1.1_10.RULE index 8e0d6cd754..4d76a4ea27 100644 --- a/src/licensedcode/data/rules/ofl-1.1_10.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_10.RULE @@ -7,13 +7,13 @@ ignorable_urls: with Reserved Font Name -This Font Software is licensed under the SIL Open Font License, Version 1.1. +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL -SIL OPEN FONT LICENSE +{{SIL OPEN FONT LICENSE -Version 1.1 - 26 February 2007 +Version 1.1}} - 26 February 2007 PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide diff --git a/src/licensedcode/data/rules/ofl-1.1_11.RULE b/src/licensedcode/data/rules/ofl-1.1_11.RULE index 997dc5f14e..d85f780e7b 100644 --- a/src/licensedcode/data/rules/ofl-1.1_11.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_11.RULE @@ -6,5 +6,5 @@ referenced_filenames: - OFL.txt --- -Licensed under the SIL Open Font License 1.1 (see file +Licensed under the {{SIL Open Font License 1.1}} (see file OFL.txt) \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_15.RULE b/src/licensedcode/data/rules/ofl-1.1_15.RULE index 578ce2f82a..c47a193f06 100644 --- a/src/licensedcode/data/rules/ofl-1.1_15.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_15.RULE @@ -7,6 +7,6 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -% This Font Software is licensed under the SIL Open Font License, Version 1.1. +% This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. % This license is in the accompanying file OFL.txt, and is also % available with a FAQ at: http://scripts.sil.org/OFL. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_20.RULE b/src/licensedcode/data/rules/ofl-1.1_20.RULE index 912244b64d..4bb745f373 100644 --- a/src/licensedcode/data/rules/ofl-1.1_20.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_20.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed under OFL 1.1, which is compatible +{{licensed under OFL 1.1}}, which is compatible with this library's license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_21.RULE b/src/licensedcode/data/rules/ofl-1.1_21.RULE index 983a13f7b3..b66acccf88 100644 --- a/src/licensedcode/data/rules/ofl-1.1_21.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_21.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt --- -licensed under OFL 1.1, which is compatible +{{licensed under OFL 1.1}}, which is compatible with this library's license. http://scripts.sil.org/cms/scripts/render_download.php?format=file&media_id=OFL_plaintext&filename=OFL.txt \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_22.RULE b/src/licensedcode/data/rules/ofl-1.1_22.RULE index c61c4c1082..29ea1a30ff 100644 --- a/src/licensedcode/data/rules/ofl-1.1_22.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_22.RULE @@ -8,5 +8,5 @@ ignorable_urls: --- All icons are taken from Font Awesome (http://fontawesome.io/) project. -The Font Awesome font is licensed under the SIL OFL 1.1: +The Font Awesome font is {{licensed under the SIL OFL 1.1}}: - http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_23.RULE b/src/licensedcode/data/rules/ofl-1.1_23.RULE index a86f1ff085..582cdb6483 100644 --- a/src/licensedcode/data/rules/ofl-1.1_23.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_23.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: SIL Open Font License, version 1.1. \ No newline at end of file +License: {{SIL Open Font License, version 1.1}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_24.RULE b/src/licensedcode/data/rules/ofl-1.1_24.RULE index 633d6abe75..69cc42b20e 100644 --- a/src/licensedcode/data/rules/ofl-1.1_24.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_24.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -This Font Software is licensed under the SIL Open Font License, Version 1.1. +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This license available with a FAQ at: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_25.RULE b/src/licensedcode/data/rules/ofl-1.1_25.RULE index e9f55f9e6b..6fe286d4e3 100644 --- a/src/licensedcode/data/rules/ofl-1.1_25.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_25.RULE @@ -6,6 +6,6 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -licensed under the SIL Open Font License, Version 1.1. +licensed under the {{SIL Open Font License, Version 1.1}}. This license available with a FAQ at: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_27.RULE b/src/licensedcode/data/rules/ofl-1.1_27.RULE index b3957bf4c4..72eb67269e 100644 --- a/src/licensedcode/data/rules/ofl-1.1_27.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_27.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -The Font Awesome font is licensed under the SIL OFL 1.1: +The Font Awesome font is licensed under the {{SIL OFL 1.1}}: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_28.RULE b/src/licensedcode/data/rules/ofl-1.1_28.RULE index fb377024c7..5efc008c9a 100644 --- a/src/licensedcode/data/rules/ofl-1.1_28.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_28.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: OFL-1.1 \ No newline at end of file +License: {{OFL-1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_30.RULE b/src/licensedcode/data/rules/ofl-1.1_30.RULE index 9ae17f007d..6ed513c7a1 100644 --- a/src/licensedcode/data/rules/ofl-1.1_30.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_30.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/OFL \ No newline at end of file +Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_31.RULE b/src/licensedcode/data/rules/ofl-1.1_31.RULE index c1e31d1ab8..693bf79ce6 100644 --- a/src/licensedcode/data/rules/ofl-1.1_31.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_31.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://scripts.sil.org/ --- -Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/ \ No newline at end of file +Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This Font Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_32.RULE b/src/licensedcode/data/rules/ofl-1.1_32.RULE index 75c11d7734..056d0f8230 100644 --- a/src/licensedcode/data/rules/ofl-1.1_32.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_32.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -This Font Software is licensed under the SIL Open Font License, Version 1.1. +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This license is available with an FAQ at: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_33.RULE b/src/licensedcode/data/rules/ofl-1.1_33.RULE index 41dc45d6d0..d390e01fcc 100644 --- a/src/licensedcode/data/rules/ofl-1.1_33.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_33.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://scripts.sil.org/OFLhttp:/scripts.sil.org/OFL --- -This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFL \ No newline at end of file +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_34.RULE b/src/licensedcode/data/rules/ofl-1.1_34.RULE index 63485d4192..7ab6b0cbe2 100644 --- a/src/licensedcode/data/rules/ofl-1.1_34.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_34.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://scripts.sil.org/OFLhttp:/scripts.sil.org/OFL --- -Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFL \ No newline at end of file +Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_35.RULE b/src/licensedcode/data/rules/ofl-1.1_35.RULE index 65a6587760..331bd6307d 100644 --- a/src/licensedcode/data/rules/ofl-1.1_35.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_35.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL http://scripts.sil.org/OFL \ No newline at end of file +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This license is available with a FAQ at: http://scripts.sil.org/OFL http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_36.RULE b/src/licensedcode/data/rules/ofl-1.1_36.RULE index 64144b38c6..4d2b250dd1 100644 --- a/src/licensedcode/data/rules/ofl-1.1_36.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_36.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL \ No newline at end of file +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This license is available with a FAQ at: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_37.RULE b/src/licensedcode/data/rules/ofl-1.1_37.RULE index f07ca98927..3f70d67d5b 100644 --- a/src/licensedcode/data/rules/ofl-1.1_37.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_37.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL \ No newline at end of file +Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This license is available with a FAQ at: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_38.RULE b/src/licensedcode/data/rules/ofl-1.1_38.RULE index 17884e610a..bf2c711b0b 100644 --- a/src/licensedcode/data/rules/ofl-1.1_38.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_38.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software. \ No newline at end of file +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This Font Software is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_39.RULE b/src/licensedcode/data/rules/ofl-1.1_39.RULE index bde99b6166..7272ff9a42 100644 --- a/src/licensedcode/data/rules/ofl-1.1_39.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_39.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software. \ No newline at end of file +Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This Font Software is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_4.RULE b/src/licensedcode/data/rules/ofl-1.1_4.RULE index 0316ce29a1..ab2c21f343 100644 --- a/src/licensedcode/data/rules/ofl-1.1_4.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_4.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -font is licensed under SIL OFL 1.1 - +font is {{licensed under SIL OFL 1.1}} - * http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_40.RULE b/src/licensedcode/data/rules/ofl-1.1_40.RULE index 27a37e80e3..fbf481fbd9 100644 --- a/src/licensedcode/data/rules/ofl-1.1_40.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_40.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://scripts.sil.org/OFLhttp:/scripts.sil.org/ --- -This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/ \ No newline at end of file +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://scripts.sil.org/ \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_41.RULE b/src/licensedcode/data/rules/ofl-1.1_41.RULE index 3b72f7f450..33b3e51287 100644 --- a/src/licensedcode/data/rules/ofl-1.1_41.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_41.RULE @@ -1,6 +1,7 @@ --- license_expression: ofl-1.1 is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/ofl-1.1_48.RULE b/src/licensedcode/data/rules/ofl-1.1_48.RULE index 276cb9aa4a..3324d2226c 100644 --- a/src/licensedcode/data/rules/ofl-1.1_48.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_48.RULE @@ -9,7 +9,7 @@ ignorable_urls: This Font Software is licensed under the Open Font License. No modification of the license is permitted, only verbatim copy is allowed. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +{{SIL OPEN FONT LICENSE Version 1.1}} - 26 February 2007 PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. diff --git a/src/licensedcode/data/rules/ofl-1.1_49.RULE b/src/licensedcode/data/rules/ofl-1.1_49.RULE index 6cecfa3115..968117e6cf 100644 --- a/src/licensedcode/data/rules/ofl-1.1_49.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_49.RULE @@ -7,5 +7,5 @@ ignorable_urls: --- * License - * - The Font Awesome font is licensed under SIL OFL 1.1 - + * - The Font Awesome font is {{licensed under SIL OFL 1.1}} - * http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_5.RULE b/src/licensedcode/data/rules/ofl-1.1_5.RULE index 1d3ca7f2a5..3c5d069180 100644 --- a/src/licensedcode/data/rules/ofl-1.1_5.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_5.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -This Font Software is licensed under the SIL Open Font License, Version 1.1. +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_50.RULE b/src/licensedcode/data/rules/ofl-1.1_50.RULE index 15829f0d56..2680af12d4 100644 --- a/src/licensedcode/data/rules/ofl-1.1_50.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_50.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -* - The Font Awesome font is licensed under SIL OFL 1.1 - +* - The Font Awesome font is {{licensed under SIL OFL 1.1}} - * http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_56.RULE b/src/licensedcode/data/rules/ofl-1.1_56.RULE index 96ecc1a101..744a17294d 100644 --- a/src/licensedcode/data/rules/ofl-1.1_56.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_56.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -fonts which are licensed under the SIL Open Font License version 1.1. You may not use this file except in compliance with the License. \ No newline at end of file +fonts which are licensed under the {{SIL Open Font License version 1.1}}. You may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_6.RULE b/src/licensedcode/data/rules/ofl-1.1_6.RULE index 62c6d39c07..7c2b14c50d 100644 --- a/src/licensedcode/data/rules/ofl-1.1_6.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_6.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This Font Software is licensed under the SIL Open Font License, Version 1.1. \ No newline at end of file +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_60.RULE b/src/licensedcode/data/rules/ofl-1.1_60.RULE index ed68c50856..c33c9ea597 100644 --- a/src/licensedcode/data/rules/ofl-1.1_60.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_60.RULE @@ -6,13 +6,13 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -This Font Software is licensed under the SIL Open Font License, Version 1.1. +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL -SIL OPEN FONT LICENSE +{{SIL OPEN FONT LICENSE -Version 1.1 - 26 February 2007 +Version 1.1}} - 26 February 2007 PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide diff --git a/src/licensedcode/data/rules/ofl-1.1_63.RULE b/src/licensedcode/data/rules/ofl-1.1_63.RULE index 4e29607ada..421d64101f 100644 --- a/src/licensedcode/data/rules/ofl-1.1_63.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_63.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under the SIL Open Font License version 1.1 (the "License") set forth below. You may not use this file except in compliance with the License. \ No newline at end of file +licensed under the {{SIL Open Font License version 1.1}} (the "License") set forth below. You may not use this file except in compliance with the License. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_64.RULE b/src/licensedcode/data/rules/ofl-1.1_64.RULE index a3d9b57f19..c34d3909f4 100644 --- a/src/licensedcode/data/rules/ofl-1.1_64.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_64.RULE @@ -6,8 +6,8 @@ minimum_coverage: 99 notes: typo in INCIDENTIAL --- -SIL OPEN FONT LICENSE -Version 1.1 - 26 February 2007 +{{SIL OPEN FONT LICENSE +Version 1.1}} - 26 February 2007 PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. diff --git a/src/licensedcode/data/rules/ofl-1.1_67.RULE b/src/licensedcode/data/rules/ofl-1.1_67.RULE index 9e3a8f00dc..077228a75c 100644 --- a/src/licensedcode/data/rules/ofl-1.1_67.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_67.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This Font Software is licensed under the SIL Open Font License, Version 1.1. \ No newline at end of file +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_68.RULE b/src/licensedcode/data/rules/ofl-1.1_68.RULE index 78d43654e7..256ce150ab 100644 --- a/src/licensedcode/data/rules/ofl-1.1_68.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_68.RULE @@ -8,6 +8,6 @@ referenced_filenames: License -This Font Software is licensed under the SIL Open Font License, Version 1.1. +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. Please read file "LICENSE" for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_7.RULE b/src/licensedcode/data/rules/ofl-1.1_7.RULE index 87a076daec..94bbabc0ea 100644 --- a/src/licensedcode/data/rules/ofl-1.1_7.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_7.RULE @@ -5,5 +5,5 @@ ignorable_urls: - https://opensource.org/licenses/OFL-1.1 --- -This project bundles the following dependencies under SIL OFL 1.1 license (https://opensource.org/licenses/OFL-1.1). +This project bundles the following dependencies under {{SIL OFL 1.1 license}} (https://opensource.org/licenses/OFL-1.1). See bundled license files for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_70.RULE b/src/licensedcode/data/rules/ofl-1.1_70.RULE index 84be29ea2a..b1820900b1 100644 --- a/src/licensedcode/data/rules/ofl-1.1_70.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_70.RULE @@ -19,7 +19,7 @@ The fonts were initially published on the 6th of July 2009 on Dave Crossland's foundry website [6] under the terms of the GNU General Public License version 3. [7] In May 2010 the fonts were republished through Google Web Fonts [8] under the terms of the -SIL Open Font License version 1.1. [9] In November 2010 the +{{SIL Open Font License version 1.1}}. [9] In November 2010 the project became part of the GNOME project and is now under active development by the GNOME design community. [10] diff --git a/src/licensedcode/data/rules/ofl-1.1_71.RULE b/src/licensedcode/data/rules/ofl-1.1_71.RULE index bc6b7fb3b4..6e54e7e5a0 100644 --- a/src/licensedcode/data/rules/ofl-1.1_71.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_71.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -OFL-1.1 SIL Open Font License 1.1 \ No newline at end of file +{{OFL-1.1}} {{SIL Open Font License 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_72.RULE b/src/licensedcode/data/rules/ofl-1.1_72.RULE index 3a11f6a10c..4ce63133fb 100644 --- a/src/licensedcode/data/rules/ofl-1.1_72.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_72.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: SIL Open Font License 1.1 \ No newline at end of file +name: {{SIL Open Font License 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_73.RULE b/src/licensedcode/data/rules/ofl-1.1_73.RULE index 339e9b7ccd..66905d3e0a 100644 --- a/src/licensedcode/data/rules/ofl-1.1_73.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_73.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -SIL Open Font License 1.1 OFL-1.1 \ No newline at end of file +{{SIL Open Font License 1.1}} {{OFL-1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_74.RULE b/src/licensedcode/data/rules/ofl-1.1_74.RULE index 9db23c1601..916eb872ba 100644 --- a/src/licensedcode/data/rules/ofl-1.1_74.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_74.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: SIL Open Font License 1.1 \ No newline at end of file +license: {{SIL Open Font License 1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_75.RULE b/src/licensedcode/data/rules/ofl-1.1_75.RULE index 70ab1357f6..e924827e0b 100644 --- a/src/licensedcode/data/rules/ofl-1.1_75.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_75.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: OFL-1.1 \ No newline at end of file +licenseId: {{OFL-1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_77.RULE b/src/licensedcode/data/rules/ofl-1.1_77.RULE index 5d94d0e692..8488a2c3bd 100644 --- a/src/licensedcode/data/rules/ofl-1.1_77.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_77.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under the SIL Open Font License, Version 1.1 Licensed under the SIL Open Font License \ No newline at end of file +Licensed under the {{SIL Open Font License, Version 1.1}} Licensed under the SIL Open Font License \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_78.RULE b/src/licensedcode/data/rules/ofl-1.1_78.RULE index 7aec46e05c..81898e19de 100644 --- a/src/licensedcode/data/rules/ofl-1.1_78.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_78.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/OFL-1.1 \ No newline at end of file +licenses.nuget.org/{{OFL-1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_8.RULE b/src/licensedcode/data/rules/ofl-1.1_8.RULE index 06dab276ff..de2e123922 100644 --- a/src/licensedcode/data/rules/ofl-1.1_8.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_8.RULE @@ -5,5 +5,5 @@ ignorable_urls: - http://scripts.sil.org/OFL --- -This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL. This Font Software is distributed on an +This Font Software is licensed under the {{SIL Open Font License, Version 1.1}}. This license is available with a FAQ at: http://scripts.sil.org/OFL. This Font Software is distributed on an AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software.http://scripts.sil.org/OFL \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_9.RULE b/src/licensedcode/data/rules/ofl-1.1_9.RULE index 09b3f909e3..1b6a187758 100644 --- a/src/licensedcode/data/rules/ofl-1.1_9.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_9.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -licensed under the SIL Open -Font License, Version 1.1. \ No newline at end of file +licensed under the {{SIL Open +Font License, Version 1.1}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_not_gpl.RULE b/src/licensedcode/data/rules/ofl-1.1_not_gpl.RULE index f67e5986d2..f0f7555d27 100644 --- a/src/licensedcode/data/rules/ofl-1.1_not_gpl.RULE +++ b/src/licensedcode/data/rules/ofl-1.1_not_gpl.RULE @@ -18,7 +18,7 @@ The fonts were initially published on the 6th of July 2009 on Dave Crossland's foundry website [6] under the terms of the GNU General Public License version 3. [7] In May 2010 the fonts were republished through Google Web Fonts [8] under the terms of the -SIL Open Font License version 1.1. [9] In November 2010 the +{{SIL Open Font License version 1.1}}. [9] In November 2010 the project became part of the GNOME project and is now under active development by the GNOME design community. [10] diff --git a/src/licensedcode/data/rules/ofl-1.1_required_phrase_1.RULE b/src/licensedcode/data/rules/ofl-1.1_required_phrase_1.RULE new file mode 100644 index 0000000000..fa4f5ab9b0 --- /dev/null +++ b/src/licensedcode/data/rules/ofl-1.1_required_phrase_1.RULE @@ -0,0 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under the sil {{ofl 1 1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_required_phrase_2.RULE b/src/licensedcode/data/rules/ofl-1.1_required_phrase_2.RULE new file mode 100644 index 0000000000..47dc35a906 --- /dev/null +++ b/src/licensedcode/data/rules/ofl-1.1_required_phrase_2.RULE @@ -0,0 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under {{ofl 1 1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_required_phrase_3.RULE b/src/licensedcode/data/rules/ofl-1.1_required_phrase_3.RULE new file mode 100644 index 0000000000..3bc073d397 --- /dev/null +++ b/src/licensedcode/data/rules/ofl-1.1_required_phrase_3.RULE @@ -0,0 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_tag: yes +is_required_phrase: yes +--- + +sil {{ofl 1 1}} license \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_required_phrase_4.RULE b/src/licensedcode/data/rules/ofl-1.1_required_phrase_4.RULE new file mode 100644 index 0000000000..7087b3a678 --- /dev/null +++ b/src/licensedcode/data/rules/ofl-1.1_required_phrase_4.RULE @@ -0,0 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_tag: yes +is_required_phrase: yes +--- + +sil {{ofl 1 1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/ofl-1.1_required_phrase_5.RULE b/src/licensedcode/data/rules/ofl-1.1_required_phrase_5.RULE new file mode 100644 index 0000000000..5aa20c39b1 --- /dev/null +++ b/src/licensedcode/data/rules/ofl-1.1_required_phrase_5.RULE @@ -0,0 +1,7 @@ +--- +license_expression: ofl-1.1 +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under sil {{ofl 1 1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/openssl-ssleay_gpl_mention_openssl.RULE b/src/licensedcode/data/rules/openssl-ssleay_gpl_mention_openssl.RULE index 8cee411db6..bbaec6073c 100644 --- a/src/licensedcode/data/rules/openssl-ssleay_gpl_mention_openssl.RULE +++ b/src/licensedcode/data/rules/openssl-ssleay_gpl_mention_openssl.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -Permission to use under GPL terms is granted. \ No newline at end of file +Permission to use {{under GPL}} terms is granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-copyleft_24.RULE b/src/licensedcode/data/rules/other-copyleft_24.RULE index 9d4644ef16..dcc21aca36 100644 --- a/src/licensedcode/data/rules/other-copyleft_24.RULE +++ b/src/licensedcode/data/rules/other-copyleft_24.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 80 --- -GPL-compatible \ No newline at end of file +GPL-compatible diff --git a/src/licensedcode/data/rules/other-permissive_442.RULE b/src/licensedcode/data/rules/other-permissive_442.RULE index 4b302acefe..dab9ae26a6 100644 --- a/src/licensedcode/data/rules/other-permissive_442.RULE +++ b/src/licensedcode/data/rules/other-permissive_442.RULE @@ -1,8 +1,7 @@ --- license_expression: other-permissive is_license_notice: yes -is_continuous: yes relevance: 100 --- -{{Apache/BSD-style}} \ No newline at end of file +Apache/BSD-style diff --git a/src/licensedcode/data/rules/other-permissive_445.RULE b/src/licensedcode/data/rules/other-permissive_445.RULE index 8b18026664..513935ff5f 100644 --- a/src/licensedcode/data/rules/other-permissive_445.RULE +++ b/src/licensedcode/data/rules/other-permissive_445.RULE @@ -8,7 +8,7 @@ ignorable_holders: - Bruce Dodson and others --- -SHPTRANS License 1.1: +{{SHPTRANS License 1.1}}: SHPTRANS is Copyright (c) 1999-2003 Bruce Dodson and others. All rights reserved. Permission to use, copy, modify, merge, publish, perform, diff --git a/src/licensedcode/data/rules/other-permissive_446.RULE b/src/licensedcode/data/rules/other-permissive_446.RULE index 65cf9dd8a2..2e47ad31ec 100644 --- a/src/licensedcode/data/rules/other-permissive_446.RULE +++ b/src/licensedcode/data/rules/other-permissive_446.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Seen in https://sourceforge.net/projects/shptrans --- -SHPTRANS License 1.1: \ No newline at end of file +{{SHPTRANS License 1.1}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/other-permissive_82.RULE b/src/licensedcode/data/rules/other-permissive_82.RULE index c3bde3c384..a18568685d 100644 --- a/src/licensedcode/data/rules/other-permissive_82.RULE +++ b/src/licensedcode/data/rules/other-permissive_82.RULE @@ -7,4 +7,5 @@ relevance: 100 Permission to use, copy, modify and distribute this software and its documentation for any purpose is hereby granted without fee, provided that this copyright and notice appears in all copies. - disclaims all warranties with regard to this software. \ No newline at end of file + +{{ disclaims all warranties with regard to this software.}} diff --git a/src/licensedcode/data/rules/proprietary-04_10.RULE b/src/licensedcode/data/rules/proprietary-04_10.RULE index fd2252fe09..7b1fdc0997 100644 --- a/src/licensedcode/data/rules/proprietary-04_10.RULE +++ b/src/licensedcode/data/rules/proprietary-04_10.RULE @@ -9,8 +9,8 @@ is_license_notice: yes * This software is furnished pursuant to a written license agreement and * may be used, copied, transmitted, and stored only in accordance with * the terms of such license and with the inclusion of the above copyright -* notice. This software and information or any other copies thereof may -* not be provided or otherwise made available to any other person. +* notice. This software and information or any other copies thereof {{may +* not be}} provided or otherwise made available to any other person. * * Notwithstanding any other lease or license that may pertain to, or * accompany the delivery of, this computer software and information, the diff --git a/src/licensedcode/data/rules/proprietary-08.RULE b/src/licensedcode/data/rules/proprietary-08.RULE index d5bc37980a..09508f3924 100644 --- a/src/licensedcode/data/rules/proprietary-08.RULE +++ b/src/licensedcode/data/rules/proprietary-08.RULE @@ -5,6 +5,6 @@ is_license_notice: yes These coded instructions, statements, and computer programs contain unpublished proprietary information of , and -are protected by Federal copyright law. They may not be disclosed +are protected by Federal copyright law. They {{may not be}} disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-08_1.RULE b/src/licensedcode/data/rules/proprietary-08_1.RULE index c60b7f9519..2629d863b2 100644 --- a/src/licensedcode/data/rules/proprietary-08_1.RULE +++ b/src/licensedcode/data/rules/proprietary-08_1.RULE @@ -3,5 +3,5 @@ license_expression: proprietary-license is_license_notice: yes --- -The material contained herein may not be reproduced in whole or in part, +The material contained herein {{may not be}} reproduced in whole or in part, without the prior written consent of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-10.RULE b/src/licensedcode/data/rules/proprietary-10.RULE index 66559d944e..3b7ab4209a 100644 --- a/src/licensedcode/data/rules/proprietary-10.RULE +++ b/src/licensedcode/data/rules/proprietary-10.RULE @@ -6,7 +6,7 @@ is_license_notice: yes THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIED ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSION OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIES -THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHER +THEREOF {{MAY NOT BE}} PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHER PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED. THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE AND diff --git a/src/licensedcode/data/rules/proprietary-10_10.RULE b/src/licensedcode/data/rules/proprietary-10_10.RULE index 395746ea31..3238ddc602 100644 --- a/src/licensedcode/data/rules/proprietary-10_10.RULE +++ b/src/licensedcode/data/rules/proprietary-10_10.RULE @@ -6,7 +6,7 @@ is_license_notice: yes THIS SOFTWARE IS FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIED ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSION OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR ANY OTHER COPIES -THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHER +THEREOF {{MAY NOT BE}} PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHER PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED. THE INFORMATION IN THIS SOFTWARE IS SUBJECT TO CHANGE WITHOUT NOTICE AND diff --git a/src/licensedcode/data/rules/proprietary-license_100.RULE b/src/licensedcode/data/rules/proprietary-license_100.RULE index 76f8018bcc..a6a6574c75 100644 --- a/src/licensedcode/data/rules/proprietary-license_100.RULE +++ b/src/licensedcode/data/rules/proprietary-license_100.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.codesynthesis.com/products/xsd/license.xhtml --- -The C++ bindings need to be generated using an XSD Commercial Proprietary License. +The C++ bindings need to be generated using an XSD Commercial {{Proprietary License}}. See http://www.codesynthesis.com/products/xsd/license.xhtml for more information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1001.RULE b/src/licensedcode/data/rules/proprietary-license_1001.RULE index f5998061aa..69b166ecdb 100644 --- a/src/licensedcode/data/rules/proprietary-license_1001.RULE +++ b/src/licensedcode/data/rules/proprietary-license_1001.RULE @@ -10,7 +10,7 @@ agreement, are prohibited. For more information, please contact -Permission is hereby NOT granted to use, copy, modify, merge, publish, +{{Permission is hereby NOT granted}} to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of this software in its current form or modified forms, either in part or as a whole, without explicit written permission from the author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1002.RULE b/src/licensedcode/data/rules/proprietary-license_1002.RULE index b4d5cb8ac2..2914989d67 100644 --- a/src/licensedcode/data/rules/proprietary-license_1002.RULE +++ b/src/licensedcode/data/rules/proprietary-license_1002.RULE @@ -3,7 +3,7 @@ license_expression: proprietary-license is_license_notice: yes --- -Permission is hereby NOT granted to use, copy, modify, merge, publish, +{{Permission is hereby NOT granted}} to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of this software in its current form or modified forms, either in part or as a whole, without explicit written permission from the author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1005.RULE b/src/licensedcode/data/rules/proprietary-license_1005.RULE index f8c64e1556..e4991baae6 100644 --- a/src/licensedcode/data/rules/proprietary-license_1005.RULE +++ b/src/licensedcode/data/rules/proprietary-license_1005.RULE @@ -5,10 +5,10 @@ minimum_coverage: 80 notes: https://github.com/cjus/unlicensed/blob/4b90fee5fcd700617fcd9e6e18ba87525036116a/UNL#L9 --- -The Unlicensed non-License (UNL) +The {{Unlicensed non-License (UNL}}) This code where this {{non-license appears}} is concernered Unlicensed software. -Permission is hereby NOT granted to any person obtaining a copy of this +{{Permission is hereby NOT granted}} to any person obtaining a copy of this software and associated documentation files (the "Software"). While this software may have been available to you for preview, it must not diff --git a/src/licensedcode/data/rules/proprietary-license_1007.RULE b/src/licensedcode/data/rules/proprietary-license_1007.RULE index 0119a8b3e7..24ee04e6fc 100644 --- a/src/licensedcode/data/rules/proprietary-license_1007.RULE +++ b/src/licensedcode/data/rules/proprietary-license_1007.RULE @@ -7,7 +7,7 @@ notes: https://github.com/zphixon/shoop/blob/eacb55ebb97b2a19bcf18e0a88eddeeb1d8 {{You are not allowed to use this.}} -Permission is hereby NOT granted, to any person obtaining a copy of this +{{Permission is hereby NOT granted}}, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software in any manner, including the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, or to diff --git a/src/licensedcode/data/rules/proprietary-license_1011.RULE b/src/licensedcode/data/rules/proprietary-license_1011.RULE index ec226d6189..ab01c8ef3f 100644 --- a/src/licensedcode/data/rules/proprietary-license_1011.RULE +++ b/src/licensedcode/data/rules/proprietary-license_1011.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code may not be modified or removed without their knowledge. \ No newline at end of file +This code {{may not be}} modified or removed without their knowledge. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1012.RULE b/src/licensedcode/data/rules/proprietary-license_1012.RULE index a230ab7c8f..5652a4ea50 100644 --- a/src/licensedcode/data/rules/proprietary-license_1012.RULE +++ b/src/licensedcode/data/rules/proprietary-license_1012.RULE @@ -3,7 +3,7 @@ license_expression: proprietary-license is_license_text: yes --- -DISCLAIMER: THIS CODE MAY NOT BE MODIFIED IN ANY MANNER +DISCLAIMER: THIS CODE {{MAY NOT BE}} MODIFIED IN ANY MANNER WITHOUT MY CONSENT. IT SHOULD BE USED FOR EDUCATIONAL PURPOSES ONLY. LEARN, BUT DO NOT STEAL -- MEANING DO NOT COPY CODE VERBATIM JUST TO PASS A CLASS IF YOU diff --git a/src/licensedcode/data/rules/proprietary-license_1014.RULE b/src/licensedcode/data/rules/proprietary-license_1014.RULE index ef078cb6f2..925becf896 100644 --- a/src/licensedcode/data/rules/proprietary-license_1014.RULE +++ b/src/licensedcode/data/rules/proprietary-license_1014.RULE @@ -44,14 +44,14 @@ underneath the first comment section of each file. notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -• The name of the Copyright Holder may not be used to endorse or promote +• The name of the Copyright Holder {{may not be}} used to endorse or promote products derived from this Package without specific prior written permission from the Copyright Holder. • The names "" and "" must not be used to endorse or promote products derived from this Package without specific prior written permission from the Copyright Holder. -• Products derived from this Package may not be called "" -- +• Products derived from this Package {{may not be}} called "" -- nor may "" appear in their name -- without prior written permission from the Copyright Holder. You may indicate that your software works in conjunction with by saying "Product for diff --git a/src/licensedcode/data/rules/proprietary-license_1016.RULE b/src/licensedcode/data/rules/proprietary-license_1016.RULE index b4a12c4945..58b4782489 100644 --- a/src/licensedcode/data/rules/proprietary-license_1016.RULE +++ b/src/licensedcode/data/rules/proprietary-license_1016.RULE @@ -26,11 +26,11 @@ under the terms of the Reciprocal Public License only. The Customer acknowledges warranties of contained in this agreement extend to copies licensed under the Reciprocal Public License. License Conditions 2.1 -Limitations on License. The Licensed Software may not be copied, altered, modified or reproduced except to the +Limitations on License. The Licensed Software {{may not be}} copied, altered, modified or reproduced except to the extent authorized by this agreement. 2.2 -No Sub-License. The Licensed Software may only be used pursuant to this agreement by the Customer and may not -be sub-licensed. +No Sub-License. The Licensed Software may only be used pursuant to this agreement by the Customer and {{may not +be}} sub-licensed. 2.3 Equitable Remedies. In addition to any other remedies available to under this agreement or otherwise, any unauthorized use, alteration, modification, reproduction, publication, disclosure or transfer of the Licensed diff --git a/src/licensedcode/data/rules/proprietary-license_1027.RULE b/src/licensedcode/data/rules/proprietary-license_1027.RULE index 69d1c83204..2d7f26f79e 100644 --- a/src/licensedcode/data/rules/proprietary-license_1027.RULE +++ b/src/licensedcode/data/rules/proprietary-license_1027.RULE @@ -10,14 +10,14 @@ ignorable_holders: The firmware contained herein is Copyright (c) Emagic as an unpublished work. This notice does not imply unrestricted or public access to this firmware which is a trade secret of Emagic, -and which may not be reproduced, used, sold or transferred to +and which {{may not be}} reproduced, used, sold or transferred to any third party without Emagic's written consent. All Rights Reserved. Permission is hereby granted for the distribution of this firmware image as part of a Linux or other Open Source operating system kernel in text or binary form as required. -This firmware may not be modified and may only be used with the +This firmware {{may not be}} modified and may only be used with the Interface. Distribution and/or Modification of any driver which includes this firmware, in whole or in part, requires the inclusion of this statement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1028.RULE b/src/licensedcode/data/rules/proprietary-license_1028.RULE index c19fb18332..d244649507 100644 --- a/src/licensedcode/data/rules/proprietary-license_1028.RULE +++ b/src/licensedcode/data/rules/proprietary-license_1028.RULE @@ -10,10 +10,10 @@ ignorable_holders: The firmware contained herein is Copyright (c) Emagic as an unpublished work. This notice does not imply unrestricted or public access to this firmware which is a trade secret of Emagic, -and which may not be reproduced, used, sold or transferred to +and which {{may not be}} reproduced, used, sold or transferred to any third party without Emagic's written consent. All Rights Reserved. -This firmware may not be modified and may only be used with the +This firmware {{may not be}} modified and may only be used with the Interface. Distribution and/or Modification of any driver which includes this firmware, in whole or in part, requires the inclusion of this statement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1034.RULE b/src/licensedcode/data/rules/proprietary-license_1034.RULE index 5975380369..58ed0da62d 100644 --- a/src/licensedcode/data/rules/proprietary-license_1034.RULE +++ b/src/licensedcode/data/rules/proprietary-license_1034.RULE @@ -9,7 +9,7 @@ Original licence information: as an unpublished work. This notice does not imply unrestricted or public access to the source code from which this firmware image is - derived. Except as noted below this firmware image may not be + derived. Except as noted below this firmware image {{may not be}} reproduced, used, sold or transferred to any third party without Keyspan's prior written consent. All Rights Reserved. @@ -17,7 +17,7 @@ Original licence information: image as part of a Linux or other Open Source operating system kernel in text or binary form as required. - This firmware may not be modified and may only be used with + This firmware {{may not be}} modified and may only be used with Keyspan hardware. Distribution and/or Modification of the keyspan.c driver which includes this firmware, in whole or in part, requires the inclusion of this statement." \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1042.RULE b/src/licensedcode/data/rules/proprietary-license_1042.RULE index 170bd8b9ab..215b308dc9 100644 --- a/src/licensedcode/data/rules/proprietary-license_1042.RULE +++ b/src/licensedcode/data/rules/proprietary-license_1042.RULE @@ -6,7 +6,7 @@ minimum_coverage: 80 as an unpublished work. This notice does not imply unrestricted or public access to the source code from which this firmware image is - derived. Except as noted below this firmware image may not be + derived. Except as noted below this firmware image {{may not be}} reproduced, used, sold or transferred to any third party without Keyspan's prior written consent. All Rights Reserved. @@ -14,7 +14,7 @@ as an unpublished work. This notice does not imply unrestricted or image as part of a Linux or other Open Source operating system kernel in text or binary form as required. - This firmware may not be modified and may only be used with + This firmware {{may not be}} modified and may only be used with Keyspan hardware. Distribution and/or Modification of the keyspan.c driver which includes this firmware, in whole or in part, requires the inclusion of this statement." \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_1046.RULE b/src/licensedcode/data/rules/proprietary-license_1046.RULE index 5ac71eaa5d..eb902a9bb7 100644 --- a/src/licensedcode/data/rules/proprietary-license_1046.RULE +++ b/src/licensedcode/data/rules/proprietary-license_1046.RULE @@ -10,10 +10,10 @@ ignorable_holders: The firmware contained herein is Copyright (c) Emagic as an unpublished work. This notice does not imply unrestricted or public access to this firmware which is a trade secret of Emagic, - and which may not be reproduced, used, sold or transferred to + and which {{may not be}} reproduced, used, sold or transferred to any third party without Emagic's written consent. All Rights Reserved. - This firmware may not be modified and may only be used with the + This firmware {{may not be}} modified and may only be used with the Emagic EMI 2|6 Audio Interface. Distribution and/or Modification of any driver which includes this firmware, in whole or in part, requires the inclusion of this statement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_105.RULE b/src/licensedcode/data/rules/proprietary-license_105.RULE index 385ec2b794..323637f82c 100644 --- a/src/licensedcode/data/rules/proprietary-license_105.RULE +++ b/src/licensedcode/data/rules/proprietary-license_105.RULE @@ -4,6 +4,6 @@ is_license_notice: yes relevance: 100 --- -This script is released under one of the Tenable Script Licenses and may not -be used from within scripts released under another license without the +This script is released under one of the Tenable Script Licenses and {{may not +be}} used from within scripts released under another license without the authorization from Tenable Network Security Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_117.RULE b/src/licensedcode/data/rules/proprietary-license_117.RULE index 6df02b8235..e196fa74d6 100644 --- a/src/licensedcode/data/rules/proprietary-license_117.RULE +++ b/src/licensedcode/data/rules/proprietary-license_117.RULE @@ -15,8 +15,8 @@ pending patent applications in the U.S. and in other countries. This document and the product to which it pertains are distributed under licenses restricting their use, copying, distribution, and -decompilation. This document may be reproduced and distributed but may -not be changed without prior written authorization of Sun and its +decompilation. This document may be reproduced and distributed but {{may +not be}} changed without prior written authorization of Sun and its licensors, if any. Third-party software, including font technology, is copyrighted and diff --git a/src/licensedcode/data/rules/proprietary-license_12.RULE b/src/licensedcode/data/rules/proprietary-license_12.RULE index 56b743d0db..351512f420 100644 --- a/src/licensedcode/data/rules/proprietary-license_12.RULE +++ b/src/licensedcode/data/rules/proprietary-license_12.RULE @@ -5,4 +5,4 @@ relevance: 100 --- This technology is protected by multiple US and International -patents. This notice and attribution to IBM may not be removed. \ No newline at end of file +patents. This notice and attribution to IBM {{may not be}} removed. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_126.RULE b/src/licensedcode/data/rules/proprietary-license_126.RULE index b78331668e..f38ee75d40 100644 --- a/src/licensedcode/data/rules/proprietary-license_126.RULE +++ b/src/licensedcode/data/rules/proprietary-license_126.RULE @@ -151,7 +151,7 @@ or error-free. does not guarantee that the information accessed by the Softwa Subscription Services will be accurate or complete. You acknowledge that performance of the Software and Subscription Services may be affected by any number of factors, including without limitation, technical failure of the Software, the acts or omissions of third parties and other -causes reasonably beyond the control of . Certain features of the Software may not be +causes reasonably beyond the control of . Certain features of the Software {{may not be}} forward-compatible with future versions of the Software and use of such features with future versions of the Software may require purchase of the applicable future version of the Software. 8.3 AS IS SALE: EXCEPT FOR THE LIMITED WARRANTIES SET FORTH IN SECTION 8.1, YOU AGREE THAT @@ -190,13 +190,13 @@ any termination of this Agreement, you must uninstall and destroy all copies of 11. MISCELLANEOUS: 11.1 COMPLIANCE WITH EXPORT CONTROL LAWS: You acknowledge that Software is subject to the export control laws and regulations of the United States ("U.S.") and agree to abide by those laws and -regulations. Under U.S. law, the Software may not be downloaded or otherwise exported, reexported, +regulations. Under U.S. law, the Software {{may not be}} downloaded or otherwise exported, reexported, or transferred to restricted countries, restricted end-users, or for restricted end-uses. The U.S. currently has embargo restrictions against Cuba, Iran, Iraq, Libya, North Korea, Sudan, and Syria. The lists of restricted end-users are maintained on the U.S. Commerce Department''s Denied Persons List, the Commerce Department''s Entity List, the Commerce Department''s List of Unverified Persons, and the U.S. Treasury Department''s List of Specially Designated Nationals and Blocked Persons. In -addition, the Software may not be downloaded or otherwise exported, reexported, or transferred to +addition, the Software {{may not be}} downloaded or otherwise exported, reexported, or transferred to an end-user engaged in activities related to weapons of mass destruction. Such activities include but are not necessarily limited to activities related to: (1) the design, development, production or use of nuclear materials, nuclear facilities, or nuclear weapons; (2) the design, development, diff --git a/src/licensedcode/data/rules/proprietary-license_144.RULE b/src/licensedcode/data/rules/proprietary-license_144.RULE index 0b71e23893..76b0b9d818 100644 --- a/src/licensedcode/data/rules/proprietary-license_144.RULE +++ b/src/licensedcode/data/rules/proprietary-license_144.RULE @@ -6,5 +6,5 @@ notes: See https://github.com/pntailor/Work/blob/5312ee7b42c5b05dac8455acc735ba4 --- # This program is confidential and proprietary to ARRIS Enterprises, LLC. (ARRIS), -# and may not be copied, reproduced, modified, disclosed to others, published or used, +# and {{may not be}} copied, reproduced, modified, disclosed to others, published or used, # in whole or in part, without the express prior written permission of ARRIS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_145.RULE b/src/licensedcode/data/rules/proprietary-license_145.RULE index b9de33b5db..f180f08021 100644 --- a/src/licensedcode/data/rules/proprietary-license_145.RULE +++ b/src/licensedcode/data/rules/proprietary-license_145.RULE @@ -6,5 +6,5 @@ notes: See https://github.com/pntailor/Work/blob/5312ee7b42c5b05dac8455acc735ba4 --- # This program is confidential and proprietary to , -# and may not be copied, reproduced, modified, disclosed to others, published or used, +# and {{may not be}} copied, reproduced, modified, disclosed to others, published or used, # in whole or in part, without the express prior written permission of. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_275.RULE b/src/licensedcode/data/rules/proprietary-license_275.RULE index c2bf2be343..0d7ffdec5c 100644 --- a/src/licensedcode/data/rules/proprietary-license_275.RULE +++ b/src/licensedcode/data/rules/proprietary-license_275.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This Record Material And The Data Recorded Thereon Are Licensed From and Are The Property Of Linotype Or Its Licensors And May Not Be Reproduced, Used, Displayed, Modified, Disclosed Or Transferred In Any Manner Without The Express Written Approval Of Linotype. \ No newline at end of file +This Record Material And The Data Recorded Thereon Are Licensed From and Are The Property Of Linotype Or Its Licensors And {{May Not Be}} Reproduced, Used, Displayed, Modified, Disclosed Or Transferred In Any Manner Without The Express Written Approval Of Linotype. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_278.RULE b/src/licensedcode/data/rules/proprietary-license_278.RULE index 15c43d9798..19513be555 100644 --- a/src/licensedcode/data/rules/proprietary-license_278.RULE +++ b/src/licensedcode/data/rules/proprietary-license_278.RULE @@ -11,6 +11,6 @@ ADDITIONAL TERMS. In general: - Personal, non-commercial use is generally permitted. - Commercialization is permitted with certain limitations; for example, to ensure that every iLBC decoder can decode every iLBC-encoded payload, commercial “Deployment” must comply with the applicable IETF Standard/draft, and the -format of the bitstream may not be modified. +format of the bitstream {{may not be}} modified. - You are provided no warranty or support, and all liability is disclaimed. - You must register this license with GIPS prior to any commercial Deployment. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_280.RULE b/src/licensedcode/data/rules/proprietary-license_280.RULE index 96e36adc65..26381921bf 100644 --- a/src/licensedcode/data/rules/proprietary-license_280.RULE +++ b/src/licensedcode/data/rules/proprietary-license_280.RULE @@ -15,7 +15,7 @@ ignorable_authors: * any documentation, advertising materials, and other materials related * to such distribution and use acknowledge that the software was * developed by the University of Southern California, Information -* Sciences Institute. The name of the University may not be used to +* Sciences Institute. The name of the University {{may not be}} used to * endorse or promote products derived from this software without * specific prior written permission. * diff --git a/src/licensedcode/data/rules/proprietary-license_285.RULE b/src/licensedcode/data/rules/proprietary-license_285.RULE index 914ee77f25..db2bf074bd 100644 --- a/src/licensedcode/data/rules/proprietary-license_285.RULE +++ b/src/licensedcode/data/rules/proprietary-license_285.RULE @@ -28,7 +28,7 @@ LEGAL: This code is placed into the public domain, hence requires Greg Carter, CRYPTOCard Corporation 1996". Also all efforts should be made to point out any changes from the original. !!!!!Further, any Developer Components based on this code - *MAY NOT* be sold for profit. This Object was placed into the + *{{MAY NOT* be}} sold for profit. This Object was placed into the public domain, and therefore any derived components should also.!!!!! diff --git a/src/licensedcode/data/rules/proprietary-license_294.RULE b/src/licensedcode/data/rules/proprietary-license_294.RULE index a9c06f47c2..bbbca9f812 100644 --- a/src/licensedcode/data/rules/proprietary-license_294.RULE +++ b/src/licensedcode/data/rules/proprietary-license_294.RULE @@ -7,7 +7,7 @@ relevance: 100 // * This software is furnished under a license and may be used and copied * // * only in accordance with the terms of such license and with the * // * inclusion of the above copyright notice. This software or any other * -// * copies thereof may not be provided or otherwise made available to any * +// * copies thereof {{may not be}} provided or otherwise made available to any * // * other person. No title to and ownership of the software is hereby * // * transferred. * // * * diff --git a/src/licensedcode/data/rules/proprietary-license_296.RULE b/src/licensedcode/data/rules/proprietary-license_296.RULE index 5ba18f8c67..317fe8e31b 100644 --- a/src/licensedcode/data/rules/proprietary-license_296.RULE +++ b/src/licensedcode/data/rules/proprietary-license_296.RULE @@ -106,7 +106,7 @@ PARTY FROM THE SOFTWARE; (III) AS TO THE LIFE OF ANY URL USED BY THE SOFTWARE; OR (IV) THAT ALL USES THAT CAN BE MADE OF THE SOFTWARE COMPLY WITH APPLICABLE LAW; RATHER, IT IS LICENSEE’S RESPONSIBILITY TO CONFORM ITS USE OF THE SOFTWARE WITH THE LAW. LICENSEE ACKNOWLEDGES THAT CERTAIN SOFTWARE AND EQUIPMENT USED BY -IT MAY NOT BE CAPABLE OF SUPPORTING CERTAIN FEATURES OF THE SOFTWARE. EACH PARTY +IT {{MAY NOT BE}} CAPABLE OF SUPPORTING CERTAIN FEATURES OF THE SOFTWARE. EACH PARTY HERETO HEREBY ACKNOWLEDGES THAT IT HAS NOT RELIED UPON ANY REPRESENTATIONS OR WARRANTIES MADE BY THE OTHER EXCEPT AS SPECIFICALLY SET FORTH IN THIS AGREEMENT. @@ -155,7 +155,7 @@ CLAIMS (INCLUDING NEGLIGENCE). D. Entire Agreement; Modifications; No Waiver. This Agreement constitutes the entire Agreement of the parties with respect to the subject matter hereof, supersedes any and all existing agreements relating to the subject - matter hereof, and may not be modified or amended except by a written + matter hereof, and {{may not be}} modified or amended except by a written instrument signed by both parties. No failure or delay in exercising any right, power or remedy under the Agreement shall operate as a waiver thereof, nor shall any single or partial exercise of any right under this Agreement diff --git a/src/licensedcode/data/rules/proprietary-license_326.RULE b/src/licensedcode/data/rules/proprietary-license_326.RULE index 8c4082f846..f731e4b495 100644 --- a/src/licensedcode/data/rules/proprietary-license_326.RULE +++ b/src/licensedcode/data/rules/proprietary-license_326.RULE @@ -11,7 +11,7 @@ distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and these paragraphs are included on all such copies and derivative works. -This document may not be modified in any way, such as by removing the +This document {{may not be}} modified in any way, such as by removing the copyright notice or references to the Companies or other organizations. Further, while these copyright restrictions apply to the written OPML specification, no claim of ownership is made by the Companies to the diff --git a/src/licensedcode/data/rules/proprietary-license_334.RULE b/src/licensedcode/data/rules/proprietary-license_334.RULE index 665e35dbc4..e1e5694c27 100644 --- a/src/licensedcode/data/rules/proprietary-license_334.RULE +++ b/src/licensedcode/data/rules/proprietary-license_334.RULE @@ -11,7 +11,7 @@ Redistribution and use in binary form, without modification, are notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - 2. The name of Chelsio Communications may not be used to endorse or + 2. The name of Chelsio Communications {{may not be}} used to endorse or promote products derived from this software without specific prior written permission. 3. Reverse engineering, decompilation, or disassembly of this diff --git a/src/licensedcode/data/rules/proprietary-license_335.RULE b/src/licensedcode/data/rules/proprietary-license_335.RULE index e8ac9390d8..7669f59118 100644 --- a/src/licensedcode/data/rules/proprietary-license_335.RULE +++ b/src/licensedcode/data/rules/proprietary-license_335.RULE @@ -11,7 +11,7 @@ Redistribution and use in binary form, without modification, are notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - 2. The name of may not be used to endorse or + 2. The name of {{may not be}} used to endorse or promote products derived from this software without specific prior written permission. 3. Reverse engineering, decompilation, or disassembly of this diff --git a/src/licensedcode/data/rules/proprietary-license_346.RULE b/src/licensedcode/data/rules/proprietary-license_346.RULE index c97f2e57c6..10fa02f30f 100644 --- a/src/licensedcode/data/rules/proprietary-license_346.RULE +++ b/src/licensedcode/data/rules/proprietary-license_346.RULE @@ -7,6 +7,6 @@ relevance: 100 FURNISHED UNDER A LICENSE AND MAY BE USED AND COPIED ONLY IN ACCORDANCE WITH THE TERMS OF SUCH LICENSE AND WITH THE INCLUSION OF THE ABOVE COPYRIGHT NOTICE. THIS SOFTWARE OR -ANY OTHER COPIES THEREOF MAY NOT BE PROVIDED OR OTHERWISE MADE +ANY OTHER COPIES THEREOF {{MAY NOT BE}} PROVIDED OR OTHERWISE MADE AVAILABLE TO ANY OTHER PERSON. NO TITLE TO AND OWNERSHIP OF THE SOFTWARE IS HEREBY TRANSFERRED \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_358.RULE b/src/licensedcode/data/rules/proprietary-license_358.RULE index bb82d66eaa..17fc84c2ca 100644 --- a/src/licensedcode/data/rules/proprietary-license_358.RULE +++ b/src/licensedcode/data/rules/proprietary-license_358.RULE @@ -9,8 +9,8 @@ notes: See https://github.com/panicinc/PunchClock/blob/f08ebc079717cd1b97f6a9ad4 Redistribution and use, with or without modification, are permitted provided that the following conditions are met: - * The software, and any works derived from the software, may not - be sold without specific prior written permission from Panic Inc. + * The software, and any works derived from the software, {{may not + be}} sold without specific prior written permission from Panic Inc. * Redistributions must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation diff --git a/src/licensedcode/data/rules/proprietary-license_359.RULE b/src/licensedcode/data/rules/proprietary-license_359.RULE index e28612724d..c86456509e 100644 --- a/src/licensedcode/data/rules/proprietary-license_359.RULE +++ b/src/licensedcode/data/rules/proprietary-license_359.RULE @@ -9,8 +9,8 @@ notes: See https://github.com/panicinc/PunchClock/blob/f08ebc079717cd1b97f6a9ad4 Redistribution and use, with or without modification, are permitted provided that the following conditions are met: - * The software, and any works derived from the software, may not - be sold without specific prior written permission from Inc. + * The software, and any works derived from the software, {{may not + be}} sold without specific prior written permission from Inc. * Redistributions must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation diff --git a/src/licensedcode/data/rules/proprietary-license_382.RULE b/src/licensedcode/data/rules/proprietary-license_382.RULE index e4a2e3a28f..e68126b563 100644 --- a/src/licensedcode/data/rules/proprietary-license_382.RULE +++ b/src/licensedcode/data/rules/proprietary-license_382.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -|| # This file may not be redistributed in whole or significant part. # || \ No newline at end of file +|| # This file {{may not be}} redistributed in whole or significant part. # || \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_383.RULE b/src/licensedcode/data/rules/proprietary-license_383.RULE index da0d9172b1..0d0ef2e29e 100644 --- a/src/licensedcode/data/rules/proprietary-license_383.RULE +++ b/src/licensedcode/data/rules/proprietary-license_383.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -|| # This file may not be redistributed in whole or significant part. # || +|| # This file {{may not be}} redistributed in whole or significant part. # || || # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # || \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_384.RULE b/src/licensedcode/data/rules/proprietary-license_384.RULE index e426ed6222..04694006ae 100644 --- a/src/licensedcode/data/rules/proprietary-license_384.RULE +++ b/src/licensedcode/data/rules/proprietary-license_384.RULE @@ -7,6 +7,6 @@ ignorable_urls: - http://www.vbulletin.com/license.html --- -|| # This file may not be redistributed in whole or significant part. # || +|| # This file {{may not be}} redistributed in whole or significant part. # || || # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # || || # http://www.vbulletin.com | http://www.vbulletin.com/license.html # || \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_385.RULE b/src/licensedcode/data/rules/proprietary-license_385.RULE index 872ab7350c..e41cf63776 100644 --- a/src/licensedcode/data/rules/proprietary-license_385.RULE +++ b/src/licensedcode/data/rules/proprietary-license_385.RULE @@ -11,7 +11,7 @@ By installing and using vBulletin on your server, you agree to the following ter A vBulletin license grants you the right to run one instance (a single installation) of vBulletin on one web server and one web site for each license purchased. Each license may power one instance of vBulletin on one domain. After the expiry of a leased license, vBulletin must either be removed from the server, or another license purchased. All customers must submit the URL where they are using (or plan to use) each license. The URL can be submitted via the vBulletin members area. - vBulletin source code may be altered (at the owners risk), but the software (altered or otherwise) may not be distributed to entities beyond the license holder without the explicit written permission of Jelsoft Enterprises Limited. + vBulletin source code may be altered (at the owners risk), but the software (altered or otherwise) {{may not be}} distributed to entities beyond the license holder without the explicit written permission of Jelsoft Enterprises Limited. All vBulletin copyright notices within design templates must remain unchanged (and visible). Registered users may modify the vBulletin code for their personal use (at their own risk), but any altered code must not be redistributed or resold in any form. If any terms are violated, Jelsoft Enterprises Limited reserves the right to revoke the license at any time. No license refunds will be granted for revoked licenses. diff --git a/src/licensedcode/data/rules/proprietary-license_394.RULE b/src/licensedcode/data/rules/proprietary-license_394.RULE index be29fe6f75..f32c7a2c1e 100644 --- a/src/licensedcode/data/rules/proprietary-license_394.RULE +++ b/src/licensedcode/data/rules/proprietary-license_394.RULE @@ -12,7 +12,7 @@ are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - The name of the author may not be used to endorse or promote products + The name of the author {{may not be}} used to endorse or promote products derived from this software without specific prior written permission. Redistribution of this project in binary form, with or without modification, diff --git a/src/licensedcode/data/rules/proprietary-license_399.RULE b/src/licensedcode/data/rules/proprietary-license_399.RULE index 6f50bc6464..631ef2e87e 100644 --- a/src/licensedcode/data/rules/proprietary-license_399.RULE +++ b/src/licensedcode/data/rules/proprietary-license_399.RULE @@ -12,7 +12,7 @@ are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -2. The name of the author may not be used to endorse or promote products +2. The name of the author {{may not be}} used to endorse or promote products derived from this software without specific prior written permission. Redistribution in binary form, with or without modification, is NOT diff --git a/src/licensedcode/data/rules/proprietary-license_420.RULE b/src/licensedcode/data/rules/proprietary-license_420.RULE index 32a581e28d..625546fe1e 100644 --- a/src/licensedcode/data/rules/proprietary-license_420.RULE +++ b/src/licensedcode/data/rules/proprietary-license_420.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -May not be used for monetary gain \ No newline at end of file +{{May not be}} used for monetary gain \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_421.RULE b/src/licensedcode/data/rules/proprietary-license_421.RULE index 52d0687963..e413a9793e 100644 --- a/src/licensedcode/data/rules/proprietary-license_421.RULE +++ b/src/licensedcode/data/rules/proprietary-license_421.RULE @@ -27,7 +27,7 @@ RESTRICTED RIGHTS LEGEND. Any Software which is downloaded from this Server for NOTICE SPECIFIC TO DOCUMENTS AVAILABLE ON THIS WEBSITE. Permission to use Documents (such as white papers, press releases, datasheets and FAQs) from this server ("Server") is granted, provided that (1) the below copyright notice appears in all copies and that both the copyright notice and this permission notice appear, (2) use of such Documents from this Server is for informational and non-commercial or personal use only and will not be copied or posted on any network computer or broadcast in any media and (3) no modifications of any Documents are made. Educational institutions ( specifically K-12, universities and state community colleges) may download and reproduce the Documents for distribution in the classroom. Distribution outside the classroom requires express written permission. Use for any other purpose is expressly prohibited by law and may result in severe civil and criminal penalties. Violators will be prosecuted to the maximum extent possible. -Documents specified above do not include the design or layout of the lsilogic.com website or any other LSI CORPORATION owned, operated, licensed or controlled site. Elements of LSI CORPORATION websites are protected by trade dress, trademark, unfair competition and other laws and may not be copied or imitated in whole or in part. No logo, graphic, sound or image from any LSI CORPORATION website may be copied or retransmitted unless expressly permitted by LSI CORPORATION. +Documents specified above do not include the design or layout of the lsilogic.com website or any other LSI CORPORATION owned, operated, licensed or controlled site. Elements of LSI CORPORATION websites are protected by trade dress, trademark, unfair competition and other laws and {{may not be}} copied or imitated in whole or in part. No logo, graphic, sound or image from any LSI CORPORATION website may be copied or retransmitted unless expressly permitted by LSI CORPORATION. LSI CORPORATION AND/OR ITS RESPECTIVE SUPPLIERS MAKE NO REPRESENTATIONS ABOUT THE SUITABILITY OF THE INFORMATION CONTAINED IN THE DOCUMENTS AND RELATED GRAPHICS PUBLISHED ON THIS SERVER FOR ANY PURPOSE. ALL SUCH DOCUMENTS AND RELATED GRAPHICS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. LSI CORPORATION AND/OR ITS RESPECTIVE SUPPLIERS HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH REGARD TO THIS INFORMATION, INCLUDING ALL IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL LSI CORPORATION AND/OR ITS RESPECTIVE SUPPLIERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF INFORMATION AVAILABLE FROM THIS SERVER. diff --git a/src/licensedcode/data/rules/proprietary-license_432.RULE b/src/licensedcode/data/rules/proprietary-license_432.RULE index a39ce5ac3c..9920fcc03c 100644 --- a/src/licensedcode/data/rules/proprietary-license_432.RULE +++ b/src/licensedcode/data/rules/proprietary-license_432.RULE @@ -27,7 +27,7 @@ ignorable_authors: * downloaded. * 3. All advertising materials specifically mentioning features or use of * this emulator must acknowledge that it was developed by W. Metzenthen. - * 4. The name of W. Metzenthen may not be used to endorse or promote + * 4. The name of W. Metzenthen {{may not be}} used to endorse or promote * products derived from this software without specific prior written * permission. * diff --git a/src/licensedcode/data/rules/proprietary-license_450.RULE b/src/licensedcode/data/rules/proprietary-license_450.RULE index 77ab21ae11..951b072577 100644 --- a/src/licensedcode/data/rules/proprietary-license_450.RULE +++ b/src/licensedcode/data/rules/proprietary-license_450.RULE @@ -37,7 +37,7 @@ Licensor offers benchmarking software (“Software”) pursuant to an open sourc 4.3. No Third-Party Beneficiaries. Except for the rights of Related Persons under Article 3 (Indemnification), there are no third-party beneficiaries to this Agreement. -4.4. Assignment. Licensee’s rights hereunder are non-assignable, and may not be sublicensed. +4.4. Assignment. Licensee’s rights hereunder are non-assignable, and {{may not be}} sublicensed. 4.5. Equitable Relief. Licensee acknowledges that the remedies available at law for any breach of this Agreement will, by their nature, be inadequate. Accordingly, Licensor may obtain injunctive relief or other equitable relief to restrain a breach or threatened breach of this Agreement or to specifically enforce this Agreement, without proving that any monetary damages have been sustained, and without the requirement of posting of a bond prior to obtaining such equitable relief. @@ -45,7 +45,7 @@ Licensor offers benchmarking software (“Software”) pursuant to an open sourc 4.7. Attorneys’ Fees. If any legal action, arbitration or other proceeding is brought for the enforcement of this Agreement, or because of an alleged dispute, breach, default, or misrepresentation in connection with any of the provisions of this Agreement, the successful or prevailing party shall be entitled to recover its reasonable attorneys’ fees and other reasonable costs incurred in that action or proceeding, in addition to any other relief to which it may be entitled. -4.8. Amendment; Waiver. This Agreement may not be amended, nor may any rights under it be waived, except in writing by Licensor. +4.8. Amendment; Waiver. This Agreement {{may not be}} amended, nor may any rights under it be waived, except in writing by Licensor. 4.9. Severability. If any provision of this Agreement is held by a court of competent jurisdiction to be contrary to law, the provision shall be modified by the court and interpreted so as best to accomplish the objectives of the original provision to the fullest extent permitted by law, and the remaining provisions of this Agreement shall remain in effect. diff --git a/src/licensedcode/data/rules/proprietary-license_454.RULE b/src/licensedcode/data/rules/proprietary-license_454.RULE index 3d8ff5a9a8..97d91dbc9d 100644 --- a/src/licensedcode/data/rules/proprietary-license_454.RULE +++ b/src/licensedcode/data/rules/proprietary-license_454.RULE @@ -15,7 +15,7 @@ furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -The Software may not be used to offer a publicly accessible service that +The Software {{may not be}} used to offer a publicly accessible service that replicates the core services of Engine Yard Cloud. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR diff --git a/src/licensedcode/data/rules/proprietary-license_493.RULE b/src/licensedcode/data/rules/proprietary-license_493.RULE index 64a094b316..e9654bf3b0 100644 --- a/src/licensedcode/data/rules/proprietary-license_493.RULE +++ b/src/licensedcode/data/rules/proprietary-license_493.RULE @@ -22,4 +22,4 @@ following restrictions: 3. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. -4. This notice may not be removed or altered from any source distribution. \ No newline at end of file +4. This notice {{may not be}} removed or altered from any source distribution. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_495.RULE b/src/licensedcode/data/rules/proprietary-license_495.RULE index d81c31a568..5b665624ca 100644 --- a/src/licensedcode/data/rules/proprietary-license_495.RULE +++ b/src/licensedcode/data/rules/proprietary-license_495.RULE @@ -22,12 +22,12 @@ The Licensee pays a License fee of (plus value-added tax if applicable) to the L as the Licensor acknowledges the receipt of the fee, the Licensee may use the Software as defined in this Agreement. 3. Redistribution -The source code of the Software (if provided) and derivative works of it may not be disclosed, +The source code of the Software (if provided) and derivative works of it {{may not be}} disclosed, transferred, sold or rented to any third party (directly or indirectly). The Software and derivative works of it may only be distributed in binary form as part of one single product. If the use of the Software in conjunction with more than one product is desired, payment of additional licence fees becomes due. -The Software and derivative works of it may not be redistributed by the Licensee's end-users or +The Software and derivative works of it {{may not be}} redistributed by the Licensee's end-users or customers. All trademark notices, copyrights and copies of third party license texts (if inclusion is demanded in the respective licenses) must be included in the redistributed Software or derivative work. diff --git a/src/licensedcode/data/rules/proprietary-license_503.RULE b/src/licensedcode/data/rules/proprietary-license_503.RULE index 6a876b3486..d2bff48dbc 100644 --- a/src/licensedcode/data/rules/proprietary-license_503.RULE +++ b/src/licensedcode/data/rules/proprietary-license_503.RULE @@ -7,7 +7,7 @@ ignorable_urls: --- Proprietary Steinberg VST3 License -The Software Development Kit may not be distributed in parts or its entirety +The Software Development Kit {{may not be}} distributed in parts or its entirety without prior written agreement by Steinberg Media Technologies GmbH. The SDK must not be used to re-engineer or manipulate any technology used in any Steinberg or Third-party application or software module, @@ -15,9 +15,9 @@ unless permitted by law. Neither the name of the Steinberg Media Technologies GmbH nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -Before publishing a software under the proprietary license, you need to obtain a copy +Before publishing a software under the {{proprietary license}}, you need to obtain a copy of the License Agreement signed by Steinberg Media Technologies GmbH. -The Steinberg VST SDK License Agreement can be found at: +The Steinberg VST {{SDK License Agreement}} can be found at: www.steinberg.net/en/company/developers.html THE SDK IS PROVIDED BY STEINBERG MEDIA TECHNOLOGIES GMBH "AS IS" AND diff --git a/src/licensedcode/data/rules/proprietary-license_504.RULE b/src/licensedcode/data/rules/proprietary-license_504.RULE index 66e550bb1c..f0e45809f5 100644 --- a/src/licensedcode/data/rules/proprietary-license_504.RULE +++ b/src/licensedcode/data/rules/proprietary-license_504.RULE @@ -8,7 +8,7 @@ notes: an older W3C notice Notice and Disclaimers 1. Unless otherwise noted, all materials contained in this Site are copyrighted -and may not be used except as provided in these terms and conditions or in the +and {{may not be}} used except as provided in these terms and conditions or in the copyright notice (documents and software) or other proprietary notice provided with the relevant materials. 2. The materials contained in the Site may be downloaded or copied provided @@ -16,7 +16,7 @@ that ALL copies retain the copyright and any other proprietary notices contained on the materials. No material may be modified, edited or taken out of context such that its use creates a false or misleading statement or impression as to the positions, statements or actions of W3C. -3. The name and trademarks of copyright holders may NOT be used in advertising +3. The name and trademarks of copyright holders {{may NOT be}} used in advertising or publicity pertaining to the Web site, its content, specifications, or software without specific, written prior permission. Title to copyright in Web site documents will at all times remain with copyright holders. Use of W3C diff --git a/src/licensedcode/data/rules/proprietary-license_510.RULE b/src/licensedcode/data/rules/proprietary-license_510.RULE index 074ba7471d..ef83c3c01c 100644 --- a/src/licensedcode/data/rules/proprietary-license_510.RULE +++ b/src/licensedcode/data/rules/proprietary-license_510.RULE @@ -38,7 +38,7 @@ We allow contributions to the Security Alert Database by submitting a merge requ - **(b) Our Content Ownership.** GitLab does not claim any ownership rights in any User Content and nothing in these Security Alert Database Terms will be deemed to restrict any rights that you may have to use and exploit your User Content. Subject to the foregoing, GitLab and its licensors exclusively own all right, title and interest in and to the Security Alert Database and Content, including all associated intellectual property rights. You acknowledge that the Security Alert Database and Content are protected by copyright, trademark, and other laws of the United States and foreign countries. You agree not to remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Security Alert Database or Content. - **(c) Rights in User Content Granted by You.** By making any User Content available through the Security Alert Database you hereby grant to GitLab a perpetual, non-exclusive, transferable, worldwide, royalty-free license, with the right to sublicense, to integrate your User Content into the Security Alert Database and to use, copy, modify, create derivative works based upon, distribute, publicly display, and publicly perform your User Content in connection with operating and providing the Security Alert Database. - **(d) Your Responsibility for User Content.** You are solely responsible for all your User Content. You represent and warrant that you own all your User Content or you have all rights that are necessary to grant us the license rights in your User Content under these Security Alert Database Terms. You also represent and warrant that neither your User Content, nor your use and provision of your User Content to be made available through the Security Alert Database, nor any use of your User Content by GitLab on or through the Security Alert Database will infringe, misappropriate or violate a third party’s intellectual property rights, or rights of publicity or privacy, or result in the violation of any applicable law or regulation. -- **(e) Removal of User Content.** Once posted, some or all of your User Content (such as posts or comments you make) may not be removed from the Security Alert Database, and copies of your User Content may continue to exist on or in the Security Alert Database. We are not responsible or liable for the removal or deletion of (or the failure to remove or delete) any of your User Content. +- **(e) Removal of User Content.** Once posted, some or all of your User Content (such as posts or comments you make) {{may not be}} removed from the Security Alert Database, and copies of your User Content may continue to exist on or in the Security Alert Database. We are not responsible or liable for the removal or deletion of (or the failure to remove or delete) any of your User Content. - **(f) Rights in Content Granted by GitLab; No Downloads or Copying.** Subject to your compliance with these Security Alert Database Terms, GitLab grants you a limited, non-exclusive, non-transferable license, with no right to sublicense, to access, view and use the Content solely in connection with your Permitted Use of the Security Alert Database. "Permitted Use" shall mean any use of the Security Alert Database that is not expressly prohibited under Section 5, below. GitLab grants you no right to and you expressly agree not to download, copy, or otherwise store in electronic or other form any of the Content. ## 5. General Prohibitions and GitLab’s Enforcement Rights diff --git a/src/licensedcode/data/rules/proprietary-license_534.RULE b/src/licensedcode/data/rules/proprietary-license_534.RULE index 8ea2807016..ea422b72c7 100644 --- a/src/licensedcode/data/rules/proprietary-license_534.RULE +++ b/src/licensedcode/data/rules/proprietary-license_534.RULE @@ -188,7 +188,7 @@ Apache License (as modified) 10. The name, trade names, trademarks, service marks, or product names of Palantir Technologies Inc. (“Palantir”) or any of its - Contributors may not be used to endorse or promote products derived + Contributors {{may not be}} used to endorse or promote products derived from this Work (including the user interface elements embodied therein) without specific prior written permission. Nothing in this License constitutes as permission to (i) use the Work (including diff --git a/src/licensedcode/data/rules/proprietary-license_555.RULE b/src/licensedcode/data/rules/proprietary-license_555.RULE index ed5f279740..fc323a2d3a 100644 --- a/src/licensedcode/data/rules/proprietary-license_555.RULE +++ b/src/licensedcode/data/rules/proprietary-license_555.RULE @@ -30,18 +30,18 @@ These license terms are an agreement between you and Microsoft Corporation (or o 1. MICROSOFT EDGE FOR WINDOWS DEVICES 1.1. Windows License Terms. Your installation and use of the Software on any Windows platform shall be governed by the license terms for your Microsoft Windows Operating System software (“Windows License Terms”) on which you are using the Software, and those terms are incorporated by reference. If the Software is downloaded from Microsoft and labeled preview, insider, beta or pre-release, or is otherwise indicated as not being a final retail version of the Software, the applicable terms in Section 1.2 also apply to your use of the Software. Section 1.3 applies to your use of other services that may be made available for use through your use of the Software. 1.1.1. Updates. Notwithstanding above Section 1.1 as applied to Windows 7, 8, and 8.1, the terms of the applicable Windows License Terms, or any Windows update settings you have configured, the Software periodically checks for updates, and downloads and installs them for you. You may obtain updates only from Microsoft or authorized sources, and Microsoft may need to update your system to provide you with those updates. By accepting this agreement, you agree to receive these types of automatic updates without any additional notice. -1.2. Previews. Microsoft may make preview, insider, beta or other pre-release versions of the Software (“Previews”) available to you. You may use Previews only up to the Software’s expiration date (if any) and so long as you comply with the applicable Windows License Terms. Previews are experimental, which means that Previews may not operate correctly and may be substantially different from the commercially released version. In some instances, Previews may even inadvertently damage your device rendering it inoperable or cause occasional crashes, data loss or apps to stop working or be deleted. To recover, you may have to reinstall your apps, the operating system or re-flash your device. In some instances, you may not be able to go back to your prior version of the Software. Because Previews may contain more errors or inaccuracies, you should back-up your device before installing any Previews. We recommend installing Previews on non-production devices that are not business critical because you are more likely to experience crashes, setting and policy changes, loss of data or apps, feature and functionality changes, cause other apps to stop working, be updated, or removed from your device automatically without notice and other potential issues. We highly recommend that you do not install the Previews on any systems you don’t directly control or that you share with others. Notwithstanding anything to the contrary in this agreement, Previews are nontransferable and provided “AS IS.” By installing Previews on your device, you may void or impact your device warranty and may not be entitled to support from the manufacturer of your device or network operator, if applicable. Microsoft may not provide support services for Previews. If you provide Microsoft comments, suggestions or other feedback about the Preview (“Submission”), you grant Microsoft and its partners rights to use the Submission in any way and for any purpose. You will not give a Submission that is subject to a license that requires Microsoft to license its Software or documentation to third parties because Microsoft includes your Submission in them. These rights survive this agreement. Microsoft may change or discontinue the Previews, or terminate your access to the Previews, at any time without notice and for any reason whatsoever. You may stop using the Previews at any time by un-installing and deleting all copies of any Previews. +1.2. Previews. Microsoft may make preview, insider, beta or other pre-release versions of the Software (“Previews”) available to you. You may use Previews only up to the Software’s expiration date (if any) and so long as you comply with the applicable Windows License Terms. Previews are experimental, which means that Previews may not operate correctly and may be substantially different from the commercially released version. In some instances, Previews may even inadvertently damage your device rendering it inoperable or cause occasional crashes, data loss or apps to stop working or be deleted. To recover, you may have to reinstall your apps, the operating system or re-flash your device. In some instances, you {{may not be}} able to go back to your prior version of the Software. Because Previews may contain more errors or inaccuracies, you should back-up your device before installing any Previews. We recommend installing Previews on non-production devices that are not business critical because you are more likely to experience crashes, setting and policy changes, loss of data or apps, feature and functionality changes, cause other apps to stop working, be updated, or removed from your device automatically without notice and other potential issues. We highly recommend that you do not install the Previews on any systems you don’t directly control or that you share with others. Notwithstanding anything to the contrary in this agreement, Previews are nontransferable and provided “AS IS.” By installing Previews on your device, you may void or impact your device warranty and {{may not be}} entitled to support from the manufacturer of your device or network operator, if applicable. Microsoft may not provide support services for Previews. If you provide Microsoft comments, suggestions or other feedback about the Preview (“Submission”), you grant Microsoft and its partners rights to use the Submission in any way and for any purpose. You will not give a Submission that is subject to a license that requires Microsoft to license its Software or documentation to third parties because Microsoft includes your Submission in them. These rights survive this agreement. Microsoft may change or discontinue the Previews, or terminate your access to the Previews, at any time without notice and for any reason whatsoever. You may stop using the Previews at any time by un-installing and deleting all copies of any Previews. 1.2.1. Data Collection for Previews. Previews may not have included, reduced, or different security, privacy, accessibility, availability and relatability standards relative to commercially provided services and software. For Previews covered under Section 1.2, privacy and feature settings may not work as intended, and the Previews may not work with other Windows privacy settings, including the diagnostic data settings for Windows 10. Data collected from your use of the Previews, including diagnostic, technical, error reports, crash dumps and other related data from your devices running Previews may be used, stored, processed and analyzed to keep Windows and the Previews up to date, secure, and operating properly. It also helps us improve Microsoft products and services and may be used for any other purpose described in the Microsoft Privacy Statement. If you disable data collection through controls available in the Previews, we may continue to collect diagnostic information about the download, the installation and removal of the Previews and “basic” data as described in the Windows Diagnostics section of the Microsoft Privacy Statement. The Microsoft Privacy Statement (https://go.microsoft.com/fwlink/?LinkId=521839), and this paragraph, applies to Previews under Section 1.2. -1.3. Other Services.The Software may include features that provide an access point to, or rely on, other services, websites, links, content, material, integrations or applications, including as provided by independent third parties (“Other Services”). Your use of Other Services or of Software features that rely on Other Services may be governed by separate terms and subject to separate privacy policies. You can view these separate terms and policies through the Other Services’ websites or settings, as applicable. The Other Services may not be available in all regions. You may not use tokens the Software uses to call into a Microsoft Azure service separate from the Software. +1.3. Other Services.The Software may include features that provide an access point to, or rely on, other services, websites, links, content, material, integrations or applications, including as provided by independent third parties (“Other Services”). Your use of Other Services or of Software features that rely on Other Services may be governed by separate terms and subject to separate privacy policies. You can view these separate terms and policies through the Other Services’ websites or settings, as applicable. The Other Services {{may not be}} available in all regions. You may not use tokens the Software uses to call into a Microsoft Azure service separate from the Software. 2. MICROSOFT EDGE FOR NON-WINDOWS DEVICES IF YOU LIVE IN (OR ARE A BUSINESS WITH A PRINCIPAL PLACE OF BUSINESS IN) THE UNITED STATES, PLEASE READ THE “BINDING ARBITRATION AND CLASS ACTION WAIVER” SECTION 2.14 BELOW. IT AFFECTS HOW DISPUTES ARE RESOLVED. 2.1. Installation and Use Rights. For installation and use of the Software on any non-Windows platform, including but not limited to macOS and Linux, you may install and use one copy of the Software on any device running such non-Windows platform. 2.2. Third Party Software. The Software may include third party software that is licensed to you under this agreement or under their own terms or under open source licenses with source code availability options. License terms, notices, and acknowledgements, if any, for the third party software may be accessible online at http://aka.ms/thirdpartynotices or in an accompanying notices file. Even if such software is governed by other agreements, the disclaimer, limitations on, and exclusions of damages below also apply to the extent allowed by applicable law. -2.3. Previews. Microsoft may make preview, insider, beta or other pre-release versions of the Software (“Previews”) available to you. You may use Previews only up to the software’s expiration date (if any) and so long as you comply with these license terms. Previews are experimental, which means that Previews may not operate correctly and may be substantially different from the commercially released version. In some instances, Previews may even inadvertently damage your device rendering it inoperable or cause occasional crashes, data loss or apps to stop working or be deleted. To recover, you may have to reinstall your apps, the operating system or re-flash your device. In some instances, you may not be able to go back to your prior version of the Software. Because Previews may contain more errors or inaccuracies, you should back-up your device before installing any Previews. We recommend installing Previews on non-production devices that are not business critical because you are more likely to experience crashes, setting and policy changes, loss of data or apps, feature and functionality changes, cause other apps to stop working, be updated, or removed from your device automatically without notice and other potential issues. We highly recommend that you do not install the Previews on any systems you don’t directly control or that you share with others. Notwithstanding anything to the contrary in this agreement, Previews are nontransferable and provided “AS IS.” By installing Previews on your device, you may void or impact your device warranty and may not be entitled to support from the manufacturer of your device or network operator, if applicable. Microsoft may not provide support services for Previews. Microsoft may change or discontinue the Previews, or terminate your access to the Previews, at any time without notice and for any reason whatsoever. You may stop using the Previews at any time by un-installing and deleting all copies of any Previews. +2.3. Previews. Microsoft may make preview, insider, beta or other pre-release versions of the Software (“Previews”) available to you. You may use Previews only up to the software’s expiration date (if any) and so long as you comply with these license terms. Previews are experimental, which means that Previews may not operate correctly and may be substantially different from the commercially released version. In some instances, Previews may even inadvertently damage your device rendering it inoperable or cause occasional crashes, data loss or apps to stop working or be deleted. To recover, you may have to reinstall your apps, the operating system or re-flash your device. In some instances, you {{may not be}} able to go back to your prior version of the Software. Because Previews may contain more errors or inaccuracies, you should back-up your device before installing any Previews. We recommend installing Previews on non-production devices that are not business critical because you are more likely to experience crashes, setting and policy changes, loss of data or apps, feature and functionality changes, cause other apps to stop working, be updated, or removed from your device automatically without notice and other potential issues. We highly recommend that you do not install the Previews on any systems you don’t directly control or that you share with others. Notwithstanding anything to the contrary in this agreement, Previews are nontransferable and provided “AS IS.” By installing Previews on your device, you may void or impact your device warranty and {{may not be}} entitled to support from the manufacturer of your device or network operator, if applicable. Microsoft may not provide support services for Previews. Microsoft may change or discontinue the Previews, or terminate your access to the Previews, at any time without notice and for any reason whatsoever. You may stop using the Previews at any time by un-installing and deleting all copies of any Previews. 2.3.1. Data Collection for Previews . Previews may not have included, reduced, or different security, privacy, accessibility, availability and relatability standards relative to commercially provided services and software. For Previews covered under Section 2.3, privacy and feature settings may not work as intended, and the Previews may not work with other operating system privacy settings. Data collected from your use of Previews, including diagnostic, technical, error reports, crash dumps and other related data from your devices running Previews may be used, stored, processed and analyzed to keep the Previews up to date, secure, and operating properly. It also helps us improve Microsoft products and services and may be used for any other purpose described in the Microsoft Privacy Statement. If you disable data collection through controls available in the Previews, we may continue to collect diagnostic information about the download, the installation and any removal of the Previews and “basic” data as described in the Windows Diagnostics section of the Microsoft Privacy Statement. The Microsoft Privacy Statement (https://go.microsoft.com/fwlink/?LinkId=521839), and this paragraph, applies to Previews under Section 2.3. -2.4. Other Services. The Software may include features that provide an access point to, or rely on, other services, websites, links, content, material, integrations or applications, including as provided by independent third parties (“Other Services”). Your use of Other Services or of Software features that rely on Other Services may be governed by separate terms and subject to separate privacy policies. You can view these separate terms and policies through the Other Services’ websites or settings, as applicable. The Other Services may not be available in all regions. +2.4. Other Services. The Software may include features that provide an access point to, or rely on, other services, websites, links, content, material, integrations or applications, including as provided by independent third parties (“Other Services”). Your use of Other Services or of Software features that rely on Other Services may be governed by separate terms and subject to separate privacy policies. You can view these separate terms and policies through the Other Services’ websites or settings, as applicable. The Other Services {{may not be}} available in all regions. 2.5. Communications with You. Microsoft may use your contact information (i) to communicate with you about your use of the Software, and (ii) to provide you with additional information, about the Software and other Microsoft products or services. This contact may be by email, SMS, instant message, web chat, phone, in the user interface, or other means, and may include offers. You can always choose whether you wish to receive promotional email, SMS messages, telephone calls and postal mail from Microsoft. 2.6. Feedback. If you provide Microsoft comments, suggestions or other feedback about the Software to Microsoft (“Submission”), you grant Microsoft and its partners rights to use the Submission in any way and for any purpose. You will not give Microsoft a Submission that is subject to a license that requires Microsoft to license its Software or documentation to third parties because Microsoft includes your feedback in them. These rights survive this agreement. 2.7. Data Collection. The Software may collect information about you and your use of the Software and send that to Microsoft. By accepting this agreement and using the Software you agree that Microsoft may collect, use, and disclose the information as described in the Microsoft Privacy Statement at https://go.microsoft.com/fwlink/?LinkId=521839, and as may be described in the user interface associated with the Software features. diff --git a/src/licensedcode/data/rules/proprietary-license_563.RULE b/src/licensedcode/data/rules/proprietary-license_563.RULE index e516003ac8..1e29b4cd94 100644 --- a/src/licensedcode/data/rules/proprietary-license_563.RULE +++ b/src/licensedcode/data/rules/proprietary-license_563.RULE @@ -398,7 +398,7 @@ AND CONDITIONS OF THIS LICENSE. understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from - You. This License may not be modified without the mutual written + You. This License {{may not be}} modified without the mutual written agreement of the Licensor and You. h. The rights granted under, and the subject matter referenced, diff --git a/src/licensedcode/data/rules/proprietary-license_568.RULE b/src/licensedcode/data/rules/proprietary-license_568.RULE index 6f2d83ca6b..7f93946d73 100644 --- a/src/licensedcode/data/rules/proprietary-license_568.RULE +++ b/src/licensedcode/data/rules/proprietary-license_568.RULE @@ -16,7 +16,7 @@ notes: BSD-looking but not really it See https://github.com/Joan93/MasterThesis/ * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * - * 3. The name of Atmel may not be used to endorse or promote products derived + * 3. The name of Atmel {{may not be}} used to endorse or promote products derived * from this software without specific prior written permission. * * 4. This software may only be redistributed and used in connection with an diff --git a/src/licensedcode/data/rules/proprietary-license_597.RULE b/src/licensedcode/data/rules/proprietary-license_597.RULE index 579e2c5822..5df94398dd 100644 --- a/src/licensedcode/data/rules/proprietary-license_597.RULE +++ b/src/licensedcode/data/rules/proprietary-license_597.RULE @@ -274,7 +274,7 @@ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, USE AND/OR MODIFICATION 10.1.5 censorship or "filtering" of any published information or expression. -10.2 Additionally, the Program, any modification of it, or any Software or Derivative Work based on the Program may not be used by any Governmental Entity or other institution that has any policy or practice (whether official or unofficial) of violating the human rights of any persons. +10.2 Additionally, the Program, any modification of it, or any Software or Derivative Work based on the Program {{may not be}} used by any Governmental Entity or other institution that has any policy or practice (whether official or unofficial) of violating the human rights of any persons. 10.3 You may not authorize, permit, or enable any person (including, without limitation, any Governmental Entity or Governmental Person) to use the Program or any Software or Derivative Work based on it (including any use of Your copy or copies of the Program) unless such person has accepted this License Agreement and has become a Licensee subject to all its terms and conditions, including (without limitation) the use restrictions embodied in Section 10.1 and 10.2, inclusive. diff --git a/src/licensedcode/data/rules/proprietary-license_598.RULE b/src/licensedcode/data/rules/proprietary-license_598.RULE index b5cf31d575..ef2687aa4e 100644 --- a/src/licensedcode/data/rules/proprietary-license_598.RULE +++ b/src/licensedcode/data/rules/proprietary-license_598.RULE @@ -98,7 +98,7 @@ SECTION D - TERMS APPLICABLE TO SECTIONS A, B AND C ABOVE 5.0 GOVERNING LAW. Any claim arising under or related to this Agreement will be governed by California law (excluding its conflict of law principles) and controlling United States federal law. Any action under or relating to this Agreement brought by you shall be brought solely in the state and federal courts located in California with sole venue in the courts located in Santa Clara County and you hereby submit to the personal jurisdiction of such courts. The United Nations Convention on Contracts for the Sale of Goods does not apply to this Agreement. -6.0 EXPORT REGULATIONS. The Software delivered under this Agreement is subject to United States export control laws and may be subject to export or import regulations in other countries. You may not use or otherwise export or re-export the Software except as authorized by United States law and the laws of the jurisdiction in which the Software was obtained. You agree to comply strictly with all such laws and regulations and acknowledge that the Software may not be exported or re-exported (i) into (or to a national or resident of) any United States embargoed country or (ii) to anyone on the United States Treasury Department's list of Specially Designated Nationals or the United States Commerce Department's Table of Denial Orders (each, a "List"). By using the Software, you represent and warrant that you are not located in, under the control of, or a national or resident of any such country or on any such List. You shall indemnify and hold Phoenix harmless from any and all claims, losses, liabilities, damages, fines, penalties, costs and expenses (including attorney's fees) arising from or relating to any breach by you of your obligations under this section. Your obligations under this section shall survive the expiration or termination of this Agreement. +6.0 EXPORT REGULATIONS. The Software delivered under this Agreement is subject to United States export control laws and may be subject to export or import regulations in other countries. You may not use or otherwise export or re-export the Software except as authorized by United States law and the laws of the jurisdiction in which the Software was obtained. You agree to comply strictly with all such laws and regulations and acknowledge that the Software {{may not be}} exported or re-exported (i) into (or to a national or resident of) any United States embargoed country or (ii) to anyone on the United States Treasury Department's list of Specially Designated Nationals or the United States Commerce Department's Table of Denial Orders (each, a "List"). By using the Software, you represent and warrant that you are not located in, under the control of, or a national or resident of any such country or on any such List. You shall indemnify and hold Phoenix harmless from any and all claims, losses, liabilities, damages, fines, penalties, costs and expenses (including attorney's fees) arising from or relating to any breach by you of your obligations under this section. Your obligations under this section shall survive the expiration or termination of this Agreement. 7.0 UNITED STATES GOVERNMENT RIGHTS. The Software and Applications licensed hereunder is subject to restricted rights. Any use, duplication or disclosure by the Government of the United States of America or any person or entity acting on its behalf is subject to the restrictions set forth in subdivision (c)(1)(ii) of the Rights in Technical Data and Computer Software Clause at DFARS (48 CFR 252.227-7013) for Department of Defense ("DoD") contracts; in paragraphs (c)(1) and (2) of the Commercial Computer Software- Restricted Rights clause in the FAR (48 CFR 52.227-19) for civilian agencies; or, in the case of NASA, in Clause 18-52.227-86(d) of the NASA Supplement to the FAR, or in other comparable agency clauses. diff --git a/src/licensedcode/data/rules/proprietary-license_604.RULE b/src/licensedcode/data/rules/proprietary-license_604.RULE index 0c4ee0a722..bbe91f7486 100644 --- a/src/licensedcode/data/rules/proprietary-license_604.RULE +++ b/src/licensedcode/data/rules/proprietary-license_604.RULE @@ -6,7 +6,7 @@ notes: Based on the MIT with material and problematic changes. https://github.co * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), - * to read the Software only. Permission is hereby NOT GRANTED to use, copy, + * to read the Software only. {{Permission is hereby NOT GRANTED}} to use, copy, * modify, merge, publish, distribute, sublicense, and/or sell copies of * the Software. * diff --git a/src/licensedcode/data/rules/proprietary-license_606.RULE b/src/licensedcode/data/rules/proprietary-license_606.RULE index d2b528a25d..5f8d6daa42 100644 --- a/src/licensedcode/data/rules/proprietary-license_606.RULE +++ b/src/licensedcode/data/rules/proprietary-license_606.RULE @@ -4,7 +4,7 @@ is_license_text: yes notes: Based on the MIT with material and problematic changes. https://raw.githubusercontent.com/marvinick/noroof/4e06d35791bc3bf9327ca79cc3c24d1331d0bf7f/README.md --- -Permission is hereby NOT granted, NOT free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +{{Permission is hereby NOT granted}}, NOT free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. diff --git a/src/licensedcode/data/rules/proprietary-license_607.RULE b/src/licensedcode/data/rules/proprietary-license_607.RULE index e50a9691a6..42f2ce35cd 100644 --- a/src/licensedcode/data/rules/proprietary-license_607.RULE +++ b/src/licensedcode/data/rules/proprietary-license_607.RULE @@ -4,7 +4,7 @@ is_license_text: yes notes: Based on the MIT with material and problematic changes. https://github.com/ciricbgd/Kroon-test/blob/027954d9390d22639f37d6ea2441932e4670fa02/LICENSE --- -Permission is hereby NOT granted, free of charge, to any person obtaining a copy +{{Permission is hereby NOT granted}}, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell diff --git a/src/licensedcode/data/rules/proprietary-license_608.RULE b/src/licensedcode/data/rules/proprietary-license_608.RULE index 90b1800c98..f0d9b94f22 100644 --- a/src/licensedcode/data/rules/proprietary-license_608.RULE +++ b/src/licensedcode/data/rules/proprietary-license_608.RULE @@ -5,7 +5,7 @@ notes: Based on the MIT with material and problematic changes. https://github.co Github belives this is an MIT --- -Permission is hereby not granted, +{{Permission is hereby not granted}}, not free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software with restriction, diff --git a/src/licensedcode/data/rules/proprietary-license_609.RULE b/src/licensedcode/data/rules/proprietary-license_609.RULE index 8d6de2a023..49352549f0 100644 --- a/src/licensedcode/data/rules/proprietary-license_609.RULE +++ b/src/licensedcode/data/rules/proprietary-license_609.RULE @@ -4,7 +4,7 @@ is_license_text: yes notes: Based on the MIT with material and problematic changes. https://github.com/Andre-H/LaNoFraiAndroid/blob/4ab95760e0e8543d3e801ee79de1da5d7256ee9a/LICENSE.md#L5 --- -Permission is hereby NOT granted, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: +{{Permission is hereby NOT granted}}, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: As I do not possess knowledge of copyright law, nor do I have access to an advisor I am simply stating in good faith that there is no pirated or unlicensed code in anything I commit, but I would rather nobody uses it for any porpose other than educational, at least until I can assess and implement a proper licensing scheme. diff --git a/src/licensedcode/data/rules/proprietary-license_610.RULE b/src/licensedcode/data/rules/proprietary-license_610.RULE index 8aca6ee898..4b69013a73 100644 --- a/src/licensedcode/data/rules/proprietary-license_610.RULE +++ b/src/licensedcode/data/rules/proprietary-license_610.RULE @@ -4,7 +4,7 @@ is_license_text: yes notes: Based on the MIT with material and problematic changes. https://github.com/IcodeAditya/Snake-Game-Using-Python/blob/6f3b065723043f197fdc619d94b5845168799ee4/LICENSE#L5 --- -Permission is hereby not granted to any person obtaining a copy +{{Permission is hereby not granted}} to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell diff --git a/src/licensedcode/data/rules/proprietary-license_611.RULE b/src/licensedcode/data/rules/proprietary-license_611.RULE index 0de8bb7376..43754fe686 100644 --- a/src/licensedcode/data/rules/proprietary-license_611.RULE +++ b/src/licensedcode/data/rules/proprietary-license_611.RULE @@ -4,7 +4,7 @@ is_license_text: yes notes: Based on the MIT with material and problematic changes. https://github.com/cuio/Elysium/blob/487d26318803988350e2397b424b597da9cb14e4/COPYING#L2 --- -Permission is hereby not granted to any person obtaining a copy +{{Permission is hereby not granted}} to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software with restriction, including limitation of rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell diff --git a/src/licensedcode/data/rules/proprietary-license_612.RULE b/src/licensedcode/data/rules/proprietary-license_612.RULE index b4564e10da..295f072165 100644 --- a/src/licensedcode/data/rules/proprietary-license_612.RULE +++ b/src/licensedcode/data/rules/proprietary-license_612.RULE @@ -4,5 +4,5 @@ is_license_text: yes notes: Based on some of the MIT wording with material and problematic changes. https://github.com/gkushang/speedItHybrid/blob/d29457ae527627d14f8f72b1865a54e5bb06f86a/src/main/java/com/speeditlab/hybrid/exception/ViewNotFound.java#L7 --- -- Permission is hereby not granted without signing agreement with the Proprietor. | +- {{Permission is hereby not granted}} without signing agreement with the Proprietor. | - This Software cannot be distributed without signing agreement with the Proprietor. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_624.RULE b/src/licensedcode/data/rules/proprietary-license_624.RULE index 3d338032dd..4da41187c1 100644 --- a/src/licensedcode/data/rules/proprietary-license_624.RULE +++ b/src/licensedcode/data/rules/proprietary-license_624.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Permission is hereby NOT GRANTED \ No newline at end of file +{{Permission is hereby NOT GRANTED}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_630.RULE b/src/licensedcode/data/rules/proprietary-license_630.RULE index ea52643850..17520154d4 100644 --- a/src/licensedcode/data/rules/proprietary-license_630.RULE +++ b/src/licensedcode/data/rules/proprietary-license_630.RULE @@ -4,7 +4,7 @@ is_license_text: yes notes: Based on the MIT with material and problematic changes. https://github.com/Son0fAnton/automated-payroll/blob/b044a7c52996e081fcc1841d31b944b9549a6b2e/LICENSE#L8 --- -Permission is hereby not granted, no free of charge, to any person obtaining a copy +{{Permission is hereby not granted}}, no free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software with restriction, including with limitation the rights to use, no copy, no modification, no merge of code, you cannot publish, cannot distribute, and/or you cannot sell diff --git a/src/licensedcode/data/rules/proprietary-license_645.RULE b/src/licensedcode/data/rules/proprietary-license_645.RULE index aea551c8c5..2ffb63c581 100644 --- a/src/licensedcode/data/rules/proprietary-license_645.RULE +++ b/src/licensedcode/data/rules/proprietary-license_645.RULE @@ -9,9 +9,9 @@ This is private software, you may redistribute it under the terms of Redistribution and use in binary forms, with or without modification, are permitted provided that the following conditions are met: - 1. The name of the author may not be used to endorse or promote products + 1. The name of the author {{may not be}} used to endorse or promote products derived from this software without specific prior written permission. - 2. The binary may not be sold and/or given away for free. + 2. The binary {{may not be}} sold and/or given away for free. 3. The licensee may only create binaries for his own usage, not for any third parties. diff --git a/src/licensedcode/data/rules/proprietary-license_647.RULE b/src/licensedcode/data/rules/proprietary-license_647.RULE index d231a96e0b..a6cbf0c7bd 100644 --- a/src/licensedcode/data/rules/proprietary-license_647.RULE +++ b/src/licensedcode/data/rules/proprietary-license_647.RULE @@ -8,9 +8,9 @@ Ago's Private License 1.0: Redistribution and use in binary forms, with or without modification, are permitted provided that the following conditions are met: -1. The name of the author may not be used to endorse or promote products +1. The name of the author {{may not be}} used to endorse or promote products derived from this software without specific prior written permission. -2. The binary may not be sold and/or given away for free. +2. The binary {{may not be}} sold and/or given away for free. 3. The licensee may only create binaries for his own usage, not for any third parties. diff --git a/src/licensedcode/data/rules/proprietary-license_648.RULE b/src/licensedcode/data/rules/proprietary-license_648.RULE index 8d651831a4..9195824928 100644 --- a/src/licensedcode/data/rules/proprietary-license_648.RULE +++ b/src/licensedcode/data/rules/proprietary-license_648.RULE @@ -6,9 +6,9 @@ notes: https://github.com/krishnaramg3/m/blob/63ec2ac30eb608d6a56321fd99891e7fa8 Redistribution and use in binary forms, with or without modification, are permitted provided that the following conditions are met: -1. The name of the author may not be used to endorse or promote products +1. The name of the author {{may not be}} used to endorse or promote products derived from this software without specific prior written permission. -2. The binary may not be sold and/or given away for free. +2. The binary {{may not be}} sold and/or given away for free. 3. The licensee may only create binaries for his own usage, not for any third parties. diff --git a/src/licensedcode/data/rules/proprietary-license_66.RULE b/src/licensedcode/data/rules/proprietary-license_66.RULE index e4e4b218ec..f202fb7e36 100644 --- a/src/licensedcode/data/rules/proprietary-license_66.RULE +++ b/src/licensedcode/data/rules/proprietary-license_66.RULE @@ -7,7 +7,7 @@ relevance: 100 // * This software is furnished under a license and may be used and copied * // * only in accordance with the terms of such license and with the * // * inclusion of the above copyright notice. This software or any other * -// * copies thereof may not be provided or otherwise made available to any * +// * copies thereof {{may not be}} provided or otherwise made available to any * // * other person. No title to and ownership of the software is hereby * // * transferred. * // * * diff --git a/src/licensedcode/data/rules/proprietary-license_669.RULE b/src/licensedcode/data/rules/proprietary-license_669.RULE index 3e105a84b4..33a3c773d6 100644 --- a/src/licensedcode/data/rules/proprietary-license_669.RULE +++ b/src/licensedcode/data/rules/proprietary-license_669.RULE @@ -6,5 +6,5 @@ notes: https://github.com/XENNOK/Insyde_BIOS_Source/blob/d2eebd01ad4a9cb5d68151e // This file contains 'Framework Code' and is licensed as such // under the terms of your license agreement with Intel or your -// vendor. This file may not be modified, except as allowed by +// vendor. This file {{may not be}} modified, except as allowed by // additional terms of your license agreement. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_69.RULE b/src/licensedcode/data/rules/proprietary-license_69.RULE index 8aab974b6d..f7a728960d 100644 --- a/src/licensedcode/data/rules/proprietary-license_69.RULE +++ b/src/licensedcode/data/rules/proprietary-license_69.RULE @@ -16,7 +16,7 @@ NOT mean that you can use it without paying a licensing fee. Network Interface Card (NIC) port files provided, as is, for FREE and do NOT require any additional licensing or licensing fee. -Knowledge of the source code may NOT be used to develop a similar product. +Knowledge of the source code {{may NOT be}} used to develop a similar product. Please help us continue to provide the Embedded community with the finest software available. Your honesty is greatly appreciated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_692.RULE b/src/licensedcode/data/rules/proprietary-license_692.RULE index 8b8a13fcb8..3425539d4e 100644 --- a/src/licensedcode/data/rules/proprietary-license_692.RULE +++ b/src/licensedcode/data/rules/proprietary-license_692.RULE @@ -8,8 +8,8 @@ Terms of Use You may freely use these code charts for personal or internal business uses only. You may not incorporate them either wholly or in part into any product or publication, or otherwise distribute them without express written permission from the Unicode Consortium. However, you may provide links to these -charts.The fonts and font data used in production of these Code Charts may NOT -be extracted, or used in any other way in any product or publication, without +charts.The fonts and font data used in production of these Code Charts {{may NOT +be}} extracted, or used in any other way in any product or publication, without permission or license granted by the typeface owner(s). The Unicode Consortium is not liable for errors or omissions in this file or the standard itself. Information on characters added to the Unicode Standard since the publication of diff --git a/src/licensedcode/data/rules/proprietary-license_702.RULE b/src/licensedcode/data/rules/proprietary-license_702.RULE index 8b6462879b..1e5b9bc262 100644 --- a/src/licensedcode/data/rules/proprietary-license_702.RULE +++ b/src/licensedcode/data/rules/proprietary-license_702.RULE @@ -13,8 +13,8 @@ You may modify the icons in shape, color, and/or file format and use the modifie The license does not permit the following uses: - 1. The icons may not be resold, sublicensed, rented, transferred or otherwise made available for use or detached from a product, software application or web page; - 2. The icons may not be placed on any electronic bulletin board or downloadable format; + 1. The icons {{may not be}} resold, sublicensed, rented, transferred or otherwise made available for use or detached from a product, software application or web page; + 2. The icons {{may not be}} placed on any electronic bulletin board or downloadable format; You may not use, or allow anyone else to use the icons to create pornographic, libelous, obscene, or defamatory material. diff --git a/src/licensedcode/data/rules/proprietary-license_708.RULE b/src/licensedcode/data/rules/proprietary-license_708.RULE index 049dff7171..16ca27b67c 100644 --- a/src/licensedcode/data/rules/proprietary-license_708.RULE +++ b/src/licensedcode/data/rules/proprietary-license_708.RULE @@ -25,11 +25,11 @@ You hereby agree to the following: 8. You are hereby granted a non-exclusive, non-assignable, non-transferable (except as expressly permitted herein) license to access the Font Software (i) only in a Licensed Computer, (ii) only for your Personal or Internal Business Use, and (iii) only subject to all of the terms and conditions of the Agreement. You have no rights to the Font Software other than as expressly set forth in the Agreement. You agree that owns all right, title and interest in and to the Font Software, its structure, organization, code, and related files, including all property rights therein such as copyright, design and trademarks rights. You agree that the Font Software, its structure, organization, code, and related files are valuable property of and that any intentional Use of the Font Software not expressly permitted by the Agreement constitutes a theft of valuable property. All rights not expressly granted in the Agreement are expressly reserved to . You may not use or include the Font Software as part of a Commercial Product, or any other hardware or software product, without a separate license from authorizing you to do so. -9. You may install and Use the Font Software on a single file server for Use on a single local area network ("LAN") only when the Use of such Font Software is limited to the number of Licensed Computers for which you have a license. The Font Software may not be installed or Used on a server that can be accessed via the Internet or other external network system (a system other than a LAN) by personal computers which are not Licensed Computers, unless you acquire a license from granting you this specific right. +9. You may install and Use the Font Software on a single file server for Use on a single local area network ("LAN") only when the Use of such Font Software is limited to the number of Licensed Computers for which you have a license. The Font Software {{may not be}} installed or Used on a server that can be accessed via the Internet or other external network system (a system other than a LAN) by personal computers which are not Licensed Computers, unless you acquire a license from granting you this specific right. 10. You may electronically distribute Font Software embedded in a "Personal or Internal Business Use" document (that is, a document other than a "Commercial Product" as defined herein) only when the Font Software embedded in such document is distributed in a secure format that permits only the viewing, printing and editing (and not the installing) of such Font Software. You may not embed Font Software in a Commercial Product without a separate written license from , for an additional fee. You may not alter or modify the embedding permission contained within the Font Software. -11. You acknowledge that the Font Software is protected by the copyright and other intellectual property law of the United States and its various States, by the copyright and design laws of other nations, and by international treaties. You agree to treat the Font Software as you would any other copyrighted material, such as a book. You may not copy the Font Software, except as expressly provided herein and you agree not to copy the design embodied within the Font Software. Any copies that you are expressly permitted to make pursuant to the Agreement must contain the same copyright, trademark, and other proprietary notices that appear on or in the Font Software. You agree not to adapt, modify, alter, translate, convert, or otherwise change the Font Software, or to create any derivative works from Font Software or any portion thereof. You further agree not to use Font Software in connection with software and/or hardware which creates any derivative works of such Font Software. You agree not to reverse engineer, decompile, disassemble, or otherwise attempt to discover the source code of the Font Software, provided, however, that if you are located in a European Community member country or any other country which provides rights materially similar to the rights set forth in this proviso, you may reverse engineer or decompile the Font Software only to the extent that sufficient information is not available for the purpose of creating an interoperable software program (but only for such purpose and only to the extent that sufficient information is not provided by upon written request). You agree to use trademarks associated with the Font Software according to accepted trademark practice, including identification of the trademark owner''s name. Trademarks can only be used to identify printed output produced by the Font Software. The use of any trademark as herein authorized does not give you any rights of ownership in that trademark and all use of any trademark shall inure to the sole benefit of the trademark owner. You may not change any trademark or trade name designation for the Font Software. +11. You acknowledge that the Font Software is protected by the copyright and other intellectual property law of the United States and its various States, by the copyright and design laws of other nations, and by international treaties. You agree to treat the Font Software as you would any other copyrighted material, such as a book. You may not copy the Font Software, except as expressly provided herein and you agree not to copy the design embodied within the Font Software. Any copies that you are expressly permitted to make pursuant to the Agreement must contain the same copyright, trademark, and other proprietary notices that appear on or in the Font Software. You agree not to adapt, modify, alter, translate, convert, or otherwise change the Font Software, or to create any derivative works from Font Software or any portion thereof. You further agree not to use Font Software in connection with software and/or hardware which creates any derivative works of such Font Software. You agree not to reverse engineer, decompile, disassemble, or otherwise attempt to discover the source code of the Font Software, provided, however, that if you are located in a European Community member country or any other country which provides rights materially similar to the rights set forth in this proviso, you may reverse engineer or decompile the Font Software only to the extent that sufficient information is not available for the purpose of creating an interoperable software program (but only for such purpose and only to the extent that sufficient information {{is not provided}} by upon written request). You agree to use trademarks associated with the Font Software according to accepted trademark practice, including identification of the trademark owner''s name. Trademarks can only be used to identify printed output produced by the Font Software. The use of any trademark as herein authorized does not give you any rights of ownership in that trademark and all use of any trademark shall inure to the sole benefit of the trademark owner. You may not change any trademark or trade name designation for the Font Software. 12. You may not rent, lease, sublicense, give, lend, or further distribute the Font Software, or any copy thereof, except as expressly provided herein. You may transfer all your rights to use the Font Software to another person or legal entity provided that (i) the transferee accepts and agrees to be bound by all the terms and conditions of this Agreement, and (ii) you destroy all copies of the Font Software, including all copies stored in the memory of a hardware device. If you are a business or organization, you agree that upon request from or ''s authorized representative, you will with thirty (30) days fully document and certify that use of any and all Font Software at the time of the request is in conformity with your valid licenses from . diff --git a/src/licensedcode/data/rules/proprietary-license_714.RULE b/src/licensedcode/data/rules/proprietary-license_714.RULE index 87323f0da9..d68bb2271f 100644 --- a/src/licensedcode/data/rules/proprietary-license_714.RULE +++ b/src/licensedcode/data/rules/proprietary-license_714.RULE @@ -5,5 +5,4 @@ relevance: 100 --- licenses": [ - { - "name": "Other/Proprietary License", \ No newline at end of file + "name": {{Other/Proprietary License}} diff --git a/src/licensedcode/data/rules/proprietary-license_715.RULE b/src/licensedcode/data/rules/proprietary-license_715.RULE index 2902533e6e..838fd6e2ed 100644 --- a/src/licensedcode/data/rules/proprietary-license_715.RULE +++ b/src/licensedcode/data/rules/proprietary-license_715.RULE @@ -5,4 +5,4 @@ relevance: 100 --- license": { - "name": "Other/Proprietary License" \ No newline at end of file + "name": {{ Other/Proprietary License}} diff --git a/src/licensedcode/data/rules/proprietary-license_716.RULE b/src/licensedcode/data/rules/proprietary-license_716.RULE index 92cc2ef8bb..db9a7dab07 100644 --- a/src/licensedcode/data/rules/proprietary-license_716.RULE +++ b/src/licensedcode/data/rules/proprietary-license_716.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Other/Proprietary License \ No newline at end of file +{{Other/Proprietary License}} diff --git a/src/licensedcode/data/rules/proprietary-license_73.RULE b/src/licensedcode/data/rules/proprietary-license_73.RULE index 0a9f3e8afa..6cacb4bc3d 100644 --- a/src/licensedcode/data/rules/proprietary-license_73.RULE +++ b/src/licensedcode/data/rules/proprietary-license_73.RULE @@ -20,7 +20,7 @@ Use of NVIDIA's products requires three elements: the SOFTWARE, the hardware on 2.1 Rights and Limitations of Grant. NVIDIA hereby grants Customer the following non-exclusive, non-transferable right to use the SOFTWARE, with the following limitations: -2.1.1 Rights. Customer may install and use one copy of the SOFTWARE on a single computer, and except for making one back-up copy of the Software, may not otherwise copy the SOFTWARE. This LICENSE of SOFTWARE may not be shared or used concurrently on different computers. +2.1.1 Rights. Customer may install and use one copy of the SOFTWARE on a single computer, and except for making one back-up copy of the Software, may not otherwise copy the SOFTWARE. This LICENSE of SOFTWARE {{may not be}} shared or used concurrently on different computers. 2.1.2 Linux/FreeBSD/OpenSolaris Exception. Notwithstanding the foregoing terms of Section 2.1.1, SOFTWARE designed exclusively for use on the Linux or FreeBSD operating systems, or other operating systems derived from the source code to these operating systems, may be copied and redistributed, provided that the binary files thereof are not modified in any way (except for unzipping of compressed files). @@ -28,7 +28,7 @@ Use of NVIDIA's products requires three elements: the SOFTWARE, the hardware on No Reverse Engineering. Customer may not reverse engineer, decompile, or disassemble the SOFTWARE, nor attempt in any other manner to obtain the source code. -No Separation of Components. The SOFTWARE is licensed as a single product. Its component parts may not be separated for use on more than one computer, nor otherwise used separately from the other parts. +No Separation of Components. The SOFTWARE is licensed as a single product. Its component parts {{may not be}} separated for use on more than one computer, nor otherwise used separately from the other parts. No Rental. Customer may not rent or lease the SOFTWARE to someone else. diff --git a/src/licensedcode/data/rules/proprietary-license_732.RULE b/src/licensedcode/data/rules/proprietary-license_732.RULE index 90c75c8b8a..68a22f1098 100644 --- a/src/licensedcode/data/rules/proprietary-license_732.RULE +++ b/src/licensedcode/data/rules/proprietary-license_732.RULE @@ -6,7 +6,7 @@ ignorable_urls: - https://indiecc.com/ --- -Paid License +{{Paid License}} Version 3.0.2 diff --git a/src/licensedcode/data/rules/proprietary-license_733.RULE b/src/licensedcode/data/rules/proprietary-license_733.RULE index 817d8b6cfc..f0e43907ba 100644 --- a/src/licensedcode/data/rules/proprietary-license_733.RULE +++ b/src/licensedcode/data/rules/proprietary-license_733.RULE @@ -14,4 +14,4 @@ There is one special exception: Kids can use the software for free, even to make Everyone’s free to share the software, and to use it outside of business. However, you must give the developer credit for contributing to your projects and share any improvements you make with the developer. -This page loosely summarizes two licenses: the free license that everyone gets and the paid license customers pay for. For the final work, read the license terms. \ No newline at end of file +This page loosely summarizes two licenses: the free license that everyone gets and the {{paid license}} customers pay for. For the final work, read the license terms. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_76.RULE b/src/licensedcode/data/rules/proprietary-license_76.RULE index 6d3c262a44..3a3b487247 100644 --- a/src/licensedcode/data/rules/proprietary-license_76.RULE +++ b/src/licensedcode/data/rules/proprietary-license_76.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 90 --- -The distribution may not be redistributed without special permission from the author and/or copyright holder. \ No newline at end of file +The distribution {{may not be}} redistributed without special permission from the author and/or copyright holder. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_782.RULE b/src/licensedcode/data/rules/proprietary-license_782.RULE index 4be4c471fc..ad25710c01 100644 --- a/src/licensedcode/data/rules/proprietary-license_782.RULE +++ b/src/licensedcode/data/rules/proprietary-license_782.RULE @@ -9,5 +9,5 @@ is_license_notice: yes * Inc. pursuant to a written license agreement and may be used, copied, * transmitted, and stored only in accordance with the terms of such * license and with the inclusion of the above copyright notice. This - * computer software or any other copies thereof may not be provided or + * computer software or any other copies thereof {{may not be}} provided or * otherwise made available to any other person. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_783.RULE b/src/licensedcode/data/rules/proprietary-license_783.RULE index 54aa4b5ded..3429db00b1 100644 --- a/src/licensedcode/data/rules/proprietary-license_783.RULE +++ b/src/licensedcode/data/rules/proprietary-license_783.RULE @@ -9,7 +9,7 @@ is_license_notice: yes * Inc. pursuant to a written license agreement and may be used, copied, * transmitted, and stored only in accordance with the terms of such * license and with the inclusion of the above copyright notice. This - * computer software or any other copies thereof may not be provided or + * computer software or any other copies thereof {{may not be}} provided or * otherwise made available to any other person. * U.S. Government Restricted Rights. This computer software is provided diff --git a/src/licensedcode/data/rules/proprietary-license_788.RULE b/src/licensedcode/data/rules/proprietary-license_788.RULE index 1b1c8f0b9a..569fff1405 100644 --- a/src/licensedcode/data/rules/proprietary-license_788.RULE +++ b/src/licensedcode/data/rules/proprietary-license_788.RULE @@ -342,7 +342,7 @@ MENTOR GRAPHICS IS WILLING TO LICENSE THE SOFTWARE ONLY UPON 4. Beta Code. 1. Portions or all of certain Products may contain code for experimental testing and evaluation ("Beta - Code"), which may not be used without Mentor + Code"), which {{may not be}} used without Mentor Graphics' explicit authorization. Upon Mentor Graphics' authorization, Mentor Graphics grants to Customer a temporary, nontransferable, nonexclusive diff --git a/src/licensedcode/data/rules/proprietary-license_791.RULE b/src/licensedcode/data/rules/proprietary-license_791.RULE index 3cf72cf8d7..be10d0ed09 100644 --- a/src/licensedcode/data/rules/proprietary-license_791.RULE +++ b/src/licensedcode/data/rules/proprietary-license_791.RULE @@ -20,7 +20,7 @@ These AdColony SDK License and Publisher Terms (this “Agreement”) is made av “AdColony Platform” means AdColony’s advertising system or network, which supports advertisement insertion within mobile applications, and related advertisement reporting tools. “AdColony SDK” means the software development kit and any other software and documentation that may be provided by AdColony to Developer with the software development kit, including any updates thereto. “Personally Identifiable Information” or “PII” means information that specifically identifies or locates a particular person or entity such as name, postal address, telephone number, and email address. - “Pseudonymous Identifiers” means data that is linked or reasonably linkable to a particular computer or device resettable device identifiers such as Google Advertising ID, Apple Identifier for Advertisers, IP address, or other similar identifiers. Pseudoymous Identifiers may not be utilized to identify a particular person. + “Pseudonymous Identifiers” means data that is linked or reasonably linkable to a particular computer or device resettable device identifiers such as Google Advertising ID, Apple Identifier for Advertisers, IP address, or other similar identifiers. Pseudoymous Identifiers {{may not be}} utilized to identify a particular person. 2. AdColony SDK License diff --git a/src/licensedcode/data/rules/proprietary-license_796.RULE b/src/licensedcode/data/rules/proprietary-license_796.RULE index 1805e99671..d8604600c6 100644 --- a/src/licensedcode/data/rules/proprietary-license_796.RULE +++ b/src/licensedcode/data/rules/proprietary-license_796.RULE @@ -6,6 +6,6 @@ notes: https://github.com/me-no-dev/ESP31B/blob/master/tools/sdk/include/xtensa/ * These coded instructions, statements, and computer programs are the * copyrighted works and confidential proprietary information of Tensilica Inc. - * They may not be modified, copied, reproduced, distributed, or disclosed to + * They {{may not be}} modified, copied, reproduced, distributed, or disclosed to * third parties in any manner, medium, or form, in whole or in part, without * the prior written consent of Tensilica Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_799.RULE b/src/licensedcode/data/rules/proprietary-license_799.RULE index 52de268e89..bd86d8fe07 100644 --- a/src/licensedcode/data/rules/proprietary-license_799.RULE +++ b/src/licensedcode/data/rules/proprietary-license_799.RULE @@ -6,6 +6,6 @@ notes: https://android-review.linaro.org/plugins/gitiles/device/linaro/hikey/+/1 # These coded instructions, statements, and computer programs are the # copyrighted works and confidential proprietary information of Inc. -# They may not be modified, copied, reproduced, distributed, or disclosed to +# They {{may not be}} modified, copied, reproduced, distributed, or disclosed to # third parties in any manner, medium, or form, in whole or in part, without # the prior written consent of Inc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_800.RULE b/src/licensedcode/data/rules/proprietary-license_800.RULE index 8b5255de34..61aacb6429 100644 --- a/src/licensedcode/data/rules/proprietary-license_800.RULE +++ b/src/licensedcode/data/rules/proprietary-license_800.RULE @@ -6,6 +6,6 @@ notes: https://android-review.linaro.org/plugins/gitiles/device/linaro/hikey/+/1 # These coded instructions, statements, and computer programs are the # copyrighted works and confidential proprietary information of -# They may not be modified, copied, reproduced, distributed, or disclosed to +# They {{may not be}} modified, copied, reproduced, distributed, or disclosed to # third parties in any manner, medium, or form, in whole or in part, without # the prior written consent of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_813.RULE b/src/licensedcode/data/rules/proprietary-license_813.RULE index b03ab4cf85..740c13daa0 100644 --- a/src/licensedcode/data/rules/proprietary-license_813.RULE +++ b/src/licensedcode/data/rules/proprietary-license_813.RULE @@ -65,7 +65,7 @@ You shall not remove any copyright, disclaimers, or other notices from any parts ## 4. RIGHT OF EQUITABLE RELIEF -You acknowledge and agree that violation of this agreement may cause Roa Logic irreparable injury for which an adequate remedy at law may not be available. Therefore Roa Logic shall be entitled to seek all remedies that may be available under equity, including immediate injunctive relief, in addition to whatever remedies may be available at law. +You acknowledge and agree that violation of this agreement may cause Roa Logic irreparable injury for which an adequate remedy at law {{may not be}} available. Therefore Roa Logic shall be entitled to seek all remedies that may be available under equity, including immediate injunctive relief, in addition to whatever remedies may be available at law. ## 5. DISCLAIMER OF WARRANTY diff --git a/src/licensedcode/data/rules/proprietary-license_847.RULE b/src/licensedcode/data/rules/proprietary-license_847.RULE index 4108c925aa..2ae926f9ec 100644 --- a/src/licensedcode/data/rules/proprietary-license_847.RULE +++ b/src/licensedcode/data/rules/proprietary-license_847.RULE @@ -5,7 +5,7 @@ notes: https://github.com/quiqueck/libPLEX-iOS/blob/master/LICENSE --- Redistribution and use of the libPLEX-OSS.a code or any derivative works are permitted provided that the following conditions are met: -- Redistributions may not be sold, nor may they be used in a commercial product or activity. +- Redistributions {{may not be}} sold, nor may they be used in a commercial product or activity. - Redistributions must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - It is not allowed to redistribute a modified version of the libPLEX-OSS.a - It is not allowed to use libPLEX-OSS.a in any product submitted to any App Store. diff --git a/src/licensedcode/data/rules/proprietary-license_854.RULE b/src/licensedcode/data/rules/proprietary-license_854.RULE index 6922f57a2a..c62b8c3428 100644 --- a/src/licensedcode/data/rules/proprietary-license_854.RULE +++ b/src/licensedcode/data/rules/proprietary-license_854.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Permission is hereby not granted without signing agreement with the Proprietor. | \ No newline at end of file +{{Permission is hereby not granted}} without signing agreement with the Proprietor. | \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_866.RULE b/src/licensedcode/data/rules/proprietary-license_866.RULE index 13efb55e23..6bfffc946e 100644 --- a/src/licensedcode/data/rules/proprietary-license_866.RULE +++ b/src/licensedcode/data/rules/proprietary-license_866.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Redistributions may not be sold, nor may they be used in a commercial product or activity. \ No newline at end of file +Redistributions {{may not be}} sold, nor may they be used in a commercial product or activity. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_87.RULE b/src/licensedcode/data/rules/proprietary-license_87.RULE index 3cc17bd0d7..38191e6950 100644 --- a/src/licensedcode/data/rules/proprietary-license_87.RULE +++ b/src/licensedcode/data/rules/proprietary-license_87.RULE @@ -274,7 +274,7 @@ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, USE AND/OR MODIFICATION 10.1.5 censorship or "filtering" of any published information or expression. -10.2 Additionally, the Program, any modification of it, or any Software or Derivative Work based on the Program may not be used by any Governmental Entity or other institution that has any policy or practice (whether official or unofficial) of violating the human rights of any persons. +10.2 Additionally, the Program, any modification of it, or any Software or Derivative Work based on the Program {{may not be}} used by any Governmental Entity or other institution that has any policy or practice (whether official or unofficial) of violating the human rights of any persons. 10.3 You may not authorize, permit, or enable any person (including, without limitation, any Governmental Entity or Governmental Person) to use the Program or any Software or Derivative Work based on it (including any use of Your copy or copies of the Program) unless such person has accepted this License Agreement and has become a Licensee subject to all its terms and conditions, including (without limitation) the use restrictions embodied in Section 10.1 and 10.2, inclusive. diff --git a/src/licensedcode/data/rules/proprietary-license_875.RULE b/src/licensedcode/data/rules/proprietary-license_875.RULE index 790b43e405..b4b0ba6702 100644 --- a/src/licensedcode/data/rules/proprietary-license_875.RULE +++ b/src/licensedcode/data/rules/proprietary-license_875.RULE @@ -10,7 +10,7 @@ Each individual document published by The Open Group on the World Wide Web may c Nothing contained herein shall be construed as conferring by implication, estoppel or otherwise any license or right under any patent or trademark of The Open Group or any third party. Except as expressly provided above nothing contained herein shall be construed as conferring any license or right under any copyright of The Open Group. -Note that any product, process, or technology in this document may be the subject of other intellectual property rights reserved by The Open Group, and may not be licensed hereunder. +Note that any product, process, or technology in this document may be the subject of other intellectual property rights reserved by The Open Group, and {{may not be}} licensed hereunder. This publication is provided "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. Some jurisdictions do not allow the exclusion of implied warranties, so the above exclusion may not apply to you. diff --git a/src/licensedcode/data/rules/proprietary-license_877.RULE b/src/licensedcode/data/rules/proprietary-license_877.RULE index 3adfae0eb1..8e566edd17 100644 --- a/src/licensedcode/data/rules/proprietary-license_877.RULE +++ b/src/licensedcode/data/rules/proprietary-license_877.RULE @@ -7,7 +7,7 @@ notes: Seen in https://github.com/zerocracy/farm/blob/ca987e25fca09c4594d291a8ce # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to read -# the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, +# the Software only. Permissions {{is hereby NOT GRANTED}} to use, copy, modify, # merge, publish, distribute, sublicense, and/or sell copies of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR diff --git a/src/licensedcode/data/rules/proprietary-license_878.RULE b/src/licensedcode/data/rules/proprietary-license_878.RULE index 4a8d02a533..688938a676 100644 --- a/src/licensedcode/data/rules/proprietary-license_878.RULE +++ b/src/licensedcode/data/rules/proprietary-license_878.RULE @@ -4,5 +4,5 @@ is_license_text: yes notes: https://github.com/axen46/Primes/blob/a8c4fc2982b4bc0755075671dabfc9e9091a3fd8/LICENSE --- -MODIFICATION, REPUBLISHING, TRADEMARK USE, PRIVATE USE BY ANY COMPANY AND/OR INDIVIDUAL IS HEREBY NOT GRANTED. +MODIFICATION, REPUBLISHING, TRADEMARK USE, PRIVATE USE BY ANY COMPANY AND/OR INDIVIDUAL {{IS HEREBY NOT GRANTED}}. THE CODE SHALL ONLY BE USED FOR TESTING PURPOSES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_879.RULE b/src/licensedcode/data/rules/proprietary-license_879.RULE index 3c0988753a..6d275bf1a4 100644 --- a/src/licensedcode/data/rules/proprietary-license_879.RULE +++ b/src/licensedcode/data/rules/proprietary-license_879.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: https://github.com/mugambijavan/WK1-CODE-CHALLENGE/tree/f798ca1d3446c6e9c260fd6ad28ef75fc55fe398 --- -MIT License Permission is hereby not granted to any person obtaining a copy of this project. \ No newline at end of file +MIT License {{Permission is hereby not granted}} to any person obtaining a copy of this project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_880.RULE b/src/licensedcode/data/rules/proprietary-license_880.RULE index 9d4ff96f7c..6480fcd5b8 100644 --- a/src/licensedcode/data/rules/proprietary-license_880.RULE +++ b/src/licensedcode/data/rules/proprietary-license_880.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: https://github.com/xCKtmdl/KnuthMP/blob/fb9c51dd96eea87758942a9d77595b76ef102400/LICENSE#L3 --- -Permission is hereby not granted to use this software or source code. \ No newline at end of file +{{Permission is hereby not granted}} to use this software or source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_881.RULE b/src/licensedcode/data/rules/proprietary-license_881.RULE index 6d632b7a94..376f9f4fd2 100644 --- a/src/licensedcode/data/rules/proprietary-license_881.RULE +++ b/src/licensedcode/data/rules/proprietary-license_881.RULE @@ -6,5 +6,5 @@ notes: https://github.com/GreenAureus/green-aureus/blob/5eb7bd53ecdd60710a41fc60 // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to read -// the Software only. Permission is hereby NOT GRANTED to use, copy, modify, +// the Software only. {{Permission is hereby NOT GRANTED}} to use, copy, modify, // merge, publish, distribute, sublicense, and/or sell copies of the Software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_882.RULE b/src/licensedcode/data/rules/proprietary-license_882.RULE index fa3b266c17..9d3cf6dfda 100644 --- a/src/licensedcode/data/rules/proprietary-license_882.RULE +++ b/src/licensedcode/data/rules/proprietary-license_882.RULE @@ -4,7 +4,7 @@ is_license_text: yes notes: https://raw.githubusercontent.com/StashedStudios/StashedBot/9408c0d7a0ddb42c3986c813be55339f1f1d8dd5/README.md --- -Permission is hereby **_NOT_** granted, free of charge or paid, to any person from obtaining a copy of this software and associated documentation files (the "Software"). This Copyright notice _limits rights to copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software_, unless negotiated and/or exclusively licensed, subject to the following statement: +{{Permission is hereby **_NOT_** granted}}, free of charge or paid, to any person from obtaining a copy of this software and associated documentation files (the "Software"). This Copyright notice _limits rights to copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software_, unless negotiated and/or exclusively licensed, subject to the following statement: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software... \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_884.RULE b/src/licensedcode/data/rules/proprietary-license_884.RULE index d4e0ac2607..8f37b3d736 100644 --- a/src/licensedcode/data/rules/proprietary-license_884.RULE +++ b/src/licensedcode/data/rules/proprietary-license_884.RULE @@ -4,7 +4,7 @@ is_license_text: yes notes: https://github.com/seyedk-pacbits/mylicenses/blob/ea4e6fab6f01da2558ba2da5103d1198c8d419b6/LICENSE#L5 --- -Permission is hereby NOT granted, to any person obtaining any copy +{{Permission is hereby NOT granted}}, to any person obtaining any copy of this software and associated documentation files (the "Software"), to deal in the Software the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is diff --git a/src/licensedcode/data/rules/proprietary-license_885.RULE b/src/licensedcode/data/rules/proprietary-license_885.RULE index bad1742071..7a032bfc9e 100644 --- a/src/licensedcode/data/rules/proprietary-license_885.RULE +++ b/src/licensedcode/data/rules/proprietary-license_885.RULE @@ -7,7 +7,7 @@ notes: https://github.com/Xampy/piigo/blob/574f0c82b7e9aba897f648629cfaa2d57906c MIT License (No Permissions) -Permission is hereby not granted, free of charge, to any person obtaining a copy +{{Permission is hereby not granted}}, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell diff --git a/src/licensedcode/data/rules/proprietary-license_887.RULE b/src/licensedcode/data/rules/proprietary-license_887.RULE index 98ff48aae7..134b401bb0 100644 --- a/src/licensedcode/data/rules/proprietary-license_887.RULE +++ b/src/licensedcode/data/rules/proprietary-license_887.RULE @@ -7,7 +7,7 @@ notes: https://github.com/ciricbgd/Kroon-test/blob/027954d9390d22639f37d6ea24419 MIT License -Permission is hereby NOT granted, free of charge, to any person obtaining a copy +{{Permission is hereby NOT granted}}, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell diff --git a/src/licensedcode/data/rules/proprietary-license_899.RULE b/src/licensedcode/data/rules/proprietary-license_899.RULE index e7a392a282..34c3f7dded 100644 --- a/src/licensedcode/data/rules/proprietary-license_899.RULE +++ b/src/licensedcode/data/rules/proprietary-license_899.RULE @@ -11,8 +11,8 @@ trust - don't allow others to use these exercises without purchasing their own license. Thanks. Redistribution and use in source and binary forms, with or without -modification, are not permitted provided without an individual license. It may -not be used to create training material, courses, books, articles, and the like. +modification, are not permitted provided without an individual license. It {{may +not be}} used to create training material, courses, books, articles, and the like. Contact us if you are in doubt. We make no guarantees that this code is fit for any purpose. diff --git a/src/licensedcode/data/rules/proprietary-license_92.RULE b/src/licensedcode/data/rules/proprietary-license_92.RULE index 20a7a5354d..cbf6b706ee 100644 --- a/src/licensedcode/data/rules/proprietary-license_92.RULE +++ b/src/licensedcode/data/rules/proprietary-license_92.RULE @@ -104,7 +104,7 @@ UNLESS SPECIFIED IN THIS AGREEMENT, ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENT 10. Limitation of Liability. -TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above may not be applicable to you. +TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. In no event will Sun's liability to you, whether in contract, tort (including negligence), or otherwise, exceed the amount paid by you for Software under this Agreement. The foregoing limitations will apply even if the above stated warranty fails of its essential purpose. Some states do not allow the exclusion of incidental or consequential damages, so some of the terms above {{may not be}} applicable to you. 11. Export Regulations. diff --git a/src/licensedcode/data/rules/proprietary-license_927.RULE b/src/licensedcode/data/rules/proprietary-license_927.RULE index e57ae465cd..a17808f408 100644 --- a/src/licensedcode/data/rules/proprietary-license_927.RULE +++ b/src/licensedcode/data/rules/proprietary-license_927.RULE @@ -61,5 +61,5 @@ LICENSE b. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. c. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. d. No term or provision of this License shall be deemed waived and no breach consent- ed to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. - e. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. + e. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License {{may not be}} modified without the mutual written agreement of the Licensor and You. f. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_952.RULE b/src/licensedcode/data/rules/proprietary-license_952.RULE index d72a52a4ed..7b04f87796 100644 --- a/src/licensedcode/data/rules/proprietary-license_952.RULE +++ b/src/licensedcode/data/rules/proprietary-license_952.RULE @@ -146,7 +146,7 @@ forum.vmssoftware.com. 4. You may use an application program to embed the output of the Font Programs into an electronic document. You may send such an electronic document to a third party only for the purpose of permitting the third - party to view and print the electronic document. Font Programs may not be + party to view and print the electronic document. Font Programs {{may not be}} embedded in any format that permits the recipient of an electronic document to install the Font Programs or to use the Font Programs for any purpose beyond merely viewing and printing the document. You may not diff --git a/src/licensedcode/data/rules/proprietary-license_97.RULE b/src/licensedcode/data/rules/proprietary-license_97.RULE index 999791356b..a721b12ebd 100644 --- a/src/licensedcode/data/rules/proprietary-license_97.RULE +++ b/src/licensedcode/data/rules/proprietary-license_97.RULE @@ -23,5 +23,5 @@ relevance: 100 "any advertising, promotional, or sales literature without prior" "written consent in each case." -"5. These RGB colour formulations may not be used to the detriment of" +"5. These RGB colour formulations {{may not be}} used to the detriment of" "Resene Paints Ltd." \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary-license_974.RULE b/src/licensedcode/data/rules/proprietary-license_974.RULE index 518fe1c845..d9a67fc84a 100644 --- a/src/licensedcode/data/rules/proprietary-license_974.RULE +++ b/src/licensedcode/data/rules/proprietary-license_974.RULE @@ -193,7 +193,7 @@ Notwithstanding the foregoing, the Licensor shall be entitled to review complian 14. Additional conditions for innovation releases - Beta Software 14.1 Restrictions for innovation releases or beta software: Between regular major releases (official new revision of the software product) of the software, customers with a Software Maintenance Agreement are provided with new functionalities in innovation releases even before a major release in order to be able to benefit earlier from extended functionalities. 14.2 The right of use pursuant to Section 2.1 End User License Agreement - EULA is limited to 9 months or until the next major release is made available. -14.3 The functions in the Innovation Releases shall be tested and documented in the same way as in Major Releases. Bug fixes for Innovation Releases shall only be provided with a new Major Revision or service patch version associated with the Major Revision; no separate bug fixes in the sense of service patches shall be provided for Innovation Releases; Innovation Release Software may not be sold, exchanged or otherwise transferred or made available to third parties. +14.3 The functions in the Innovation Releases shall be tested and documented in the same way as in Major Releases. Bug fixes for Innovation Releases shall only be provided with a new Major Revision or service patch version associated with the Major Revision; no separate bug fixes in the sense of service patches shall be provided for Innovation Releases; Innovation Release Software {{may not be}} sold, exchanged or otherwise transferred or made available to third parties. 14.4 Functions that are made available in innovation releases do not necessarily have to be equally included in the standard scope of the major releases. Measurement plans or programs programmed, modified or opened and saved in innovation releases are not backward compatible - neither with predecessor major releases nor with predecessor innovation releases. 14.5 Deviation from Section 8 of the End User License Agreement - EULA applies to liability: Innovation releases and beta software can regularly still contain defects. The granting of a license for innovation software was made for the purpose of an early use of new software functions and the transmission of feedback regarding the quality and usability or also identification of defects. Innovation releases or beta software are provided "AS IS" and "AS AVAILABLE". They may contain errors or inaccuracies that may cause Licensee's equipment and peripherals connected to it (including, in particular, servers and computers) to fail, be impaired, or lose data and/or information. Licensor strongly recommends that you make backup copies of all data and information residing on your device and any peripheral devices before Licensee downloads, installs or uses Beta Software. Licensee expressly acknowledges and agrees that use of Beta Software is at Licensee's own risk. diff --git a/src/licensedcode/data/rules/proprietary-license_975.RULE b/src/licensedcode/data/rules/proprietary-license_975.RULE index 62dafd7d40..ca80c20437 100644 --- a/src/licensedcode/data/rules/proprietary-license_975.RULE +++ b/src/licensedcode/data/rules/proprietary-license_975.RULE @@ -10,4 +10,4 @@ ignorable_holders: - P.J. Plauger --- -Copyright (c) by {{P.J. Plauger}}, {{licensed by Dinkumware}}, Ltd. ALL RIGHTS RESERVED. \ No newline at end of file +Copyright (c) {{ by P.J. Plauger, licensed by Dinkumware }}, Ltd. ALL RIGHTS RESERVED. diff --git a/src/licensedcode/data/rules/proprietary-license_98.RULE b/src/licensedcode/data/rules/proprietary-license_98.RULE index 70b29aeb4f..11e581d934 100644 --- a/src/licensedcode/data/rules/proprietary-license_98.RULE +++ b/src/licensedcode/data/rules/proprietary-license_98.RULE @@ -10,7 +10,7 @@ relevance: 100 * modification, are permitted provided that the following conditions are met * * 1) NO FEES may be charged for the provision of the software. The software - * may NOT be published on websites that contain advertising, unless + * {{may NOT be}} published on websites that contain advertising, unless * specific prior written permission has been obtained. * * 2) Redistributions of source code must retain the above copyright notice, diff --git a/src/licensedcode/data/rules/proprietary-license_994.RULE b/src/licensedcode/data/rules/proprietary-license_994.RULE index 237a409e85..7cf9f3d784 100644 --- a/src/licensedcode/data/rules/proprietary-license_994.RULE +++ b/src/licensedcode/data/rules/proprietary-license_994.RULE @@ -8,5 +8,5 @@ notes: https://github.com/GameOverture/HarmonyEngine/blob/f0039d0bc68e5eb7afeb10 --- Permission to use, copy, modify, and distribute this software -is hereby NOT granted. Please refer to the file "copyright.html" +{{is hereby NOT granted}}. Please refer to the file "copyright.html" for further important copyright and licensing information. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_10.RULE b/src/licensedcode/data/rules/proprietary_10.RULE index b1e557f27c..589abb70b5 100644 --- a/src/licensedcode/data/rules/proprietary_10.RULE +++ b/src/licensedcode/data/rules/proprietary_10.RULE @@ -8,4 +8,4 @@ notes: IBM Device Driver Source Kit for OS/2 /* the purpose of assisting you in your development of OS/2 device */ /* drivers. You may use this code in accordance with the IBM License */ /* Agreement provided in the IBM Device Driver Source Kit for OS/2. This */ -/* Copyright statement may not be removed. */ \ No newline at end of file +/* Copyright statement {{may not be}} removed. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_104.RULE b/src/licensedcode/data/rules/proprietary_104.RULE index b4616bc016..4d57514b35 100644 --- a/src/licensedcode/data/rules/proprietary_104.RULE +++ b/src/licensedcode/data/rules/proprietary_104.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -May not be redistributed without prior written permission. \ No newline at end of file +{{May not be}} redistributed without prior written permission. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_110.RULE b/src/licensedcode/data/rules/proprietary_110.RULE index 513500a495..f254f1bde3 100644 --- a/src/licensedcode/data/rules/proprietary_110.RULE +++ b/src/licensedcode/data/rules/proprietary_110.RULE @@ -17,4 +17,4 @@ The text: is replaced with: "Licensees" and "recipients" may only be individuals. Organizations -may not be licensees using this license. \ No newline at end of file +{{may not be}} licensees using this license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_115.RULE b/src/licensedcode/data/rules/proprietary_115.RULE index 9bad9bef5d..2a271ee7c3 100644 --- a/src/licensedcode/data/rules/proprietary_115.RULE +++ b/src/licensedcode/data/rules/proprietary_115.RULE @@ -34,7 +34,7 @@ Accredited educational institutions may download and reproduce documents for cla Use for any other purpose is expressly prohibited by law, and may result in severe civil and criminal penalties. Violators will be prosecuted to the maximum extent possible. -Elements of the Comtrol.com Web site or any other Comtrol owned, operated, licensed or controlled site (including, but not limited to: DeviceMaster.com and RocketPort.com). Elements of Comtrol Web sites are protected by trade dress, trademark, unfair competition, and other laws and may not be copied or imitated in whole or in part. No logo, graphic, sound, or image from ANY Comtrol Web site may be copied or retransmitted unless expressly permitted by Comtrol Corporation. +Elements of the Comtrol.com Web site or any other Comtrol owned, operated, licensed or controlled site (including, but not limited to: DeviceMaster.com and RocketPort.com). Elements of Comtrol Web sites are protected by trade dress, trademark, unfair competition, and other laws and {{may not be}} copied or imitated in whole or in part. No logo, graphic, sound, or image from ANY Comtrol Web site may be copied or retransmitted unless expressly permitted by Comtrol Corporation. Any licensed software available from, or represented on, this Web site is the copyrighted work of Comtrol Corporation and/or its suppliers. Use of the software is governed by the terms of the license agreement, if any, which accompanies, is included with, or proceeds in way of written contract for purchase of the software. An end user will be unable to install any software that is governed by a license agreement, unless he or she first agrees to the license agreement terms. diff --git a/src/licensedcode/data/rules/proprietary_117.RULE b/src/licensedcode/data/rules/proprietary_117.RULE index 46c90f63d0..7683943e8a 100644 --- a/src/licensedcode/data/rules/proprietary_117.RULE +++ b/src/licensedcode/data/rules/proprietary_117.RULE @@ -23,7 +23,7 @@ perform, and distribute Software and Derivative Works. (2) Permitted use. Your permitted use of items and rights provided in this license (“Deliverables”) involves practicing the rights granted under this license for such non- commercial purposes as, but not limited to, research, private study, evaluation. -(3) Prohibited or limited use. Your use of Deliverables may not be intended for or result in +(3) Prohibited or limited use. Your use of Deliverables {{may not be}} intended for or result in commercial advantage or monetary compensation – such prohibited commercial use includes, without limitation, running business operations, licensing, leasing, bartering or selling Software or Derivative Works, or distributing any one of them for use with commercial diff --git a/src/licensedcode/data/rules/proprietary_119.RULE b/src/licensedcode/data/rules/proprietary_119.RULE index fb1774fc06..af1ada6442 100644 --- a/src/licensedcode/data/rules/proprietary_119.RULE +++ b/src/licensedcode/data/rules/proprietary_119.RULE @@ -5,7 +5,7 @@ is_license_text: yes SDK DOWNLOAD LICENSE AGREEMENT -BY USING THE SDK, YOU AND THE COMPANY OR ENTITY THAT YOU REPRESENT ("YOU") ARE AGREEING TO BE BOUND BY AND ARE BECOMING A PARTY TO THIS SDK LICENSE AGREEMENT ("AGREEMENT"). IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS AGREEMENT, CLICK THE "CANCEL" BUTTON AND THE DOWNLOAD AND INSTALLATION PROCESS WILL NOT CONTINUE. IF THESE TERMS ARE CONSIDERED AN OFFER, ACCEPTANCE IS EXPRESSLY LIMITED TO THESE TERMS. +BY USING THE SDK, YOU AND THE COMPANY OR ENTITY THAT YOU REPRESENT ("YOU") ARE AGREEING TO BE BOUND BY AND ARE BECOMING A PARTY TO THIS {{SDK LICENSE AGREEMENT}} ("AGREEMENT"). IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS AGREEMENT, CLICK THE "CANCEL" BUTTON AND THE DOWNLOAD AND INSTALLATION PROCESS WILL NOT CONTINUE. IF THESE TERMS ARE CONSIDERED AN OFFER, ACCEPTANCE IS EXPRESSLY LIMITED TO THESE TERMS. GRANT. Subject to Your compliance with all of the terms and conditions of this Agreement, , Inc. (" ") hereby grants You (i) if you are a publisher, a limited, personal, non-sublicensable, non-transferable, royalty-free, nonexclusive license to copy, install and use the SDK development kit that You are about to download along with any documentation that accompanies it (collectively, the "SDK") solely for the purpose of internally creating end user mobile (including tablet) applications ("Application(s)") that are interoperable with the service (as such service is described at www. .com) (the "Service"), and (ii) if you are an advertiser, a limited, personal, non-sublicensable, non-transferable, royalty-free, nonexclusive license to copy, install and use the SDK solely for the purpose of advertising with the Service. You may exercise the foregoing license only within and for the benefit of Your organization. You shall not distribute the SDK to any third party. USER DATA. You agree that the SDK will enable You to exchange Your user information with which may inculde UDID (unique device identifier), MAC address and OpenUDID. As a condition of any user of the SDKs, You must obtain express consent to collect and share user data with by including, as applicable, in Your terms of service and/or privacy policy provisions the following (or similar terms that are no less protective of ): diff --git a/src/licensedcode/data/rules/proprietary_120.RULE b/src/licensedcode/data/rules/proprietary_120.RULE index b7182fdea6..d4eb5a6905 100644 --- a/src/licensedcode/data/rules/proprietary_120.RULE +++ b/src/licensedcode/data/rules/proprietary_120.RULE @@ -15,7 +15,7 @@ It can be freely used for educational and research purposes by non-profit institutions and US government agencies only. Other organizations are allowed to use only for evaluation purposes, and any further uses will require prior approval. The software -may not be sold or redistributed without prior approval. One may +{{may not be}} sold or redistributed without prior approval. One may make copies of the software for their use provided that the copies, are not sold or distributed, are used under the same terms and conditions. @@ -24,4 +24,4 @@ As unestablished research software, this code is provided on an ``as is'' basis without warranty of any kind, either expressed or implied. The downloading, or executing any part of this software constitutes an implicit agreement to these terms. These terms and -conditions are subject to change at any time without prior notice. +conditions are subject to change at any time without prior notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_129.RULE b/src/licensedcode/data/rules/proprietary_129.RULE index 88bbbae996..9b996ad8b7 100644 --- a/src/licensedcode/data/rules/proprietary_129.RULE +++ b/src/licensedcode/data/rules/proprietary_129.RULE @@ -20,6 +20,6 @@ freely, subject to the following restrictions: appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +3. This notice {{may not be}} removed or altered from any source distribution. 4. Neither this software nor any of its individual components, in original or modified versions, may be sold by itself. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_149.RULE b/src/licensedcode/data/rules/proprietary_149.RULE index cca2c2dfdc..5810b7174c 100644 --- a/src/licensedcode/data/rules/proprietary_149.RULE +++ b/src/licensedcode/data/rules/proprietary_149.RULE @@ -6,7 +6,7 @@ is_license_notice: yes This software is furnished under a license and may be used and copied only in accordance of the terms of such license and with the inclusion of the above copyright notice. This software or any other -copies thereof may not be provided or otherwise made available to any +copies thereof {{may not be}} provided or otherwise made available to any other person. No title to and ownership of the software is hereby transferred. diff --git a/src/licensedcode/data/rules/proprietary_154.RULE b/src/licensedcode/data/rules/proprietary_154.RULE index d1713e8c0e..04d718dd16 100644 --- a/src/licensedcode/data/rules/proprietary_154.RULE +++ b/src/licensedcode/data/rules/proprietary_154.RULE @@ -79,7 +79,7 @@ any manner. No title or interest in or to any trademarks, service marks, tradenames or patents of Software AG is granted by this License. -The name of Software AG may not be used to endorse or promote products derived +The name of Software AG {{may not be}} used to endorse or promote products derived from this software without specific prior written permission. diff --git a/src/licensedcode/data/rules/proprietary_16.RULE b/src/licensedcode/data/rules/proprietary_16.RULE index 0793fb2714..20d403bcb8 100644 --- a/src/licensedcode/data/rules/proprietary_16.RULE +++ b/src/licensedcode/data/rules/proprietary_16.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under a proprietary license \ No newline at end of file +licensed under a {{proprietary license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_17.RULE b/src/licensedcode/data/rules/proprietary_17.RULE index b3ce006078..b78cd79fae 100644 --- a/src/licensedcode/data/rules/proprietary_17.RULE +++ b/src/licensedcode/data/rules/proprietary_17.RULE @@ -3,11 +3,11 @@ license_expression: proprietary-license is_license_notice: yes --- -The Software or any portion thereof may not be reproduced in any form +The Software or any portion thereof {{may not be}} reproduced in any form whatsoever except as provided by license, without the written consent of Company. -THIS NOTICE MAY NOT BE REMOVED FROM THE SOFTWARE BY ANY USER THEREOF. +THIS NOTICE {{MAY NOT BE}} REMOVED FROM THE SOFTWARE BY ANY USER THEREOF. NEITHER COMPANY NOR ANY PERSON OR ORGANIZATION ACTING ON BEHALF OF THEM: 1. MAKES ANY WARRANTY OR REPRESENTATION WHATSOEVER, EXPRESS OR IMPLIED, diff --git a/src/licensedcode/data/rules/proprietary_2.RULE b/src/licensedcode/data/rules/proprietary_2.RULE index 5ca63aaf31..1cdbe5326f 100644 --- a/src/licensedcode/data/rules/proprietary_2.RULE +++ b/src/licensedcode/data/rules/proprietary_2.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: http://unix-linux-server.googlecode.com/svn-history/r3/trunk/hyperlink.cpp --- -May not be sold for profit. \ No newline at end of file +{{May not be}} sold for profit. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_27.RULE b/src/licensedcode/data/rules/proprietary_27.RULE index a2af019d75..84ec12e838 100644 --- a/src/licensedcode/data/rules/proprietary_27.RULE +++ b/src/licensedcode/data/rules/proprietary_27.RULE @@ -6,7 +6,7 @@ is_license_notice: yes This software is furnished under a license and may be used and copied only in accordance of the terms of such license and with the inclusion of the above copyright notice. This software or any other -copies thereof may not be provided or otherwise made available to any +copies thereof {{may not be}} provided or otherwise made available to any other person. No title to and ownership of the software is hereby transferred. diff --git a/src/licensedcode/data/rules/proprietary_50.RULE b/src/licensedcode/data/rules/proprietary_50.RULE index 26f5e2a6f3..477a568e3d 100644 --- a/src/licensedcode/data/rules/proprietary_50.RULE +++ b/src/licensedcode/data/rules/proprietary_50.RULE @@ -7,7 +7,7 @@ is_license_notice: yes t "All Rights Reserved." "" - "This program may not be included in any commercial product" + "This program {{may not be}} included in any commercial product" "without the author written permission. It may be used freely" "for any non-commercial purpose, provided that this header is" "always included.") \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_56.RULE b/src/licensedcode/data/rules/proprietary_56.RULE index da54fa5b17..26743c5646 100644 --- a/src/licensedcode/data/rules/proprietary_56.RULE +++ b/src/licensedcode/data/rules/proprietary_56.RULE @@ -9,7 +9,7 @@ notes: | 10. The name, trade names, trademarks, service marks, or product names of Palantir Technologies Inc. (“Palantir”) or any of its - Contributors may not be used to endorse or promote products derived + Contributors {{may not be}} used to endorse or promote products derived from this Work (including the user interface elements embodied therein) without specific prior written permission. Nothing in this License constitutes as permission to (i) use the Work (including diff --git a/src/licensedcode/data/rules/proprietary_56_1.RULE b/src/licensedcode/data/rules/proprietary_56_1.RULE index d2ac5a9fae..b613c2ed23 100644 --- a/src/licensedcode/data/rules/proprietary_56_1.RULE +++ b/src/licensedcode/data/rules/proprietary_56_1.RULE @@ -188,7 +188,7 @@ Apache License (as modified) 10. The name, trade names, trademarks, service marks, or product names of Palantir Technologies Inc. (“Palantir”) or any of its - Contributors may not be used to endorse or promote products derived + Contributors {{may not be}} used to endorse or promote products derived from this Work (including the user interface elements embodied therein) without specific prior written permission. Nothing in this License constitutes as permission to (i) use the Work (including diff --git a/src/licensedcode/data/rules/proprietary_67.RULE b/src/licensedcode/data/rules/proprietary_67.RULE index 59599c16b5..29b19d197d 100644 --- a/src/licensedcode/data/rules/proprietary_67.RULE +++ b/src/licensedcode/data/rules/proprietary_67.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Proprietary license \ No newline at end of file +{{Proprietary license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_7.RULE b/src/licensedcode/data/rules/proprietary_7.RULE index 685fb666d3..c68029323b 100644 --- a/src/licensedcode/data/rules/proprietary_7.RULE +++ b/src/licensedcode/data/rules/proprietary_7.RULE @@ -5,7 +5,7 @@ notes: apple proprietary --- * This program is confidential and proprietary to and, -* without the express prior written permission of , may not be +* without the express prior written permission of , {{may not be}} * copied, reproduced, disclosed to others, published or used, in whole * or in part, for any purpose other than that for which it is being * made available. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_83.RULE b/src/licensedcode/data/rules/proprietary_83.RULE index bdc539ad5b..ba7eca5fa1 100644 --- a/src/licensedcode/data/rules/proprietary_83.RULE +++ b/src/licensedcode/data/rules/proprietary_83.RULE @@ -23,7 +23,7 @@ Limitations on Certain Testing Methods. You may not use the SOFTWARE PRODUCT for Limitations on Reverse Engineering, Decompilation, and Disassembly. You may not reverse engineer, decompile, or disassemble the SOFTWARE PRODUCT, except and only to the extent that such activity is expressly permitted by applicable law notwithstanding this limitation. -Separation of Components. The SOFTWARE PRODUCT is licensed as a single product. Its component parts may not be separated for use on more than one computer. +Separation of Components. The SOFTWARE PRODUCT is licensed as a single product. Its component parts {{may not be}} separated for use on more than one computer. Rental. You may not rent, lease, or lend the SOFTWARE PRODUCT. diff --git a/src/licensedcode/data/rules/proprietary_85.RULE b/src/licensedcode/data/rules/proprietary_85.RULE index 084c73c01a..d8c5262618 100644 --- a/src/licensedcode/data/rules/proprietary_85.RULE +++ b/src/licensedcode/data/rules/proprietary_85.RULE @@ -86,6 +86,6 @@ c.) If any provision of this license is invalid or unenforceable under applicabl d.) No term or provision of this license shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. -e.) This license constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This license may not be modified without the mutual written agreement of the Licensor and You. +e.) This license constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This license {{may not be}} modified without the mutual written agreement of the Licensor and You. f.) The rights granted under, and the subject matter referenced, in this license were draft ed utilizing the terminology of the berne convention for the protection of literary and artistic Works (as amended on september 28, 1979), the rome convention of 1961, the wipo copyright treaty of 1996, the wipo performances and phonograms treaty of 1996 and the universal copyright convention (as revised on july 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the license terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this license, such additional rights are deemed to be included in the license; this license is not intended to restrict the license of any rights under applicable law \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_88.RULE b/src/licensedcode/data/rules/proprietary_88.RULE index 5a938a9917..f51ec512a9 100644 --- a/src/licensedcode/data/rules/proprietary_88.RULE +++ b/src/licensedcode/data/rules/proprietary_88.RULE @@ -16,7 +16,7 @@ YOUR USE OF THIS PRODUCT IS CONDITIONED UPON YOUR ACCEPTANCE OF THIS LICENSE AGR The Product consists of: (1) the IBM Code, (2) Tools and Lib Code and (3) On-Line Written Materials. See individual directories for details. 1. Grant of License for the IBM Code -IBM grants to you a non-exclusive, non-assignable, non-transferable right, under the applicable IBM copyrights, to use one copy of the enclosed IBM Code on a single computer for the sole purposes of designing, developing and testing derivative work(s) which are device drivers for the OS/2 program (the "OS/2 Device Driver"). However, the Adobe Font Matrixes (AFM files) and the Postscript Printer Descriptions (PPD) provided as part of the IBM Code are not modifiable and may not be altered in any way from their original form. +IBM grants to you a non-exclusive, non-assignable, non-transferable right, under the applicable IBM copyrights, to use one copy of the enclosed IBM Code on a single computer for the sole purposes of designing, developing and testing derivative work(s) which are device drivers for the OS/2 program (the "OS/2 Device Driver"). However, the Adobe Font Matrixes (AFM files) and the Postscript Printer Descriptions (PPD) provided as part of the IBM Code are not modifiable and {{may not be}} altered in any way from their original form. In addition, IBM grants to you the non-exclusive, non-assignable, non-transferable right, under the applicable IBM copyrights, to reproduce and distribute, in object code form only, the IBM Code and/or the permitted derivative work thereof, but only in conjunction with and as part of the OS/2 Device Driver and only if you: a) do not make any statements to the effect or which imply that the OS/2 Device Driver is "certified" by IBM or that its performance is guaranteed by IBM and b) agree to indemnify, hold harmless and defend IBM and its subsidiaries and their suppliers from and against any and all claims, legal proceedings, liabilities, damages, costs and expenses, including attorney's fees, arising out of or in connection with your distribution of the IBM Code and/or the OS/2 Device Driver. @@ -65,7 +65,7 @@ You expressly undertake to retain in trust and confidence all information and kn THE PRODUCT (INCLUDING, BUT NOT LIMITED TO, THE IBM CODE, TOOLS AND LIB CODE, AND ONLINE WRITTEN MATERIALS) IS PROVIDED "AS IS" WITHOUT ANY WARRANTIES OF ANY KIND, EITHER EXPRESS, IMPLIED OR STATUTORY. IBM EXPRESSLY DISCLAIMS THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND ANY WARRANTY OF NON-INFRINGEMENT. -THE PRODUCT MAY INCLUDE CODE AND DOCUMENTATION WHICH MAY CONTAIN PRE-RELEASE MATERIAL THAT MAY BE MODIFIED SUBSTANTIALLY BEFORE GENERAL AVAILABILITY. THE PRE-RELEASE CODE AND DOCUMENTATION MAY NOT BE AT THE LEVEL OF PERFORMANCE OR COMPATIBILITY OF GENERALLY AVAILABLE IBM PRODUCTS. IBM DOES NOT GUARANTEE THAT ANY OF THE PRE-RELEASE CODE OR DOCUMENTATION CONTAINED IN THE PRODUCT WILL EVER BE MADE GENERALLY AVAILABLE. +THE PRODUCT MAY INCLUDE CODE AND DOCUMENTATION WHICH MAY CONTAIN PRE-RELEASE MATERIAL THAT MAY BE MODIFIED SUBSTANTIALLY BEFORE GENERAL AVAILABILITY. THE PRE-RELEASE CODE AND DOCUMENTATION {{MAY NOT BE}} AT THE LEVEL OF PERFORMANCE OR COMPATIBILITY OF GENERALLY AVAILABLE IBM PRODUCTS. IBM DOES NOT GUARANTEE THAT ANY OF THE PRE-RELEASE CODE OR DOCUMENTATION CONTAINED IN THE PRODUCT WILL EVER BE MADE GENERALLY AVAILABLE. 6. Limitation of Remedy IN NO EVENT SHALL IBM, ITS SUBSIDIARIES AND THEIR SUPPLIERS BE LIABLE FOR ANY SPECIAL, PUNITIVE, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES EVEN IF IBM, ITS SUBSIDIARIES OR THEIR SUPPLIERS ARE ADVISED OF, OR ARE AWARE OF, THE POSSIBILITY OF SUCH DAMAGES. THE ABOVE EXCLUSIONS INCLUDE, BUT ARE NOT LIMITED TO, LOST PROFITS, LOST REVENUE, LOSS OF BUSINESS INFORMATION, BUSINESS INTERRUPTION, AND LOST SAVINGS. IBM AND ITS SUBSIDIARIES SHALL NOT BE LIABLE FOR ANY DAMAGES CLAIMED BY YOU BASED ON ANY THIRD PARTY CLAIMS. diff --git a/src/licensedcode/data/rules/proprietary_94.RULE b/src/licensedcode/data/rules/proprietary_94.RULE index e906215cc3..0186d5dff1 100644 --- a/src/licensedcode/data/rules/proprietary_94.RULE +++ b/src/licensedcode/data/rules/proprietary_94.RULE @@ -14,11 +14,11 @@ Title, copyright, intellectual property rights and distribution rights of the So The Software may be installed into any number of locations. -Each of the License Keys may be installed only once, into one location. A single copy of each of the License Keys may be made for backup purposes only. Once installed, the License Keys may enable the Software to function on no more than one computing node, whether physical or virtual machine, or any other type of computing node. Once installed, the License Keys may not be copied, shared, or otherwise distributed such that they may enable the Software to function on more than one computing node, whether physical or virtual machine, or any other type of computing node. +Each of the License Keys may be installed only once, into one location. A single copy of each of the License Keys may be made for backup purposes only. Once installed, the License Keys may enable the Software to function on no more than one computing node, whether physical or virtual machine, or any other type of computing node. Once installed, the License Keys {{may not be}} copied, shared, or otherwise distributed such that they may enable the Software to function on more than one computing node, whether physical or virtual machine, or any other type of computing node. The rights and obligations of this Agreement are personal rights granted to the Licensee only. The Licensee may not transfer or assign any of the rights or obligations to any other person or legal entity. -The Software and License Keys may not be modified, de-compiled, or reverse-engieered in any manner using technologies available now or in the future. +The Software and License Keys {{may not be}} modified, de-compiled, or reverse-engieered in any manner using technologies available now or in the future. Failure to comply with any of the terms under this License section will be considered a material breach of this Agreement. diff --git a/src/licensedcode/data/rules/proprietary_eula.RULE b/src/licensedcode/data/rules/proprietary_eula.RULE index 8462952084..75c45535d1 100644 --- a/src/licensedcode/data/rules/proprietary_eula.RULE +++ b/src/licensedcode/data/rules/proprietary_eula.RULE @@ -93,7 +93,7 @@ SECTION D - TERMS APPLICABLE TO SECTIONS A, B AND C ABOVE 5.0 GOVERNING LAW. Any claim arising under or related to this Agreement will be governed by California law (excluding its conflict of law principles) and controlling United States federal law. Any action under or relating to this Agreement brought by you shall be brought solely in the state and federal courts located in California with sole venue in the courts located in Santa Clara County and you hereby submit to the personal jurisdiction of such courts. The United Nations Convention on Contracts for the Sale of Goods does not apply to this Agreement. -6.0 EXPORT REGULATIONS. The Software delivered under this Agreement is subject to United States export control laws and may be subject to export or import regulations in other countries. You may not use or otherwise export or re-export the Software except as authorized by United States law and the laws of the jurisdiction in which the Software was obtained. You agree to comply strictly with all such laws and regulations and acknowledge that the Software may not be exported or re-exported (i) into (or to a national or resident of) any United States embargoed country or (ii) to anyone on the United States Treasury Department's list of Specially Designated Nationals or the United States Commerce Department's Table of Denial Orders (each, a "List"). By using the Software, you represent and warrant that you are not located in, under the control of, or a national or resident of any such country or on any such List. You shall indemnify and hold harmless from any and all claims, losses, liabilities, damages, fines, penalties, costs and expenses (including attorney's fees) arising from or relating to any breach by you of your obligations under this section. Your obligations under this section shall survive the expiration or termination of this Agreement. +6.0 EXPORT REGULATIONS. The Software delivered under this Agreement is subject to United States export control laws and may be subject to export or import regulations in other countries. You may not use or otherwise export or re-export the Software except as authorized by United States law and the laws of the jurisdiction in which the Software was obtained. You agree to comply strictly with all such laws and regulations and acknowledge that the Software {{may not be}} exported or re-exported (i) into (or to a national or resident of) any United States embargoed country or (ii) to anyone on the United States Treasury Department's list of Specially Designated Nationals or the United States Commerce Department's Table of Denial Orders (each, a "List"). By using the Software, you represent and warrant that you are not located in, under the control of, or a national or resident of any such country or on any such List. You shall indemnify and hold harmless from any and all claims, losses, liabilities, damages, fines, penalties, costs and expenses (including attorney's fees) arising from or relating to any breach by you of your obligations under this section. Your obligations under this section shall survive the expiration or termination of this Agreement. 7.0 UNITED STATES GOVERNMENT RIGHTS. The Software and Applications licensed hereunder is subject to restricted rights. Any use, duplication or disclosure by the Government of the United States of America or any person or entity acting on its behalf is subject to the restrictions set forth in subdivision (c)(1)(ii) of the Rights in Technical Data and Computer Software Clause at DFARS (48 CFR 252.227-7013) for Department of Defense ("DoD") contracts; in paragraphs (c)(1) and (2) of the Commercial Computer Software- Restricted Rights clause in the FAR (48 CFR 52.227-19) for civilian agencies; or, in the case of NASA, in Clause 18-52.227-86(d) of the NASA Supplement to the FAR, or in other comparable agency clauses. diff --git a/src/licensedcode/data/rules/proprietary_non-commercial2.RULE b/src/licensedcode/data/rules/proprietary_non-commercial2.RULE index ce302ff2cb..5a7a5744c4 100644 --- a/src/licensedcode/data/rules/proprietary_non-commercial2.RULE +++ b/src/licensedcode/data/rules/proprietary_non-commercial2.RULE @@ -4,7 +4,7 @@ is_license_notice: yes minimum_coverage: 60 --- -"This program may not be included in any commercial product" +"This program {{may not be}} included in any commercial product" "without the author written permission. It may be used freely" "for any non-commercial purpose, provided that this header is" "always included. \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_phoenix.RULE b/src/licensedcode/data/rules/proprietary_phoenix.RULE index 1c7c623c8d..d8d5d8a6d5 100644 --- a/src/licensedcode/data/rules/proprietary_phoenix.RULE +++ b/src/licensedcode/data/rules/proprietary_phoenix.RULE @@ -97,7 +97,7 @@ SECTION D - TERMS APPLICABLE TO SECTIONS A, B AND C ABOVE 5.0 GOVERNING LAW. Any claim arising under or related to this Agreement will be governed by California law (excluding its conflict of law principles) and controlling United States federal law. Any action under or relating to this Agreement brought by you shall be brought solely in the state and federal courts located in California with sole venue in the courts located in Santa Clara County and you hereby submit to the personal jurisdiction of such courts. The United Nations Convention on Contracts for the Sale of Goods does not apply to this Agreement. -6.0 EXPORT REGULATIONS. The Software delivered under this Agreement is subject to United States export control laws and may be subject to export or import regulations in other countries. You may not use or otherwise export or re-export the Software except as authorized by United States law and the laws of the jurisdiction in which the Software was obtained. You agree to comply strictly with all such laws and regulations and acknowledge that the Software may not be exported or re-exported (i) into (or to a national or resident of) any United States embargoed country or (ii) to anyone on the United States Treasury Department's list of Specially Designated Nationals or the United States Commerce Department's Table of Denial Orders (each, a "List"). By using the Software, you represent and warrant that you are not located in, under the control of, or a national or resident of any such country or on any such List. You shall indemnify and hold Phoenix harmless from any and all claims, losses, liabilities, damages, fines, penalties, costs and expenses (including attorney's fees) arising from or relating to any breach by you of your obligations under this section. Your obligations under this section shall survive the expiration or termination of this Agreement. +6.0 EXPORT REGULATIONS. The Software delivered under this Agreement is subject to United States export control laws and may be subject to export or import regulations in other countries. You may not use or otherwise export or re-export the Software except as authorized by United States law and the laws of the jurisdiction in which the Software was obtained. You agree to comply strictly with all such laws and regulations and acknowledge that the Software {{may not be}} exported or re-exported (i) into (or to a national or resident of) any United States embargoed country or (ii) to anyone on the United States Treasury Department's list of Specially Designated Nationals or the United States Commerce Department's Table of Denial Orders (each, a "List"). By using the Software, you represent and warrant that you are not located in, under the control of, or a national or resident of any such country or on any such List. You shall indemnify and hold Phoenix harmless from any and all claims, losses, liabilities, damages, fines, penalties, costs and expenses (including attorney's fees) arising from or relating to any breach by you of your obligations under this section. Your obligations under this section shall survive the expiration or termination of this Agreement. 7.0 UNITED STATES GOVERNMENT RIGHTS. The Software and Applications licensed hereunder is subject to restricted rights. Any use, duplication or disclosure by the Government of the United States of America or any person or entity acting on its behalf is subject to the restrictions set forth in subdivision (c)(1)(ii) of the Rights in Technical Data and Computer Software Clause at DFARS (48 CFR 252.227-7013) for Department of Defense ("DoD") contracts; in paragraphs (c)(1) and (2) of the Commercial Computer Software- Restricted Rights clause in the FAR (48 CFR 52.227-19) for civilian agencies; or, in the case of NASA, in Clause 18-52.227-86(d) of the NASA Supplement to the FAR, or in other comparable agency clauses. diff --git a/src/licensedcode/data/rules/proprietary_reproduce.RULE b/src/licensedcode/data/rules/proprietary_reproduce.RULE index ddc967b528..e636226681 100644 --- a/src/licensedcode/data/rules/proprietary_reproduce.RULE +++ b/src/licensedcode/data/rules/proprietary_reproduce.RULE @@ -3,6 +3,6 @@ license_expression: proprietary-license is_license_notice: yes --- -* The Software or any portion thereof may not be reproduced in any +* The Software or any portion thereof {{may not be}} reproduced in any * form whatsoever except as provided by license, without the written * consent of \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_reproduce2.RULE b/src/licensedcode/data/rules/proprietary_reproduce2.RULE index fea0c2f374..5e4d2ed964 100644 --- a/src/licensedcode/data/rules/proprietary_reproduce2.RULE +++ b/src/licensedcode/data/rules/proprietary_reproduce2.RULE @@ -3,5 +3,5 @@ license_expression: proprietary-license is_license_notice: yes --- -The software or any portion thereof may not be reproduced in any form +The software or any portion thereof {{may not be}} reproduced in any form whatsoever, except as expressly provided in a written license agreement with \ No newline at end of file diff --git a/src/licensedcode/data/rules/proprietary_unbound.RULE b/src/licensedcode/data/rules/proprietary_unbound.RULE index 65c86fa21a..baaa0d72bf 100644 --- a/src/licensedcode/data/rules/proprietary_unbound.RULE +++ b/src/licensedcode/data/rules/proprietary_unbound.RULE @@ -50,8 +50,8 @@ in its sole discretion, terminate or suspend access to the SDK to You or any end user at any time. In addition, if you fail to comply with the terms of this Agreement, then any rights granted herein will be automatically terminated if such failure is not corrected within 30 days of the initial notification of -such failure. You acknowledge that termination and/or monetary damages may not -be a sufficient remedy if You breach this Agreement and that will +such failure. You acknowledge that termination and/or monetary damages {{may not +be}} a sufficient remedy if You breach this Agreement and that will be entitled, without waiving any other rights or remedies, to injunctive or equitable relief as may be deemed proper by a court of competent jurisdiction in the event of a breach. may also terminate this Agreement if diff --git a/src/licensedcode/data/rules/proprietary_xvgif.RULE b/src/licensedcode/data/rules/proprietary_xvgif.RULE index 120473dd00..87009f3fea 100644 --- a/src/licensedcode/data/rules/proprietary_xvgif.RULE +++ b/src/licensedcode/data/rules/proprietary_xvgif.RULE @@ -9,6 +9,6 @@ notice appear in all copies and that both the copyright notice and this permission notice appear in supporting documentation. The software may be modified for your own purposes, but modified versions -may not be distributed. +{{may not be}} distributed. This software is provided "as is" without any expressed or implied warranty. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_0.RULE b/src/licensedcode/data/rules/public-domain_0.RULE index 4f976c6e63..3d9133ca93 100644 --- a/src/licensedcode/data/rules/public-domain_0.RULE +++ b/src/licensedcode/data/rules/public-domain_0.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -"Public domain" - the code in these files have no licensing restrictions whatsoever. \ No newline at end of file +"{{Public domain}}" - the code in these files have no licensing restrictions whatsoever. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_1.RULE b/src/licensedcode/data/rules/public-domain_1.RULE index 654206bfb9..2e977d0f8d 100644 --- a/src/licensedcode/data/rules/public-domain_1.RULE +++ b/src/licensedcode/data/rules/public-domain_1.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This source code is public domain \ No newline at end of file +This source code is {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_10.RULE b/src/licensedcode/data/rules/public-domain_10.RULE index dde18ac9dd..086ba0e97f 100644 --- a/src/licensedcode/data/rules/public-domain_10.RULE +++ b/src/licensedcode/data/rules/public-domain_10.RULE @@ -3,6 +3,6 @@ license_expression: public-domain is_license_text: yes --- -The standard is considered to be in the public domain. Anyone is free +The standard is considered to be {{in the public domain}}. Anyone is free to implement SANE interface conforming applications or libraries in any way he or she sees fit. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_100.RULE b/src/licensedcode/data/rules/public-domain_100.RULE index d91e7710b6..d14473aeab 100644 --- a/src/licensedcode/data/rules/public-domain_100.RULE +++ b/src/licensedcode/data/rules/public-domain_100.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 95 --- -Based on a public domain implementation \ No newline at end of file +Based on a {{public domain}} implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_101.RULE b/src/licensedcode/data/rules/public-domain_101.RULE index f8ba0bdadc..1c7d52256f 100644 --- a/src/licensedcode/data/rules/public-domain_101.RULE +++ b/src/licensedcode/data/rules/public-domain_101.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 95 --- -Library is public domain \ No newline at end of file +Library is {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_102.RULE b/src/licensedcode/data/rules/public-domain_102.RULE index f8a83de2c3..5d464e472d 100644 --- a/src/licensedcode/data/rules/public-domain_102.RULE +++ b/src/licensedcode/data/rules/public-domain_102.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 95 --- -This file was modified from the public domain \ No newline at end of file +This file was modified from the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_103.RULE b/src/licensedcode/data/rules/public-domain_103.RULE index b9e09737d2..8e819bb451 100644 --- a/src/licensedcode/data/rules/public-domain_103.RULE +++ b/src/licensedcode/data/rules/public-domain_103.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 95 --- -// and is also placed in the public domain. +// and is also placed {{in the public domain}}. // The authors hereby disclaim copyright to these source codes. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_104.RULE b/src/licensedcode/data/rules/public-domain_104.RULE index 13469ba742..7ad35df11b 100644 --- a/src/licensedcode/data/rules/public-domain_104.RULE +++ b/src/licensedcode/data/rules/public-domain_104.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 95 --- -Adopted from public domain code \ No newline at end of file +Adopted from {{public domain}} code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_105.RULE b/src/licensedcode/data/rules/public-domain_105.RULE index 48a7d5819a..54b3ce20ea 100644 --- a/src/licensedcode/data/rules/public-domain_105.RULE +++ b/src/licensedcode/data/rules/public-domain_105.RULE @@ -4,7 +4,7 @@ is_license_text: yes relevance: 95 --- -* Despite my general liking of the GPL, I place this code in the - * public domain for the benefit of all mankind - even the slimy +* Despite my general liking of the GPL, I place this code {{in the + * public domain}} for the benefit of all mankind - even the slimy * ones who might try to proprietize my work and use it to my * detriment. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_106.RULE b/src/licensedcode/data/rules/public-domain_106.RULE index c8b1007f59..f5ff5bfe98 100644 --- a/src/licensedcode/data/rules/public-domain_106.RULE +++ b/src/licensedcode/data/rules/public-domain_106.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 95 --- -A portable, public domain, version of the Data Encryption Standard. \ No newline at end of file +A portable, {{public domain}}, version of the Data Encryption Standard. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_107.RULE b/src/licensedcode/data/rules/public-domain_107.RULE index ede722e873..8ca805fd22 100644 --- a/src/licensedcode/data/rules/public-domain_107.RULE +++ b/src/licensedcode/data/rules/public-domain_107.RULE @@ -3,5 +3,5 @@ license_expression: public-domain is_license_text: yes --- -// This code was written by and has been placed in the -// public domain. It would be nice if you left this header intact. \ No newline at end of file +// This code was written by and has been placed {{in the +// public domain}}. It would be nice if you left this header intact. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_108.RULE b/src/licensedcode/data/rules/public-domain_108.RULE index 5919dd4b4e..979ea1900f 100644 --- a/src/licensedcode/data/rules/public-domain_108.RULE +++ b/src/licensedcode/data/rules/public-domain_108.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -It is in the public domain. \ No newline at end of file +It is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_109.RULE b/src/licensedcode/data/rules/public-domain_109.RULE index db5b8ef8c7..9ee1de63ff 100644 --- a/src/licensedcode/data/rules/public-domain_109.RULE +++ b/src/licensedcode/data/rules/public-domain_109.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -all related programs in this package are in -# the public domain. \ No newline at end of file +all related programs in this package are {{in +# the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_11.RULE b/src/licensedcode/data/rules/public-domain_11.RULE index 3a2bc96cf2..4889185aff 100644 --- a/src/licensedcode/data/rules/public-domain_11.RULE +++ b/src/licensedcode/data/rules/public-domain_11.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -This file is in the public domain. You may freely use, modify and +This file is {{in the public domain}}. You may freely use, modify and distribute it \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_110.RULE b/src/licensedcode/data/rules/public-domain_110.RULE index a2fc0e51a2..41e2339c01 100644 --- a/src/licensedcode/data/rules/public-domain_110.RULE +++ b/src/licensedcode/data/rules/public-domain_110.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Some of the algorithms in this class are in the public domain \ No newline at end of file +Some of the algorithms in this class are {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_111.RULE b/src/licensedcode/data/rules/public-domain_111.RULE index 773e096c02..c06dc8da43 100644 --- a/src/licensedcode/data/rules/public-domain_111.RULE +++ b/src/licensedcode/data/rules/public-domain_111.RULE @@ -3,5 +3,5 @@ license_expression: public-domain is_license_text: yes --- -* This software was released into the Public Domain. As with most public - * domain software, no warranty is made or implied \ No newline at end of file +* This software was released into the {{Public Domain}}. As with most {{public + * domain}} software, no warranty is made or implied \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_112.RULE b/src/licensedcode/data/rules/public-domain_112.RULE index 0011b2d32c..9cfe3cc327 100644 --- a/src/licensedcode/data/rules/public-domain_112.RULE +++ b/src/licensedcode/data/rules/public-domain_112.RULE @@ -6,7 +6,7 @@ relevance: 100 copyright", "As I developed this software in conjunction with " " and at University, I " - "freely put this software in the public domain. " + "freely put this software {{in the public domain}}. " "As such, it requires no banner preservation, " "restrictions, or acknowledgements other than " "those which the user wishes to add.") \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_113.RULE b/src/licensedcode/data/rules/public-domain_113.RULE index 1110a18c60..1b0d2c4a69 100644 --- a/src/licensedcode/data/rules/public-domain_113.RULE +++ b/src/licensedcode/data/rules/public-domain_113.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -this program is in the public domain \ No newline at end of file +this program is {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_114.RULE b/src/licensedcode/data/rules/public-domain_114.RULE index 239c0483cf..40836e78f7 100644 --- a/src/licensedcode/data/rules/public-domain_114.RULE +++ b/src/licensedcode/data/rules/public-domain_114.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This source and associated include are contributed to the Public Domain. \ No newline at end of file +This source and associated include are contributed to the {{Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_115.RULE b/src/licensedcode/data/rules/public-domain_115.RULE index a3c74bc756..e0c3c90f0d 100644 --- a/src/licensedcode/data/rules/public-domain_115.RULE +++ b/src/licensedcode/data/rules/public-domain_115.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Adapted from 1995 public domain C code \ No newline at end of file +Adapted from 1995 {{public domain}} C code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_116.RULE b/src/licensedcode/data/rules/public-domain_116.RULE index 81ac857533..c1d3781c9a 100644 --- a/src/licensedcode/data/rules/public-domain_116.RULE +++ b/src/licensedcode/data/rules/public-domain_116.RULE @@ -4,8 +4,8 @@ is_license_text: yes relevance: 100 --- -Public domain +{{Public domain}} -I hereby place my work 'polyleven' into the public domain. +I hereby place my work 'polyleven' into the {{public domain}}. All my copyrights, including all related and neighbouring rights, are abandoned. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_117.RULE b/src/licensedcode/data/rules/public-domain_117.RULE index 535888b650..6a63427108 100644 --- a/src/licensedcode/data/rules/public-domain_117.RULE +++ b/src/licensedcode/data/rules/public-domain_117.RULE @@ -4,6 +4,6 @@ is_license_text: yes relevance: 90 --- -and their related set of tools and documentation are in the -// public domain. The author(s) of this software reserve no copyrights on +and their related set of tools and documentation are {{in the +// public domain}}. The author(s) of this software reserve no copyrights on // and help from the users. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_118.RULE b/src/licensedcode/data/rules/public-domain_118.RULE index a4b0701b08..81148bace0 100644 --- a/src/licensedcode/data/rules/public-domain_118.RULE +++ b/src/licensedcode/data/rules/public-domain_118.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 90 --- -and released into the public domain. +and released into the {{public domain}}. * Anybody may use and/or modify this code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_119.RULE b/src/licensedcode/data/rules/public-domain_119.RULE index c80144d0c7..1b9b1ff340 100644 --- a/src/licensedcode/data/rules/public-domain_119.RULE +++ b/src/licensedcode/data/rules/public-domain_119.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 95 --- -No known copyright restrictions, released into the public domain. \ No newline at end of file +No known copyright restrictions, released into the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_12.RULE b/src/licensedcode/data/rules/public-domain_12.RULE index ef1e99727d..a099e5c08f 100644 --- a/src/licensedcode/data/rules/public-domain_12.RULE +++ b/src/licensedcode/data/rules/public-domain_12.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -FILE_LICENCE ( PUBLIC_DOMAIN ); \ No newline at end of file +FILE_LICENCE ( {{PUBLIC_DOMAIN}} ); \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_120.RULE b/src/licensedcode/data/rules/public-domain_120.RULE index 6b09d3845d..5aa8ba4e20 100644 --- a/src/licensedcode/data/rules/public-domain_120.RULE +++ b/src/licensedcode/data/rules/public-domain_120.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://www.nasa.gov/audience/formedia/features/MP_Photo_Guidelines.html --- -and `may be freely used in the - public domain `_. \ No newline at end of file +and `may be freely used {{in the + public domain}} `_. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_121.RULE b/src/licensedcode/data/rules/public-domain_121.RULE index 1ab44c2492..1da0ad04f0 100644 --- a/src/licensedcode/data/rules/public-domain_121.RULE +++ b/src/licensedcode/data/rules/public-domain_121.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -and `released in the public domain \ No newline at end of file +and `released {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_122.RULE b/src/licensedcode/data/rules/public-domain_122.RULE index f6c91c8276..5be64c4409 100644 --- a/src/licensedcode/data/rules/public-domain_122.RULE +++ b/src/licensedcode/data/rules/public-domain_122.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Copyright: This module has been placed in the public domain. \ No newline at end of file +Copyright: This module has been placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_123.RULE b/src/licensedcode/data/rules/public-domain_123.RULE index f316d62f0f..f07adb66fb 100644 --- a/src/licensedcode/data/rules/public-domain_123.RULE +++ b/src/licensedcode/data/rules/public-domain_123.RULE @@ -8,9 +8,9 @@ ignorable_holders: --- No copyright is claimed, and all modifications to this source - * fall under original public domain license statement. - * In case this attempt to disclaim copyright and place the software in - * the public domain is deemed null and void, then the software is + * fall under original {{public domain}} license statement. + * In case this attempt to disclaim copyright and place the software {{in + * the public domain}} is deemed null and void, then the software is * Copyright (c) 2002-3 Hans Dietrich / Jim Fougeron * and it is hereby released to the general public under the following * terms: diff --git a/src/licensedcode/data/rules/public-domain_124.RULE b/src/licensedcode/data/rules/public-domain_124.RULE index 23e28cfdfe..13a156a9b3 100644 --- a/src/licensedcode/data/rules/public-domain_124.RULE +++ b/src/licensedcode/data/rules/public-domain_124.RULE @@ -5,4 +5,4 @@ relevance: 99 minimum_coverage: 90 --- -and released to the Public Domain. \ No newline at end of file +and released to the {{Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_125.RULE b/src/licensedcode/data/rules/public-domain_125.RULE index ab4a78c2eb..61c4d435f5 100644 --- a/src/licensedcode/data/rules/public-domain_125.RULE +++ b/src/licensedcode/data/rules/public-domain_125.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -100% Public Domain \ No newline at end of file +100% {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_126.RULE b/src/licensedcode/data/rules/public-domain_126.RULE index 118a576cc4..65c3de7b3f 100644 --- a/src/licensedcode/data/rules/public-domain_126.RULE +++ b/src/licensedcode/data/rules/public-domain_126.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Public domain font. Share and enjoy. \ No newline at end of file +{{Public domain}} font. Share and enjoy. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_127.RULE b/src/licensedcode/data/rules/public-domain_127.RULE index 5b7dbdd3b6..7f44e8e367 100644 --- a/src/licensedcode/data/rules/public-domain_127.RULE +++ b/src/licensedcode/data/rules/public-domain_127.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This source code belongs to Public Domain. \ No newline at end of file +This source code belongs to {{Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_128.RULE b/src/licensedcode/data/rules/public-domain_128.RULE index 1a361c62cc..46b29b7201 100644 --- a/src/licensedcode/data/rules/public-domain_128.RULE +++ b/src/licensedcode/data/rules/public-domain_128.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -put into the public domain \ No newline at end of file +put into the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_129.RULE b/src/licensedcode/data/rules/public-domain_129.RULE index 68ea2c8d07..cc66acf940 100644 --- a/src/licensedcode/data/rules/public-domain_129.RULE +++ b/src/licensedcode/data/rules/public-domain_129.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 90 --- -This is free and unencumbered software released into the public domain. \ No newline at end of file +This is free and unencumbered software released into the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_13.RULE b/src/licensedcode/data/rules/public-domain_13.RULE index dc5b326074..23dd91b960 100644 --- a/src/licensedcode/data/rules/public-domain_13.RULE +++ b/src/licensedcode/data/rules/public-domain_13.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is hereby placed in the public domain. \ No newline at end of file +This code is hereby placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_130.RULE b/src/licensedcode/data/rules/public-domain_130.RULE index 3ad6dde75d..a640ed7c56 100644 --- a/src/licensedcode/data/rules/public-domain_130.RULE +++ b/src/licensedcode/data/rules/public-domain_130.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -originally based on the public domain implementation written +originally based on the {{public domain}} implementation written * by \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_131.RULE b/src/licensedcode/data/rules/public-domain_131.RULE index 66c4a76b0e..379502d79e 100644 --- a/src/licensedcode/data/rules/public-domain_131.RULE +++ b/src/licensedcode/data/rules/public-domain_131.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -These trivial string functions are considered part of the public domain. \ No newline at end of file +These trivial string functions are considered part of the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_132.RULE b/src/licensedcode/data/rules/public-domain_132.RULE index e1451f1f5b..250904fea4 100644 --- a/src/licensedcode/data/rules/public-domain_132.RULE +++ b/src/licensedcode/data/rules/public-domain_132.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Public domain C code \ No newline at end of file +{{Public domain}} C code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_133.RULE b/src/licensedcode/data/rules/public-domain_133.RULE index 8a7ee41618..e7d8adb374 100644 --- a/src/licensedcode/data/rules/public-domain_133.RULE +++ b/src/licensedcode/data/rules/public-domain_133.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Derived from Public domain C code \ No newline at end of file +Derived from {{Public domain}} C code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_134.RULE b/src/licensedcode/data/rules/public-domain_134.RULE index 5bf414e6b9..786e0ee18c 100644 --- a/src/licensedcode/data/rules/public-domain_134.RULE +++ b/src/licensedcode/data/rules/public-domain_134.RULE @@ -3,6 +3,6 @@ license_expression: public-domain is_license_text: yes --- -This file is in the public domain. +This file is {{in the public domain}}. - This file is generated automatically from the data in the public-domain \ No newline at end of file + This file is generated automatically from the data {{in the public-domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_135.RULE b/src/licensedcode/data/rules/public-domain_135.RULE index 91075c8240..b9f0ffcdcf 100644 --- a/src/licensedcode/data/rules/public-domain_135.RULE +++ b/src/licensedcode/data/rules/public-domain_135.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This file is generated automatically from the data in the public-domain \ No newline at end of file +This file is generated automatically from the data {{in the public-domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_136.RULE b/src/licensedcode/data/rules/public-domain_136.RULE index 3f9c103e5c..5203ca9bab 100644 --- a/src/licensedcode/data/rules/public-domain_136.RULE +++ b/src/licensedcode/data/rules/public-domain_136.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -Wildcard matching routine by Karl Heuer. Public Domain \ No newline at end of file +Wildcard matching routine by Karl Heuer. {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_137.RULE b/src/licensedcode/data/rules/public-domain_137.RULE index ed16e770ee..31ed8ac2fc 100644 --- a/src/licensedcode/data/rules/public-domain_137.RULE +++ b/src/licensedcode/data/rules/public-domain_137.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The code is translated from the public domain source code \ No newline at end of file +The code is translated from the {{public domain}} source code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_139.RULE b/src/licensedcode/data/rules/public-domain_139.RULE index 96b4d6d15d..1ddd175a75 100644 --- a/src/licensedcode/data/rules/public-domain_139.RULE +++ b/src/licensedcode/data/rules/public-domain_139.RULE @@ -7,5 +7,5 @@ ignorable_urls: - https://spdx.org/licenses/PublicDomain.html --- -Public Domain +{{Public Domain}} https://spdx.org/licenses/PublicDomain.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_14.RULE b/src/licensedcode/data/rules/public-domain_14.RULE index 35e767a468..a05698789c 100644 --- a/src/licensedcode/data/rules/public-domain_14.RULE +++ b/src/licensedcode/data/rules/public-domain_14.RULE @@ -5,4 +5,4 @@ relevance: 99 minimum_coverage: 100 --- -Modifications to public domain implementation \ No newline at end of file +Modifications to {{public domain}} implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_140.RULE b/src/licensedcode/data/rules/public-domain_140.RULE index 52d4dcb0c2..646c3563c8 100644 --- a/src/licensedcode/data/rules/public-domain_140.RULE +++ b/src/licensedcode/data/rules/public-domain_140.RULE @@ -3,10 +3,10 @@ license_expression: public-domain is_license_text: yes --- -Public Domain +{{Public Domain}} The person who associated a work with this deed has dedicated the work to the -public domain by waiving all of his or her rights to the work worldwide under +{{public domain}} by waiving all of his or her rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. diff --git a/src/licensedcode/data/rules/public-domain_143.RULE b/src/licensedcode/data/rules/public-domain_143.RULE index aa605ca4d8..b0098492fb 100644 --- a/src/licensedcode/data/rules/public-domain_143.RULE +++ b/src/licensedcode/data/rules/public-domain_143.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -no copyright is claimed. This code is in the public domain; do with \ No newline at end of file +no copyright is claimed. This code is {{in the public domain}}; do with \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_145.RULE b/src/licensedcode/data/rules/public-domain_145.RULE index 7d0ee13a1d..b08dbe2697 100644 --- a/src/licensedcode/data/rules/public-domain_145.RULE +++ b/src/licensedcode/data/rules/public-domain_145.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This file is part of , and is free software in the public domain. \ No newline at end of file +This file is part of , and is free software {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_146.RULE b/src/licensedcode/data/rules/public-domain_146.RULE index fdf9ef93a2..32bbc9aec8 100644 --- a/src/licensedcode/data/rules/public-domain_146.RULE +++ b/src/licensedcode/data/rules/public-domain_146.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This file is free software in the public domain. \ No newline at end of file +This file is free software {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_147.RULE b/src/licensedcode/data/rules/public-domain_147.RULE index f378cc5447..cec32d7cbb 100644 --- a/src/licensedcode/data/rules/public-domain_147.RULE +++ b/src/licensedcode/data/rules/public-domain_147.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -is free software in the public domain. \ No newline at end of file +is free software {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_148.RULE b/src/licensedcode/data/rules/public-domain_148.RULE index 11210a0bf8..5ff15ce27f 100644 --- a/src/licensedcode/data/rules/public-domain_148.RULE +++ b/src/licensedcode/data/rules/public-domain_148.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 100 --- -project, whose public domain code this +project, whose {{public domain}} code this functionality has been based on \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_149.RULE b/src/licensedcode/data/rules/public-domain_149.RULE index 458d41c069..b2a46ee53b 100644 --- a/src/licensedcode/data/rules/public-domain_149.RULE +++ b/src/licensedcode/data/rules/public-domain_149.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -Those routines are public domain (originally posted to +Those routines are {{public domain}} (originally posted to // comp.sys.arm a long time ago), so you can use them freely for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_15.RULE b/src/licensedcode/data/rules/public-domain_15.RULE index bfc40281da..b4104c8816 100644 --- a/src/licensedcode/data/rules/public-domain_15.RULE +++ b/src/licensedcode/data/rules/public-domain_15.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 90 --- -RELEASED INTO THE PUBLIC DOMAIN \ No newline at end of file +RELEASED INTO THE {{PUBLIC DOMAIN}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_150.RULE b/src/licensedcode/data/rules/public-domain_150.RULE index ddb6ff8be7..f2f1b2d575 100644 --- a/src/licensedcode/data/rules/public-domain_150.RULE +++ b/src/licensedcode/data/rules/public-domain_150.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Those routines are public domain, so you can use them freely for any purpose. \ No newline at end of file +Those routines are {{public domain}}, so you can use them freely for any purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_151.RULE b/src/licensedcode/data/rules/public-domain_151.RULE index 5fcd6381ab..32c563de76 100644 --- a/src/licensedcode/data/rules/public-domain_151.RULE +++ b/src/licensedcode/data/rules/public-domain_151.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This configuration is public domain, i.e. not copyrighted. \ No newline at end of file +This configuration is {{public domain}}, i.e. not copyrighted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_152.RULE b/src/licensedcode/data/rules/public-domain_152.RULE index 8c8e4edd75..2e96d67433 100644 --- a/src/licensedcode/data/rules/public-domain_152.RULE +++ b/src/licensedcode/data/rules/public-domain_152.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -which is dedicated to the public domain \ No newline at end of file +which is dedicated to the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_153.RULE b/src/licensedcode/data/rules/public-domain_153.RULE index 48aa96b235..1d42dacdb7 100644 --- a/src/licensedcode/data/rules/public-domain_153.RULE +++ b/src/licensedcode/data/rules/public-domain_153.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -dedicated to the public domain \ No newline at end of file +dedicated to the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_154.RULE b/src/licensedcode/data/rules/public-domain_154.RULE index d8259aefd5..7b4e3d97cf 100644 --- a/src/licensedcode/data/rules/public-domain_154.RULE +++ b/src/licensedcode/data/rules/public-domain_154.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: See https://github.com/NationalSecurityAgency/ghidra/ --- -IP: Public Domain \ No newline at end of file +IP: {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_157.RULE b/src/licensedcode/data/rules/public-domain_157.RULE index 55d334d018..615b86e362 100644 --- a/src/licensedcode/data/rules/public-domain_157.RULE +++ b/src/licensedcode/data/rules/public-domain_157.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LicensedFileList.txt --- -This module contains one or more files are "public domain". A list of these files is included in the "LicensedFileList.txt" file. \ No newline at end of file +This module contains one or more files are "{{public domain}}". A list of these files is included in the "LicensedFileList.txt" file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_158.RULE b/src/licensedcode/data/rules/public-domain_158.RULE index 4374cc92f4..2a3d1ec6c6 100644 --- a/src/licensedcode/data/rules/public-domain_158.RULE +++ b/src/licensedcode/data/rules/public-domain_158.RULE @@ -5,5 +5,5 @@ relevance: 100 --- can be used, modified and distributed freely without any -restrictions (think "public domain", except that by German law the author -can't place things into the public domain). \ No newline at end of file +restrictions (think "{{public domain}}", except that by German law the author +can't place things into the {{public domain}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_159.RULE b/src/licensedcode/data/rules/public-domain_159.RULE index 4080d3d4d4..4ceb5487e3 100644 --- a/src/licensedcode/data/rules/public-domain_159.RULE +++ b/src/licensedcode/data/rules/public-domain_159.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -* This file has no copyright assigned and is placed in the Public Domain. \ No newline at end of file +* This file has no copyright assigned and is placed {{in the Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_16.RULE b/src/licensedcode/data/rules/public-domain_16.RULE index 452c75a8a9..48ce45da72 100644 --- a/src/licensedcode/data/rules/public-domain_16.RULE +++ b/src/licensedcode/data/rules/public-domain_16.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -was placed in public domain by \ No newline at end of file +was placed {{in public domain}} by \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_160.RULE b/src/licensedcode/data/rules/public-domain_160.RULE index 05fa0f46a3..624b3892a9 100644 --- a/src/licensedcode/data/rules/public-domain_160.RULE +++ b/src/licensedcode/data/rules/public-domain_160.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -released into the public domain. This may be used for any purposes whatsoever without acknowledgment. \ No newline at end of file +released into the {{public domain}}. This may be used for any purposes whatsoever without acknowledgment. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_161.RULE b/src/licensedcode/data/rules/public-domain_161.RULE index 76ac99332a..ecf4886bcb 100644 --- a/src/licensedcode/data/rules/public-domain_161.RULE +++ b/src/licensedcode/data/rules/public-domain_161.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -This previously copyrighted work has been placed into the public domain by the author and may be freely +This previously copyrighted work has been placed into the {{public domain}} by the author and may be freely used for any purpose, private or commercial. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_162.RULE b/src/licensedcode/data/rules/public-domain_162.RULE index f0ba5af841..d1d0139276 100644 --- a/src/licensedcode/data/rules/public-domain_162.RULE +++ b/src/licensedcode/data/rules/public-domain_162.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -and is in the public domain \ No newline at end of file +and is {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_163.RULE b/src/licensedcode/data/rules/public-domain_163.RULE index f38f2552df..8e942fc38f 100644 --- a/src/licensedcode/data/rules/public-domain_163.RULE +++ b/src/licensedcode/data/rules/public-domain_163.RULE @@ -5,4 +5,4 @@ relevance: 100 --- * This code was entirely written by - * and is in the public domain. \ No newline at end of file + * and is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_164.RULE b/src/licensedcode/data/rules/public-domain_164.RULE index ebe7c4ebc9..2bab9a1e96 100644 --- a/src/licensedcode/data/rules/public-domain_164.RULE +++ b/src/licensedcode/data/rules/public-domain_164.RULE @@ -5,5 +5,5 @@ relevance: 100 --- "Except for a few clearly-marked exceptions, all the material on this - site is in the public domain and may be used in any manner without + site is {{in the public domain}} and may be used in any manner without permission, restriction, attribution, or compensation." \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_169.RULE b/src/licensedcode/data/rules/public-domain_169.RULE index 2e61b0d20b..9f1c923bfc 100644 --- a/src/licensedcode/data/rules/public-domain_169.RULE +++ b/src/licensedcode/data/rules/public-domain_169.RULE @@ -5,4 +5,4 @@ relevance: 100 --- hereby placed -in the public domain, and therefore does not require a copyright notice. \ No newline at end of file +{{in the public domain}}, and therefore does not require a copyright notice. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_17.RULE b/src/licensedcode/data/rules/public-domain_17.RULE index cda5c9eadf..4cfd305e9c 100644 --- a/src/licensedcode/data/rules/public-domain_17.RULE +++ b/src/licensedcode/data/rules/public-domain_17.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Text placed in the public domain by \ No newline at end of file +Text placed {{in the public domain}} by \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_173.RULE b/src/licensedcode/data/rules/public-domain_173.RULE index ed75e093dc..2c51d74800 100644 --- a/src/licensedcode/data/rules/public-domain_173.RULE +++ b/src/licensedcode/data/rules/public-domain_173.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -available as a public domain \ No newline at end of file +available as a {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_174.RULE b/src/licensedcode/data/rules/public-domain_174.RULE index 79d808e09e..3043139c7b 100644 --- a/src/licensedcode/data/rules/public-domain_174.RULE +++ b/src/licensedcode/data/rules/public-domain_174.RULE @@ -5,4 +5,4 @@ relevance: 100 --- This class is based on code by -and available as a public domain at \ No newline at end of file +and available as a {{public domain}} at \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_175.RULE b/src/licensedcode/data/rules/public-domain_175.RULE index 5ef09e5805..c5006c076b 100644 --- a/src/licensedcode/data/rules/public-domain_175.RULE +++ b/src/licensedcode/data/rules/public-domain_175.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Changes contributed by are in the public domain. \ No newline at end of file +Changes contributed by are {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_177.RULE b/src/licensedcode/data/rules/public-domain_177.RULE index 35e0b81822..cdecbfb0b2 100644 --- a/src/licensedcode/data/rules/public-domain_177.RULE +++ b/src/licensedcode/data/rules/public-domain_177.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -; This code is in the public domain. \ No newline at end of file +; This code is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_178.RULE b/src/licensedcode/data/rules/public-domain_178.RULE index ded8158aa7..7561282e4f 100644 --- a/src/licensedcode/data/rules/public-domain_178.RULE +++ b/src/licensedcode/data/rules/public-domain_178.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -# I place the rest in the public domain. \ No newline at end of file +# I place the rest {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_179.RULE b/src/licensedcode/data/rules/public-domain_179.RULE index d10441c386..a707192b4a 100644 --- a/src/licensedcode/data/rules/public-domain_179.RULE +++ b/src/licensedcode/data/rules/public-domain_179.RULE @@ -5,9 +5,9 @@ relevance: 100 --- I, , hereby affirm that I have placed the software - package in the public domain. + package {{in the public domain}}. I affirm that I am the sole author and sole copyright holder for the software package, that I have the right to place this software - package in the public domain, and that I will do nothing to + package {{in the public domain}}, and that I will do nothing to undermine this status in the future. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_17_1.RULE b/src/licensedcode/data/rules/public-domain_17_1.RULE index 038683e11f..9db6a2e5cd 100644 --- a/src/licensedcode/data/rules/public-domain_17_1.RULE +++ b/src/licensedcode/data/rules/public-domain_17_1.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -Text placed in the public domain by +Text placed {{in the public domain}} by This work may be freely copied and distributed worldwide. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_18.RULE b/src/licensedcode/data/rules/public-domain_18.RULE index 17d60f234e..34a0cdefb5 100644 --- a/src/licensedcode/data/rules/public-domain_18.RULE +++ b/src/licensedcode/data/rules/public-domain_18.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -The author disclaims all copyright. The library is in the public domain. \ No newline at end of file +The author disclaims all copyright. The library is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_180.RULE b/src/licensedcode/data/rules/public-domain_180.RULE index f847e466fd..7df9f358e2 100644 --- a/src/licensedcode/data/rules/public-domain_180.RULE +++ b/src/licensedcode/data/rules/public-domain_180.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 80 --- -Put in public domain \ No newline at end of file +Put {{in public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_181.RULE b/src/licensedcode/data/rules/public-domain_181.RULE index 08a8b0840b..4944541b02 100644 --- a/src/licensedcode/data/rules/public-domain_181.RULE +++ b/src/licensedcode/data/rules/public-domain_181.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Placed in public domain \ No newline at end of file +Placed {{in public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_182.RULE b/src/licensedcode/data/rules/public-domain_182.RULE index 8f6171eb4c..c9c0bae36f 100644 --- a/src/licensedcode/data/rules/public-domain_182.RULE +++ b/src/licensedcode/data/rules/public-domain_182.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://en.wikipedia.org/wiki/public_domain --- -Some contributors additionally release their contributions to the public domain. +Some contributors additionally release their contributions to the {{public domain}}. http://en.wikipedia.org/wiki/public_domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_183.RULE b/src/licensedcode/data/rules/public-domain_183.RULE index 3dc109e0b4..b2303df4aa 100644 --- a/src/licensedcode/data/rules/public-domain_183.RULE +++ b/src/licensedcode/data/rules/public-domain_183.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Some contributors additionally release their contributions to the public domain. \ No newline at end of file +Some contributors additionally release their contributions to the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_186.RULE b/src/licensedcode/data/rules/public-domain_186.RULE index 141400a096..b2604d0ae8 100644 --- a/src/licensedcode/data/rules/public-domain_186.RULE +++ b/src/licensedcode/data/rules/public-domain_186.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This module has been placed in the public domain. \ No newline at end of file +This module has been placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_187.RULE b/src/licensedcode/data/rules/public-domain_187.RULE index 4d2b2c6fbd..7f317dbe62 100644 --- a/src/licensedcode/data/rules/public-domain_187.RULE +++ b/src/licensedcode/data/rules/public-domain_187.RULE @@ -4,7 +4,7 @@ is_license_text: yes relevance: 100 --- -and placed in the public domain. +and placed {{in the public domain}}. / This file has been modified from its original version. // It has been formatted to fit your screen \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_188.RULE b/src/licensedcode/data/rules/public-domain_188.RULE index 2013083adf..f431f64769 100644 --- a/src/licensedcode/data/rules/public-domain_188.RULE +++ b/src/licensedcode/data/rules/public-domain_188.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This example code is in the public domain. \ No newline at end of file +This example code is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_189.RULE b/src/licensedcode/data/rules/public-domain_189.RULE index ca5bed7756..a80b935072 100644 --- a/src/licensedcode/data/rules/public-domain_189.RULE +++ b/src/licensedcode/data/rules/public-domain_189.RULE @@ -5,4 +5,4 @@ relevance: 100 --- files generated by this program are not covered by this license, and are -in the public domain \ No newline at end of file +{{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_19.RULE b/src/licensedcode/data/rules/public-domain_19.RULE index 045a206ff2..fc4b78afdf 100644 --- a/src/licensedcode/data/rules/public-domain_19.RULE +++ b/src/licensedcode/data/rules/public-domain_19.RULE @@ -8,7 +8,7 @@ ignorable_emails: - simon@wretched.demon.co.uk --- -This opening book is in the public domain. It was put together and +This opening book is {{in the public domain}}. It was put together and cleaned up by Stuart Cracraft and Simon Waters . Stuart wrote the following in email, when asked about copyright. @@ -24,4 +24,4 @@ email, when asked about copyright. --Stuart Note that all the code is in gnuchess, so this package itself is -purely public domain. \ No newline at end of file +purely {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_190.RULE b/src/licensedcode/data/rules/public-domain_190.RULE index 5392d3e07f..086caddd25 100644 --- a/src/licensedcode/data/rules/public-domain_190.RULE +++ b/src/licensedcode/data/rules/public-domain_190.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -are in the public domain +are {{in the public domain}} according to the readme in the project. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_191.RULE b/src/licensedcode/data/rules/public-domain_191.RULE index ad8f8713ba..f492d114d1 100644 --- a/src/licensedcode/data/rules/public-domain_191.RULE +++ b/src/licensedcode/data/rules/public-domain_191.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -This code is in the public domain. You can run it, copy it, change +This code is {{in the public domain}}. You can run it, copy it, change it, sell it, eat it, or claim you wrote it; I don't care. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_192.RULE b/src/licensedcode/data/rules/public-domain_192.RULE index a466276ca6..b72059f753 100644 --- a/src/licensedcode/data/rules/public-domain_192.RULE +++ b/src/licensedcode/data/rules/public-domain_192.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -C THIS SOFTWARE IS IN THE PUBLIC DOMAIN +C THIS SOFTWARE IS {{IN THE PUBLIC DOMAIN}} C NO RESTRICTIONS ON ITS USE ARE IMPLIED \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_193.RULE b/src/licensedcode/data/rules/public-domain_193.RULE index 8a2a04ea0c..d24d7d857a 100644 --- a/src/licensedcode/data/rules/public-domain_193.RULE +++ b/src/licensedcode/data/rules/public-domain_193.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -THIS SOFTWARE IS IN THE PUBLIC DOMAIN +THIS SOFTWARE IS {{IN THE PUBLIC DOMAIN}} NO RESTRICTIONS ON ITS USE ARE IMPLIED \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_194.RULE b/src/licensedcode/data/rules/public-domain_194.RULE index a6ffffbd53..c8791fc20f 100644 --- a/src/licensedcode/data/rules/public-domain_194.RULE +++ b/src/licensedcode/data/rules/public-domain_194.RULE @@ -6,4 +6,4 @@ relevance: 100 SQLite Copyright -The original author of SQLite has dedicated the code to the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original SQLite code, either in source code form or as a compiled binary, for any purpose, commerical or non-commerical, and by any means. \ No newline at end of file +The original author of SQLite has dedicated the code to the {{public domain}}. Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original SQLite code, either in source code form or as a compiled binary, for any purpose, commerical or non-commerical, and by any means. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_195.RULE b/src/licensedcode/data/rules/public-domain_195.RULE index 83ec451c1e..dd109e406c 100644 --- a/src/licensedcode/data/rules/public-domain_195.RULE +++ b/src/licensedcode/data/rules/public-domain_195.RULE @@ -6,13 +6,13 @@ relevance: 100 SQLite Copyright -The original author of SQLite has dedicated the code to the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original SQLite code, either in source code form or as a compiled binary, for any purpose, commerical or non-commerical, and by any means. +The original author of SQLite has dedicated the code to the {{public domain}}. Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original SQLite code, either in source code form or as a compiled binary, for any purpose, commerical or non-commerical, and by any means. Contributed Code -In order to keep SQLite complete free and unencumbered by copyright, other contributors to the SQLite code base are asked to likewise dedicate their contributions to the public domain. If you want to send a patch or enhancement for possible inclusion in the SQLite source tree, please accompany the patch with the following statement: +In order to keep SQLite complete free and unencumbered by copyright, other contributors to the SQLite code base are asked to likewise dedicate their contributions to the {{public domain}}. If you want to send a patch or enhancement for possible inclusion in the SQLite source tree, please accompany the patch with the following statement: -The author or authors of this code dedicate any and all copyright interest in this code to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights this code under copyright law. +The author or authors of this code dedicate any and all copyright interest in this code to the {{public domain}}. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights this code under copyright law. Regrettably, as of 2003 October 20, we will no longer be able to accept patches or changes to SQLite that are not accompanied by a statement such as the above. In addition, if you make changes or enhancements as an employee, then a simple statement such as the above is insufficient. You must also send by surface mail a copyright release signed by a company officer. A signed original of the copyright release should be mailed to: Hwaci, 6200 Maple Cove Lane, Charlotte, NC 28269, USA. diff --git a/src/licensedcode/data/rules/public-domain_196.RULE b/src/licensedcode/data/rules/public-domain_196.RULE index 14fd5af1db..fcd945205b 100644 --- a/src/licensedcode/data/rules/public-domain_196.RULE +++ b/src/licensedcode/data/rules/public-domain_196.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -released to public domain \ No newline at end of file +released to {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_197.RULE b/src/licensedcode/data/rules/public-domain_197.RULE index 0535c681ce..13ee60dfe4 100644 --- a/src/licensedcode/data/rules/public-domain_197.RULE +++ b/src/licensedcode/data/rules/public-domain_197.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -// which has been released to public domain by The MathWorks and the +// which has been released to {{public domain}} by The MathWorks and the // National Institute of Standards and Technology (NIST). \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_199.RULE b/src/licensedcode/data/rules/public-domain_199.RULE index 81e4cd1ac3..f67fb8e086 100644 --- a/src/licensedcode/data/rules/public-domain_199.RULE +++ b/src/licensedcode/data/rules/public-domain_199.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://en.wikipedia.org/wiki/Public_domain --- -Public Domain (PD) +{{Public Domain}} (PD) link: http://en.wikipedia.org/wiki/Public_domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_20.RULE b/src/licensedcode/data/rules/public-domain_20.RULE index db9f0866e2..caa2008721 100644 --- a/src/licensedcode/data/rules/public-domain_20.RULE +++ b/src/licensedcode/data/rules/public-domain_20.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License: PD - was placed in public domain \ No newline at end of file + was placed {{in public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_200.RULE b/src/licensedcode/data/rules/public-domain_200.RULE index d9382eff6d..df09e35ac4 100644 --- a/src/licensedcode/data/rules/public-domain_200.RULE +++ b/src/licensedcode/data/rules/public-domain_200.RULE @@ -6,5 +6,5 @@ ignorable_urls: - http://en.wikipedia.org/wiki/Public_domain --- -license: Public Domain +license: {{Public Domain}} license link: http://en.wikipedia.org/wiki/Public_domain \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_202.RULE b/src/licensedcode/data/rules/public-domain_202.RULE index e59505c89d..1a9be6c61e 100644 --- a/src/licensedcode/data/rules/public-domain_202.RULE +++ b/src/licensedcode/data/rules/public-domain_202.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -All the codes are under public domain. \ No newline at end of file +All the codes are under {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_203.RULE b/src/licensedcode/data/rules/public-domain_203.RULE index 9b8c7b463a..cf43a24031 100644 --- a/src/licensedcode/data/rules/public-domain_203.RULE +++ b/src/licensedcode/data/rules/public-domain_203.RULE @@ -5,5 +5,5 @@ relevance: 100 --- all its code is hereby released into the -public domain. The `_version.py` that it creates is also in the public -domain. \ No newline at end of file +{{public domain}}. The `_version.py` that it creates is also {{in the public +domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_204.RULE b/src/licensedcode/data/rules/public-domain_204.RULE index da9c5ce420..51c5d66d04 100644 --- a/src/licensedcode/data/rules/public-domain_204.RULE +++ b/src/licensedcode/data/rules/public-domain_204.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -All code examples in this work are placed into the public domain, +All code examples in this work are placed into the {{public domain}}, and may be used, modified and redistributed without restriction. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_205.RULE b/src/licensedcode/data/rules/public-domain_205.RULE index d9fec8e67c..64d74e4d6e 100644 --- a/src/licensedcode/data/rules/public-domain_205.RULE +++ b/src/licensedcode/data/rules/public-domain_205.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -released into public domain \ No newline at end of file +released into {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_207.RULE b/src/licensedcode/data/rules/public-domain_207.RULE index 7b89a89d83..efb41310ff 100644 --- a/src/licensedcode/data/rules/public-domain_207.RULE +++ b/src/licensedcode/data/rules/public-domain_207.RULE @@ -4,5 +4,5 @@ is_license_reference: yes relevance: 95 --- -dedication of qmail to the public -domain. \ No newline at end of file +dedication of qmail to the {{public +domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_209.RULE b/src/licensedcode/data/rules/public-domain_209.RULE index f509f3d5b1..850b8e5a32 100644 --- a/src/licensedcode/data/rules/public-domain_209.RULE +++ b/src/licensedcode/data/rules/public-domain_209.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 80 --- -I hereby place the qmail package (in particular, qmail-1.03.tar.gz, with MD5 checksum 622f65f982e380dbe86e6574f3abcb7c) into the public domain. You are free to modify the package, distribute modified versions, etc. \ No newline at end of file +I hereby place the qmail package (in particular, qmail-1.03.tar.gz, with MD5 checksum 622f65f982e380dbe86e6574f3abcb7c) into the {{public domain}}. You are free to modify the package, distribute modified versions, etc. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_21.RULE b/src/licensedcode/data/rules/public-domain_21.RULE index f92e7dd25c..b00fa879c6 100644 --- a/src/licensedcode/data/rules/public-domain_21.RULE +++ b/src/licensedcode/data/rules/public-domain_21.RULE @@ -5,4 +5,4 @@ relevance: 99 minimum_coverage: 90 --- -released to the Public Domain. \ No newline at end of file +released to the {{Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_210.RULE b/src/licensedcode/data/rules/public-domain_210.RULE index a912f93ca8..eed51182a2 100644 --- a/src/licensedcode/data/rules/public-domain_210.RULE +++ b/src/licensedcode/data/rules/public-domain_210.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 80 --- -I hereby place the qmail package into the public domain. \ No newline at end of file +I hereby place the qmail package into the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_211.RULE b/src/licensedcode/data/rules/public-domain_211.RULE index e1ee3cfac9..efe238243b 100644 --- a/src/licensedcode/data/rules/public-domain_211.RULE +++ b/src/licensedcode/data/rules/public-domain_211.RULE @@ -5,6 +5,6 @@ relevance: 100 minimum_coverage: 80 --- -I hereby place the qmail package (in particular, qmail-1.03.tar.gz, with MD5 checksum 622f65f982e380dbe86e6574f3abcb7c) into the public domain. You are free to modify the package, distribute modified versions, etc. +I hereby place the qmail package (in particular, qmail-1.03.tar.gz, with MD5 checksum 622f65f982e380dbe86e6574f3abcb7c) into the {{public domain}}. You are free to modify the package, distribute modified versions, etc. This does not mean that modifications are encouraged! Please take time to ensure that your distribution of qmail supports exactly the same interface as everyone else's. In particular, if you move files, please set up symbolic links from the original locations, so that you don't frivolously break scripts that work everywhere else. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_212.RULE b/src/licensedcode/data/rules/public-domain_212.RULE index 99578b0c20..9bb75c0530 100644 --- a/src/licensedcode/data/rules/public-domain_212.RULE +++ b/src/licensedcode/data/rules/public-domain_212.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -and are public domain \ No newline at end of file +and are {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_213.RULE b/src/licensedcode/data/rules/public-domain_213.RULE index 05d1155473..42eac214f6 100644 --- a/src/licensedcode/data/rules/public-domain_213.RULE +++ b/src/licensedcode/data/rules/public-domain_213.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -public domain MD4 implementation \ No newline at end of file +{{public domain}} MD4 implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_214.RULE b/src/licensedcode/data/rules/public-domain_214.RULE index 36ef625e31..089bfb5bf5 100644 --- a/src/licensedcode/data/rules/public-domain_214.RULE +++ b/src/licensedcode/data/rules/public-domain_214.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -public domain MD5 implementation \ No newline at end of file +{{public domain}} MD5 implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_215.RULE b/src/licensedcode/data/rules/public-domain_215.RULE index 5f29bee812..afe79218a9 100644 --- a/src/licensedcode/data/rules/public-domain_215.RULE +++ b/src/licensedcode/data/rules/public-domain_215.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -public domain sha1 implementation \ No newline at end of file +{{public domain}} sha1 implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_216.RULE b/src/licensedcode/data/rules/public-domain_216.RULE index a58e1ad6d7..f7876f4c73 100644 --- a/src/licensedcode/data/rules/public-domain_216.RULE +++ b/src/licensedcode/data/rules/public-domain_216.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -public domain sha256 implementation \ No newline at end of file +{{public domain}} sha256 implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_219.RULE b/src/licensedcode/data/rules/public-domain_219.RULE index c3d000d76e..6c922ab77d 100644 --- a/src/licensedcode/data/rules/public-domain_219.RULE +++ b/src/licensedcode/data/rules/public-domain_219.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Not copyrighted -- provided to the public domain \ No newline at end of file +Not copyrighted -- provided to the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_22.RULE b/src/licensedcode/data/rules/public-domain_22.RULE index c255477136..fcd6f90cb6 100644 --- a/src/licensedcode/data/rules/public-domain_22.RULE +++ b/src/licensedcode/data/rules/public-domain_22.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 90 --- -This file is in the public domain and may be used for any purpose \ No newline at end of file +This file is {{in the public domain}} and may be used for any purpose \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_220.RULE b/src/licensedcode/data/rules/public-domain_220.RULE index 4f7dae2961..d3a910b6fa 100644 --- a/src/licensedcode/data/rules/public-domain_220.RULE +++ b/src/licensedcode/data/rules/public-domain_220.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This library was released in public domain \ No newline at end of file +This library was released {{in public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_221.RULE b/src/licensedcode/data/rules/public-domain_221.RULE index 1f1a7c61da..b8bcdf6c44 100644 --- a/src/licensedcode/data/rules/public-domain_221.RULE +++ b/src/licensedcode/data/rules/public-domain_221.RULE @@ -6,5 +6,5 @@ ignorable_urls: - https://www.sqlite.org/copyright.html --- -This product bundles Sqlite, which is in the Public Domain. For details +This product bundles Sqlite, which is {{in the Public Domain}}. For details see: https://www.sqlite.org/copyright.html \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_222.RULE b/src/licensedcode/data/rules/public-domain_222.RULE index 8f4e3ec4cc..d2b7ccc02e 100644 --- a/src/licensedcode/data/rules/public-domain_222.RULE +++ b/src/licensedcode/data/rules/public-domain_222.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -which is in the Public Domain \ No newline at end of file +which is {{in the Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_223.RULE b/src/licensedcode/data/rules/public-domain_223.RULE index 99f1fb28fa..b2c5b93554 100644 --- a/src/licensedcode/data/rules/public-domain_223.RULE +++ b/src/licensedcode/data/rules/public-domain_223.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This product bundles Sqlite, which is in the Public Domain. \ No newline at end of file +This product bundles Sqlite, which is {{in the Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_225.RULE b/src/licensedcode/data/rules/public-domain_225.RULE index c82f46d169..c89675243a 100644 --- a/src/licensedcode/data/rules/public-domain_225.RULE +++ b/src/licensedcode/data/rules/public-domain_225.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It is public domain/free. \ No newline at end of file +It is {{public domain}}/free. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_226.RULE b/src/licensedcode/data/rules/public-domain_226.RULE index f1a4f8c711..599c546278 100644 --- a/src/licensedcode/data/rules/public-domain_226.RULE +++ b/src/licensedcode/data/rules/public-domain_226.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -committed to the public domain \ No newline at end of file +committed to the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_227.RULE b/src/licensedcode/data/rules/public-domain_227.RULE index 22fe383abb..e92d89b8a9 100644 --- a/src/licensedcode/data/rules/public-domain_227.RULE +++ b/src/licensedcode/data/rules/public-domain_227.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This library is in the public domain. \ No newline at end of file +This library is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_229.RULE b/src/licensedcode/data/rules/public-domain_229.RULE index 6cc84489f4..929f0fed57 100644 --- a/src/licensedcode/data/rules/public-domain_229.RULE +++ b/src/licensedcode/data/rules/public-domain_229.RULE @@ -5,5 +5,5 @@ relevance: 100 --- This software -is hereby explicitly placed in the public domain. It may be used for +is hereby explicitly placed {{in the public domain}}. It may be used for any purpose on any machine by anyone. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_23.RULE b/src/licensedcode/data/rules/public-domain_23.RULE index 07002b2b86..7828067a27 100644 --- a/src/licensedcode/data/rules/public-domain_23.RULE +++ b/src/licensedcode/data/rules/public-domain_23.RULE @@ -3,4 +3,4 @@ license_expression: public-domain is_license_notice: yes --- -ICU uses the public domain data and code derived from Time Zone Database for its time zone support. \ No newline at end of file +ICU uses the {{public domain}} data and code derived from Time Zone Database for its time zone support. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_230.RULE b/src/licensedcode/data/rules/public-domain_230.RULE index 672786d5b8..96898f8474 100644 --- a/src/licensedcode/data/rules/public-domain_230.RULE +++ b/src/licensedcode/data/rules/public-domain_230.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This software is hereby explicitly placed in the public domain. \ No newline at end of file +This software is hereby explicitly placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_231.RULE b/src/licensedcode/data/rules/public-domain_231.RULE index 8e2d821ec8..13ed95c826 100644 --- a/src/licensedcode/data/rules/public-domain_231.RULE +++ b/src/licensedcode/data/rules/public-domain_231.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This is a version of the public domain getopt implementation \ No newline at end of file +This is a version of the {{public domain}} getopt implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_232.RULE b/src/licensedcode/data/rules/public-domain_232.RULE index 4eac986dbd..e2f2d8e2ab 100644 --- a/src/licensedcode/data/rules/public-domain_232.RULE +++ b/src/licensedcode/data/rules/public-domain_232.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is explicitly placed into the public domain. \ No newline at end of file +This code is explicitly placed into the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_233.RULE b/src/licensedcode/data/rules/public-domain_233.RULE index 4e48d71d6f..d55c1ca31b 100644 --- a/src/licensedcode/data/rules/public-domain_233.RULE +++ b/src/licensedcode/data/rules/public-domain_233.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is explicitly placed in the public domain. \ No newline at end of file +This code is explicitly placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_234.RULE b/src/licensedcode/data/rules/public-domain_234.RULE index 9879f2e0ee..ecfa0ea55e 100644 --- a/src/licensedcode/data/rules/public-domain_234.RULE +++ b/src/licensedcode/data/rules/public-domain_234.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is placed into the public domain. \ No newline at end of file +This code is placed into the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_235.RULE b/src/licensedcode/data/rules/public-domain_235.RULE index f43afa701d..4165ac803d 100644 --- a/src/licensedcode/data/rules/public-domain_235.RULE +++ b/src/licensedcode/data/rules/public-domain_235.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is placed in the public domain. \ No newline at end of file +This code is placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_236.RULE b/src/licensedcode/data/rules/public-domain_236.RULE index 997be60c14..5b57be9aa0 100644 --- a/src/licensedcode/data/rules/public-domain_236.RULE +++ b/src/licensedcode/data/rules/public-domain_236.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is placed in the public domain by the author. \ No newline at end of file +This code is placed {{in the public domain}} by the author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_237.RULE b/src/licensedcode/data/rules/public-domain_237.RULE index c9b7b22fb0..424e6ab519 100644 --- a/src/licensedcode/data/rules/public-domain_237.RULE +++ b/src/licensedcode/data/rules/public-domain_237.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -License: This code is placed in the Public Domain. \ No newline at end of file +License: This code is placed {{in the Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_238.RULE b/src/licensedcode/data/rules/public-domain_238.RULE index dbc429c214..71955cdaa9 100644 --- a/src/licensedcode/data/rules/public-domain_238.RULE +++ b/src/licensedcode/data/rules/public-domain_238.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is placed in the public domain, and support is not (in general) available. \ No newline at end of file +This code is placed {{in the public domain}}, and support is not (in general) available. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_239.RULE b/src/licensedcode/data/rules/public-domain_239.RULE index cc43d7ec97..1865c179d5 100644 --- a/src/licensedcode/data/rules/public-domain_239.RULE +++ b/src/licensedcode/data/rules/public-domain_239.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is placed into the public domain by its author \ No newline at end of file +This code is placed into the {{public domain}} by its author \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_24.RULE b/src/licensedcode/data/rules/public-domain_24.RULE index 3ce1cba8cb..464eae3ef8 100644 --- a/src/licensedcode/data/rules/public-domain_24.RULE +++ b/src/licensedcode/data/rules/public-domain_24.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -uses the public domain data and code \ No newline at end of file +uses the {{public domain}} data and code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_240.RULE b/src/licensedcode/data/rules/public-domain_240.RULE index d2c14c7731..a76c993b79 100644 --- a/src/licensedcode/data/rules/public-domain_240.RULE +++ b/src/licensedcode/data/rules/public-domain_240.RULE @@ -4,6 +4,6 @@ is_license_text: yes relevance: 100 --- -This code is placed into the public domain by its author. *; +This code is placed into the {{public domain}} by its author. *; All copyright rights are hereby relinquished on the code and data in *; this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_241.RULE b/src/licensedcode/data/rules/public-domain_241.RULE index 1d1e377dd4..bc147de940 100644 --- a/src/licensedcode/data/rules/public-domain_241.RULE +++ b/src/licensedcode/data/rules/public-domain_241.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is placed in the public domain, feel free to use it. \ No newline at end of file +This code is placed {{in the public domain}}, feel free to use it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_242.RULE b/src/licensedcode/data/rules/public-domain_242.RULE index 600a3533e8..da01a01cf4 100644 --- a/src/licensedcode/data/rules/public-domain_242.RULE +++ b/src/licensedcode/data/rules/public-domain_242.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is placed into the public domain for all to do with as they * wish \ No newline at end of file +This code is placed into the {{public domain}} for all to do with as they * wish \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_243.RULE b/src/licensedcode/data/rules/public-domain_243.RULE index 7b90d9f831..9387d7b823 100644 --- a/src/licensedcode/data/rules/public-domain_243.RULE +++ b/src/licensedcode/data/rules/public-domain_243.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is placed into the public domain, and all rights and copyrights to the code are waived. \ No newline at end of file +This code is placed into the {{public domain}}, and all rights and copyrights to the code are waived. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_244.RULE b/src/licensedcode/data/rules/public-domain_244.RULE index 806fdac720..01305f851f 100644 --- a/src/licensedcode/data/rules/public-domain_244.RULE +++ b/src/licensedcode/data/rules/public-domain_244.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is placed in the public domain for use by anyone for anything. \ No newline at end of file +This code is placed {{in the public domain}} for use by anyone for anything. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_245.RULE b/src/licensedcode/data/rules/public-domain_245.RULE index 66e6c78a5f..99e612d154 100644 --- a/src/licensedcode/data/rules/public-domain_245.RULE +++ b/src/licensedcode/data/rules/public-domain_245.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is placed in the public domain by its author \ No newline at end of file +This code is placed {{in the public domain}} by its author \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_246.RULE b/src/licensedcode/data/rules/public-domain_246.RULE index c5dc999e70..5a220e06ab 100644 --- a/src/licensedcode/data/rules/public-domain_246.RULE +++ b/src/licensedcode/data/rules/public-domain_246.RULE @@ -4,6 +4,6 @@ is_license_text: yes relevance: 100 --- -Statement of Public Domain -This code is placed into the public domain, and all rights and +Statement of {{Public Domain}} +This code is placed into the {{public domain}}, and all rights and copyrights to the code are waived. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_247.RULE b/src/licensedcode/data/rules/public-domain_247.RULE index cba1e5d20f..4932beae01 100644 --- a/src/licensedcode/data/rules/public-domain_247.RULE +++ b/src/licensedcode/data/rules/public-domain_247.RULE @@ -4,7 +4,7 @@ is_license_text: yes relevance: 100 --- -This code is placed into the public domain. +This code is placed into the {{public domain}}. You are free to use it in any way. However, if you do find it useful, a link to this site, or a favorable mention, would be greatly appreciated. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_248.RULE b/src/licensedcode/data/rules/public-domain_248.RULE index 151591dca3..78d70b1947 100644 --- a/src/licensedcode/data/rules/public-domain_248.RULE +++ b/src/licensedcode/data/rules/public-domain_248.RULE @@ -5,7 +5,7 @@ relevance: 100 --- License and copyright -This code is placed in the PUBLIC DOMAIN. +This code is placed {{in the PUBLIC DOMAIN}}. This means that you can edit it, distribute it, sell it, or basically anything else. My name is in the header, but you are under no legal obligation to keep it there. Enjoy. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_249.RULE b/src/licensedcode/data/rules/public-domain_249.RULE index 935c6e4f03..e3d2815b54 100644 --- a/src/licensedcode/data/rules/public-domain_249.RULE +++ b/src/licensedcode/data/rules/public-domain_249.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -LEGAL: This code is placed into the public domain, hence requires no license or runtime fees. \ No newline at end of file +LEGAL: This code is placed into the {{public domain}}, hence requires no license or runtime fees. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_25.RULE b/src/licensedcode/data/rules/public-domain_25.RULE index e76eb76f88..d65e619c59 100644 --- a/src/licensedcode/data/rules/public-domain_25.RULE +++ b/src/licensedcode/data/rules/public-domain_25.RULE @@ -5,6 +5,6 @@ relevance: 100 minimum_coverage: 90 --- -PUBLIC DOMAIN +{{PUBLIC DOMAIN}} -This source code is public domain \ No newline at end of file +This source code is {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_250.RULE b/src/licensedcode/data/rules/public-domain_250.RULE index 0fe6195f32..97147d7c5e 100644 --- a/src/licensedcode/data/rules/public-domain_250.RULE +++ b/src/licensedcode/data/rules/public-domain_250.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -Still 100% Public Domain \ No newline at end of file +Still 100% {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_251.RULE b/src/licensedcode/data/rules/public-domain_251.RULE index 31084800d1..9f1f15bb20 100644 --- a/src/licensedcode/data/rules/public-domain_251.RULE +++ b/src/licensedcode/data/rules/public-domain_251.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -public domain SHA-1 implementation */ -this file is in the public domain */ \ No newline at end of file +{{public domain}} SHA-1 implementation */ +this file is {{in the public domain}} */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_252.RULE b/src/licensedcode/data/rules/public-domain_252.RULE index 8563c0bf47..a0c920094c 100644 --- a/src/licensedcode/data/rules/public-domain_252.RULE +++ b/src/licensedcode/data/rules/public-domain_252.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -It is released to the public domain, which means you can modify it, redistribute it or use it however you like. \ No newline at end of file +It is released to the {{public domain}}, which means you can modify it, redistribute it or use it however you like. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_253.RULE b/src/licensedcode/data/rules/public-domain_253.RULE index b6a0904cac..3a6e086afc 100644 --- a/src/licensedcode/data/rules/public-domain_253.RULE +++ b/src/licensedcode/data/rules/public-domain_253.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -It is released to the public domain \ No newline at end of file +It is released to the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_254.RULE b/src/licensedcode/data/rules/public-domain_254.RULE index 567fdf1055..7f07057bc8 100644 --- a/src/licensedcode/data/rules/public-domain_254.RULE +++ b/src/licensedcode/data/rules/public-domain_254.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -released into the public domain by the copyright holders. \ No newline at end of file +released into the {{public domain}} by the copyright holders. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_255.RULE b/src/licensedcode/data/rules/public-domain_255.RULE index 48592e6847..023e84c612 100644 --- a/src/licensedcode/data/rules/public-domain_255.RULE +++ b/src/licensedcode/data/rules/public-domain_255.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -likewise released into the public domain. \ No newline at end of file +likewise released into the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_256.RULE b/src/licensedcode/data/rules/public-domain_256.RULE index 04e833a693..cd53024972 100644 --- a/src/licensedcode/data/rules/public-domain_256.RULE +++ b/src/licensedcode/data/rules/public-domain_256.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -public domain dedication \ No newline at end of file +{{public domain}} dedication \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_257.RULE b/src/licensedcode/data/rules/public-domain_257.RULE index 27494c25f3..362f746783 100644 --- a/src/licensedcode/data/rules/public-domain_257.RULE +++ b/src/licensedcode/data/rules/public-domain_257.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -% Public-domain fonts. These have no copyright, and are of unknown quality. \ No newline at end of file +% {{Public-domain}} fonts. These have no copyright, and are of unknown quality. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_258.RULE b/src/licensedcode/data/rules/public-domain_258.RULE index a472fb7291..47fe9174e3 100644 --- a/src/licensedcode/data/rules/public-domain_258.RULE +++ b/src/licensedcode/data/rules/public-domain_258.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -These are also in the public domain. \ No newline at end of file +These are also {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_259.RULE b/src/licensedcode/data/rules/public-domain_259.RULE index 50e79ea69e..c59d3b0f2a 100644 --- a/src/licensedcode/data/rules/public-domain_259.RULE +++ b/src/licensedcode/data/rules/public-domain_259.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Portions of this code are derived from classes placed in the public domain \ No newline at end of file +Portions of this code are derived from classes placed {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_26.RULE b/src/licensedcode/data/rules/public-domain_26.RULE index 6f2521f042..bcb3bd43d0 100644 --- a/src/licensedcode/data/rules/public-domain_26.RULE +++ b/src/licensedcode/data/rules/public-domain_26.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 90 --- -which is written and distributed to public domain \ No newline at end of file +which is written and distributed to {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_260.RULE b/src/licensedcode/data/rules/public-domain_260.RULE index db91b9c3d6..96c4707bcd 100644 --- a/src/licensedcode/data/rules/public-domain_260.RULE +++ b/src/licensedcode/data/rules/public-domain_260.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This file, dmtcpaware.h, is placed in the public domain. \ No newline at end of file +This file, dmtcpaware.h, is placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_262.RULE b/src/licensedcode/data/rules/public-domain_262.RULE index dc52ba7fe4..901b2a9267 100644 --- a/src/licensedcode/data/rules/public-domain_262.RULE +++ b/src/licensedcode/data/rules/public-domain_262.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The remaining files in the directory are placed in the public domain. \ No newline at end of file +The remaining files in the directory are placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_263.RULE b/src/licensedcode/data/rules/public-domain_263.RULE index b9d21ef073..7f39324a28 100644 --- a/src/licensedcode/data/rules/public-domain_263.RULE +++ b/src/licensedcode/data/rules/public-domain_263.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This document has been placed in the public domain. \ No newline at end of file +This document has been placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_264.RULE b/src/licensedcode/data/rules/public-domain_264.RULE index e936b6d721..ed924919fa 100644 --- a/src/licensedcode/data/rules/public-domain_264.RULE +++ b/src/licensedcode/data/rules/public-domain_264.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This software is Public Domain and may be used without restrictions. \ No newline at end of file +This software is {{Public Domain}} and may be used without restrictions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_265.RULE b/src/licensedcode/data/rules/public-domain_265.RULE index 41d99c6311..0ea6b975ec 100644 --- a/src/licensedcode/data/rules/public-domain_265.RULE +++ b/src/licensedcode/data/rules/public-domain_265.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This software is Public Domain \ No newline at end of file +This software is {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_266.RULE b/src/licensedcode/data/rules/public-domain_266.RULE index 2111b52b3b..1e5142a260 100644 --- a/src/licensedcode/data/rules/public-domain_266.RULE +++ b/src/licensedcode/data/rules/public-domain_266.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -DejaVu changes are in public domain. \ No newline at end of file +DejaVu changes are {{in public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_267.RULE b/src/licensedcode/data/rules/public-domain_267.RULE index f322a8543b..778d2233e2 100644 --- a/src/licensedcode/data/rules/public-domain_267.RULE +++ b/src/licensedcode/data/rules/public-domain_267.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -based on public domain code \ No newline at end of file +based on {{public domain}} code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_268.RULE b/src/licensedcode/data/rules/public-domain_268.RULE index 76bc793428..63713b92d4 100644 --- a/src/licensedcode/data/rules/public-domain_268.RULE +++ b/src/licensedcode/data/rules/public-domain_268.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code in public domain. \ No newline at end of file +This code {{in public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_269.RULE b/src/licensedcode/data/rules/public-domain_269.RULE index 8e0f45adc4..f03492f5a8 100644 --- a/src/licensedcode/data/rules/public-domain_269.RULE +++ b/src/licensedcode/data/rules/public-domain_269.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -The following code is public domain. \ No newline at end of file +The following code is {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_27.RULE b/src/licensedcode/data/rules/public-domain_27.RULE index 6098298a42..18328384aa 100644 --- a/src/licensedcode/data/rules/public-domain_27.RULE +++ b/src/licensedcode/data/rules/public-domain_27.RULE @@ -5,5 +5,5 @@ relevance: 100 minimum_coverage: 90 --- -Copyright for this collection itself is hereby assigned to the public domain by +Copyright for this collection itself is hereby assigned to the {{public domain}} by the compilers \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_270.RULE b/src/licensedcode/data/rules/public-domain_270.RULE index 1f37eaf899..bdf98d9678 100644 --- a/src/licensedcode/data/rules/public-domain_270.RULE +++ b/src/licensedcode/data/rules/public-domain_270.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -this file is placed in the public domain \ No newline at end of file +this file is placed {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_271.RULE b/src/licensedcode/data/rules/public-domain_271.RULE index dd2e3713aa..34d3424d35 100644 --- a/src/licensedcode/data/rules/public-domain_271.RULE +++ b/src/licensedcode/data/rules/public-domain_271.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This library is public domain software, i.e. not copyrighted. \ No newline at end of file +This library is {{public domain}} software, i.e. not copyrighted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_272.RULE b/src/licensedcode/data/rules/public-domain_272.RULE index aac8a80000..973495e528 100644 --- a/src/licensedcode/data/rules/public-domain_272.RULE +++ b/src/licensedcode/data/rules/public-domain_272.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the 'Public Domain' license. \ No newline at end of file +distributed under the '{{Public Domain}}' license. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_273.RULE b/src/licensedcode/data/rules/public-domain_273.RULE index 5e6d424523..2816b1b592 100644 --- a/src/licensedcode/data/rules/public-domain_273.RULE +++ b/src/licensedcode/data/rules/public-domain_273.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code was released into the public domain. \ No newline at end of file +This code was released into the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_274.RULE b/src/licensedcode/data/rules/public-domain_274.RULE index d258b532b9..5b66d98eab 100644 --- a/src/licensedcode/data/rules/public-domain_274.RULE +++ b/src/licensedcode/data/rules/public-domain_274.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: https://www.siber.com/btyacc/README.txt --- -This code is distributed with NO WARRANTEE and is public domain. \ No newline at end of file +This code is distributed with NO WARRANTEE and is {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_275.RULE b/src/licensedcode/data/rules/public-domain_275.RULE index f283a5fd42..35724594d8 100644 --- a/src/licensedcode/data/rules/public-domain_275.RULE +++ b/src/licensedcode/data/rules/public-domain_275.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The adapted work is in the public domain. \ No newline at end of file +The adapted work is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_276.RULE b/src/licensedcode/data/rules/public-domain_276.RULE index 6e209730d9..fc404b01e0 100644 --- a/src/licensedcode/data/rules/public-domain_276.RULE +++ b/src/licensedcode/data/rules/public-domain_276.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -All content in this repository is placed in the public domain. \ No newline at end of file +All content in this repository is placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_277.RULE b/src/licensedcode/data/rules/public-domain_277.RULE index 5252751d1a..3795568b44 100644 --- a/src/licensedcode/data/rules/public-domain_277.RULE +++ b/src/licensedcode/data/rules/public-domain_277.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -All content in this repository is placed in the public domain. \ No newline at end of file +All content in this repository is placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_278.RULE b/src/licensedcode/data/rules/public-domain_278.RULE index 0730dbf8cc..27dde04307 100644 --- a/src/licensedcode/data/rules/public-domain_278.RULE +++ b/src/licensedcode/data/rules/public-domain_278.RULE @@ -8,4 +8,4 @@ notes: https://raw.githubusercontent.com/benediktschmitt/py-filelock/master/READ --- License -This package is [public domain](./LICENSE.rst). \ No newline at end of file +This package is [{{public domain}}](./LICENSE.rst). \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_279.RULE b/src/licensedcode/data/rules/public-domain_279.RULE index 5471e9ed78..35d24c6cd2 100644 --- a/src/licensedcode/data/rules/public-domain_279.RULE +++ b/src/licensedcode/data/rules/public-domain_279.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This header is under public domain. \ No newline at end of file +This header is under {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_28.RULE b/src/licensedcode/data/rules/public-domain_28.RULE index f9965a722d..b6c1885cb8 100644 --- a/src/licensedcode/data/rules/public-domain_28.RULE +++ b/src/licensedcode/data/rules/public-domain_28.RULE @@ -5,4 +5,4 @@ relevance: 100 --- no copyright is claimed. - * This code is in the public domain; do with it what you wish. \ No newline at end of file + * This code is {{in the public domain}}; do with it what you wish. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_280.RULE b/src/licensedcode/data/rules/public-domain_280.RULE index d679ceaae6..e606706a43 100644 --- a/src/licensedcode/data/rules/public-domain_280.RULE +++ b/src/licensedcode/data/rules/public-domain_280.RULE @@ -5,7 +5,7 @@ relevance: 100 notes: in GNU Nettle --- -This manual is in the public domain. You may freely copy it in whole +This manual is {{in the public domain}}. You may freely copy it in whole or in part, e.g., into documentation of programs that build on . Attribution, as well as contribution of improvements to the text, is of course appreciated, but it is not required. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_281.RULE b/src/licensedcode/data/rules/public-domain_281.RULE index a306ddadcf..5a29266a51 100644 --- a/src/licensedcode/data/rules/public-domain_281.RULE +++ b/src/licensedcode/data/rules/public-domain_281.RULE @@ -4,7 +4,7 @@ is_license_notice: yes relevance: 100 --- -This Java implementation of XZ has been put into the public domain, thus you can +This Java implementation of XZ has been put into the {{public domain}}, thus you can do whatever you want with it. All the files in the package have been written by -Lasse Collin, but some files are heavily based on public domain code written by +Lasse Collin, but some files are heavily based on {{public domain}} code written by Igor Pavlov. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_282.RULE b/src/licensedcode/data/rules/public-domain_282.RULE index fb1229113e..31a0c85d2e 100644 --- a/src/licensedcode/data/rules/public-domain_282.RULE +++ b/src/licensedcode/data/rules/public-domain_282.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -derived portions are public domain \ No newline at end of file +derived portions are {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_283.RULE b/src/licensedcode/data/rules/public-domain_283.RULE index 6f31d1f17d..d1edf9b1d3 100644 --- a/src/licensedcode/data/rules/public-domain_283.RULE +++ b/src/licensedcode/data/rules/public-domain_283.RULE @@ -7,4 +7,4 @@ notes: Seen in json-cpp Authors explicitly disclaim copyright in all jurisdictions which recognize such a disclaimer. In such jurisdictions, -this software is released into the Public Domain. \ No newline at end of file +this software is released into the {{Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_284.RULE b/src/licensedcode/data/rules/public-domain_284.RULE index ffd69bc5c0..56f9f41a53 100644 --- a/src/licensedcode/data/rules/public-domain_284.RULE +++ b/src/licensedcode/data/rules/public-domain_284.RULE @@ -7,4 +7,4 @@ notes: Seen in re2c License -is in the public domain. \ No newline at end of file +is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_285.RULE b/src/licensedcode/data/rules/public-domain_285.RULE index 6df368b066..3da6383361 100644 --- a/src/licensedcode/data/rules/public-domain_285.RULE +++ b/src/licensedcode/data/rules/public-domain_285.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Seen in re2c --- -is in the public domain. \ No newline at end of file +is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_286.RULE b/src/licensedcode/data/rules/public-domain_286.RULE index 7c66ac1335..3a73cc145b 100644 --- a/src/licensedcode/data/rules/public-domain_286.RULE +++ b/src/licensedcode/data/rules/public-domain_286.RULE @@ -4,8 +4,8 @@ is_license_text: yes relevance: 100 --- -Irrespective of its distribution, all code examples here are in the public - domain. You are permitted and encouraged to use this code and any +Irrespective of its distribution, all code examples here are {{in the public + domain}}. You are permitted and encouraged to use this code and any derivatives thereof in your own programs for fun or for profit as you see fit. A simple comment in the code giving credit to the FAQ would be courteous but is not required. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_287.RULE b/src/licensedcode/data/rules/public-domain_287.RULE index 30a888b09a..84a3004c74 100644 --- a/src/licensedcode/data/rules/public-domain_287.RULE +++ b/src/licensedcode/data/rules/public-domain_287.RULE @@ -5,7 +5,7 @@ relevance: 100 --- Irrespective of its distribution, all code examples in these files - are hereby placed into the public domain. You are permitted and + are hereby placed into the {{public domain}}. You are permitted and encouraged to use this code in your own programs for fun or for profit as you see fit. A simple comment in the code giving credit would be courteous but is not required. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_289.RULE b/src/licensedcode/data/rules/public-domain_289.RULE index 56abd4ce9d..a7868893df 100644 --- a/src/licensedcode/data/rules/public-domain_289.RULE +++ b/src/licensedcode/data/rules/public-domain_289.RULE @@ -4,5 +4,5 @@ is_license_notice: yes relevance: 100 --- -The MD5 algorithm is being placed in the - public domain for review and possible adoption as a standard \ No newline at end of file +The MD5 algorithm is being placed {{in the + public domain}} for review and possible adoption as a standard \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_291.RULE b/src/licensedcode/data/rules/public-domain_291.RULE index d0d77a442c..63489960a8 100644 --- a/src/licensedcode/data/rules/public-domain_291.RULE +++ b/src/licensedcode/data/rules/public-domain_291.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -LICENSE INFORMATION: Public Domain \ No newline at end of file +LICENSE INFORMATION: {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_292.RULE b/src/licensedcode/data/rules/public-domain_292.RULE index 4aad8f5fbf..e93d5f330f 100644 --- a/src/licensedcode/data/rules/public-domain_292.RULE +++ b/src/licensedcode/data/rules/public-domain_292.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -A public domain implementation of BSD directory routines for MS-DOS. \ No newline at end of file +A {{public domain}} implementation of BSD directory routines for MS-DOS. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_293.RULE b/src/licensedcode/data/rules/public-domain_293.RULE index 0de0753d96..4ed29e8a02 100644 --- a/src/licensedcode/data/rules/public-domain_293.RULE +++ b/src/licensedcode/data/rules/public-domain_293.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -public domain implementation \ No newline at end of file +{{public domain}} implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_294.RULE b/src/licensedcode/data/rules/public-domain_294.RULE index 34048bf039..e09f1e5df7 100644 --- a/src/licensedcode/data/rules/public-domain_294.RULE +++ b/src/licensedcode/data/rules/public-domain_294.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This code is a port of the public domain implementation \ No newline at end of file +This code is a port of the {{public domain}} implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_296.RULE b/src/licensedcode/data/rules/public-domain_296.RULE index 23bd2adb7d..5df97d7972 100644 --- a/src/licensedcode/data/rules/public-domain_296.RULE +++ b/src/licensedcode/data/rules/public-domain_296.RULE @@ -5,4 +5,4 @@ relevance: 100 --- Use of any of this software is governed by the terms of the license below: -These files are in the public domain. \ No newline at end of file +These files are {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_297.RULE b/src/licensedcode/data/rules/public-domain_297.RULE index 86a58fa753..9954695324 100644 --- a/src/licensedcode/data/rules/public-domain_297.RULE +++ b/src/licensedcode/data/rules/public-domain_297.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -These files are in the public domain. \ No newline at end of file +These files are {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_298.RULE b/src/licensedcode/data/rules/public-domain_298.RULE index 95d5a9b766..2c392140e8 100644 --- a/src/licensedcode/data/rules/public-domain_298.RULE +++ b/src/licensedcode/data/rules/public-domain_298.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -in the public domain. \ No newline at end of file +{{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_299.RULE b/src/licensedcode/data/rules/public-domain_299.RULE index ad0a20c2e7..a0ce213cbf 100644 --- a/src/licensedcode/data/rules/public-domain_299.RULE +++ b/src/licensedcode/data/rules/public-domain_299.RULE @@ -4,6 +4,6 @@ is_license_text: yes relevance: 100 --- -This software is hereby explicitly placed in the public domain. It may be used for +This software is hereby explicitly placed {{in the public domain}}. It may be used for any purpose on any machine by anyone." I would greatly prefer it if my material received no military use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_3.RULE b/src/licensedcode/data/rules/public-domain_3.RULE index 24c8cf16ef..0ef426316d 100644 --- a/src/licensedcode/data/rules/public-domain_3.RULE +++ b/src/licensedcode/data/rules/public-domain_3.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -granted to the public domain \ No newline at end of file +granted to the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_30.RULE b/src/licensedcode/data/rules/public-domain_30.RULE index e8a8da226b..1f3c0665fa 100644 --- a/src/licensedcode/data/rules/public-domain_30.RULE +++ b/src/licensedcode/data/rules/public-domain_30.RULE @@ -3,9 +3,9 @@ license_expression: public-domain is_license_text: yes --- -PD (Public domain): +PD ({{Public domain}}): The file or package contains a statement equivalent to -"This file is in the public domain. You may freely use, modify and +"This file is {{in the public domain}}. You may freely use, modify and distribute it". \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_300.RULE b/src/licensedcode/data/rules/public-domain_300.RULE index d96db08b30..a7b85bd46f 100644 --- a/src/licensedcode/data/rules/public-domain_300.RULE +++ b/src/licensedcode/data/rules/public-domain_300.RULE @@ -4,6 +4,6 @@ is_license_text: yes relevance: 100 --- -100% Public Domain +100% {{Public Domain}} Additional License(s) -100% Public Domain \ No newline at end of file +100% {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_301.RULE b/src/licensedcode/data/rules/public-domain_301.RULE index 34457a234c..8852f77c32 100644 --- a/src/licensedcode/data/rules/public-domain_301.RULE +++ b/src/licensedcode/data/rules/public-domain_301.RULE @@ -5,5 +5,5 @@ relevance: 100 minimum_coverage: 90 --- -The public-domain time zone database contains code and data that represent the +The {{public-domain}} time zone database contains code and data that represent the history of local time for many representative locations around the globe. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_302.RULE b/src/licensedcode/data/rules/public-domain_302.RULE index 342b308426..360a01e784 100644 --- a/src/licensedcode/data/rules/public-domain_302.RULE +++ b/src/licensedcode/data/rules/public-domain_302.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -public-domain time zone database \ No newline at end of file +{{public-domain}} time zone database \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_303.RULE b/src/licensedcode/data/rules/public-domain_303.RULE index b833ce8d9b..0d07eae544 100644 --- a/src/licensedcode/data/rules/public-domain_303.RULE +++ b/src/licensedcode/data/rules/public-domain_303.RULE @@ -8,4 +8,4 @@ ignorable_authors: This code was written by Colin Plumb in 1993, no copyright is claimed. -This code is in the public domain; do with it what you wish. \ No newline at end of file +This code is {{in the public domain}}; do with it what you wish. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_305.RULE b/src/licensedcode/data/rules/public-domain_305.RULE index d55f59f4d0..f8ca42c99d 100644 --- a/src/licensedcode/data/rules/public-domain_305.RULE +++ b/src/licensedcode/data/rules/public-domain_305.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -are in the public domain; \ No newline at end of file +are {{in the public domain}}; \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_306.RULE b/src/licensedcode/data/rules/public-domain_306.RULE index 42ddf8180f..2fff1b8f54 100644 --- a/src/licensedcode/data/rules/public-domain_306.RULE +++ b/src/licensedcode/data/rules/public-domain_306.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -have expired copyrights and are in the public domain; \ No newline at end of file +have expired copyrights and are {{in the public domain}}; \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_307.RULE b/src/licensedcode/data/rules/public-domain_307.RULE index 0229a941c9..c3d299526b 100644 --- a/src/licensedcode/data/rules/public-domain_307.RULE +++ b/src/licensedcode/data/rules/public-domain_307.RULE @@ -6,7 +6,7 @@ ignorable_urls: - http://www.gutenberg.org/ebooks/53 --- -The first three have expired copyrights and are in the public -domain; the latter does not have expired copyright, but is still in the -public domain according to the license information +The first three have expired copyrights and are {{in the public +domain}}; the latter does not have expired copyright, but is still {{in the +public domain}} according to the license information (http://www.gutenberg.org/ebooks/53). \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_308.RULE b/src/licensedcode/data/rules/public-domain_308.RULE index 2899f16311..36e2032c25 100644 --- a/src/licensedcode/data/rules/public-domain_308.RULE +++ b/src/licensedcode/data/rules/public-domain_308.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -(Mostly) portable public-domain implementation \ No newline at end of file +(Mostly) portable {{public-domain}} implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_309.RULE b/src/licensedcode/data/rules/public-domain_309.RULE index 724a640e15..7c97d95408 100644 --- a/src/licensedcode/data/rules/public-domain_309.RULE +++ b/src/licensedcode/data/rules/public-domain_309.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -derived from the public domain \ No newline at end of file +derived from the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_31.RULE b/src/licensedcode/data/rules/public-domain_31.RULE index 4fb568bfcf..1f2e94a1b2 100644 --- a/src/licensedcode/data/rules/public-domain_31.RULE +++ b/src/licensedcode/data/rules/public-domain_31.RULE @@ -6,4 +6,4 @@ minimum_coverage: 90 7. Database Ownership -The TZ database itself is not an IETF Contribution or an IETF document. Rather it is a pre-existing and regularly updated work that is in the public domain, and is intended to remain in the public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do not apply to the TZ Database or contributions that individuals make to it. Should any claims be made and substantiated against the TZ Database, the organization that is providing the IANA Considerations defined in this RFC, under the memorandum of understanding with the IETF, currently ICANN, may act in accordance with all competent court orders. No ownership claims will be made by ICANN or the IETF Trust on the database or the code. Any person making a contribution to the database or code waives all rights to future claims in that contribution or in the TZ Database. \ No newline at end of file +The TZ database itself is not an IETF Contribution or an IETF document. Rather it is a pre-existing and regularly updated work that is {{in the public domain}}, and is intended to remain {{in the public domain}}. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do not apply to the TZ Database or contributions that individuals make to it. Should any claims be made and substantiated against the TZ Database, the organization that is providing the IANA Considerations defined in this RFC, under the memorandum of understanding with the IETF, currently ICANN, may act in accordance with all competent court orders. No ownership claims will be made by ICANN or the IETF Trust on the database or the code. Any person making a contribution to the database or code waives all rights to future claims in that contribution or in the TZ Database. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_310.RULE b/src/licensedcode/data/rules/public-domain_310.RULE index f4759a4d21..1752344afb 100644 --- a/src/licensedcode/data/rules/public-domain_310.RULE +++ b/src/licensedcode/data/rules/public-domain_310.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -public domain software \ No newline at end of file +{{public domain}} software \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_311.RULE b/src/licensedcode/data/rules/public-domain_311.RULE index 04c33d5578..042fe0b2ba 100644 --- a/src/licensedcode/data/rules/public-domain_311.RULE +++ b/src/licensedcode/data/rules/public-domain_311.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -public domain code \ No newline at end of file +{{public domain}} code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_312.RULE b/src/licensedcode/data/rules/public-domain_312.RULE index 541345e992..795e12e710 100644 --- a/src/licensedcode/data/rules/public-domain_312.RULE +++ b/src/licensedcode/data/rules/public-domain_312.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -public domain libraries \ No newline at end of file +{{public domain}} libraries \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_313.RULE b/src/licensedcode/data/rules/public-domain_313.RULE index 6314026fbe..cd39f9a2ed 100644 --- a/src/licensedcode/data/rules/public-domain_313.RULE +++ b/src/licensedcode/data/rules/public-domain_313.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -public domain library \ No newline at end of file +{{public domain}} library \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_314.RULE b/src/licensedcode/data/rules/public-domain_314.RULE index 6b8ae39bf1..1f14b55c52 100644 --- a/src/licensedcode/data/rules/public-domain_314.RULE +++ b/src/licensedcode/data/rules/public-domain_314.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -code in the public domain \ No newline at end of file +code {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_315.RULE b/src/licensedcode/data/rules/public-domain_315.RULE index 25efde3b04..9e49acacc1 100644 --- a/src/licensedcode/data/rules/public-domain_315.RULE +++ b/src/licensedcode/data/rules/public-domain_315.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -It is published into public domain. \ No newline at end of file +It is published into {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_316.RULE b/src/licensedcode/data/rules/public-domain_316.RULE index 56d292e662..12aa261bc7 100644 --- a/src/licensedcode/data/rules/public-domain_316.RULE +++ b/src/licensedcode/data/rules/public-domain_316.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -public domain, open source, \ No newline at end of file +{{public domain}}, open source, \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_317.RULE b/src/licensedcode/data/rules/public-domain_317.RULE index 60f1059fec..1be1d16197 100644 --- a/src/licensedcode/data/rules/public-domain_317.RULE +++ b/src/licensedcode/data/rules/public-domain_317.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Licensed under Public Domain \ No newline at end of file +Licensed under {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_318.RULE b/src/licensedcode/data/rules/public-domain_318.RULE index 909ddd0490..665bd881f8 100644 --- a/src/licensedcode/data/rules/public-domain_318.RULE +++ b/src/licensedcode/data/rules/public-domain_318.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -library released into public domain. \ No newline at end of file +library released into {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_319.RULE b/src/licensedcode/data/rules/public-domain_319.RULE index 350a03ba41..80203cbc20 100644 --- a/src/licensedcode/data/rules/public-domain_319.RULE +++ b/src/licensedcode/data/rules/public-domain_319.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Public Domain C Library \ No newline at end of file +{{Public Domain}} C Library \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_32.RULE b/src/licensedcode/data/rules/public-domain_32.RULE index c367ffa638..82c5bcbf64 100644 --- a/src/licensedcode/data/rules/public-domain_32.RULE +++ b/src/licensedcode/data/rules/public-domain_32.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -under public domain \ No newline at end of file +under {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_320.RULE b/src/licensedcode/data/rules/public-domain_320.RULE index 9be4493cf8..e476516f72 100644 --- a/src/licensedcode/data/rules/public-domain_320.RULE +++ b/src/licensedcode/data/rules/public-domain_320.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This works is available in public domain. \ No newline at end of file +This works is available {{in public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_321.RULE b/src/licensedcode/data/rules/public-domain_321.RULE index 7209eebc13..689d0dcb4f 100644 --- a/src/licensedcode/data/rules/public-domain_321.RULE +++ b/src/licensedcode/data/rules/public-domain_321.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Free open public domain \ No newline at end of file +Free open {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_322.RULE b/src/licensedcode/data/rules/public-domain_322.RULE index 70ac494fda..51e6c6b7f5 100644 --- a/src/licensedcode/data/rules/public-domain_322.RULE +++ b/src/licensedcode/data/rules/public-domain_322.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -orignal source code obtained from the public domain \ No newline at end of file +orignal source code obtained from the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_323.RULE b/src/licensedcode/data/rules/public-domain_323.RULE index 719370e2f8..80ccdb1a27 100644 --- a/src/licensedcode/data/rules/public-domain_323.RULE +++ b/src/licensedcode/data/rules/public-domain_323.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -this software is released into the Public Domain. \ No newline at end of file +this software is released into the {{Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_324.RULE b/src/licensedcode/data/rules/public-domain_324.RULE index 5b940a3b37..f9463e0efd 100644 --- a/src/licensedcode/data/rules/public-domain_324.RULE +++ b/src/licensedcode/data/rules/public-domain_324.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This example code is placed in the public domain. \ No newline at end of file +This example code is placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_325.RULE b/src/licensedcode/data/rules/public-domain_325.RULE index 2c513f4418..694701f78f 100644 --- a/src/licensedcode/data/rules/public-domain_325.RULE +++ b/src/licensedcode/data/rules/public-domain_325.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -code is placed in the public domain. \ No newline at end of file +code is placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_326.RULE b/src/licensedcode/data/rules/public-domain_326.RULE index 1f554c62ca..479c0df734 100644 --- a/src/licensedcode/data/rules/public-domain_326.RULE +++ b/src/licensedcode/data/rules/public-domain_326.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Licence: I hereby disclaim the copyright on this code and place it in the public domain. \ No newline at end of file +Licence: I hereby disclaim the copyright on this code and place it {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_327.RULE b/src/licensedcode/data/rules/public-domain_327.RULE index dbfdff1f26..a5e22c20c5 100644 --- a/src/licensedcode/data/rules/public-domain_327.RULE +++ b/src/licensedcode/data/rules/public-domain_327.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -I hereby disclaim the copyright on this code and place it in the public domain. \ No newline at end of file +I hereby disclaim the copyright on this code and place it {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_328.RULE b/src/licensedcode/data/rules/public-domain_328.RULE index f564c5b207..51771e5405 100644 --- a/src/licensedcode/data/rules/public-domain_328.RULE +++ b/src/licensedcode/data/rules/public-domain_328.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -not copyrighted and is in the public domain. \ No newline at end of file +not copyrighted and is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_329.RULE b/src/licensedcode/data/rules/public-domain_329.RULE index 229499aa97..f93c8ea911 100644 --- a/src/licensedcode/data/rules/public-domain_329.RULE +++ b/src/licensedcode/data/rules/public-domain_329.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This source code has been placed in the public domain \ No newline at end of file +This source code has been placed {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_33.RULE b/src/licensedcode/data/rules/public-domain_33.RULE index ed1adc2c13..7b3078aca1 100644 --- a/src/licensedcode/data/rules/public-domain_33.RULE +++ b/src/licensedcode/data/rules/public-domain_33.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -they are public domain \ No newline at end of file +they are {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_330.RULE b/src/licensedcode/data/rules/public-domain_330.RULE index 6fd68b659b..140322f2b3 100644 --- a/src/licensedcode/data/rules/public-domain_330.RULE +++ b/src/licensedcode/data/rules/public-domain_330.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This man page is in the public domain \ No newline at end of file +This man page is {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_331.RULE b/src/licensedcode/data/rules/public-domain_331.RULE index cf37bd4747..1f4ca8a51c 100644 --- a/src/licensedcode/data/rules/public-domain_331.RULE +++ b/src/licensedcode/data/rules/public-domain_331.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -code has been placed in the public domain \ No newline at end of file +code has been placed {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_332.RULE b/src/licensedcode/data/rules/public-domain_332.RULE index 96b392d4cd..a65d143a46 100644 --- a/src/licensedcode/data/rules/public-domain_332.RULE +++ b/src/licensedcode/data/rules/public-domain_332.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -source code has been placed in the public domain \ No newline at end of file +source code has been placed {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_333.RULE b/src/licensedcode/data/rules/public-domain_333.RULE index 44842772fa..1fca420926 100644 --- a/src/licensedcode/data/rules/public-domain_333.RULE +++ b/src/licensedcode/data/rules/public-domain_333.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This source code has been placed in the public domain by the author. \ No newline at end of file +This source code has been placed {{in the public domain}} by the author. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_334.RULE b/src/licensedcode/data/rules/public-domain_334.RULE index f21182de27..bc71aaa245 100644 --- a/src/licensedcode/data/rules/public-domain_334.RULE +++ b/src/licensedcode/data/rules/public-domain_334.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This source code is released into the public domain. \ No newline at end of file +This source code is released into the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_335.RULE b/src/licensedcode/data/rules/public-domain_335.RULE index c99299f20a..dce34fbe88 100644 --- a/src/licensedcode/data/rules/public-domain_335.RULE +++ b/src/licensedcode/data/rules/public-domain_335.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -derived from public-domain code \ No newline at end of file +derived from {{public-domain}} code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_336.RULE b/src/licensedcode/data/rules/public-domain_336.RULE index fd1287f7ea..12b5a72fb8 100644 --- a/src/licensedcode/data/rules/public-domain_336.RULE +++ b/src/licensedcode/data/rules/public-domain_336.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -public-domain-source-code \ No newline at end of file +{{public-domain}}-source-code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_337.RULE b/src/licensedcode/data/rules/public-domain_337.RULE index fc24909525..057ee1a058 100644 --- a/src/licensedcode/data/rules/public-domain_337.RULE +++ b/src/licensedcode/data/rules/public-domain_337.RULE @@ -6,8 +6,8 @@ minimum_coverage: 80 --- This is a plain C recursive-descent translation of an old -public-domain YACC grammar that has been used for parsing dates in +{{public-domain}} YACC grammar that has been used for parsing dates in very many open-source projects. Since the original authors were generous enough to donate their -work to the public domain, I feel compelled to match their +work to the {{public domain}}, I feel compelled to match their generosity. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_338.RULE b/src/licensedcode/data/rules/public-domain_338.RULE index b895dc7961..b8d46d6a97 100644 --- a/src/licensedcode/data/rules/public-domain_338.RULE +++ b/src/licensedcode/data/rules/public-domain_338.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -source files are in the public domain: \ No newline at end of file +source files are {{in the public domain}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_339.RULE b/src/licensedcode/data/rules/public-domain_339.RULE index 347a7baaf5..68e8150b42 100644 --- a/src/licensedcode/data/rules/public-domain_339.RULE +++ b/src/licensedcode/data/rules/public-domain_339.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -files are in the public domain: \ No newline at end of file +files are {{in the public domain}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_34.RULE b/src/licensedcode/data/rules/public-domain_34.RULE index e608681276..5626075d91 100644 --- a/src/licensedcode/data/rules/public-domain_34.RULE +++ b/src/licensedcode/data/rules/public-domain_34.RULE @@ -3,5 +3,5 @@ license_expression: public-domain is_license_text: yes --- -| I have put these systems into the public domain so that +| I have put these systems into the {{public domain}} so that | people everywhere can use the ideas freely if they wish. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_340.RULE b/src/licensedcode/data/rules/public-domain_340.RULE index 3897c10a90..3e269347c1 100644 --- a/src/licensedcode/data/rules/public-domain_340.RULE +++ b/src/licensedcode/data/rules/public-domain_340.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -The following source files are in the public domain: \ No newline at end of file +The following source files are {{in the public domain}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_341.RULE b/src/licensedcode/data/rules/public-domain_341.RULE index b86620e2a9..32e6a393cc 100644 --- a/src/licensedcode/data/rules/public-domain_341.RULE +++ b/src/licensedcode/data/rules/public-domain_341.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -place this file into the public domain. \ No newline at end of file +place this file into the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_342.RULE b/src/licensedcode/data/rules/public-domain_342.RULE index 55f8ce029c..390188c138 100644 --- a/src/licensedcode/data/rules/public-domain_342.RULE +++ b/src/licensedcode/data/rules/public-domain_342.RULE @@ -4,6 +4,6 @@ is_license_text: yes relevance: 100 --- -I place this file into the public domain. +I place this file into the {{public domain}}. Permission to use, copy, modify, and distribute it for any purpose with or without fee is hereby granted, without any conditions. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_344.RULE b/src/licensedcode/data/rules/public-domain_344.RULE index 19942704c5..7fd5da9a61 100644 --- a/src/licensedcode/data/rules/public-domain_344.RULE +++ b/src/licensedcode/data/rules/public-domain_344.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Derived from public domain source \ No newline at end of file +Derived from {{public domain}} source \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_345.RULE b/src/licensedcode/data/rules/public-domain_345.RULE index 543d5a3243..a3e0fc0dd5 100644 --- a/src/licensedcode/data/rules/public-domain_345.RULE +++ b/src/licensedcode/data/rules/public-domain_345.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -LICENCE: all the source code provided by Alliance is Public Domain. \ No newline at end of file +LICENCE: all the source code provided by Alliance is {{Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_346.RULE b/src/licensedcode/data/rules/public-domain_346.RULE index 9eedde10d6..501986a6d0 100644 --- a/src/licensedcode/data/rules/public-domain_346.RULE +++ b/src/licensedcode/data/rules/public-domain_346.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -also placed in public domain \ No newline at end of file +also placed {{in public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_347.RULE b/src/licensedcode/data/rules/public-domain_347.RULE index 5dd7d989ce..db5549c881 100644 --- a/src/licensedcode/data/rules/public-domain_347.RULE +++ b/src/licensedcode/data/rules/public-domain_347.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -placed in public domain as well. \ No newline at end of file +placed {{in public domain}} as well. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_348.RULE b/src/licensedcode/data/rules/public-domain_348.RULE index bd22628d9d..0cbc294b4d 100644 --- a/src/licensedcode/data/rules/public-domain_348.RULE +++ b/src/licensedcode/data/rules/public-domain_348.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -also placed in the Public Domain \ No newline at end of file +also placed {{in the Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_349.RULE b/src/licensedcode/data/rules/public-domain_349.RULE index 11bf06dfe5..08c326cd18 100644 --- a/src/licensedcode/data/rules/public-domain_349.RULE +++ b/src/licensedcode/data/rules/public-domain_349.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is explicitely put in the public domain \ No newline at end of file +This code is explicitely put {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_35.RULE b/src/licensedcode/data/rules/public-domain_35.RULE index a2f35e511e..ef131da854 100644 --- a/src/licensedcode/data/rules/public-domain_35.RULE +++ b/src/licensedcode/data/rules/public-domain_35.RULE @@ -3,6 +3,6 @@ license_expression: public-domain is_license_text: yes --- -The programs for computer Modern are in the public domain, and readers +The programs for computer Modern are {{in the public domain}}, and readers | may freely generate and hand-tune their own fonts using the algorithms | of this book. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_350.RULE b/src/licensedcode/data/rules/public-domain_350.RULE index c5a8f9c278..2368a24f26 100644 --- a/src/licensedcode/data/rules/public-domain_350.RULE +++ b/src/licensedcode/data/rules/public-domain_350.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -code is explicitely put in the public domain \ No newline at end of file +code is explicitely put {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_351.RULE b/src/licensedcode/data/rules/public-domain_351.RULE index 118715b460..86104a8bfb 100644 --- a/src/licensedcode/data/rules/public-domain_351.RULE +++ b/src/licensedcode/data/rules/public-domain_351.RULE @@ -4,8 +4,8 @@ is_license_text: yes relevance: 100 --- -Public domain +{{Public domain}} -I hereby place my work into the public domain. +I hereby place my work into the {{public domain}}. All my copyrights, including all related and neighbouring rights, are abandoned. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_352.RULE b/src/licensedcode/data/rules/public-domain_352.RULE index 57c0b9e53b..1ce06b2609 100644 --- a/src/licensedcode/data/rules/public-domain_352.RULE +++ b/src/licensedcode/data/rules/public-domain_352.RULE @@ -4,6 +4,6 @@ is_license_text: yes relevance: 100 --- -I hereby place my work into the public domain. +I hereby place my work into the {{public domain}}. All my copyrights, including all related and neighbouring rights, are abandoned. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_353.RULE b/src/licensedcode/data/rules/public-domain_353.RULE index 2072f5c8af..6d9f391713 100644 --- a/src/licensedcode/data/rules/public-domain_353.RULE +++ b/src/licensedcode/data/rules/public-domain_353.RULE @@ -4,5 +4,5 @@ is_license_text: yes minimum_coverage: 80 --- -This file has been put in the public domain. +This file has been put {{in the public domain}}. You can do whatever you want with this file \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_357.RULE b/src/licensedcode/data/rules/public-domain_357.RULE index 61ac00ad60..be1c8f6bde 100644 --- a/src/licensedcode/data/rules/public-domain_357.RULE +++ b/src/licensedcode/data/rules/public-domain_357.RULE @@ -5,4 +5,4 @@ relevance: 100 --- the source code examples published as part of this docs directory are placed into -the public domain \ No newline at end of file +the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_358.RULE b/src/licensedcode/data/rules/public-domain_358.RULE index eaee4e5ab8..f594b78849 100644 --- a/src/licensedcode/data/rules/public-domain_358.RULE +++ b/src/licensedcode/data/rules/public-domain_358.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This file is put in the public domain, to the extent permitted under applicable law. \ No newline at end of file +This file is put {{in the public domain}}, to the extent permitted under applicable law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_36.RULE b/src/licensedcode/data/rules/public-domain_36.RULE index 08a8b5a2ab..f3a4a00cba 100644 --- a/src/licensedcode/data/rules/public-domain_36.RULE +++ b/src/licensedcode/data/rules/public-domain_36.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -The macros are in public domain. +The macros are {{in public domain}}. You may distribute or modify it in any ways you like. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_360.RULE b/src/licensedcode/data/rules/public-domain_360.RULE index 3a62ce2a22..e1af24f91b 100644 --- a/src/licensedcode/data/rules/public-domain_360.RULE +++ b/src/licensedcode/data/rules/public-domain_360.RULE @@ -4,5 +4,5 @@ is_license_text: yes minimum_coverage: 80 --- -The Debian packaging files are in the public domain. +The Debian packaging files are {{in the public domain}}. You may freely use, modify, distribute, and relicense them. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_364.RULE b/src/licensedcode/data/rules/public-domain_364.RULE index fb0cdb674c..519bad861e 100644 --- a/src/licensedcode/data/rules/public-domain_364.RULE +++ b/src/licensedcode/data/rules/public-domain_364.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip --- -All of which is in the Public Domain. \ No newline at end of file +All of which is {{in the Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_365.RULE b/src/licensedcode/data/rules/public-domain_365.RULE index 2ebc08c59f..e118c8457e 100644 --- a/src/licensedcode/data/rules/public-domain_365.RULE +++ b/src/licensedcode/data/rules/public-domain_365.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip --- -also in the public domain. \ No newline at end of file +also {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_366.RULE b/src/licensedcode/data/rules/public-domain_366.RULE index ca0cf15493..504b24b640 100644 --- a/src/licensedcode/data/rules/public-domain_366.RULE +++ b/src/licensedcode/data/rules/public-domain_366.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip --- -package which is in the public domain. \ No newline at end of file +package which is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_368.RULE b/src/licensedcode/data/rules/public-domain_368.RULE index c5f680323a..63180f115b 100644 --- a/src/licensedcode/data/rules/public-domain_368.RULE +++ b/src/licensedcode/data/rules/public-domain_368.RULE @@ -5,5 +5,5 @@ relevance: 100 notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip --- -list is also in the -public domain. \ No newline at end of file +list is also {{in the +public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_369.RULE b/src/licensedcode/data/rules/public-domain_369.RULE index 2c1b2c7624..53f2231ce2 100644 --- a/src/licensedcode/data/rules/public-domain_369.RULE +++ b/src/licensedcode/data/rules/public-domain_369.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip --- -package and Supplement is in the Public Domain. \ No newline at end of file +package and Supplement is {{in the Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_370.RULE b/src/licensedcode/data/rules/public-domain_370.RULE index 3688d97c72..ddbc7a58bd 100644 --- a/src/licensedcode/data/rules/public-domain_370.RULE +++ b/src/licensedcode/data/rules/public-domain_370.RULE @@ -5,5 +5,5 @@ relevance: 100 notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip --- -So are you saying your word list is also in the public domain? +So are you saying your word list is also {{in the public domain}}? That is the intention. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_371.RULE b/src/licensedcode/data/rules/public-domain_371.RULE index c94fbc2cbe..6f6cf6c70d 100644 --- a/src/licensedcode/data/rules/public-domain_371.RULE +++ b/src/licensedcode/data/rules/public-domain_371.RULE @@ -5,5 +5,5 @@ relevance: 100 notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip --- -The "UK English Wordlist With Frequency Classification" is also in the -Public Domain: \ No newline at end of file +The "UK English Wordlist With Frequency Classification" is also {{in the +Public Domain}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_372.RULE b/src/licensedcode/data/rules/public-domain_372.RULE index dc4a8d7713..a722e38e83 100644 --- a/src/licensedcode/data/rules/public-domain_372.RULE +++ b/src/licensedcode/data/rules/public-domain_372.RULE @@ -8,5 +8,5 @@ notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller There were many many sources in total, but any text marked "copyright" was avoided. Locally-written documentation was one source. An earlier version of the list resided in a filespace called - PUBLIC on the University mainframe, because it was considered public - domain. \ No newline at end of file + PUBLIC on the University mainframe, because it was considered {{public + domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_373.RULE b/src/licensedcode/data/rules/public-domain_373.RULE index 1d45e84f5b..6ff6ad24e0 100644 --- a/src/licensedcode/data/rules/public-domain_373.RULE +++ b/src/licensedcode/data/rules/public-domain_373.RULE @@ -5,14 +5,14 @@ relevance: 100 notes: Seen in https://altushost-swe.dl.sourceforge.net/project/wordlist/speller/2020.12.07/hunspell-en_US-2020.12.07.zip --- -package was explicitly placed in the public domain: +package was explicitly placed {{in the public domain}}: The Moby lexicon project is complete and has - been place into the public domain. Use, sell, + been place into the {{public domain}}. Use, sell, rework, excerpt and use in any way on any platform. Placing this material on internal or public servers is also encouraged. The compiler is not aware of any export restrictions so freely distribute world-wide. - You can verify the public domain status by contacting \ No newline at end of file + You can verify the {{public domain}} status by contacting \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_374.RULE b/src/licensedcode/data/rules/public-domain_374.RULE index 64469293f5..c466823099 100644 --- a/src/licensedcode/data/rules/public-domain_374.RULE +++ b/src/licensedcode/data/rules/public-domain_374.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -PUBLIC DOMAIN NOTICE \ No newline at end of file +{{PUBLIC DOMAIN}} NOTICE \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_375.RULE b/src/licensedcode/data/rules/public-domain_375.RULE index 6b29c8532f..130a3c0133 100644 --- a/src/licensedcode/data/rules/public-domain_375.RULE +++ b/src/licensedcode/data/rules/public-domain_375.RULE @@ -7,4 +7,4 @@ ignorable_authors: - Mark Adler --- -originally written by Mark Adler who submitted it as public domain code. \ No newline at end of file +originally written by Mark Adler who submitted it as {{public domain}} code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_376.RULE b/src/licensedcode/data/rules/public-domain_376.RULE index 3c9f105490..4d3a30a657 100644 --- a/src/licensedcode/data/rules/public-domain_376.RULE +++ b/src/licensedcode/data/rules/public-domain_376.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -package was explicitly placed in the public domain \ No newline at end of file +package was explicitly placed {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_377.RULE b/src/licensedcode/data/rules/public-domain_377.RULE index 5976fd1bbc..6b4aae3686 100644 --- a/src/licensedcode/data/rules/public-domain_377.RULE +++ b/src/licensedcode/data/rules/public-domain_377.RULE @@ -4,14 +4,14 @@ is_license_text: yes relevance: 100 --- -The package was explicitly placed in the public domain: +The package was explicitly placed {{in the public domain}}: The lexicon project is complete and has - been place into the public domain. Use, sell, + been place into the {{public domain}}. Use, sell, rework, excerpt and use in any way on any platform. Placing this material on internal or public servers is also encouraged. The compiler is not aware of any export restrictions so freely distribute world-wide. - You can verify the public domain status by contacting \ No newline at end of file + You can verify the {{public domain}} status by contacting \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_378.RULE b/src/licensedcode/data/rules/public-domain_378.RULE index 307592b81e..fce6eccf99 100644 --- a/src/licensedcode/data/rules/public-domain_378.RULE +++ b/src/licensedcode/data/rules/public-domain_378.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -is also in the public domain. \ No newline at end of file +is also {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_379.RULE b/src/licensedcode/data/rules/public-domain_379.RULE index 439dae067e..ca5189dbfb 100644 --- a/src/licensedcode/data/rules/public-domain_379.RULE +++ b/src/licensedcode/data/rules/public-domain_379.RULE @@ -4,7 +4,7 @@ is_license_text: yes --- The author or authors of this code dedicate any and all copyright interest -in this code to the public domain. We make this dedication for the benefit +in this code to the {{public domain}}. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this code under copyright law. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_38.RULE b/src/licensedcode/data/rules/public-domain_38.RULE index b6f16ed4b9..816afcbb38 100644 --- a/src/licensedcode/data/rules/public-domain_38.RULE +++ b/src/licensedcode/data/rules/public-domain_38.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -is public domain \ No newline at end of file +is {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_380.RULE b/src/licensedcode/data/rules/public-domain_380.RULE index 8a72fc4cda..1388da7386 100644 --- a/src/licensedcode/data/rules/public-domain_380.RULE +++ b/src/licensedcode/data/rules/public-domain_380.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -SQLite is in the Public Domain \ No newline at end of file +SQLite is {{in the Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_381.RULE b/src/licensedcode/data/rules/public-domain_381.RULE index 46f474615f..f8c8c88c49 100644 --- a/src/licensedcode/data/rules/public-domain_381.RULE +++ b/src/licensedcode/data/rules/public-domain_381.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -public domain dedications \ No newline at end of file +{{public domain}} dedications \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_382.RULE b/src/licensedcode/data/rules/public-domain_382.RULE index 9fcd7c5363..6578195892 100644 --- a/src/licensedcode/data/rules/public-domain_382.RULE +++ b/src/licensedcode/data/rules/public-domain_382.RULE @@ -3,8 +3,8 @@ license_expression: public-domain is_license_text: yes --- -All of the code and documentation in SQLite has been dedicated to the public domain by the authors. All code authors, and -representatives of the companies they work for, have signed affidavits dedicating their contributions to the public domain and +All of the code and documentation in SQLite has been dedicated to the {{public domain}} by the authors. All code authors, and +representatives of the companies they work for, have signed affidavits dedicating their contributions to the {{public domain}} and originals of those signed affidavits are stored in a firesafe at the main offices of Hwaci. Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original SQLite code, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_383.RULE b/src/licensedcode/data/rules/public-domain_383.RULE index 81e4e01abf..8352cf0150 100644 --- a/src/licensedcode/data/rules/public-domain_383.RULE +++ b/src/licensedcode/data/rules/public-domain_383.RULE @@ -7,4 +7,4 @@ This file, unlike the rest of Ghostscript, consists entirely of information copied from public sources. It therefore is not covered by the Ghostscript copyright or license: - it is in the public domain. \ No newline at end of file + it is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_384.RULE b/src/licensedcode/data/rules/public-domain_384.RULE index 38c5941531..806c0d19f6 100644 --- a/src/licensedcode/data/rules/public-domain_384.RULE +++ b/src/licensedcode/data/rules/public-domain_384.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -NO COPYRIGHT - THIS IS 100% IN THE PUBLIC DOMAIN \ No newline at end of file +NO COPYRIGHT - THIS IS 100% {{IN THE PUBLIC DOMAIN}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_385.RULE b/src/licensedcode/data/rules/public-domain_385.RULE index f5fb8d250f..0b5c75758f 100644 --- a/src/licensedcode/data/rules/public-domain_385.RULE +++ b/src/licensedcode/data/rules/public-domain_385.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -sources are from public-domain or other freely available sources \ No newline at end of file +sources are from {{public-domain}} or other freely available sources \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_4.RULE b/src/licensedcode/data/rules/public-domain_4.RULE index 46cfc5d948..ce2256e56e 100644 --- a/src/licensedcode/data/rules/public-domain_4.RULE +++ b/src/licensedcode/data/rules/public-domain_4.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -is public domain. As should all quality software be. \ No newline at end of file +is {{public domain}}. As should all quality software be. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_404.RULE b/src/licensedcode/data/rules/public-domain_404.RULE index f77a581e9d..794c57f6ae 100644 --- a/src/licensedcode/data/rules/public-domain_404.RULE +++ b/src/licensedcode/data/rules/public-domain_404.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: none (public domain) \ No newline at end of file +License: none ({{public domain}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_41.RULE b/src/licensedcode/data/rules/public-domain_41.RULE index f7c310da94..e3fd4f2767 100644 --- a/src/licensedcode/data/rules/public-domain_41.RULE +++ b/src/licensedcode/data/rules/public-domain_41.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This file is in the public domain, so clarified as of \ No newline at end of file +This file is {{in the public domain}}, so clarified as of \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_411.RULE b/src/licensedcode/data/rules/public-domain_411.RULE index 88ca88d54d..33f54d58a4 100644 --- a/src/licensedcode/data/rules/public-domain_411.RULE +++ b/src/licensedcode/data/rules/public-domain_411.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This source file is placed in the public domain. \ No newline at end of file +This source file is placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_412.RULE b/src/licensedcode/data/rules/public-domain_412.RULE index 803b98efae..2832497e49 100644 --- a/src/licensedcode/data/rules/public-domain_412.RULE +++ b/src/licensedcode/data/rules/public-domain_412.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -I hereby release it, on a strictly "as is" basis, to the public domain. \ No newline at end of file +I hereby release it, on a strictly "as is" basis, to the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_413.RULE b/src/licensedcode/data/rules/public-domain_413.RULE index c2f7fe4403..f2cc0e3e7a 100644 --- a/src/licensedcode/data/rules/public-domain_413.RULE +++ b/src/licensedcode/data/rules/public-domain_413.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -License This is a Public Domain Java class \ No newline at end of file +License This is a {{Public Domain}} Java class \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_414.RULE b/src/licensedcode/data/rules/public-domain_414.RULE index ecee162731..fd0d584a50 100644 --- a/src/licensedcode/data/rules/public-domain_414.RULE +++ b/src/licensedcode/data/rules/public-domain_414.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This component is in the public domain. \ No newline at end of file +This component is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_415.RULE b/src/licensedcode/data/rules/public-domain_415.RULE index 5dca69e80a..969c959495 100644 --- a/src/licensedcode/data/rules/public-domain_415.RULE +++ b/src/licensedcode/data/rules/public-domain_415.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This file is Public Domain \ No newline at end of file +This file is {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_416.RULE b/src/licensedcode/data/rules/public-domain_416.RULE index 104edbf514..0b8cca239f 100644 --- a/src/licensedcode/data/rules/public-domain_416.RULE +++ b/src/licensedcode/data/rules/public-domain_416.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This file may incorporate work that is in the public domain \ No newline at end of file +This file may incorporate work that is {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_417.RULE b/src/licensedcode/data/rules/public-domain_417.RULE index c13e13ced1..06dfb71049 100644 --- a/src/licensedcode/data/rules/public-domain_417.RULE +++ b/src/licensedcode/data/rules/public-domain_417.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -open source software. Its code is in the public domain. See +open source software. Its code is {{in the public domain}}. See the ``LICENSE`` file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_418.RULE b/src/licensedcode/data/rules/public-domain_418.RULE index 2039760522..31988216b1 100644 --- a/src/licensedcode/data/rules/public-domain_418.RULE +++ b/src/licensedcode/data/rules/public-domain_418.RULE @@ -6,5 +6,5 @@ referenced_filenames: - LICENSE --- -Its code is in the public domain. See +Its code is {{in the public domain}}. See the ``LICENSE`` file for more details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_419.RULE b/src/licensedcode/data/rules/public-domain_419.RULE index 22fdfd5c0c..d3057e65d3 100644 --- a/src/licensedcode/data/rules/public-domain_419.RULE +++ b/src/licensedcode/data/rules/public-domain_419.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Its code is in the public domain. \ No newline at end of file +Its code is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_420.RULE b/src/licensedcode/data/rules/public-domain_420.RULE index e031ebd767..14f9e407e6 100644 --- a/src/licensedcode/data/rules/public-domain_420.RULE +++ b/src/licensedcode/data/rules/public-domain_420.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -code is in the public domain. \ No newline at end of file +code is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_421.RULE b/src/licensedcode/data/rules/public-domain_421.RULE index 7c0877063e..910c76dfae 100644 --- a/src/licensedcode/data/rules/public-domain_421.RULE +++ b/src/licensedcode/data/rules/public-domain_421.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Seen in Sqlite --- -The "printf" code that follows dates from the 1980's. It is in the public domain. \ No newline at end of file +The "printf" code that follows dates from the 1980's. It is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_423.RULE b/src/licensedcode/data/rules/public-domain_423.RULE index 8146217672..9218f6e610 100644 --- a/src/licensedcode/data/rules/public-domain_423.RULE +++ b/src/licensedcode/data/rules/public-domain_423.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -"Please feel free to use the for any purposes as a work in the public domain." \ No newline at end of file +"Please feel free to use the for any purposes as a work {{in the public domain}}." \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_424.RULE b/src/licensedcode/data/rules/public-domain_424.RULE index e25e7f8f70..62b74cc844 100644 --- a/src/licensedcode/data/rules/public-domain_424.RULE +++ b/src/licensedcode/data/rules/public-domain_424.RULE @@ -3,6 +3,6 @@ license_expression: public-domain is_license_notice: yes --- -released to the public domain. Use, modify, and +released to the {{public domain}}. Use, modify, and redistribute this code without permission or acknowledgement in any way you wish. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_425.RULE b/src/licensedcode/data/rules/public-domain_425.RULE index 6b9d1fe4ca..c31159a73a 100644 --- a/src/licensedcode/data/rules/public-domain_425.RULE +++ b/src/licensedcode/data/rules/public-domain_425.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -reference implementation (in the public domain) \ No newline at end of file +reference implementation ({{in the public domain}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_426.RULE b/src/licensedcode/data/rules/public-domain_426.RULE index cee142a0ac..de11f2a0f8 100644 --- a/src/licensedcode/data/rules/public-domain_426.RULE +++ b/src/licensedcode/data/rules/public-domain_426.RULE @@ -6,4 +6,4 @@ relevance: 100 minimum_coverage: 100 --- -Public domain, written by \ No newline at end of file +{{Public domain}}, written by \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_427.RULE b/src/licensedcode/data/rules/public-domain_427.RULE index 637f20ad61..23f21612a1 100644 --- a/src/licensedcode/data/rules/public-domain_427.RULE +++ b/src/licensedcode/data/rules/public-domain_427.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -binary wouldn't actually be in the public domain in its entirety \ No newline at end of file +binary wouldn't actually be {{in the public domain}} in its entirety \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_428.RULE b/src/licensedcode/data/rules/public-domain_428.RULE index 996053543a..122b779b08 100644 --- a/src/licensedcode/data/rules/public-domain_428.RULE +++ b/src/licensedcode/data/rules/public-domain_428.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -documentation files in other directories are in the public domain. \ No newline at end of file +documentation files in other directories are {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_429.RULE b/src/licensedcode/data/rules/public-domain_429.RULE index f93a4ee2af..830cfc0bcc 100644 --- a/src/licensedcode/data/rules/public-domain_429.RULE +++ b/src/licensedcode/data/rules/public-domain_429.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Translated messages are in the public domain. \ No newline at end of file +Translated messages are {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_430.RULE b/src/licensedcode/data/rules/public-domain_430.RULE index d12fdd4b52..36ea06afc0 100644 --- a/src/licensedcode/data/rules/public-domain_430.RULE +++ b/src/licensedcode/data/rules/public-domain_430.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Most of the source has been put into the public domain \ No newline at end of file +Most of the source has been put into the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_431.RULE b/src/licensedcode/data/rules/public-domain_431.RULE index 01dedc0b29..ac87d34f3b 100644 --- a/src/licensedcode/data/rules/public-domain_431.RULE +++ b/src/licensedcode/data/rules/public-domain_431.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -command line tools are in the public domain \ No newline at end of file +command line tools are {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_432.RULE b/src/licensedcode/data/rules/public-domain_432.RULE index d027271ccb..acfbb1bd08 100644 --- a/src/licensedcode/data/rules/public-domain_432.RULE +++ b/src/licensedcode/data/rules/public-domain_432.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Dedicated to the Public Domain. You are free to use or modify. \ No newline at end of file +Dedicated to the {{Public Domain}}. You are free to use or modify. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_433.RULE b/src/licensedcode/data/rules/public-domain_433.RULE index b76325c767..1fc5eb1f2f 100644 --- a/src/licensedcode/data/rules/public-domain_433.RULE +++ b/src/licensedcode/data/rules/public-domain_433.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This stylesheet has been placed in the public domain. \ No newline at end of file +This stylesheet has been placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_434.RULE b/src/licensedcode/data/rules/public-domain_434.RULE index 02d54f5baa..573ad73f6b 100644 --- a/src/licensedcode/data/rules/public-domain_434.RULE +++ b/src/licensedcode/data/rules/public-domain_434.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Please consider my contributions to this wiki as public domain. \ No newline at end of file +Please consider my contributions to this wiki as {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_435.RULE b/src/licensedcode/data/rules/public-domain_435.RULE index b6d23ac1a5..26292e8c74 100644 --- a/src/licensedcode/data/rules/public-domain_435.RULE +++ b/src/licensedcode/data/rules/public-domain_435.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -placing their works into the public domain \ No newline at end of file +placing their works into the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_436.RULE b/src/licensedcode/data/rules/public-domain_436.RULE index 2d9cd9d8b0..2165902c7f 100644 --- a/src/licensedcode/data/rules/public-domain_436.RULE +++ b/src/licensedcode/data/rules/public-domain_436.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -into the public domain \ No newline at end of file +into the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_437.RULE b/src/licensedcode/data/rules/public-domain_437.RULE index aeef31e8c5..610791b3ac 100644 --- a/src/licensedcode/data/rules/public-domain_437.RULE +++ b/src/licensedcode/data/rules/public-domain_437.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -All individual files in this compilation are placed in the public domain \ No newline at end of file +All individual files in this compilation are placed {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_438.RULE b/src/licensedcode/data/rules/public-domain_438.RULE index af0a8218db..d15fbb4aa7 100644 --- a/src/licensedcode/data/rules/public-domain_438.RULE +++ b/src/licensedcode/data/rules/public-domain_438.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Public Domain License \ No newline at end of file +{{Public Domain}} License \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_439.RULE b/src/licensedcode/data/rules/public-domain_439.RULE index 7d8966d0a3..6cc48e9227 100644 --- a/src/licensedcode/data/rules/public-domain_439.RULE +++ b/src/licensedcode/data/rules/public-domain_439.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -this package itself is purely public domain. \ No newline at end of file +this package itself is purely {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_44.RULE b/src/licensedcode/data/rules/public-domain_44.RULE index 67a1cebaf1..f3658d430f 100644 --- a/src/licensedcode/data/rules/public-domain_44.RULE +++ b/src/licensedcode/data/rules/public-domain_44.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This document is in the public domain. \ No newline at end of file +This document is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_440.RULE b/src/licensedcode/data/rules/public-domain_440.RULE index 4ceb6bf56f..be306932b2 100644 --- a/src/licensedcode/data/rules/public-domain_440.RULE +++ b/src/licensedcode/data/rules/public-domain_440.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Public Domain -- Use and Enjoy! \ No newline at end of file +{{Public Domain}} -- Use and Enjoy! \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_442.RULE b/src/licensedcode/data/rules/public-domain_442.RULE index 205c207de7..64e9c9fca9 100644 --- a/src/licensedcode/data/rules/public-domain_442.RULE +++ b/src/licensedcode/data/rules/public-domain_442.RULE @@ -4,4 +4,4 @@ is_license_text: yes notes: See in https://fastcrypto.org/ --- -All implementations are in the public-domain and can be used for any purpose whatsoever. All I ask is that you send to me any bugs or suggestions you might come across. \ No newline at end of file +All implementations are {{in the public-domain}} and can be used for any purpose whatsoever. All I ask is that you send to me any bugs or suggestions you might come across. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_443.RULE b/src/licensedcode/data/rules/public-domain_443.RULE index 3bb32c4fdd..ca3f93e31e 100644 --- a/src/licensedcode/data/rules/public-domain_443.RULE +++ b/src/licensedcode/data/rules/public-domain_443.RULE @@ -4,6 +4,6 @@ is_license_text: yes notes: https://github.com/libigl/libigl/blob/21acee15fe4451e828b52bedcdba53b79d846376/include/igl/tinyply.h --- -* This software is in the public domain. Where that dedication is not +* This software is {{in the public domain}}. Where that dedication is not * recognized, you are granted a perpetual, irrevocable license to copy, * distribute, and modify this file as you see fit. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_444.RULE b/src/licensedcode/data/rules/public-domain_444.RULE index a4a7ff13e9..1e444b9b98 100644 --- a/src/licensedcode/data/rules/public-domain_444.RULE +++ b/src/licensedcode/data/rules/public-domain_444.RULE @@ -5,6 +5,6 @@ relevance: 100 notes: https://github.com/libigl/libigl/blob/21acee15fe4451e828b52bedcdba53b79d846376/include/igl/tinyply.h --- -public domain implementation +{{public domain}} implementation -this file is listed as "Public Domain" \ No newline at end of file +this file is listed as "{{Public Domain}}" \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_445.RULE b/src/licensedcode/data/rules/public-domain_445.RULE index 8f20750ac6..a9280668e5 100644 --- a/src/licensedcode/data/rules/public-domain_445.RULE +++ b/src/licensedcode/data/rules/public-domain_445.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -donated to public domain. \ No newline at end of file +donated to {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_446.RULE b/src/licensedcode/data/rules/public-domain_446.RULE index 4fcac28821..08c3d07ef7 100644 --- a/src/licensedcode/data/rules/public-domain_446.RULE +++ b/src/licensedcode/data/rules/public-domain_446.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Public domain works This section lists files and packages that are in the public domain. \ No newline at end of file +{{Public domain}} works This section lists files and packages that are {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_447.RULE b/src/licensedcode/data/rules/public-domain_447.RULE index 3fade44c2d..89994b72d8 100644 --- a/src/licensedcode/data/rules/public-domain_447.RULE +++ b/src/licensedcode/data/rules/public-domain_447.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Public domain works \ No newline at end of file +{{Public domain}} works \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_448.RULE b/src/licensedcode/data/rules/public-domain_448.RULE index d8e868776a..8cb54696d2 100644 --- a/src/licensedcode/data/rules/public-domain_448.RULE +++ b/src/licensedcode/data/rules/public-domain_448.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Creative Commons Public Domain Dedication \ No newline at end of file +Creative Commons {{Public Domain}} Dedication \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_449.RULE b/src/licensedcode/data/rules/public-domain_449.RULE index f35358c679..e6ba560268 100644 --- a/src/licensedcode/data/rules/public-domain_449.RULE +++ b/src/licensedcode/data/rules/public-domain_449.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed in the Public Domain \ No newline at end of file +distributed {{in the Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_45.RULE b/src/licensedcode/data/rules/public-domain_45.RULE index 3921e20b32..6d45ec8297 100644 --- a/src/licensedcode/data/rules/public-domain_45.RULE +++ b/src/licensedcode/data/rules/public-domain_45.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -placed in the Public Domain. \ No newline at end of file +placed {{in the Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_450.RULE b/src/licensedcode/data/rules/public-domain_450.RULE index c9c376995c..c01ac3e3f8 100644 --- a/src/licensedcode/data/rules/public-domain_450.RULE +++ b/src/licensedcode/data/rules/public-domain_450.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Released in public domain \ No newline at end of file +Released {{in public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_451.RULE b/src/licensedcode/data/rules/public-domain_451.RULE index aa5c1f7dc9..39c4716077 100644 --- a/src/licensedcode/data/rules/public-domain_451.RULE +++ b/src/licensedcode/data/rules/public-domain_451.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: See https://github.com/NationalSecurityAgency/ghidra for various oddities such as https://github.com/NationalSecurityAgency/ghidra/blob/e43ef9baaf3c21efb5ea20c3a4d3314d64fdb5cf/GPL/GnuDisassembler/certification.manifest#L3 --- -##MODULE IP: Public Domain \ No newline at end of file +##MODULE IP: {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_452.RULE b/src/licensedcode/data/rules/public-domain_452.RULE index e4ced5c1bb..c7587c9f18 100644 --- a/src/licensedcode/data/rules/public-domain_452.RULE +++ b/src/licensedcode/data/rules/public-domain_452.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -These files are "public domain". \ No newline at end of file +These files are "{{public domain}}". \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_453.RULE b/src/licensedcode/data/rules/public-domain_453.RULE index b0469ce279..b49a2ba497 100644 --- a/src/licensedcode/data/rules/public-domain_453.RULE +++ b/src/licensedcode/data/rules/public-domain_453.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -are public domain \ No newline at end of file +are {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_454.RULE b/src/licensedcode/data/rules/public-domain_454.RULE index cb305900e3..5a69fa0796 100644 --- a/src/licensedcode/data/rules/public-domain_454.RULE +++ b/src/licensedcode/data/rules/public-domain_454.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp --- -The code is considered to be in the public domain \ No newline at end of file +The code is considered to be {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_455.RULE b/src/licensedcode/data/rules/public-domain_455.RULE index cac09f8d76..b35bdecad2 100644 --- a/src/licensedcode/data/rules/public-domain_455.RULE +++ b/src/licensedcode/data/rules/public-domain_455.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28cd188ad8e6cbc/licence_info.cpp --- -This code is considered to be in the public domain \ No newline at end of file +This code is considered to be {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_456.RULE b/src/licensedcode/data/rules/public-domain_456.RULE index 185f906786..9d1d90bd5c 100644 --- a/src/licensedcode/data/rules/public-domain_456.RULE +++ b/src/licensedcode/data/rules/public-domain_456.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -These values are from the public domain \ No newline at end of file +These values are from the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_46.RULE b/src/licensedcode/data/rules/public-domain_46.RULE index 620438284e..04f043e2a5 100644 --- a/src/licensedcode/data/rules/public-domain_46.RULE +++ b/src/licensedcode/data/rules/public-domain_46.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -originally based on the public domain implementation \ No newline at end of file +originally based on the {{public domain}} implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_460.RULE b/src/licensedcode/data/rules/public-domain_460.RULE index 64e148d507..e6f9541d8e 100644 --- a/src/licensedcode/data/rules/public-domain_460.RULE +++ b/src/licensedcode/data/rules/public-domain_460.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: seen in FFmpeg compat/getopt.c --- -public domain AT&T getopt source \ No newline at end of file +{{public domain}} AT&T getopt source \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_461.RULE b/src/licensedcode/data/rules/public-domain_461.RULE index a4105c61b0..81b9d0ae38 100644 --- a/src/licensedcode/data/rules/public-domain_461.RULE +++ b/src/licensedcode/data/rules/public-domain_461.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -based on public domain SHA-1 code \ No newline at end of file +based on {{public domain}} SHA-1 code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_462.RULE b/src/licensedcode/data/rules/public-domain_462.RULE index baa51f8788..5948eb0cb1 100644 --- a/src/licensedcode/data/rules/public-domain_462.RULE +++ b/src/licensedcode/data/rules/public-domain_462.RULE @@ -4,4 +4,4 @@ is_license_text: yes notes: http://www.mattyhex.net/CMR/?id=license --- -it's public domain, so you can freely use it how you want, you can freely redistribute it, and you can freely modify it. \ No newline at end of file +it's {{public domain}}, so you can freely use it how you want, you can freely redistribute it, and you can freely modify it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_463.RULE b/src/licensedcode/data/rules/public-domain_463.RULE index 8dedcc2e95..08f66afd34 100644 --- a/src/licensedcode/data/rules/public-domain_463.RULE +++ b/src/licensedcode/data/rules/public-domain_463.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: https://github.com/source-foundry/Hack/blob/master/LICENSE.md --- -project was committed to the public domain. \ No newline at end of file +project was committed to the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_464.RULE b/src/licensedcode/data/rules/public-domain_464.RULE index c2f0bad148..20a34f3648 100644 --- a/src/licensedcode/data/rules/public-domain_464.RULE +++ b/src/licensedcode/data/rules/public-domain_464.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -explictly placed these files in the public domain. \ No newline at end of file +explictly placed these files {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_465.RULE b/src/licensedcode/data/rules/public-domain_465.RULE index a0e6914e61..5de7497bd4 100644 --- a/src/licensedcode/data/rules/public-domain_465.RULE +++ b/src/licensedcode/data/rules/public-domain_465.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -placed these files in the public domain. \ No newline at end of file +placed these files {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_466.RULE b/src/licensedcode/data/rules/public-domain_466.RULE index ac992b5ba2..11f1fcb3b4 100644 --- a/src/licensedcode/data/rules/public-domain_466.RULE +++ b/src/licensedcode/data/rules/public-domain_466.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -dedicated all copyright and related and neighboring rights to ForgeFed to the public domain worldwide. \ No newline at end of file +dedicated all copyright and related and neighboring rights to ForgeFed to the {{public domain}} worldwide. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_467.RULE b/src/licensedcode/data/rules/public-domain_467.RULE index 0b52f67583..ccdfa6ca72 100644 --- a/src/licensedcode/data/rules/public-domain_467.RULE +++ b/src/licensedcode/data/rules/public-domain_467.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -These files are all under public domain. \ No newline at end of file +These files are all under {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_468.RULE b/src/licensedcode/data/rules/public-domain_468.RULE index 0fd5f8fe60..8319d7ad91 100644 --- a/src/licensedcode/data/rules/public-domain_468.RULE +++ b/src/licensedcode/data/rules/public-domain_468.RULE @@ -4,7 +4,7 @@ is_license_text: yes notes: See in https://github.com/yannrouillard/opencsw-pkg/blob/89d7f41fce3cd2f09b6dc7b6e35d946283ee74b7/cpan/Barcode-Code128/trunk/files/COPYING#L2 --- -This module is placed into the public domain. You are free to +This module is placed into the {{public domain}}. You are free to use, modify, or redistribute this module in any way for commercial or other uses. My only request is that if you change it, please submit copies of your changed code (or diffs) so that I can diff --git a/src/licensedcode/data/rules/public-domain_469.RULE b/src/licensedcode/data/rules/public-domain_469.RULE index 9cdf2e5324..f4809dc603 100644 --- a/src/licensedcode/data/rules/public-domain_469.RULE +++ b/src/licensedcode/data/rules/public-domain_469.RULE @@ -4,7 +4,7 @@ is_license_text: yes notes: See in https://github.com/solgenomics/Barcode-Code128/blob/6bf6b3e0ff4e6e75f1226ad19249716e1897c57d/README#L50 --- -TERMS: This module is placed into the public domain. You are free to +TERMS: This module is placed into the {{public domain}}. You are free to use, modify, or redistribute this module in any way for commercial or other uses. My only request is that if you change it, please submit copies of your changed code (or diffs) so that I can diff --git a/src/licensedcode/data/rules/public-domain_47.RULE b/src/licensedcode/data/rules/public-domain_47.RULE index af8c32a596..a287ca4b5e 100644 --- a/src/licensedcode/data/rules/public-domain_47.RULE +++ b/src/licensedcode/data/rules/public-domain_47.RULE @@ -3,5 +3,5 @@ license_expression: public-domain is_license_text: yes --- -This file has been put into the public domain. +This file has been put into the {{public domain}}. You can do whatever you want with this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_470.RULE b/src/licensedcode/data/rules/public-domain_470.RULE index fe09f57991..bf1aff17ca 100644 --- a/src/licensedcode/data/rules/public-domain_470.RULE +++ b/src/licensedcode/data/rules/public-domain_470.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is in the public domain - do whatever you want with it \ No newline at end of file +This code is {{in the public domain}} - do whatever you want with it \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_471.RULE b/src/licensedcode/data/rules/public-domain_471.RULE index 6b5b7a480a..076980dd65 100644 --- a/src/licensedcode/data/rules/public-domain_471.RULE +++ b/src/licensedcode/data/rules/public-domain_471.RULE @@ -5,4 +5,4 @@ notes: Seen in https://github.com/boostorg/bcp/blob/772ec6a9bd7395193ce300aeb28c --- The code has no license terms, it has been explicity placed in the n -public domain by it's author(s). \ No newline at end of file +{{public domain}} by it's author(s). \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_472.RULE b/src/licensedcode/data/rules/public-domain_472.RULE index f0d70f7fea..a649f3aa80 100644 --- a/src/licensedcode/data/rules/public-domain_472.RULE +++ b/src/licensedcode/data/rules/public-domain_472.RULE @@ -3,5 +3,5 @@ license_expression: public-domain is_license_text: yes --- -The code has no license terms, it has been explicity placed in the -public domain by it's author(s) \ No newline at end of file +The code has no license terms, it has been explicity placed {{in the +public domain}} by it's author(s) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_473.RULE b/src/licensedcode/data/rules/public-domain_473.RULE index c9925a9ded..265d9340a9 100644 --- a/src/licensedcode/data/rules/public-domain_473.RULE +++ b/src/licensedcode/data/rules/public-domain_473.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -docs are in the public domain \ No newline at end of file +docs are {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_474.RULE b/src/licensedcode/data/rules/public-domain_474.RULE index 850cc31aa8..761e9aee1d 100644 --- a/src/licensedcode/data/rules/public-domain_474.RULE +++ b/src/licensedcode/data/rules/public-domain_474.RULE @@ -8,5 +8,5 @@ referenced_filenames: ANTLR 2 License -Antlr2 is released in the public domain. +Antlr2 is released {{in the public domain}}. See licenses/antlr2-license.txt for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_475.RULE b/src/licensedcode/data/rules/public-domain_475.RULE index a99c1ce120..c4f8b48cd8 100644 --- a/src/licensedcode/data/rules/public-domain_475.RULE +++ b/src/licensedcode/data/rules/public-domain_475.RULE @@ -5,7 +5,7 @@ is_license_text: yes ANTLR 2 License -We reserve no legal rights to the ANTLR--it is fully in the public domain. An individual or company may do +We reserve no legal rights to the ANTLR--it is fully {{in the public domain}}. An individual or company may do whatever they wish with source code distributed with ANTLR or the code generated by ANTLR, including the incorporation of ANTLR, or its output, into commerical software. @@ -17,7 +17,7 @@ please mention that you developed it using ANTLR. In addition, we ask that the h source code. As long as these guidelines are kept, we expect to continue enhancing this system and expect to make other tools available as they are completed. -In countries where the Public Domain status of the work may not be valid, the author grants a copyright +In countries where the {{Public Domain}} status of the work may not be valid, the author grants a copyright licence to the general public to deal in the work without restriction and permission to sublicence derivates under the terms of any (OSI approved) Open Source licence. diff --git a/src/licensedcode/data/rules/public-domain_476.RULE b/src/licensedcode/data/rules/public-domain_476.RULE index 1308e8381e..ffc1f82ce1 100644 --- a/src/licensedcode/data/rules/public-domain_476.RULE +++ b/src/licensedcode/data/rules/public-domain_476.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -released in the public domain. +released {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_477.RULE b/src/licensedcode/data/rules/public-domain_477.RULE index 77e34e8adc..7a4659420a 100644 --- a/src/licensedcode/data/rules/public-domain_477.RULE +++ b/src/licensedcode/data/rules/public-domain_477.RULE @@ -5,18 +5,18 @@ ignorable_urls: - http://en.wikipedia.org/wiki/Template:PD-self --- -released in the public domain. +released {{in the public domain}}. Original licensing statement of the creator -Here are my dabblings in font design. I have placed them in the Public Domain. +Here are my dabblings in font design. I have placed them {{in the Public Domain}}. This is all 100% my own work. Usage is totally unrestricted. If you want to make derivative works for any purpose, please go ahead. I welcome comments & constructive criticism. Put another way, a la PD-self (http://en.wikipedia.org/wiki/Template:PD-self): - I, the copyright holder of this work, hereby release it into the public - domain. This applies worldwide. + I, the copyright holder of this work, hereby release it into the {{public + domain}}. This applies worldwide. In case this is not legally possible, diff --git a/src/licensedcode/data/rules/public-domain_478.RULE b/src/licensedcode/data/rules/public-domain_478.RULE index 4e0572297d..1c10763431 100644 --- a/src/licensedcode/data/rules/public-domain_478.RULE +++ b/src/licensedcode/data/rules/public-domain_478.RULE @@ -6,15 +6,15 @@ ignorable_urls: --- Original licensing statement of the creator -Here are my dabblings in font design. I have placed them in the Public Domain. +Here are my dabblings in font design. I have placed them {{in the Public Domain}}. This is all 100% my own work. Usage is totally unrestricted. If you want to make derivative works for any purpose, please go ahead. I welcome comments & constructive criticism. Put another way, a la PD-self (http://en.wikipedia.org/wiki/Template:PD-self): - I, the copyright holder of this work, hereby release it into the public - domain. This applies worldwide. + I, the copyright holder of this work, hereby release it into the {{public + domain}}. This applies worldwide. In case this is not legally possible, diff --git a/src/licensedcode/data/rules/public-domain_479.RULE b/src/licensedcode/data/rules/public-domain_479.RULE index b7df287e01..9235299dec 100644 --- a/src/licensedcode/data/rules/public-domain_479.RULE +++ b/src/licensedcode/data/rules/public-domain_479.RULE @@ -5,4 +5,4 @@ relevance: 100 --- - Public Domain \ No newline at end of file + {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_48.RULE b/src/licensedcode/data/rules/public-domain_48.RULE index feb934eee7..9328558876 100644 --- a/src/licensedcode/data/rules/public-domain_48.RULE +++ b/src/licensedcode/data/rules/public-domain_48.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This is in the public domain. \ No newline at end of file +This is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_480.RULE b/src/licensedcode/data/rules/public-domain_480.RULE index c9902a3d24..55ebb30fee 100644 --- a/src/licensedcode/data/rules/public-domain_480.RULE +++ b/src/licensedcode/data/rules/public-domain_480.RULE @@ -5,5 +5,5 @@ relevance: 100 --- - Public Domain + {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_481.RULE b/src/licensedcode/data/rules/public-domain_481.RULE index e378dc9b80..5ce532acb9 100644 --- a/src/licensedcode/data/rules/public-domain_481.RULE +++ b/src/licensedcode/data/rules/public-domain_481.RULE @@ -5,4 +5,4 @@ relevance: 90 notes: seen in numbers-1.7.4-sources.jar --- -// public domain GCD code \ No newline at end of file +// {{public domain}} GCD code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_483.RULE b/src/licensedcode/data/rules/public-domain_483.RULE index a00885a384..72e6e077db 100644 --- a/src/licensedcode/data/rules/public-domain_483.RULE +++ b/src/licensedcode/data/rules/public-domain_483.RULE @@ -5,5 +5,5 @@ minimum_coverage: 90 --- Rather it is a pre-existing and regularly updated work -that is in the public domain, and is intended to remain in the public -domain. \ No newline at end of file +that is {{in the public domain}}, and is intended to remain {{in the public +domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_486.RULE b/src/licensedcode/data/rules/public-domain_486.RULE index 9ab56b7146..c3e3eae490 100644 --- a/src/licensedcode/data/rules/public-domain_486.RULE +++ b/src/licensedcode/data/rules/public-domain_486.RULE @@ -5,5 +5,5 @@ relevance: 100 notes: https://github.com/tbrowder/PostScript-File/blob/413f045bcef85f398a6d160fed7fb5cfb11fd441/examples/minimal.raku#L3 --- -This example is hereby placed in the public domain. +This example is hereby placed {{in the public domain}}. You may copy from it freely. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_487.RULE b/src/licensedcode/data/rules/public-domain_487.RULE index e9c2182e0b..4e4f1e8642 100644 --- a/src/licensedcode/data/rules/public-domain_487.RULE +++ b/src/licensedcode/data/rules/public-domain_487.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is in the public domain and is distributed without warranty of any kind. \ No newline at end of file +This code is {{in the public domain}} and is distributed without warranty of any kind. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_488.RULE b/src/licensedcode/data/rules/public-domain_488.RULE index 7ea7a32974..e4db35d800 100644 --- a/src/licensedcode/data/rules/public-domain_488.RULE +++ b/src/licensedcode/data/rules/public-domain_488.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is in the public domain and is distributed without warranty \ No newline at end of file +This code is {{in the public domain}} and is distributed without warranty \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_489.RULE b/src/licensedcode/data/rules/public-domain_489.RULE index 0415210824..38fb43475a 100644 --- a/src/licensedcode/data/rules/public-domain_489.RULE +++ b/src/licensedcode/data/rules/public-domain_489.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -in the public domain and is distributed without warranty of any kind. \ No newline at end of file +{{in the public domain}} and is distributed without warranty of any kind. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_49.RULE b/src/licensedcode/data/rules/public-domain_49.RULE index 14138b626e..d38de30d36 100644 --- a/src/licensedcode/data/rules/public-domain_49.RULE +++ b/src/licensedcode/data/rules/public-domain_49.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -No rights reserved, released to the public domain. \ No newline at end of file +No rights reserved, released to the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_490.RULE b/src/licensedcode/data/rules/public-domain_490.RULE index cb3cfd5754..d2eac5457c 100644 --- a/src/licensedcode/data/rules/public-domain_490.RULE +++ b/src/licensedcode/data/rules/public-domain_490.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -The files contain no AT&T code and are in the public domain. \ No newline at end of file +The files contain no AT&T code and are {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_491.RULE b/src/licensedcode/data/rules/public-domain_491.RULE index 468a5ebd23..b89c0f64fc 100644 --- a/src/licensedcode/data/rules/public-domain_491.RULE +++ b/src/licensedcode/data/rules/public-domain_491.RULE @@ -3,4 +3,4 @@ license_expression: public-domain is_license_text: yes --- -This file is in the public domain, so clarified as of 2009-05-17 by Arthur David Olson. \ No newline at end of file +This file is {{in the public domain}}, so clarified as of 2009-05-17 by Arthur David Olson. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_492.RULE b/src/licensedcode/data/rules/public-domain_492.RULE index 4876c7e0ed..39170eedb5 100644 --- a/src/licensedcode/data/rules/public-domain_492.RULE +++ b/src/licensedcode/data/rules/public-domain_492.RULE @@ -3,4 +3,4 @@ license_expression: public-domain is_license_text: yes --- -This file is in the public domain, so clarified as of 1996-06-05 by Arthur David Olson \ No newline at end of file +This file is {{in the public domain}}, so clarified as of 1996-06-05 by Arthur David Olson \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_493.RULE b/src/licensedcode/data/rules/public-domain_493.RULE index 6af4546be4..6548655ff8 100644 --- a/src/licensedcode/data/rules/public-domain_493.RULE +++ b/src/licensedcode/data/rules/public-domain_493.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This file is in the public domain, so clarified as of by Arthur David Olson \ No newline at end of file +This file is {{in the public domain}}, so clarified as of by Arthur David Olson \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_494.RULE b/src/licensedcode/data/rules/public-domain_494.RULE index 578a8cf22a..dfbb835b4d 100644 --- a/src/licensedcode/data/rules/public-domain_494.RULE +++ b/src/licensedcode/data/rules/public-domain_494.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This file is in the public domain, so clarified by Arthur David Olson \ No newline at end of file +This file is {{in the public domain}}, so clarified by Arthur David Olson \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_495.RULE b/src/licensedcode/data/rules/public-domain_495.RULE index 3dc8604954..233b3e8a52 100644 --- a/src/licensedcode/data/rules/public-domain_495.RULE +++ b/src/licensedcode/data/rules/public-domain_495.RULE @@ -5,4 +5,4 @@ relevance: 100 --- and -has been placed into the public domain. \ No newline at end of file +has been placed into the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_496.RULE b/src/licensedcode/data/rules/public-domain_496.RULE index 8d913b855c..19d9a23e40 100644 --- a/src/licensedcode/data/rules/public-domain_496.RULE +++ b/src/licensedcode/data/rules/public-domain_496.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -has been placed into the public domain. \ No newline at end of file +has been placed into the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_497.RULE b/src/licensedcode/data/rules/public-domain_497.RULE index 8d0cef1385..4292e63308 100644 --- a/src/licensedcode/data/rules/public-domain_497.RULE +++ b/src/licensedcode/data/rules/public-domain_497.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is public domain software \ No newline at end of file +This code is {{public domain}} software \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_498.RULE b/src/licensedcode/data/rules/public-domain_498.RULE index a69108be1b..9acd9eea2a 100644 --- a/src/licensedcode/data/rules/public-domain_498.RULE +++ b/src/licensedcode/data/rules/public-domain_498.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is public domain \ No newline at end of file +This code is {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_499.RULE b/src/licensedcode/data/rules/public-domain_499.RULE index c3c39240ed..ed55a848e1 100644 --- a/src/licensedcode/data/rules/public-domain_499.RULE +++ b/src/licensedcode/data/rules/public-domain_499.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -code is public domain software \ No newline at end of file +code is {{public domain}} software \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_5.RULE b/src/licensedcode/data/rules/public-domain_5.RULE index e6edeaab30..4e2011250a 100644 --- a/src/licensedcode/data/rules/public-domain_5.RULE +++ b/src/licensedcode/data/rules/public-domain_5.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 90 --- -This utility is released to the public domain \ No newline at end of file +This utility is released to the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_50.RULE b/src/licensedcode/data/rules/public-domain_50.RULE index 27ed14b75f..f25040ad68 100644 --- a/src/licensedcode/data/rules/public-domain_50.RULE +++ b/src/licensedcode/data/rules/public-domain_50.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This file is in the public domain. \ No newline at end of file +This file is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_500.RULE b/src/licensedcode/data/rules/public-domain_500.RULE index 19dfab313e..472664dfe1 100644 --- a/src/licensedcode/data/rules/public-domain_500.RULE +++ b/src/licensedcode/data/rules/public-domain_500.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -code is public domain \ No newline at end of file +code is {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_501.RULE b/src/licensedcode/data/rules/public-domain_501.RULE index ebc07b7a28..d5c7069b1a 100644 --- a/src/licensedcode/data/rules/public-domain_501.RULE +++ b/src/licensedcode/data/rules/public-domain_501.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Code examples in all the perlfaq documents are in the public domain. \ No newline at end of file +Code examples in all the perlfaq documents are {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_502.RULE b/src/licensedcode/data/rules/public-domain_502.RULE index a2e2d07bb2..75f79047f0 100644 --- a/src/licensedcode/data/rules/public-domain_502.RULE +++ b/src/licensedcode/data/rules/public-domain_502.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -documents are in the public domain. \ No newline at end of file +documents are {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_503.RULE b/src/licensedcode/data/rules/public-domain_503.RULE index de8bf05424..822e3a4e79 100644 --- a/src/licensedcode/data/rules/public-domain_503.RULE +++ b/src/licensedcode/data/rules/public-domain_503.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Code examples are in the public domain. \ No newline at end of file +Code examples are {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_504.RULE b/src/licensedcode/data/rules/public-domain_504.RULE index 98883dd444..73bbc7efdd 100644 --- a/src/licensedcode/data/rules/public-domain_504.RULE +++ b/src/licensedcode/data/rules/public-domain_504.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -license: This code is in the public domain \ No newline at end of file +license: This code is {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_505.RULE b/src/licensedcode/data/rules/public-domain_505.RULE index 362bb3e5a2..5af99f8663 100644 --- a/src/licensedcode/data/rules/public-domain_505.RULE +++ b/src/licensedcode/data/rules/public-domain_505.RULE @@ -5,4 +5,4 @@ notes: https://github.com/evrim/ecl/blob/ee989b977617963fd01748b8ac7a0b4ee22d844 --- This code was written as part of the CMU Common Lisp project at -Carnegie Mellon University, and has been placed in the public domain. \ No newline at end of file +Carnegie Mellon University, and has been placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_506.RULE b/src/licensedcode/data/rules/public-domain_506.RULE index 0f93f9111e..e80a38d788 100644 --- a/src/licensedcode/data/rules/public-domain_506.RULE +++ b/src/licensedcode/data/rules/public-domain_506.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Copyright (C): Public domain \ No newline at end of file +Copyright (C): {{Public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_507.RULE b/src/licensedcode/data/rules/public-domain_507.RULE index 1c80f6e66a..c77ba3e54c 100644 --- a/src/licensedcode/data/rules/public-domain_507.RULE +++ b/src/licensedcode/data/rules/public-domain_507.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -This template file is in the Public Domain. +This template file is {{in the Public Domain}}. You may do anything you want with this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_508.RULE b/src/licensedcode/data/rules/public-domain_508.RULE index 924a9beea1..d1cb0552a2 100644 --- a/src/licensedcode/data/rules/public-domain_508.RULE +++ b/src/licensedcode/data/rules/public-domain_508.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -file is in the Public Domain. +file is {{in the Public Domain}}. You may do anything you want with this file. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_509.RULE b/src/licensedcode/data/rules/public-domain_509.RULE index fb407b28de..5d1f65156b 100644 --- a/src/licensedcode/data/rules/public-domain_509.RULE +++ b/src/licensedcode/data/rules/public-domain_509.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -file is in the Public Domain. \ No newline at end of file +file is {{in the Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_51.RULE b/src/licensedcode/data/rules/public-domain_51.RULE index 820e0e3740..795ea79655 100644 --- a/src/licensedcode/data/rules/public-domain_51.RULE +++ b/src/licensedcode/data/rules/public-domain_51.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This algorithm and source code is released to the public domain. \ No newline at end of file +This algorithm and source code is released to the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_510.RULE b/src/licensedcode/data/rules/public-domain_510.RULE index ec93059618..6399a9e537 100644 --- a/src/licensedcode/data/rules/public-domain_510.RULE +++ b/src/licensedcode/data/rules/public-domain_510.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This template file is in the Public Domain. \ No newline at end of file +This template file is {{in the Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_511.RULE b/src/licensedcode/data/rules/public-domain_511.RULE index ae8fea8a7f..5de1701fa2 100644 --- a/src/licensedcode/data/rules/public-domain_511.RULE +++ b/src/licensedcode/data/rules/public-domain_511.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: seen in versioneer --- -all its code is hereby released into the public domain. \ No newline at end of file +all its code is hereby released into the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_512.RULE b/src/licensedcode/data/rules/public-domain_512.RULE index d18089968c..9f160c08a5 100644 --- a/src/licensedcode/data/rules/public-domain_512.RULE +++ b/src/licensedcode/data/rules/public-domain_512.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Released as PUBLIC DOMAIN. Use as you please \ No newline at end of file +Released as {{PUBLIC DOMAIN}}. Use as you please \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_513.RULE b/src/licensedcode/data/rules/public-domain_513.RULE index c21a64cafa..55d2507882 100644 --- a/src/licensedcode/data/rules/public-domain_513.RULE +++ b/src/licensedcode/data/rules/public-domain_513.RULE @@ -5,4 +5,4 @@ relevance: 100 notes: seen in postfix https://github.com/ystk/debian-postfix/blob/7bf819ec7933bfe22ecd947b8a610510600b7a20/src/util/sdbm.h#L19 --- -status: public domain. \ No newline at end of file +status: {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_514.RULE b/src/licensedcode/data/rules/public-domain_514.RULE index 715844994b..4426ba3a62 100644 --- a/src/licensedcode/data/rules/public-domain_514.RULE +++ b/src/licensedcode/data/rules/public-domain_514.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Use this example as you please (public domain) \ No newline at end of file +Use this example as you please ({{public domain}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_515.RULE b/src/licensedcode/data/rules/public-domain_515.RULE index 66ab3cf7d2..6355ad1aab 100644 --- a/src/licensedcode/data/rules/public-domain_515.RULE +++ b/src/licensedcode/data/rules/public-domain_515.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This page is in the public domain \ No newline at end of file +This page is {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_516.RULE b/src/licensedcode/data/rules/public-domain_516.RULE index e41c4bb12b..28db676d65 100644 --- a/src/licensedcode/data/rules/public-domain_516.RULE +++ b/src/licensedcode/data/rules/public-domain_516.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- - \ No newline at end of file + \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_517.RULE b/src/licensedcode/data/rules/public-domain_517.RULE index 49d6cf3a86..28006516a3 100644 --- a/src/licensedcode/data/rules/public-domain_517.RULE +++ b/src/licensedcode/data/rules/public-domain_517.RULE @@ -5,5 +5,5 @@ relevance: 100 --- No copyright is claimed. - * This code is in the public domain. Attribution is appreciated but + * This code is {{in the public domain}}. Attribution is appreciated but * unnecessary. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_518.RULE b/src/licensedcode/data/rules/public-domain_518.RULE index c1d4d46510..0431dd2a9e 100644 --- a/src/licensedcode/data/rules/public-domain_518.RULE +++ b/src/licensedcode/data/rules/public-domain_518.RULE @@ -4,11 +4,11 @@ is_license_text: yes --- lexicon project is complete and has -been place into the public domain. Use, sell, +been place into the {{public domain}}. Use, sell, rework, excerpt and use in any way on any platform. Placing this material on internal or public servers is also encouraged. The compiler is not aware of any export restrictions so freely distribute world-wide. -You can verify the public domain status by contacting \ No newline at end of file +You can verify the {{public domain}} status by contacting \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_519.RULE b/src/licensedcode/data/rules/public-domain_519.RULE index af73e84c86..2644ddb875 100644 --- a/src/licensedcode/data/rules/public-domain_519.RULE +++ b/src/licensedcode/data/rules/public-domain_519.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Public domain, use as you please \ No newline at end of file +{{Public domain}}, use as you please \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_52.RULE b/src/licensedcode/data/rules/public-domain_52.RULE index fc8cf31f2b..37ac111f33 100644 --- a/src/licensedcode/data/rules/public-domain_52.RULE +++ b/src/licensedcode/data/rules/public-domain_52.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -The interface code in this file is released into the public domain. \ No newline at end of file +The interface code in this file is released into the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_520.RULE b/src/licensedcode/data/rules/public-domain_520.RULE index d8b0907862..96acb963f5 100644 --- a/src/licensedcode/data/rules/public-domain_520.RULE +++ b/src/licensedcode/data/rules/public-domain_520.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -## This code is released into the public domain. Use as you please! \ No newline at end of file +## This code is released into the {{public domain}}. Use as you please! \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_521.RULE b/src/licensedcode/data/rules/public-domain_521.RULE index e6a2027b7d..8e6eb86832 100644 --- a/src/licensedcode/data/rules/public-domain_521.RULE +++ b/src/licensedcode/data/rules/public-domain_521.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -Code is fully public domain. Use as you please. \ No newline at end of file +Code is fully {{public domain}}. Use as you please. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_522.RULE b/src/licensedcode/data/rules/public-domain_522.RULE index 026a6c5b87..4af25ea2c9 100644 --- a/src/licensedcode/data/rules/public-domain_522.RULE +++ b/src/licensedcode/data/rules/public-domain_522.RULE @@ -4,14 +4,14 @@ is_license_text: yes notes: Seen in ICU --- -ICU uses the public domain data and code derived from Time Zone +ICU uses the {{public domain}} data and code derived from Time Zone Database for its time zone support. The ownership of the TZ database is explained in BCP 175: Procedure for Maintaining the Time Zone Database section 7. 7. Database Ownership The TZ database itself is not an IETF Contribution or an IETF document. Rather it is a pre-existing and regularly updated work - that is in the public domain, and is intended to remain in the - public domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do + that is {{in the public domain}}, and is intended to remain {{in the + public domain}}. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do not apply to the TZ Database or contributions that individuals make to it. Should any claims be made and substantiated against the TZ Database, the organization that is providing the IANA diff --git a/src/licensedcode/data/rules/public-domain_523.RULE b/src/licensedcode/data/rules/public-domain_523.RULE index e8dbf9f3b4..0698468aab 100644 --- a/src/licensedcode/data/rules/public-domain_523.RULE +++ b/src/licensedcode/data/rules/public-domain_523.RULE @@ -5,5 +5,5 @@ is_license_text: yes The material covered by this statement is not creative or original, is trivial and non-expressive, and is believed to be non-copyrightable -and in the public domain in all jurisdictions in which it may be +and {{in the public domain}} in all jurisdictions in which it may be published. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_524.RULE b/src/licensedcode/data/rules/public-domain_524.RULE index 47afad97f6..b37cb34f20 100644 --- a/src/licensedcode/data/rules/public-domain_524.RULE +++ b/src/licensedcode/data/rules/public-domain_524.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This grammar is in the PUBLIC DOMAIN \ No newline at end of file +This grammar is {{in the PUBLIC DOMAIN}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_525.RULE b/src/licensedcode/data/rules/public-domain_525.RULE index 6c4d7a6d3d..d5eb4b7edd 100644 --- a/src/licensedcode/data/rules/public-domain_525.RULE +++ b/src/licensedcode/data/rules/public-domain_525.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Public Domain Certification \ No newline at end of file +{{Public Domain}} Certification \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_53.RULE b/src/licensedcode/data/rules/public-domain_53.RULE index e16ae6de2c..8be7e5e5c4 100644 --- a/src/licensedcode/data/rules/public-domain_53.RULE +++ b/src/licensedcode/data/rules/public-domain_53.RULE @@ -5,4 +5,4 @@ relevance: 100 --- are hereby released into - the public domain by the authors. \ No newline at end of file + the {{public domain}} by the authors. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_54.RULE b/src/licensedcode/data/rules/public-domain_54.RULE index c2dec41715..748f445be4 100644 --- a/src/licensedcode/data/rules/public-domain_54.RULE +++ b/src/licensedcode/data/rules/public-domain_54.RULE @@ -3,7 +3,7 @@ license_expression: public-domain is_license_text: yes --- -public domain SHA256 implementation ===== */ +{{public domain}} SHA256 implementation ===== */ /* This is based on SHA256 implementation in LibTomCrypt that was released into - * public domain by Tom St Denis. */ \ No newline at end of file + * {{public domain}} by Tom St Denis. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_55.RULE b/src/licensedcode/data/rules/public-domain_55.RULE index 6bdcf2e01d..d2e80a7cf2 100644 --- a/src/licensedcode/data/rules/public-domain_55.RULE +++ b/src/licensedcode/data/rules/public-domain_55.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -public domain code snippet, lifted from \ No newline at end of file +{{public domain}} code snippet, lifted from \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_56.RULE b/src/licensedcode/data/rules/public-domain_56.RULE index dc0dad7624..02d4bd7ed8 100644 --- a/src/licensedcode/data/rules/public-domain_56.RULE +++ b/src/licensedcode/data/rules/public-domain_56.RULE @@ -5,5 +5,5 @@ is_license_text: yes THIS SOFTWARE IS NOT COPYRIGHTED -This source code is offered for use in the public domain. You may +This source code is offered for use {{in the public domain}}. You may use, modify or distribute it freely. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_57.RULE b/src/licensedcode/data/rules/public-domain_57.RULE index a1eb827a30..f6e74814e3 100644 --- a/src/licensedcode/data/rules/public-domain_57.RULE +++ b/src/licensedcode/data/rules/public-domain_57.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is derived from a public domain shell sort routine \ No newline at end of file +This code is derived from a {{public domain}} shell sort routine \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_58.RULE b/src/licensedcode/data/rules/public-domain_58.RULE index 24a80843b9..b0af72eced 100644 --- a/src/licensedcode/data/rules/public-domain_58.RULE +++ b/src/licensedcode/data/rules/public-domain_58.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -FSF changes to this file are in the public domain. \ No newline at end of file +FSF changes to this file are {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_59.RULE b/src/licensedcode/data/rules/public-domain_59.RULE index 9b1ab5fe5f..77ce825add 100644 --- a/src/licensedcode/data/rules/public-domain_59.RULE +++ b/src/licensedcode/data/rules/public-domain_59.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This code is placed under public domain \ No newline at end of file +This code is placed under {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_6.RULE b/src/licensedcode/data/rules/public-domain_6.RULE index c61757a2a5..d99575540d 100644 --- a/src/licensedcode/data/rules/public-domain_6.RULE +++ b/src/licensedcode/data/rules/public-domain_6.RULE @@ -4,4 +4,4 @@ is_license_text: yes minimum_coverage: 100 --- -This opening book is in the public domain. \ No newline at end of file +This opening book is {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_60.RULE b/src/licensedcode/data/rules/public-domain_60.RULE index a6baa41a12..f3c9ed2745 100644 --- a/src/licensedcode/data/rules/public-domain_60.RULE +++ b/src/licensedcode/data/rules/public-domain_60.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 90 --- -copyright Public Domain \ No newline at end of file +copyright {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_61.RULE b/src/licensedcode/data/rules/public-domain_61.RULE index cbc193abbc..77d609bd87 100644 --- a/src/licensedcode/data/rules/public-domain_61.RULE +++ b/src/licensedcode/data/rules/public-domain_61.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -The font in this directory belongs to the public domain. \ No newline at end of file +The font in this directory belongs to the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_62.RULE b/src/licensedcode/data/rules/public-domain_62.RULE index 68c3cfb9be..9e6c9f0208 100644 --- a/src/licensedcode/data/rules/public-domain_62.RULE +++ b/src/licensedcode/data/rules/public-domain_62.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Which is public domain \ No newline at end of file +Which is {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_63.RULE b/src/licensedcode/data/rules/public-domain_63.RULE index bb880777c0..a03e4d1a69 100644 --- a/src/licensedcode/data/rules/public-domain_63.RULE +++ b/src/licensedcode/data/rules/public-domain_63.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -consider these trivial functions to be public domain. \ No newline at end of file +consider these trivial functions to be {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_64.RULE b/src/licensedcode/data/rules/public-domain_64.RULE index 83237c9ca3..582ec1f8f0 100644 --- a/src/licensedcode/data/rules/public-domain_64.RULE +++ b/src/licensedcode/data/rules/public-domain_64.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -and is placed in the public domain. The author hereby disclaims copyright to this source code. \ No newline at end of file +and is placed {{in the public domain}}. The author hereby disclaims copyright to this source code. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_66.RULE b/src/licensedcode/data/rules/public-domain_66.RULE index 699a77477c..9908404053 100644 --- a/src/licensedcode/data/rules/public-domain_66.RULE +++ b/src/licensedcode/data/rules/public-domain_66.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This file is put in the public domain \ No newline at end of file +This file is put {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_67.RULE b/src/licensedcode/data/rules/public-domain_67.RULE index 4db7da5322..e2929ee1c3 100644 --- a/src/licensedcode/data/rules/public-domain_67.RULE +++ b/src/licensedcode/data/rules/public-domain_67.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 90 --- -Still in the public domain. \ No newline at end of file +Still {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_68.RULE b/src/licensedcode/data/rules/public-domain_68.RULE index a4a00bd016..d570ded9bd 100644 --- a/src/licensedcode/data/rules/public-domain_68.RULE +++ b/src/licensedcode/data/rules/public-domain_68.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -note 100% Public Domain \ No newline at end of file +note 100% {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_69.RULE b/src/licensedcode/data/rules/public-domain_69.RULE index 6937f68073..32d2a9c9c4 100644 --- a/src/licensedcode/data/rules/public-domain_69.RULE +++ b/src/licensedcode/data/rules/public-domain_69.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -This is a version of the public domain implementation \ No newline at end of file +This is a version of the {{public domain}} implementation \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_7.RULE b/src/licensedcode/data/rules/public-domain_7.RULE index 0c591b898a..9aeaf4eb6d 100644 --- a/src/licensedcode/data/rules/public-domain_7.RULE +++ b/src/licensedcode/data/rules/public-domain_7.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 90 --- -This code is in the public domain and has no copyright. \ No newline at end of file +This code is {{in the public domain}} and has no copyright. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_70.RULE b/src/licensedcode/data/rules/public-domain_70.RULE index c443b6bbf7..402e5cd9c2 100644 --- a/src/licensedcode/data/rules/public-domain_70.RULE +++ b/src/licensedcode/data/rules/public-domain_70.RULE @@ -5,5 +5,5 @@ relevance: 100 --- The developers of consider the fixed text that goes in all - output files to be in the public domain: + output files to be {{in the public domain}}: we make no copyright claims on it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_71.RULE b/src/licensedcode/data/rules/public-domain_71.RULE index 14d58d74e6..7e3e9660e6 100644 --- a/src/licensedcode/data/rules/public-domain_71.RULE +++ b/src/licensedcode/data/rules/public-domain_71.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -* No copyright is claimed, and the software is hereby placed in the public - * domain. \ No newline at end of file +* No copyright is claimed, and the software is hereby placed {{in the public + * domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_72.RULE b/src/licensedcode/data/rules/public-domain_72.RULE index d05ddc70e9..874b376636 100644 --- a/src/licensedcode/data/rules/public-domain_72.RULE +++ b/src/licensedcode/data/rules/public-domain_72.RULE @@ -3,7 +3,7 @@ license_expression: public-domain is_license_text: yes --- -("Public Domain" +("{{Public Domain}}" nil - "This software is in Public Domain." + "This software is {{in Public Domain}}." "You're free to do with it as you please.") \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_73.RULE b/src/licensedcode/data/rules/public-domain_73.RULE index 8fff79efe2..96e3e830c3 100644 --- a/src/licensedcode/data/rules/public-domain_73.RULE +++ b/src/licensedcode/data/rules/public-domain_73.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -is in the public domain and distributed +is {{in the public domain}} and distributed with the following license \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_74.RULE b/src/licensedcode/data/rules/public-domain_74.RULE index 55b3f96ad5..07b4e0183c 100644 --- a/src/licensedcode/data/rules/public-domain_74.RULE +++ b/src/licensedcode/data/rules/public-domain_74.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This class is public domain (not copyrighted). \ No newline at end of file +This class is {{public domain}} (not copyrighted). \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_75.RULE b/src/licensedcode/data/rules/public-domain_75.RULE index d451e507a6..30c03d3da6 100644 --- a/src/licensedcode/data/rules/public-domain_75.RULE +++ b/src/licensedcode/data/rules/public-domain_75.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This class is public domain (not copyrighted) \ No newline at end of file +This class is {{public domain}} (not copyrighted) \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_76.RULE b/src/licensedcode/data/rules/public-domain_76.RULE index 2ec548e18d..54a01932c5 100644 --- a/src/licensedcode/data/rules/public-domain_76.RULE +++ b/src/licensedcode/data/rules/public-domain_76.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -That package was under public domain. \ No newline at end of file +That package was under {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_78.RULE b/src/licensedcode/data/rules/public-domain_78.RULE index 4ff6412c4d..542ea4b5e7 100644 --- a/src/licensedcode/data/rules/public-domain_78.RULE +++ b/src/licensedcode/data/rules/public-domain_78.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This script is public domain. \ No newline at end of file +This script is {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_79.RULE b/src/licensedcode/data/rules/public-domain_79.RULE index e05e81765e..da680ff9d6 100644 --- a/src/licensedcode/data/rules/public-domain_79.RULE +++ b/src/licensedcode/data/rules/public-domain_79.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -changes are in public domain. \ No newline at end of file +changes are {{in public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_80.RULE b/src/licensedcode/data/rules/public-domain_80.RULE index 717d4a131d..437a7ea2f8 100644 --- a/src/licensedcode/data/rules/public-domain_80.RULE +++ b/src/licensedcode/data/rules/public-domain_80.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 90 --- -Both are dedicated to the Public Domain. \ No newline at end of file +Both are dedicated to the {{Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_81.RULE b/src/licensedcode/data/rules/public-domain_81.RULE index 6800d1eefd..a8e455830f 100644 --- a/src/licensedcode/data/rules/public-domain_81.RULE +++ b/src/licensedcode/data/rules/public-domain_81.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -changes to this file are in the public domain \ No newline at end of file +changes to this file are {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_82.RULE b/src/licensedcode/data/rules/public-domain_82.RULE index 2d4c0b1ca1..710ab3edf3 100644 --- a/src/licensedcode/data/rules/public-domain_82.RULE +++ b/src/licensedcode/data/rules/public-domain_82.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -note that it's in the public domain \ No newline at end of file +note that it's {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_83.RULE b/src/licensedcode/data/rules/public-domain_83.RULE index f509a5f289..6aea1a4c76 100644 --- a/src/licensedcode/data/rules/public-domain_83.RULE +++ b/src/licensedcode/data/rules/public-domain_83.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Public domain version is distributed above. \ No newline at end of file +{{Public domain}} version is distributed above. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_84.RULE b/src/licensedcode/data/rules/public-domain_84.RULE index c3b88d897e..c5fd7e4f49 100644 --- a/src/licensedcode/data/rules/public-domain_84.RULE +++ b/src/licensedcode/data/rules/public-domain_84.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 95 --- -Adapted from the public domain code \ No newline at end of file +Adapted from the {{public domain}} code \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_85.RULE b/src/licensedcode/data/rules/public-domain_85.RULE index 399d54fd94..dae586d7ea 100644 --- a/src/licensedcode/data/rules/public-domain_85.RULE +++ b/src/licensedcode/data/rules/public-domain_85.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -This font, including hint instructions, has been donated to the Public Domain. Do whatever you want with it. \ No newline at end of file +This font, including hint instructions, has been donated to the {{Public Domain}}. Do whatever you want with it. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_86.RULE b/src/licensedcode/data/rules/public-domain_86.RULE index ef1ab52953..32dc15d99a 100644 --- a/src/licensedcode/data/rules/public-domain_86.RULE +++ b/src/licensedcode/data/rules/public-domain_86.RULE @@ -3,5 +3,5 @@ license_expression: public-domain is_license_text: yes --- -The algorithm is dedicated to the Public Domain. -The original implementation is also dedicated to the public domain \ No newline at end of file +The algorithm is dedicated to the {{Public Domain}}. +The original implementation is also dedicated to the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_87.RULE b/src/licensedcode/data/rules/public-domain_87.RULE index dd425e2403..18f5cdeb5c 100644 --- a/src/licensedcode/data/rules/public-domain_87.RULE +++ b/src/licensedcode/data/rules/public-domain_87.RULE @@ -3,6 +3,6 @@ license_expression: public-domain is_license_text: yes --- -I have placed these fonts in the Public Domain. This is all 100% my own work. +I have placed these fonts {{in the Public Domain}}. This is all 100% my own work. Usage is totally unrestricted. If you want to make derivative works for any purpose, please go ahead. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_88.RULE b/src/licensedcode/data/rules/public-domain_88.RULE index 91d387d00c..180015cd6b 100644 --- a/src/licensedcode/data/rules/public-domain_88.RULE +++ b/src/licensedcode/data/rules/public-domain_88.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -The contents of this file are hereby released to the public domain. \ No newline at end of file +The contents of this file are hereby released to the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_89.RULE b/src/licensedcode/data/rules/public-domain_89.RULE index 22e40158aa..84de1a8d77 100644 --- a/src/licensedcode/data/rules/public-domain_89.RULE +++ b/src/licensedcode/data/rules/public-domain_89.RULE @@ -5,4 +5,4 @@ relevance: 100 --- we both put our efforts into -** the public domain \ No newline at end of file +** the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_9.RULE b/src/licensedcode/data/rules/public-domain_9.RULE index 7c4d44f974..dc4539dd5a 100644 --- a/src/licensedcode/data/rules/public-domain_9.RULE +++ b/src/licensedcode/data/rules/public-domain_9.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -THIS PROGRAM IS IN T3H PUBLIC DOMAIN \ No newline at end of file +THIS PROGRAM IS IN T3H {{PUBLIC DOMAIN}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_90.RULE b/src/licensedcode/data/rules/public-domain_90.RULE index 23cfc6cbc4..6a5449cd2b 100644 --- a/src/licensedcode/data/rules/public-domain_90.RULE +++ b/src/licensedcode/data/rules/public-domain_90.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 90 --- -This specific file is placed in the public domain by its author, \ No newline at end of file +This specific file is placed {{in the public domain}} by its author, \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_91.RULE b/src/licensedcode/data/rules/public-domain_91.RULE index 313cf8dd15..66997e7a1a 100644 --- a/src/licensedcode/data/rules/public-domain_91.RULE +++ b/src/licensedcode/data/rules/public-domain_91.RULE @@ -4,7 +4,7 @@ is_license_text: yes relevance: 90 --- -/* The contents of this file are hereby released into the public domain. */ +/* The contents of this file are hereby released into the {{public domain}}. */ /* This does not affect the rest of the program code in , which */ /* remains under the GPL except where specific files state differently, */ /* such as this one. */ diff --git a/src/licensedcode/data/rules/public-domain_92.RULE b/src/licensedcode/data/rules/public-domain_92.RULE index 7bbdc3f9c0..4ffed106fe 100644 --- a/src/licensedcode/data/rules/public-domain_92.RULE +++ b/src/licensedcode/data/rules/public-domain_92.RULE @@ -4,7 +4,7 @@ is_license_text: yes relevance: 90 --- -/* The contents of this file are hereby released into the public domain. */ +/* The contents of this file are hereby released into the {{public domain}}. */ /* This does not affect the rest of the program code in , which */ /* remains under the GPL except where specific files state differently, */ /* such as this one. */ \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_93.RULE b/src/licensedcode/data/rules/public-domain_93.RULE index cd8630d7fc..b82d7fcd2f 100644 --- a/src/licensedcode/data/rules/public-domain_93.RULE +++ b/src/licensedcode/data/rules/public-domain_93.RULE @@ -3,7 +3,7 @@ license_expression: public-domain is_license_text: yes --- -/* This is a public-domain reimplementation of +/* This is a {{public-domain}} reimplementation of Not derived from licensed software. This code may be used on any computer system for any purpose by anyone. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_94.RULE b/src/licensedcode/data/rules/public-domain_94.RULE index 77e1038933..f7623a2947 100644 --- a/src/licensedcode/data/rules/public-domain_94.RULE +++ b/src/licensedcode/data/rules/public-domain_94.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 90 --- -This is a public-domain reimplementation of . +This is a {{public-domain}} reimplementation of . Not derived from licensed software. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_95.RULE b/src/licensedcode/data/rules/public-domain_95.RULE index c56537f457..4cbc39e0ee 100644 --- a/src/licensedcode/data/rules/public-domain_95.RULE +++ b/src/licensedcode/data/rules/public-domain_95.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 90 --- -* This public domain version of made available to systems that +* This {{public domain}} version of made available to systems that * don't have their own. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_97.RULE b/src/licensedcode/data/rules/public-domain_97.RULE index 627df39bec..6ed3072d3e 100644 --- a/src/licensedcode/data/rules/public-domain_97.RULE +++ b/src/licensedcode/data/rules/public-domain_97.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 90 --- -THIS SOFTWARE AND ITS doCUMENTATION ARE in THE PUBLIC doMAin \ No newline at end of file +THIS SOFTWARE AND ITS doCUMENTATION ARE {{in THE PUBLIC doMAin}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_98.RULE b/src/licensedcode/data/rules/public-domain_98.RULE index 13de4ba0f3..5be9b0b261 100644 --- a/src/licensedcode/data/rules/public-domain_98.RULE +++ b/src/licensedcode/data/rules/public-domain_98.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 99 --- -Based on public domain \ No newline at end of file +Based on {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_99.RULE b/src/licensedcode/data/rules/public-domain_99.RULE index fe6a46f932..0b42f944b2 100644 --- a/src/licensedcode/data/rules/public-domain_99.RULE +++ b/src/licensedcode/data/rules/public-domain_99.RULE @@ -5,4 +5,4 @@ relevance: 95 --- was written by me - * and released into the public domain \ No newline at end of file + * and released into the {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_apache_1.RULE b/src/licensedcode/data/rules/public-domain_apache_1.RULE index 869205ed20..d056188d65 100644 --- a/src/licensedcode/data/rules/public-domain_apache_1.RULE +++ b/src/licensedcode/data/rules/public-domain_apache_1.RULE @@ -6,6 +6,6 @@ notes: This notice text is contained in the text at http://apache.org/licenses/L software. --- -* Portions of this software are based upon public domain software +* Portions of this software are based upon {{public domain}} software * originally written at the National Center for Supercomputing Applications, * University of Illinois, Urbana-Champaign. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_bare_words.RULE b/src/licensedcode/data/rules/public-domain_bare_words.RULE index aa90b4812e..fe76d51310 100644 --- a/src/licensedcode/data/rules/public-domain_bare_words.RULE +++ b/src/licensedcode/data/rules/public-domain_bare_words.RULE @@ -5,4 +5,4 @@ is_continuous: yes relevance: 70 --- -Public Domain \ No newline at end of file +{{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_docutils.RULE b/src/licensedcode/data/rules/public-domain_docutils.RULE index 1d23ca2a78..0baa4f0ed1 100644 --- a/src/licensedcode/data/rules/public-domain_docutils.RULE +++ b/src/licensedcode/data/rules/public-domain_docutils.RULE @@ -3,9 +3,9 @@ license_expression: public-domain is_license_text: yes --- -:Copyright: This document has been placed in the public domain. +:Copyright: This document has been placed {{in the public domain}}. -Most of the files included in this project have been placed in the -public domain, and therefore have no license requirements and no -restrictions on copying or usage; see the `Public Domain Dedication`_ +Most of the files included in this project have been placed {{in the +public domain}}, and therefore have no license requirements and no +restrictions on copying or usage; see the `{{Public Domain}} Dedication`_ below. There are a few exceptions_, listed below. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_docutils2.RULE b/src/licensedcode/data/rules/public-domain_docutils2.RULE index 1d1829030c..ff3c4118dc 100644 --- a/src/licensedcode/data/rules/public-domain_docutils2.RULE +++ b/src/licensedcode/data/rules/public-domain_docutils2.RULE @@ -3,11 +3,11 @@ license_expression: public-domain is_license_text: yes --- -Public Domain Dedication +{{Public Domain}} Dedication ======================== The persons who have associated their work with this project (the "Dedicator": and the many contributors to the project) hereby dedicate the entire copyright, less the exceptions_ listed below, in the work of authorship known as "" identified -below (the "Work") to the public domain. \ No newline at end of file +below (the "Work") to the {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_docutils3.RULE b/src/licensedcode/data/rules/public-domain_docutils3.RULE index f4696683db..06488d5683 100644 --- a/src/licensedcode/data/rules/public-domain_docutils3.RULE +++ b/src/licensedcode/data/rules/public-domain_docutils3.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -:Copyright: This document has been placed in the public domain. \ No newline at end of file +:Copyright: This document has been placed {{in the public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_newlib.RULE b/src/licensedcode/data/rules/public-domain_newlib.RULE index 02d6c7198b..8cac505fb9 100644 --- a/src/licensedcode/data/rules/public-domain_newlib.RULE +++ b/src/licensedcode/data/rules/public-domain_newlib.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Totally public domain \ No newline at end of file +Totally {{public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_newlib2.RULE b/src/licensedcode/data/rules/public-domain_newlib2.RULE index 0e2ed3ceff..37a7097531 100644 --- a/src/licensedcode/data/rules/public-domain_newlib2.RULE +++ b/src/licensedcode/data/rules/public-domain_newlib2.RULE @@ -3,6 +3,6 @@ license_expression: public-domain is_license_notice: yes --- -This file is placed in the - * public domain. Permission to use, copy, modify, and +This file is placed {{in the + * public domain}}. Permission to use, copy, modify, and * distribute this software is freely granted. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_newlib3.RULE b/src/licensedcode/data/rules/public-domain_newlib3.RULE index dc2f816473..4b114d7f73 100644 --- a/src/licensedcode/data/rules/public-domain_newlib3.RULE +++ b/src/licensedcode/data/rules/public-domain_newlib3.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Placed into the Public Domain \ No newline at end of file +Placed into the {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_not_sax-pd.RULE b/src/licensedcode/data/rules/public-domain_not_sax-pd.RULE index dad5755a88..51569612e3 100644 --- a/src/licensedcode/data/rules/public-domain_not_sax-pd.RULE +++ b/src/licensedcode/data/rules/public-domain_not_sax-pd.RULE @@ -5,4 +5,4 @@ relevance: 100 --- source code, compiled code, and documentation contained in this distribution into the -Public Domain. \ No newline at end of file +{{Public Domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_not_sax-pd3.RULE b/src/licensedcode/data/rules/public-domain_not_sax-pd3.RULE index 7511f33901..85d5792079 100644 --- a/src/licensedcode/data/rules/public-domain_not_sax-pd3.RULE +++ b/src/licensedcode/data/rules/public-domain_not_sax-pd3.RULE @@ -4,5 +4,5 @@ is_license_text: yes relevance: 100 --- -This module, both source code and documentation, is in the -Public Domain \ No newline at end of file +This module, both source code and documentation, is {{in the +Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_this2.RULE b/src/licensedcode/data/rules/public-domain_this2.RULE index 353d72e9df..242efacf23 100644 --- a/src/licensedcode/data/rules/public-domain_this2.RULE +++ b/src/licensedcode/data/rules/public-domain_this2.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 99 --- -License This is public domain. \ No newline at end of file +License This is {{public domain}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib.RULE b/src/licensedcode/data/rules/public-domain_zlib.RULE index e81c8cfbe9..bffdde872f 100644 --- a/src/licensedcode/data/rules/public-domain_zlib.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -put in the public domain by \ No newline at end of file +put {{in the public domain}} by \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib5.RULE b/src/licensedcode/data/rules/public-domain_zlib5.RULE index cdeca3d490..50a865dd06 100644 --- a/src/licensedcode/data/rules/public-domain_zlib5.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib5.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -put in the public domain by Mark Adler \ No newline at end of file +put {{in the public domain}} by Mark Adler \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib6.RULE b/src/licensedcode/data/rules/public-domain_zlib6.RULE index 0ae85eab16..492d5102e4 100644 --- a/src/licensedcode/data/rules/public-domain_zlib6.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib6.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 99 --- -put in the public domain \ No newline at end of file +put {{in the public domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/public-domain_zlib7.RULE b/src/licensedcode/data/rules/public-domain_zlib7.RULE index ca3d860b55..22578360b4 100644 --- a/src/licensedcode/data/rules/public-domain_zlib7.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib7.RULE @@ -3,7 +3,7 @@ license_expression: public-domain is_license_text: yes --- -put in the public domain. +put {{in the public domain}}. The original copyright note by Mark Adler was: "You can do whatever you like with this source file, though I would prefer that if you modify it and diff --git a/src/licensedcode/data/rules/public-domain_zlib8.RULE b/src/licensedcode/data/rules/public-domain_zlib8.RULE index 28faa3a402..023dd6a571 100644 --- a/src/licensedcode/data/rules/public-domain_zlib8.RULE +++ b/src/licensedcode/data/rules/public-domain_zlib8.RULE @@ -5,4 +5,4 @@ relevance: 100 --- written - * and put in the public domain by Mark Adler \ No newline at end of file + * and put {{in the public domain}} by Mark Adler \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_apache_no-version.RULE b/src/licensedcode/data/rules/pypi_apache_no-version.RULE index a4ec2f9cb2..96993d8977 100644 --- a/src/licensedcode/data/rules/pypi_apache_no-version.RULE +++ b/src/licensedcode/data/rules/pypi_apache_no-version.RULE @@ -6,4 +6,4 @@ notes: the actual version of the license is not provided but the most common one 2.0 --- -License :: OSI Approved :: Apache Software License \ No newline at end of file +License :: OSI Approved :: {{Apache Software License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_boost.RULE b/src/licensedcode/data/rules/pypi_boost.RULE index c122c0709b..88ea998870 100644 --- a/src/licensedcode/data/rules/pypi_boost.RULE +++ b/src/licensedcode/data/rules/pypi_boost.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: Boost Software License 1.0 (BSL-1.0) \ No newline at end of file +License :: OSI Approved :: {{Boost Software License 1.0}} ({{BSL-1.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_bsd_license.RULE b/src/licensedcode/data/rules/pypi_bsd_license.RULE index 9859c6de80..b78ba0cae6 100644 --- a/src/licensedcode/data/rules/pypi_bsd_license.RULE +++ b/src/licensedcode/data/rules/pypi_bsd_license.RULE @@ -5,4 +5,4 @@ relevance: 99 notes: we picked the bsd-new out of all possible bsd licenses --- -License :: OSI Approved :: BSD License \ No newline at end of file +License :: OSI Approved :: {{BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_bsd_license2.RULE b/src/licensedcode/data/rules/pypi_bsd_license2.RULE index 733f0a865b..0db2029a29 100644 --- a/src/licensedcode/data/rules/pypi_bsd_license2.RULE +++ b/src/licensedcode/data/rules/pypi_bsd_license2.RULE @@ -5,4 +5,4 @@ relevance: 99 notes: we picked the bsd-new out of all possible bsd licenses --- -License :: OSI-Approved Open Source :: BSD License \ No newline at end of file +License :: OSI-Approved Open Source :: {{BSD License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_cc0_1_0_universal.RULE b/src/licensedcode/data/rules/pypi_cc0_1_0_universal.RULE index fcb31fea3c..784b05efaf 100644 --- a/src/licensedcode/data/rules/pypi_cc0_1_0_universal.RULE +++ b/src/licensedcode/data/rules/pypi_cc0_1_0_universal.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication \ No newline at end of file +License :: {{CC0 1.0 Universal (CC0 1.0) Public Domain Dedication}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_cddl-1.0.RULE b/src/licensedcode/data/rules/pypi_cddl-1.0.RULE index 2093328de3..48a8d11a38 100644 --- a/src/licensedcode/data/rules/pypi_cddl-1.0.RULE +++ b/src/licensedcode/data/rules/pypi_cddl-1.0.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: Common Development and Distribution License 1.0 (CDDL-1.0) \ No newline at end of file +License :: OSI Approved :: {{Common Development and Distribution License 1.0}} ({{CDDL-1.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_epl-1.0.RULE b/src/licensedcode/data/rules/pypi_epl-1.0.RULE index 0afec9189d..b9a3db395f 100644 --- a/src/licensedcode/data/rules/pypi_epl-1.0.RULE +++ b/src/licensedcode/data/rules/pypi_epl-1.0.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: Eclipse Public License 1.0 (EPL-1.0) \ No newline at end of file +License :: OSI Approved :: {{Eclipse Public License 1.0}} ({{EPL-1.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_epl-2.0.RULE b/src/licensedcode/data/rules/pypi_epl-2.0.RULE index e79ddaf0d8..a321e10da4 100644 --- a/src/licensedcode/data/rules/pypi_epl-2.0.RULE +++ b/src/licensedcode/data/rules/pypi_epl-2.0.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0) \ No newline at end of file +License :: OSI Approved :: {{Eclipse Public License 2.0}} ({{EPL-2.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3.RULE b/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3.RULE index c93ff16096..c34ff6921b 100644 --- a/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: GNU Affero General Public License v3 \ No newline at end of file +License :: OSI Approved :: {{GNU Affero General Public License v3}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3_or_later.RULE b/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3_or_later.RULE index 6dd324e700..5bb060c61f 100644 --- a/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3_or_later.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_affero_general_public_license_v3_or_later.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+) \ No newline at end of file +License :: OSI Approved :: {{GNU Affero General Public License}} v3 or later (AGPLv3+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license.RULE index 9113704916..5d1df5af26 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: GNU General Public License (GPL) \ No newline at end of file +License :: OSI Approved :: {{GNU General Public License (GPL}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license2.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license2.RULE index bef6894333..22cf70a3e0 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license2.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license2.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI-Approved Open Source :: GNU General Public License (GPL) \ No newline at end of file +License :: OSI-Approved Open Source :: {{GNU General Public License (GPL}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2.RULE index f404ee5a4e..e2ea84ab1f 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: GNU General Public License v2 (GPLv2) \ No newline at end of file +License :: OSI Approved :: {{GNU General Public License v2}} (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_1.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_1.RULE index cd79427bce..afed0e7c05 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_1.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_1.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI-Approved Open Source :: GNU General Public License version 2.0 (GPLv2) \ No newline at end of file +License :: OSI-Approved Open Source :: {{GNU General Public License version 2}}.0 (GPLv2) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_or_later.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_or_later.RULE index d34afbb73b..af870c1062 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_or_later.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v2_or_later.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+) \ No newline at end of file +License :: OSI Approved :: {{GNU General Public License v2 or later}} (GPLv2+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3.RULE index 5dcc186794..b8ba0834a8 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: GNU General Public License v3 (GPLv3) \ No newline at end of file +License :: OSI Approved :: {{GNU General Public License v3}} (GPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_1.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_1.RULE index 4205bfdf97..98dc59418b 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_1.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_1.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI-Approved Open Source :: GNU General Public License version 3.0 (GPLv3) \ No newline at end of file +License :: OSI-Approved Open Source :: {{GNU General Public License version 3.0}} (GPLv3) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_or_later.RULE b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_or_later.RULE index 04afdf67a5..134354b005 100644 --- a/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_or_later.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_general_public_license_v3_or_later.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) \ No newline at end of file +License :: OSI Approved :: {{GNU General Public License v3 or later}} (GPLv3+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2_or_later.RULE b/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2_or_later.RULE index 19da788b90..a355831f91 100644 --- a/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2_or_later.RULE +++ b/src/licensedcode/data/rules/pypi_gnu_lesser_general_public_license_v2_or_later.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+) \ No newline at end of file +License :: OSI Approved :: {{GNU Lesser General Public License}} v2 or later (LGPLv2+) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_isc_license.RULE b/src/licensedcode/data/rules/pypi_isc_license.RULE index ca2b9efd0f..50359e7e18 100644 --- a/src/licensedcode/data/rules/pypi_isc_license.RULE +++ b/src/licensedcode/data/rules/pypi_isc_license.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: ISC License (ISCL) \ No newline at end of file +License :: OSI Approved :: {{ISC License}} (ISCL) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_mit_license.RULE b/src/licensedcode/data/rules/pypi_mit_license.RULE index 1c9ec4ee8f..718049b58d 100644 --- a/src/licensedcode/data/rules/pypi_mit_license.RULE +++ b/src/licensedcode/data/rules/pypi_mit_license.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: MIT License \ No newline at end of file +License :: OSI Approved :: {{MIT License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_mozilla_public_license_1_1.RULE b/src/licensedcode/data/rules/pypi_mozilla_public_license_1_1.RULE index a488272f5c..15a0a467f6 100644 --- a/src/licensedcode/data/rules/pypi_mozilla_public_license_1_1.RULE +++ b/src/licensedcode/data/rules/pypi_mozilla_public_license_1_1.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1) \ No newline at end of file +License :: OSI Approved :: {{Mozilla Public License 1.1}} ({{MPL 1.1}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0.RULE b/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0.RULE index e7e58a4ae4..a9b0e12c7b 100644 --- a/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0.RULE +++ b/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0) \ No newline at end of file +License :: OSI Approved :: {{Mozilla Public License 2.0}} ({{MPL 2.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0_1.RULE b/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0_1.RULE index 97f978a955..5e50e4db5b 100644 --- a/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0_1.RULE +++ b/src/licensedcode/data/rules/pypi_mozilla_public_license_2_0_1.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI-Approved Open Source :: Mozilla Public License 2.0 (MPL 2.0) \ No newline at end of file +License :: OSI-Approved Open Source :: {{Mozilla Public License 2.0}} ({{MPL 2.0}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_other_proprietary_license.RULE b/src/licensedcode/data/rules/pypi_other_proprietary_license.RULE index ce8b59bbf2..feb4927493 100644 --- a/src/licensedcode/data/rules/pypi_other_proprietary_license.RULE +++ b/src/licensedcode/data/rules/pypi_other_proprietary_license.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 99 --- -License :: Other/Proprietary License \ No newline at end of file +License :: {{ Other/Proprietary License}} diff --git a/src/licensedcode/data/rules/pypi_public_domain.RULE b/src/licensedcode/data/rules/pypi_public_domain.RULE index 90f7442f6a..054ee26f80 100644 --- a/src/licensedcode/data/rules/pypi_public_domain.RULE +++ b/src/licensedcode/data/rules/pypi_public_domain.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 99 --- -License :: Public Domain \ No newline at end of file +License :: {{Public Domain}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_sil.RULE b/src/licensedcode/data/rules/pypi_sil.RULE index 5f0d0907eb..ae4b3a471b 100644 --- a/src/licensedcode/data/rules/pypi_sil.RULE +++ b/src/licensedcode/data/rules/pypi_sil.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: SIL Open Font License 1.1 (OFL-1.1) \ No newline at end of file +License :: OSI Approved :: {{SIL Open Font License 1.1}} ({{OFL-1.1}}) \ No newline at end of file diff --git a/src/licensedcode/data/rules/pypi_zlib_libpng_license.RULE b/src/licensedcode/data/rules/pypi_zlib_libpng_license.RULE index cfac9b785d..6fdd8a8730 100644 --- a/src/licensedcode/data/rules/pypi_zlib_libpng_license.RULE +++ b/src/licensedcode/data/rules/pypi_zlib_libpng_license.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License :: OSI Approved :: zlib/libpng License \ No newline at end of file +License :: OSI Approved :: {{zlib/libpng License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_14.RULE b/src/licensedcode/data/rules/python_14.RULE index 75f3661cfe..14b86b2895 100644 --- a/src/licensedcode/data/rules/python_14.RULE +++ b/src/licensedcode/data/rules/python_14.RULE @@ -13,7 +13,7 @@ ignorable_urls: - http://www.pythonlabs.com/logos.html --- -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +{{PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2}} -------------------------------------------- 1. This LICENSE AGREEMENT is between the Python Software Foundation @@ -62,10 +62,10 @@ products or services of Licensee, or any third party. agrees to be bound by the terms and conditions of this License Agreement. -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +BEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}} ------------------------------------------- -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the diff --git a/src/licensedcode/data/rules/python_16.RULE b/src/licensedcode/data/rules/python_16.RULE index 524c699588..83fac311a1 100644 --- a/src/licensedcode/data/rules/python_16.RULE +++ b/src/licensedcode/data/rules/python_16.RULE @@ -5,4 +5,4 @@ relevance: 100 --- are licensed - under the `Python Software Foundation License version 2`__. \ No newline at end of file + under the `{{Python Software Foundation License version 2}}`__. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_17.RULE b/src/licensedcode/data/rules/python_17.RULE index 13bbda73e8..6d787c4891 100644 --- a/src/licensedcode/data/rules/python_17.RULE +++ b/src/licensedcode/data/rules/python_17.RULE @@ -4,4 +4,4 @@ is_license_tag: yes relevance: 100 --- -License: Python Software Foundation License version 2 \ No newline at end of file +License: {{Python Software Foundation License version 2}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_2.RULE b/src/licensedcode/data/rules/python_2.RULE index c61cfdbafb..2e6e4d043b 100644 --- a/src/licensedcode/data/rules/python_2.RULE +++ b/src/licensedcode/data/rules/python_2.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Python License 2.0 \ No newline at end of file +{{Python License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_2001.RULE b/src/licensedcode/data/rules/python_2001.RULE index 3e0aa3304a..e00832f7f9 100644 --- a/src/licensedcode/data/rules/python_2001.RULE +++ b/src/licensedcode/data/rules/python_2001.RULE @@ -27,7 +27,7 @@ at the Corporation for National Research Initiatives (CNRI) in Reston, Virginia where he released several versions of the software. Python 1.6 was the last of the versions released by CNRI. In 2000, Guido and the Python core development team moved to BeOpen.com to form the -BeOpen PythonLabs team. Python 2.0 was the first and only release +BeOpen PythonLabs team. {{Python 2.0}} was the first and only release from BeOpen.com. Following the release of Python 1.6, and after Guido van Rossum left @@ -38,9 +38,9 @@ Foundation (FSF) interacted to develop enabling wording changes to the Python license. Python 1.6.1 is essentially the same as Python 1.6, with a few minor bug fixes, and with a different license that enables later versions to be GPL-compatible. Python 2.1 is a derivative work -of Python 1.6.1, as well as of Python 2.0. +of Python 1.6.1, as well as of {{Python 2.0}}. -After Python 2.0 was released by BeOpen.com, Guido van Rossum and the +After {{Python 2.0}} was released by BeOpen.com, Guido van Rossum and the other PythonLabs developers joined Digital Creations. All intellectual property added from this point on, starting with Python 2.1 and its alpha and beta releases, is owned by the Python Software @@ -104,10 +104,10 @@ agrees to be bound by the terms and conditions of this License Agreement. -BEOPEN.COM TERMS AND CONDITIONS FOR PYTHON 2.0 +BEOPEN.COM TERMS AND CONDITIONS FOR {{PYTHON 2.0}} ---------------------------------------------- -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the diff --git a/src/licensedcode/data/rules/python_2002.RULE b/src/licensedcode/data/rules/python_2002.RULE index 70417bd5cc..74aa112e38 100644 --- a/src/licensedcode/data/rules/python_2002.RULE +++ b/src/licensedcode/data/rules/python_2002.RULE @@ -121,10 +121,10 @@ agrees to be bound by the terms and conditions of this License Agreement. -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +BEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}} ------------------------------------------- -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the diff --git a/src/licensedcode/data/rules/python_2003.RULE b/src/licensedcode/data/rules/python_2003.RULE index e923be320f..2050cb920b 100644 --- a/src/licensedcode/data/rules/python_2003.RULE +++ b/src/licensedcode/data/rules/python_2003.RULE @@ -115,10 +115,10 @@ agrees to be bound by the terms and conditions of this License Agreement. -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +BEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}} ------------------------------------------- -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the diff --git a/src/licensedcode/data/rules/python_2009.RULE b/src/licensedcode/data/rules/python_2009.RULE index fde1187f5b..2e556255be 100644 --- a/src/licensedcode/data/rules/python_2009.RULE +++ b/src/licensedcode/data/rules/python_2009.RULE @@ -74,7 +74,7 @@ direction to make these releases possible. B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON =============================================================== -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +{{PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2}} -------------------------------------------- 1. This LICENSE AGREEMENT is between the Python Software Foundation @@ -124,10 +124,10 @@ agrees to be bound by the terms and conditions of this License Agreement. -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +BEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}} ------------------------------------------- -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the diff --git a/src/licensedcode/data/rules/python_2014.RULE b/src/licensedcode/data/rules/python_2014.RULE index a9bd99938a..c7f539106d 100644 --- a/src/licensedcode/data/rules/python_2014.RULE +++ b/src/licensedcode/data/rules/python_2014.RULE @@ -70,7 +70,7 @@ direction to make these releases possible. B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON =============================================================== -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +{{PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2}} -------------------------------------------- 1. This LICENSE AGREEMENT is between the Python Software Foundation @@ -118,10 +118,10 @@ agrees to be bound by the terms and conditions of this License Agreement. -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +BEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}} ------------------------------------------- -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the diff --git a/src/licensedcode/data/rules/python_2018.RULE b/src/licensedcode/data/rules/python_2018.RULE index fde7b9afcb..3fdbe52536 100644 --- a/src/licensedcode/data/rules/python_2018.RULE +++ b/src/licensedcode/data/rules/python_2018.RULE @@ -68,7 +68,7 @@ direction to make these releases possible. B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON =============================================================== -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +{{PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2}} -------------------------------------------- 1. This LICENSE AGREEMENT is between the Python Software Foundation @@ -117,10 +117,10 @@ agrees to be bound by the terms and conditions of this License Agreement. -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +BEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}} ------------------------------------------- -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the diff --git a/src/licensedcode/data/rules/python_2019.RULE b/src/licensedcode/data/rules/python_2019.RULE index b9853bc54c..ff9a6adea1 100644 --- a/src/licensedcode/data/rules/python_2019.RULE +++ b/src/licensedcode/data/rules/python_2019.RULE @@ -17,7 +17,7 @@ ignorable_urls: B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON =============================================================== -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +{{PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2}} -------------------------------------------- 1. This LICENSE AGREEMENT is between the Python Software Foundation @@ -66,10 +66,10 @@ agrees to be bound by the terms and conditions of this License Agreement. -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +BEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}} ------------------------------------------- -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the diff --git a/src/licensedcode/data/rules/python_22.RULE b/src/licensedcode/data/rules/python_22.RULE index da69b821ec..ef2faccf0b 100644 --- a/src/licensedcode/data/rules/python_22.RULE +++ b/src/licensedcode/data/rules/python_22.RULE @@ -10,7 +10,7 @@ ignorable_holders: A. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING JYTHON ======================================================= -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +{{PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2}} -------------------------------------------- 1. This LICENSE AGREEMENT is between the Python Software Foundation diff --git a/src/licensedcode/data/rules/python_23.RULE b/src/licensedcode/data/rules/python_23.RULE index 98e330b770..8d9ad7d446 100644 --- a/src/licensedcode/data/rules/python_23.RULE +++ b/src/licensedcode/data/rules/python_23.RULE @@ -5,4 +5,4 @@ is_license_notice: yes contributors have signed Python Software Foundation contributor agreements and releases are -covered under the Python Software Foundation license version 2. \ No newline at end of file +covered under the {{Python Software Foundation license version 2}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_29.RULE b/src/licensedcode/data/rules/python_29.RULE index 2126281e06..6e5df02cac 100644 --- a/src/licensedcode/data/rules/python_29.RULE +++ b/src/licensedcode/data/rules/python_29.RULE @@ -7,6 +7,6 @@ referenced_filenames: --- This is free software: you may copy, modify, and/or distribute this work -under the terms of the Python Software Foundation License, version 2 or +under the terms of the {{Python Software Foundation License, version 2}} or later as published by the Python Software Foundation. No warranty expressed or implied. See the file LICENSE.PSF-2 for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_36.RULE b/src/licensedcode/data/rules/python_36.RULE index 24551f5f10..d392f75821 100644 --- a/src/licensedcode/data/rules/python_36.RULE +++ b/src/licensedcode/data/rules/python_36.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://opensource.org/licenses/Python-2.0 --- -Python-2.0: http://opensource.org/licenses/Python-2.0 \ No newline at end of file +{{Python-2.0}}: http://opensource.org/licenses/Python-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_39.RULE b/src/licensedcode/data/rules/python_39.RULE index 89230f1c5d..3eee8d7e1c 100644 --- a/src/licensedcode/data/rules/python_39.RULE +++ b/src/licensedcode/data/rules/python_39.RULE @@ -9,8 +9,8 @@ ignorable_holders: --- license -Python License, Version 2 (Python-2.0) -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +{{Python License, Version 2}} ({{Python-2.0}}) +{{PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2}} 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and diff --git a/src/licensedcode/data/rules/python_40.RULE b/src/licensedcode/data/rules/python_40.RULE index 58f98486e9..c04aec8a88 100644 --- a/src/licensedcode/data/rules/python_40.RULE +++ b/src/licensedcode/data/rules/python_40.RULE @@ -83,7 +83,7 @@ direction to make these releases possible. B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON =============================================================== -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +{{PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2}} 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and @@ -132,9 +132,9 @@ agrees to be bound by the terms and conditions of this License Agreement. -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +BEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}} -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the diff --git a/src/licensedcode/data/rules/python_41.RULE b/src/licensedcode/data/rules/python_41.RULE index 2ca9d8dcd9..59f995fb67 100644 --- a/src/licensedcode/data/rules/python_41.RULE +++ b/src/licensedcode/data/rules/python_41.RULE @@ -134,9 +134,9 @@ agrees to be bound by the terms and conditions of this License Agreement. -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +BEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}} -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the diff --git a/src/licensedcode/data/rules/python_43.RULE b/src/licensedcode/data/rules/python_43.RULE index cb6720895c..0d8fcb2b59 100644 --- a/src/licensedcode/data/rules/python_43.RULE +++ b/src/licensedcode/data/rules/python_43.RULE @@ -81,7 +81,7 @@ direction to make these releases possible. B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON =============================================================== -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +{{PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2}} -------------------------------------------- 1. This LICENSE AGREEMENT is between the Python Software Foundation @@ -131,10 +131,10 @@ agrees to be bound by the terms and conditions of this License Agreement. -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +BEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}} ------------------------------------------- -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the diff --git a/src/licensedcode/data/rules/python_68.RULE b/src/licensedcode/data/rules/python_68.RULE index b8bdafeb45..2061ba18d6 100644 --- a/src/licensedcode/data/rules/python_68.RULE +++ b/src/licensedcode/data/rules/python_68.RULE @@ -140,10 +140,10 @@ PSF LICENSE AGREEMENT FOR PYTHON |release| to be bound by the terms and conditions of this License Agreement. -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +BEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}} ------------------------------------------- -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} .. parsed-literal:: diff --git a/src/licensedcode/data/rules/python_69.RULE b/src/licensedcode/data/rules/python_69.RULE index 90e06f4f0a..ccfcd59071 100644 --- a/src/licensedcode/data/rules/python_69.RULE +++ b/src/licensedcode/data/rules/python_69.RULE @@ -84,7 +84,7 @@ direction to make these releases possible. B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON =============================================================== -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +{{PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2}} -------------------------------------------- 1. This LICENSE AGREEMENT is between the Python Software Foundation @@ -134,10 +134,10 @@ agrees to be bound by the terms and conditions of this License Agreement. -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +BEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}} ------------------------------------------- -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the diff --git a/src/licensedcode/data/rules/python_70.RULE b/src/licensedcode/data/rules/python_70.RULE index 5fa00bea96..7c46fb3f7c 100644 --- a/src/licensedcode/data/rules/python_70.RULE +++ b/src/licensedcode/data/rules/python_70.RULE @@ -82,7 +82,7 @@ direction to make these releases possible. B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON =============================================================== -PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +{{PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2}} -------------------------------------------- 1. This LICENSE AGREEMENT is between the Python Software Foundation @@ -132,10 +132,10 @@ agrees to be bound by the terms and conditions of this License Agreement. -BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +BEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}} ------------------------------------------- -BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the diff --git a/src/licensedcode/data/rules/python_71.RULE b/src/licensedcode/data/rules/python_71.RULE index 8f30167fc6..42bb212e81 100644 --- a/src/licensedcode/data/rules/python_71.RULE +++ b/src/licensedcode/data/rules/python_71.RULE @@ -130,10 +130,10 @@ third party. to be bound by the terms and conditions of this License Agreement. -.. centered:: BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +.. centered:: BEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}} -.. centered:: BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 +.. centered:: BEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}} . This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the Individual or Organization diff --git a/src/licensedcode/data/rules/python_75.RULE b/src/licensedcode/data/rules/python_75.RULE index 85885aa04e..a84c38a886 100644 --- a/src/licensedcode/data/rules/python_75.RULE +++ b/src/licensedcode/data/rules/python_75.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: Python License 2.0 \ No newline at end of file +name: {{Python License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_76.RULE b/src/licensedcode/data/rules/python_76.RULE index 125b48276e..85a26185d8 100644 --- a/src/licensedcode/data/rules/python_76.RULE +++ b/src/licensedcode/data/rules/python_76.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Python-2.0 Python License 2.0 \ No newline at end of file +{{Python-2.0}} {{Python License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_77.RULE b/src/licensedcode/data/rules/python_77.RULE index 9aba15355f..ae82b13e39 100644 --- a/src/licensedcode/data/rules/python_77.RULE +++ b/src/licensedcode/data/rules/python_77.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Python License 2.0 Python-2.0 \ No newline at end of file +{{Python License 2.0}} {{Python-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_78.RULE b/src/licensedcode/data/rules/python_78.RULE index 361a8ce1b9..f0005a48e5 100644 --- a/src/licensedcode/data/rules/python_78.RULE +++ b/src/licensedcode/data/rules/python_78.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: Python-2.0 \ No newline at end of file +license: {{Python-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_79.RULE b/src/licensedcode/data/rules/python_79.RULE index 0046fca877..b8fda69828 100644 --- a/src/licensedcode/data/rules/python_79.RULE +++ b/src/licensedcode/data/rules/python_79.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: Python License 2.0 \ No newline at end of file +license: {{Python License 2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_80.RULE b/src/licensedcode/data/rules/python_80.RULE index 896db55dfc..bad3904ecc 100644 --- a/src/licensedcode/data/rules/python_80.RULE +++ b/src/licensedcode/data/rules/python_80.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -licenseId: Python-2.0 \ No newline at end of file +licenseId: {{Python-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_87.RULE b/src/licensedcode/data/rules/python_87.RULE index 062f042cbd..8037b542d2 100644 --- a/src/licensedcode/data/rules/python_87.RULE +++ b/src/licensedcode/data/rules/python_87.RULE @@ -1,6 +1,7 @@ --- license_expression: python is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/python_91.RULE b/src/licensedcode/data/rules/python_91.RULE index 699d2d5aa3..649ca3a02c 100644 --- a/src/licensedcode/data/rules/python_91.RULE +++ b/src/licensedcode/data/rules/python_91.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -licenses.nuget.org/Python-2.0 \ No newline at end of file +licenses.nuget.org/{{Python-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_98.RULE b/src/licensedcode/data/rules/python_98.RULE index 83ff09955c..4a09e282c3 100644 --- a/src/licensedcode/data/rules/python_98.RULE +++ b/src/licensedcode/data/rules/python_98.RULE @@ -6,7 +6,7 @@ referenced_filenames: --- # License: -# Python Software Foundation License version 2 +# {{Python Software Foundation License version 2}} # # See the file "LICENSE" for terms & conditions for usage, and a DISCLAIMER OF # ALL WARRANTIES. \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_required_phrase_1.RULE b/src/licensedcode/data/rules/python_required_phrase_1.RULE new file mode 100644 index 0000000000..edce01c301 --- /dev/null +++ b/src/licensedcode/data/rules/python_required_phrase_1.RULE @@ -0,0 +1,7 @@ +--- +license_expression: python +is_license_tag: yes +is_required_phrase: yes +--- + +python 2 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_required_phrase_2.RULE b/src/licensedcode/data/rules/python_required_phrase_2.RULE new file mode 100644 index 0000000000..a6b3a3f194 --- /dev/null +++ b/src/licensedcode/data/rules/python_required_phrase_2.RULE @@ -0,0 +1,7 @@ +--- +license_expression: python +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under the psf \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_required_phrase_3.RULE b/src/licensedcode/data/rules/python_required_phrase_3.RULE new file mode 100644 index 0000000000..43889a4d88 --- /dev/null +++ b/src/licensedcode/data/rules/python_required_phrase_3.RULE @@ -0,0 +1,7 @@ +--- +license_expression: python +is_license_tag: yes +is_required_phrase: yes +--- + +python license version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_required_phrase_4.RULE b/src/licensedcode/data/rules/python_required_phrase_4.RULE new file mode 100644 index 0000000000..01e0d72fca --- /dev/null +++ b/src/licensedcode/data/rules/python_required_phrase_4.RULE @@ -0,0 +1,7 @@ +--- +license_expression: python +is_license_tag: yes +is_required_phrase: yes +--- + +python software foundation license version 2 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_required_phrase_5.RULE b/src/licensedcode/data/rules/python_required_phrase_5.RULE new file mode 100644 index 0000000000..7837bec03b --- /dev/null +++ b/src/licensedcode/data/rules/python_required_phrase_5.RULE @@ -0,0 +1,7 @@ +--- +license_expression: python +is_license_tag: yes +is_required_phrase: yes +--- + +license agreement for python 2 0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_required_phrase_6.RULE b/src/licensedcode/data/rules/python_required_phrase_6.RULE new file mode 100644 index 0000000000..7a169fe64c --- /dev/null +++ b/src/licensedcode/data/rules/python_required_phrase_6.RULE @@ -0,0 +1,7 @@ +--- +license_expression: python +is_license_tag: yes +is_required_phrase: yes +--- + +python open source license agreement version 1 \ No newline at end of file diff --git a/src/licensedcode/data/rules/python_required_phrase_7.RULE b/src/licensedcode/data/rules/python_required_phrase_7.RULE new file mode 100644 index 0000000000..b12fa51bc4 --- /dev/null +++ b/src/licensedcode/data/rules/python_required_phrase_7.RULE @@ -0,0 +1,7 @@ +--- +license_expression: python +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under psf \ No newline at end of file diff --git a/src/licensedcode/data/rules/samba-dco-1.0_1.RULE b/src/licensedcode/data/rules/samba-dco-1.0_1.RULE new file mode 100644 index 0000000000..8c831ad8ee --- /dev/null +++ b/src/licensedcode/data/rules/samba-dco-1.0_1.RULE @@ -0,0 +1,7 @@ +--- +license_expression: samba-dco-1.0 +is_license_reference: yes +relevance: 100 +--- + +"Samba Developer's Declaration, Version 1.0" \ No newline at end of file diff --git a/src/licensedcode/data/rules/samba-dco-1.0_and_dco-1.1_and_cc-by-sa-4.0_1.RULE b/src/licensedcode/data/rules/samba-dco-1.0_and_dco-1.1_and_cc-by-sa-4.0_1.RULE new file mode 100644 index 0000000000..bee08d6f03 --- /dev/null +++ b/src/licensedcode/data/rules/samba-dco-1.0_and_dco-1.1_and_cc-by-sa-4.0_1.RULE @@ -0,0 +1,23 @@ +--- +license_expression: samba-dco-1.0 AND dco-1.1 AND cc-by-sa-4.0 +is_license_notice: yes +notes: this is a license of license, hence we treat it as a mere clue +ignorable_copyrights: + - (c) 2005 Open Source Development Labs, Inc. + - (c) 2011 Software Freedom Conservancy, Inc. +ignorable_holders: + - Open Source Development Labs, Inc. + - Software Freedom Conservancy, Inc. +ignorable_urls: + - http://web.archive.org/web/20070306195036/http:/osdlab.org/newsroom/press_releases/2004/2004_05_24_dco.html + - https://creativecommons.org/licenses/by-sa/4.0/legalcode +--- + +The "Samba Developer's Declaration, Version 1.0" is: + (C) 2011 Software Freedom Conservancy, Inc. + (C) 2005 Open Source Development Labs, Inc. + +licensed under Creative Commons Attribution-ShareAlike 4.0 License as found +at https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on +"Developer's Certificate of Origin 1.1" as found at +http://web.archive.org/web/20070306195036/http://osdlab.org/newsroom/press_releases/2004/2004_05_24_dco.html diff --git a/src/licensedcode/data/rules/slf4j-2008_1.RULE b/src/licensedcode/data/rules/slf4j-2008_1.RULE index 31288074d9..78fd5c2597 100644 --- a/src/licensedcode/data/rules/slf4j-2008_1.RULE +++ b/src/licensedcode/data/rules/slf4j-2008_1.RULE @@ -21,7 +21,7 @@ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTIO CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -These terms are identical to those of the MIT License, also called the X License or +These terms are identical to those of {{the MIT License}}, also called the X License or the X11 License, which is a simple, permissive non-copyleft free software license. It is deemed compatible with virtually all types of licenses, commercial or otherwise. In particular, the Free Software Foundation has declared it compatible with GNU GPL. diff --git a/src/licensedcode/data/rules/slf4j-2008_2.RULE b/src/licensedcode/data/rules/slf4j-2008_2.RULE index a5fd2bd5aa..d94a15466e 100644 --- a/src/licensedcode/data/rules/slf4j-2008_2.RULE +++ b/src/licensedcode/data/rules/slf4j-2008_2.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -source code and binaries are distributed under the MIT license. \ No newline at end of file +source code and binaries are {{distributed under the MIT license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0+_for_agpl-1.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_agpl-1.0+_for_agpl-1.0-plus.RULE index fcee49cb83..4fdf117d9e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0+_for_agpl-1.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_agpl-1.0+_for_agpl-1.0-plus.RULE @@ -1,6 +1,7 @@ --- license_expression: agpl-1.0-plus is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 50 minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-or-later_for_agpl-1.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-or-later_for_agpl-1.0-plus.RULE index 62d403b114..9e956df1cd 100644 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-or-later_for_agpl-1.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_agpl-1.0-or-later_for_agpl-1.0-plus.RULE @@ -1,10 +1,11 @@ --- license_expression: agpl-1.0-plus is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -agpl-1.0-or-later \ No newline at end of file +{{agpl-1.0-or-later}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0+_for_agpl-3.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0+_for_agpl-3.0-plus.RULE index 9cce13f19f..3921a9e603 100644 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0+_for_agpl-3.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0+_for_agpl-3.0-plus.RULE @@ -1,10 +1,10 @@ --- license_expression: agpl-3.0-plus is_license_reference: yes -is_continuous: yes -relevance: 90 +is_required_phrase: yes +relevance: 100 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -agpl-3.0+ \ No newline at end of file +AGPL-3.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-only_for_agpl-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-only_for_agpl-3.0.RULE index 0a67d59a62..cd497540fc 100644 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-only_for_agpl-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-only_for_agpl-3.0.RULE @@ -1,10 +1,10 @@ --- license_expression: agpl-3.0 is_license_reference: yes -is_continuous: yes -relevance: 90 +is_required_phrase: yes +relevance: 100 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -agpl-3.0-only \ No newline at end of file +AGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-or-later_for_agpl-3.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-or-later_for_agpl-3.0-plus.RULE index ac4ba1f9de..54c5dbf3e2 100644 --- a/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-or-later_for_agpl-3.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_agpl-3.0-or-later_for_agpl-3.0-plus.RULE @@ -1,10 +1,10 @@ --- license_expression: agpl-3.0-plus is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -agpl-3.0-or-later \ No newline at end of file +AGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_apache-1.1_for_apache-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_apache-1.1_for_apache-1.1.RULE index 9fe9fc8a4a..a1687a7a83 100644 --- a/src/licensedcode/data/rules/spdx_license_id_apache-1.1_for_apache-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_apache-1.1_for_apache-1.1.RULE @@ -1,10 +1,11 @@ --- license_expression: apache-1.1 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 90 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -apache-1.1 \ No newline at end of file +{{apache-1.1}} diff --git a/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE index d602a35eea..b64d0e4a45 100644 --- a/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE @@ -1,9 +1,10 @@ --- license_expression: apache-2.0 is_license_reference: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -apache-2.0 \ No newline at end of file +Apache-2.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-netbsd_for_bsd-2-clause-netbsd.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-netbsd_for_bsd-2-clause-netbsd.RULE index 78ed12c579..0f64f1b38b 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-netbsd_for_bsd-2-clause-netbsd.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause-netbsd_for_bsd-2-clause-netbsd.RULE @@ -1,10 +1,10 @@ --- license_expression: bsd-simplified is_license_reference: yes -is_continuous: yes -relevance: 50 +is_required_phrase: yes +relevance: 100 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -bsd-2-clause-netbsd \ No newline at end of file +BSD-2-Clause-NetBSD \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE index 1fc694e8b3..a8f35198e5 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-2-clause_for_bsd-simplified.RULE @@ -1,10 +1,10 @@ --- license_expression: bsd-simplified is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -bsd-2-clause \ No newline at end of file +BSD-2-Clause \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.RULE b/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.RULE index 92c80c2a8f..0c8555be85 100644 --- a/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.RULE @@ -1,6 +1,7 @@ --- license_expression: bsd-original is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 100 minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-3.0_for_cc-by-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-3.0_for_cc-by-3.0.RULE index ec9b783811..07069182ef 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-3.0_for_cc-by-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-3.0_for_cc-by-3.0.RULE @@ -1,10 +1,10 @@ --- license_expression: cc-by-3.0 is_license_reference: yes -is_continuous: yes -relevance: 50 +is_required_phrase: yes +relevance: 100 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -cc-by-3.0 \ No newline at end of file +CC-BY-3.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE index 7923bc165d..4fa7a46e12 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-4.0_for_cc-by-4.0.RULE @@ -1,10 +1,10 @@ --- license_expression: cc-by-4.0 is_license_reference: yes -is_continuous: yes -relevance: 50 +is_required_phrase: yes +relevance: 100 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -cc-by-4.0 \ No newline at end of file +CC-BY-4.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-1.0_for_cc-by-nc-nd-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-1.0_for_cc-by-nc-nd-1.0.RULE index 7da0e649f6..3ede8e3fa5 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-1.0_for_cc-by-nc-nd-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-1.0_for_cc-by-nc-nd-1.0.RULE @@ -1,10 +1,11 @@ --- license_expression: cc-by-nc-nd-1.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -cc-by-nc-nd-1.0 \ No newline at end of file +{{cc-by-nc-nd-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-4.0_for_cc-by-nc-nd-4.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-4.0_for_cc-by-nc-nd-4.0.RULE index 7294b40360..f6bffd1587 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-4.0_for_cc-by-nc-nd-4.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-nc-nd-4.0_for_cc-by-nc-nd-4.0.RULE @@ -1,10 +1,11 @@ --- license_expression: cc-by-nc-nd-4.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -cc-by-nc-nd-4.0 \ No newline at end of file +{{cc-by-nc-nd-4.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-3.0_for_cc-by-sa-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-3.0_for_cc-by-sa-3.0.RULE index ea4a0f7222..829c8d6ce6 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-3.0_for_cc-by-sa-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc-by-sa-3.0_for_cc-by-sa-3.0.RULE @@ -1,10 +1,11 @@ --- license_expression: cc-by-sa-3.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -cc-by-sa-3.0 \ No newline at end of file +{{cc-by-sa-3.0}} diff --git a/src/licensedcode/data/rules/spdx_license_id_cc0-1.0_for_cc0-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cc0-1.0_for_cc0-1.0.RULE index 833b26952f..30ba2c908e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cc0-1.0_for_cc0-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cc0-1.0_for_cc0-1.0.RULE @@ -1,10 +1,10 @@ --- license_expression: cc0-1.0 is_license_reference: yes -is_continuous: yes -relevance: 95 +is_required_phrase: yes +relevance: 100 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -cc0-1.0 \ No newline at end of file +CC0-1.0 \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_cddl-1.0_for_cddl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_cddl-1.0_for_cddl-1.0.RULE index 74df351182..3545e28e9e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_cddl-1.0_for_cddl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_cddl-1.0_for_cddl-1.0.RULE @@ -1,10 +1,11 @@ --- license_expression: cddl-1.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 95 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -cddl-1.0 \ No newline at end of file +{{cddl-1.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_epl-2.0_for_epl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_epl-2.0_for_epl-2.0.RULE index e139d85300..38f4a3a944 100644 --- a/src/licensedcode/data/rules/spdx_license_id_epl-2.0_for_epl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_epl-2.0_for_epl-2.0.RULE @@ -1,10 +1,11 @@ --- license_expression: epl-2.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -epl-2.0 \ No newline at end of file +{{epl-2.0}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0+_for_gpl-1.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0+_for_gpl-1.0-plus.RULE index 05f3d3ff71..bfbfdc7c8a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0+_for_gpl-1.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0+_for_gpl-1.0-plus.RULE @@ -1,10 +1,10 @@ --- license_expression: gpl-1.0-plus is_license_reference: yes -is_continuous: yes -relevance: 50 +is_required_phrase: yes +relevance: 100 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -gpl-1.0+ \ No newline at end of file +GPL-1.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-only_for_gpl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-only_for_gpl-1.0.RULE index 4b6549f92e..b7345c176e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-only_for_gpl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-only_for_gpl-1.0.RULE @@ -1,10 +1,11 @@ --- license_expression: gpl-1.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -gpl-1.0-only \ No newline at end of file +{{gpl-1.0-only}} diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE index c116cb05df..afa7733d2e 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE @@ -1,10 +1,10 @@ --- license_expression: gpl-1.0-plus is_license_reference: yes -is_continuous: yes -relevance: 50 +is_required_phrase: yes +relevance: 100 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -gpl-1.0-or-later \ No newline at end of file +GPL-1.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0+_for_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0+_for_gpl-2.0-plus.RULE index fc16052f3c..0bbc83142a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0+_for_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0+_for_gpl-2.0-plus.RULE @@ -1,10 +1,10 @@ --- license_expression: gpl-2.0-plus is_license_reference: yes -is_continuous: yes -relevance: 50 +is_required_phrase: yes +relevance: 100 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -gpl-2.0+ \ No newline at end of file +GPL-2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-only_for_gpl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-only_for_gpl-2.0.RULE index f57f6dd9c0..0eee2f0092 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-only_for_gpl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-only_for_gpl-2.0.RULE @@ -1,10 +1,10 @@ --- license_expression: gpl-2.0 is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 100 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -gpl-2.0-only \ No newline at end of file +GPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE index 81c635ab06..f30c029a42 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-2.0-or-later_for_gpl-2.0-plus.RULE @@ -1,10 +1,10 @@ --- license_expression: gpl-2.0-plus is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -gpl-2.0-or-later \ No newline at end of file +GPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-only_for_gpl-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-only_for_gpl-3.0.RULE index 4e33389ead..1b7e8a593d 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-only_for_gpl-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-only_for_gpl-3.0.RULE @@ -1,10 +1,10 @@ --- license_expression: gpl-3.0 is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -gpl-3.0-only \ No newline at end of file +GPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE index 85553f36c6..1563f8adb7 100644 --- a/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_gpl-3.0-or-later_for_gpl-3.0-plus.RULE @@ -1,10 +1,10 @@ --- license_expression: gpl-3.0-plus is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -gpl-3.0-or-later \ No newline at end of file +GPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0+_for_lgpl-2.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0+_for_lgpl-2.0-plus.RULE index 58e0272d02..56cea36c5a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0+_for_lgpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0+_for_lgpl-2.0-plus.RULE @@ -1,10 +1,10 @@ --- license_expression: lgpl-2.0-plus is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -lgpl-2.0+ \ No newline at end of file +lgpl 2.0+ \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-only_for_lgpl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-only_for_lgpl-2.0.RULE index fde90f4d7d..e3602cb59c 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-only_for_lgpl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-only_for_lgpl-2.0.RULE @@ -1,10 +1,10 @@ --- license_expression: lgpl-2.0 is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -lgpl-2.0-only \ No newline at end of file +LGPL-2.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-or-later_for_lgpl-2.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-or-later_for_lgpl-2.0-plus.RULE index 0bd5d00415..8949834aa0 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-or-later_for_lgpl-2.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.0-or-later_for_lgpl-2.0-plus.RULE @@ -1,10 +1,10 @@ --- license_expression: lgpl-2.0-plus is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -lgpl-2.0-or-later \ No newline at end of file +LGPL-2.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-only_for_lgpl-2.1.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-only_for_lgpl-2.1.RULE index a4ae1d1a08..0669971649 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-only_for_lgpl-2.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-only_for_lgpl-2.1.RULE @@ -1,10 +1,10 @@ --- license_expression: lgpl-2.1 is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -lgpl-2.1-only \ No newline at end of file +LGPL-2.1-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE index 17dd6be362..6b88d45a32 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpl-2.1-or-later_for_lgpl-2.1-plus.RULE @@ -1,10 +1,10 @@ --- license_expression: lgpl-2.1-plus is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -lgpl-2.1-or-later \ No newline at end of file +LGPL 2.1 or later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-only_for_lgpl-3.0.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-only_for_lgpl-3.0.RULE index a1054098e6..8a0b192e4b 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-only_for_lgpl-3.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-only_for_lgpl-3.0.RULE @@ -1,10 +1,10 @@ --- license_expression: lgpl-3.0 is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -lgpl-3.0-only \ No newline at end of file +LGPL-3.0-only \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-or-later_for_lgpl-3.0-plus.RULE b/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-or-later_for_lgpl-3.0-plus.RULE index 320d77b7a8..484c2da29a 100644 --- a/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-or-later_for_lgpl-3.0-plus.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_lgpl-3.0-or-later_for_lgpl-3.0-plus.RULE @@ -1,10 +1,10 @@ --- license_expression: lgpl-3.0-plus is_license_reference: yes -is_continuous: yes +is_required_phrase: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -lgpl-3.0-or-later \ No newline at end of file +LGPL-3.0-or-later \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_mpl-1.0_for_mpl-1.0.RULE b/src/licensedcode/data/rules/spdx_license_id_mpl-1.0_for_mpl-1.0.RULE index 3d8f6587a8..518461c17d 100644 --- a/src/licensedcode/data/rules/spdx_license_id_mpl-1.0_for_mpl-1.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_mpl-1.0_for_mpl-1.0.RULE @@ -1,6 +1,7 @@ --- license_expression: mpl-1.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 50 minimum_coverage: 100 diff --git a/src/licensedcode/data/rules/spdx_license_id_mpl-1.1_for_mpl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_mpl-1.1_for_mpl-1.1.RULE index 778af18069..71c1a318de 100644 --- a/src/licensedcode/data/rules/spdx_license_id_mpl-1.1_for_mpl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_mpl-1.1_for_mpl-1.1.RULE @@ -1,10 +1,11 @@ --- license_expression: mpl-1.1 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -mpl-1.1 \ No newline at end of file +{{mpl-1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/spdx_license_id_mpl-2.0_for_mpl-2.0.RULE b/src/licensedcode/data/rules/spdx_license_id_mpl-2.0_for_mpl-2.0.RULE index b66ae0b16b..0a5775eddb 100644 --- a/src/licensedcode/data/rules/spdx_license_id_mpl-2.0_for_mpl-2.0.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_mpl-2.0_for_mpl-2.0.RULE @@ -1,10 +1,11 @@ --- license_expression: mpl-2.0 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -mpl-2.0 \ No newline at end of file +{{mpl-2.0}} diff --git a/src/licensedcode/data/rules/spdx_license_id_ofl-1.1_for_ofl-1.1.RULE b/src/licensedcode/data/rules/spdx_license_id_ofl-1.1_for_ofl-1.1.RULE index cbf12d5b7a..60ce834b1f 100644 --- a/src/licensedcode/data/rules/spdx_license_id_ofl-1.1_for_ofl-1.1.RULE +++ b/src/licensedcode/data/rules/spdx_license_id_ofl-1.1_for_ofl-1.1.RULE @@ -1,10 +1,11 @@ --- license_expression: ofl-1.1 is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 50 minimum_coverage: 100 notes: Used to detect a bare SPDX license id --- -ofl-1.1 \ No newline at end of file +{{ofl-1.1}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/st-mcd-2.0_10.RULE b/src/licensedcode/data/rules/st-mcd-2.0_10.RULE index 9e3c6eb7be..615fca4ac0 100644 --- a/src/licensedcode/data/rules/st-mcd-2.0_10.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_10.RULE @@ -3,7 +3,7 @@ license_expression: st-mcd-2.0 is_license_reference: yes relevance: 100 ignorable_urls: - - https://www.st.com/%7B%7BSLA0044 + - https://www.st.com/SLA0044 --- -https://www.st.com/{{SLA0044}}) \ No newline at end of file +{{ https://www.st.com/SLA0044 }}) diff --git a/src/licensedcode/data/rules/st-mcd-2.0_12.RULE b/src/licensedcode/data/rules/st-mcd-2.0_12.RULE index e03d784a22..ff6e9d2782 100644 --- a/src/licensedcode/data/rules/st-mcd-2.0_12.RULE +++ b/src/licensedcode/data/rules/st-mcd-2.0_12.RULE @@ -2,9 +2,9 @@ license_expression: st-mcd-2.0 is_license_notice: yes ignorable_urls: - - https://www.st.com/%7B%7BSLA0044 + - https://www.st.com/SLA0044 --- -This software component is licensed by {{ST under Ultimate Liberty}} license {{SLA0044}}, +This software component is licensed by {{ST under Ultimate Liberty}} license SLA0044, the "License". You may not use this file except in compliance with this license. -You may obtain a copy of the license [here](https://www.st.com/{{SLA0044}}) \ No newline at end of file +You may obtain a copy of the license [here]({{https://www.st.com/SLA0044}}) diff --git a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_unicode_1.RULE b/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_unicode_1.RULE index 409c5a442a..aad484fa26 100644 --- a/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_unicode_1.RULE +++ b/src/licensedcode/data/rules/sun-bsd-no-nuclear_itext_unicode_1.RULE @@ -18,7 +18,7 @@ The following license applies to these materials: http://www.unicode.org/copyright.html#Exhibit1 EXHIBIT 1 - UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + {{UNICODE, INC. LICENSE AGREEMENT}} - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, diff --git a/src/licensedcode/data/rules/unicode-data-software2.RULE b/src/licensedcode/data/rules/unicode-data-software2.RULE index 3f53267448..8572671678 100644 --- a/src/licensedcode/data/rules/unicode-data-software2.RULE +++ b/src/licensedcode/data/rules/unicode-data-software2.RULE @@ -18,7 +18,7 @@ ignorable_urls: http://www.unicode.org/copyright.html#Exhibit1 EXHIBIT 1 -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE +{{UNICODE, INC. LICENSE AGREEMENT}} - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, diff --git a/src/licensedcode/data/rules/unicode_11.RULE b/src/licensedcode/data/rules/unicode_11.RULE index c4548d5c5e..019e7156ae 100644 --- a/src/licensedcode/data/rules/unicode_11.RULE +++ b/src/licensedcode/data/rules/unicode_11.RULE @@ -10,7 +10,7 @@ ignorable_urls: --- Portions of the unit tests are derived from the Unicode standard, which -is subject to the Unicode, Inc. License Agreement: +is subject to the {{Unicode, Inc. License Agreement}}: Copyright (c) 1991-2014 Unicode, Inc. All rights reserved. Distributed under the Terms of Use in diff --git a/src/licensedcode/data/rules/unicode_15.RULE b/src/licensedcode/data/rules/unicode_15.RULE index e07ab4beaf..f31f226ed1 100644 --- a/src/licensedcode/data/rules/unicode_15.RULE +++ b/src/licensedcode/data/rules/unicode_15.RULE @@ -5,6 +5,6 @@ ignorable_urls: - http://www.unicode.org/copyright.html#License --- -The data in `unicode_tables/` is licensed under the Unicode -License Agreement -([LICENSE-UNICODE](http://www.unicode.org/copyright.html#License)). \ No newline at end of file +The data in `unicode_tables/` is {{licensed under the Unicode +License Agreement}} +([{{LICENSE-UNICODE}}](http://www.unicode.org/copyright.html#License)). \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_16.RULE b/src/licensedcode/data/rules/unicode_16.RULE index 5b77674ec4..833490d455 100644 --- a/src/licensedcode/data/rules/unicode_16.RULE +++ b/src/licensedcode/data/rules/unicode_16.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -The data in unicode_tables/ is licensed under the Unicode License Agreement (LICENSE-UNICODE). \ No newline at end of file +The data in unicode_tables/ is {{licensed under the Unicode License Agreement}} ({{LICENSE-UNICODE}}). \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_19.RULE b/src/licensedcode/data/rules/unicode_19.RULE index c15f20dfc4..483124de67 100644 --- a/src/licensedcode/data/rules/unicode_19.RULE +++ b/src/licensedcode/data/rules/unicode_19.RULE @@ -8,6 +8,6 @@ ignorable_urls: - http://www.unicode.org/copyright.html#License --- -The data is licensed under the Unicode -License Agreement +The data is {{licensed under the Unicode +License Agreement}} ([LICENSE-UNICODE](http://www.unicode.org/copyright.html#License)). \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_20.RULE b/src/licensedcode/data/rules/unicode_20.RULE index e93274faca..b6f924f29e 100644 --- a/src/licensedcode/data/rules/unicode_20.RULE +++ b/src/licensedcode/data/rules/unicode_20.RULE @@ -8,5 +8,5 @@ ignorable_urls: - http://www.unicode.org/copyright.html#License --- -unicode_tables is licensed under the Unicode License Agreement +unicode_tables is {{licensed under the Unicode License Agreement}} (LICENSE-UNICODE(http://www.unicode.org/copyright.html#License)) \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_3.RULE b/src/licensedcode/data/rules/unicode_3.RULE index 50ba3cb0e5..7e9558f8a7 100644 --- a/src/licensedcode/data/rules/unicode_3.RULE +++ b/src/licensedcode/data/rules/unicode_3.RULE @@ -13,7 +13,7 @@ ignorable_urls: - http://www.unicode.org/reports --- -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE +{{UNICODE, INC. LICENSE AGREEMENT}} - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. Unicode Data Files do not include PDF online code charts under the directory http://www.unicode.org/Public/. Software includes any source code published in the Unicode Standard or under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. diff --git a/src/licensedcode/data/rules/unicode_4.RULE b/src/licensedcode/data/rules/unicode_4.RULE index 215cdb434c..26ea0e0ff9 100644 --- a/src/licensedcode/data/rules/unicode_4.RULE +++ b/src/licensedcode/data/rules/unicode_4.RULE @@ -15,7 +15,7 @@ ignorable_urls: --- EXHIBIT 1 - UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE + {{UNICODE, INC. LICENSE AGREEMENT}} - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories diff --git a/src/licensedcode/data/rules/unicode_40.RULE b/src/licensedcode/data/rules/unicode_40.RULE index d0a34d86d0..bf8f5a1127 100644 --- a/src/licensedcode/data/rules/unicode_40.RULE +++ b/src/licensedcode/data/rules/unicode_40.RULE @@ -9,7 +9,7 @@ ignorable_urls: - http://www.unicode.org/reports --- -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE +{{UNICODE, INC. LICENSE AGREEMENT}} - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and diff --git a/src/licensedcode/data/rules/unicode_41.RULE b/src/licensedcode/data/rules/unicode_41.RULE index a907408d4b..e4a62ff814 100644 --- a/src/licensedcode/data/rules/unicode_41.RULE +++ b/src/licensedcode/data/rules/unicode_41.RULE @@ -9,7 +9,7 @@ ignorable_urls: - http://www.unicode.org/reports --- -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE +{{UNICODE, INC. LICENSE AGREEMENT}} - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and diff --git a/src/licensedcode/data/rules/unicode_5.RULE b/src/licensedcode/data/rules/unicode_5.RULE index 6d9b876785..78612f048c 100644 --- a/src/licensedcode/data/rules/unicode_5.RULE +++ b/src/licensedcode/data/rules/unicode_5.RULE @@ -13,7 +13,7 @@ The following license applies to these materials: http://www.unicode.org/copyright.html#Exhibit1 EXHIBIT 1 -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE +{{UNICODE, INC. LICENSE AGREEMENT}} - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, diff --git a/src/licensedcode/data/rules/unicode_53.RULE b/src/licensedcode/data/rules/unicode_53.RULE index 5a0fab2c93..1fa551cd39 100644 --- a/src/licensedcode/data/rules/unicode_53.RULE +++ b/src/licensedcode/data/rules/unicode_53.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE \ No newline at end of file +{{UNICODE, INC. LICENSE AGREEMENT}} - DATA FILES AND SOFTWARE \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_54.RULE b/src/licensedcode/data/rules/unicode_54.RULE index dd57b40b52..d35e86eed8 100644 --- a/src/licensedcode/data/rules/unicode_54.RULE +++ b/src/licensedcode/data/rules/unicode_54.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 99 --- -UNICODE, INC. LICENSE AGREEMENT \ No newline at end of file +{{UNICODE, INC. LICENSE AGREEMENT}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_55.RULE b/src/licensedcode/data/rules/unicode_55.RULE index bf42b96d78..b30aff85b2 100644 --- a/src/licensedcode/data/rules/unicode_55.RULE +++ b/src/licensedcode/data/rules/unicode_55.RULE @@ -11,7 +11,7 @@ ignorable_urls: - https://www.unicode.org/copyright.html --- -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE +{{UNICODE, INC. LICENSE AGREEMENT}} - DATA FILES AND SOFTWARE See Terms of Use for definitions of Unicode Inc.'s Data Files and Software. diff --git a/src/licensedcode/data/rules/unicode_6.RULE b/src/licensedcode/data/rules/unicode_6.RULE index 7ccc118bd6..98813e6df0 100644 --- a/src/licensedcode/data/rules/unicode_6.RULE +++ b/src/licensedcode/data/rules/unicode_6.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.unicode.org/reports --- -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE +{{UNICODE, INC. LICENSE AGREEMENT}} - DATA FILES AND SOFTWARE

Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. Unicode Data Files do not include PDF online code charts under the directory http://www.unicode.org/Public/. Software includes any source code published in the Unicode Standard or under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/.

diff --git a/src/licensedcode/data/rules/unicode_63.RULE b/src/licensedcode/data/rules/unicode_63.RULE index 72edbe193c..d08f932e82 100644 --- a/src/licensedcode/data/rules/unicode_63.RULE +++ b/src/licensedcode/data/rules/unicode_63.RULE @@ -9,7 +9,7 @@ ignorable_urls: - https://www.unicode.org/copyright.html --- -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE +{{UNICODE, INC. LICENSE AGREEMENT}} - DATA FILES AND SOFTWARE See Terms of Use for definitions of Unicode Inc.’s Data Files and Software. diff --git a/src/licensedcode/data/rules/unicode_64.RULE b/src/licensedcode/data/rules/unicode_64.RULE index 3b8b14993f..2b7089b506 100644 --- a/src/licensedcode/data/rules/unicode_64.RULE +++ b/src/licensedcode/data/rules/unicode_64.RULE @@ -9,7 +9,7 @@ ignorable_urls: - https://www.unicode.org/copyright.html --- -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE +{{UNICODE, INC. LICENSE AGREEMENT}} - DATA FILES AND SOFTWARE See Terms of Use for definitions of Unicode Inc.’s Data Files and Software. diff --git a/src/licensedcode/data/rules/unicode_65.RULE b/src/licensedcode/data/rules/unicode_65.RULE index dc81938a08..24a6b8bb9a 100644 --- a/src/licensedcode/data/rules/unicode_65.RULE +++ b/src/licensedcode/data/rules/unicode_65.RULE @@ -9,7 +9,7 @@ ignorable_urls: - https://www.unicode.org/copyright.html --- -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE +{{UNICODE, INC. LICENSE AGREEMENT}} - DATA FILES AND SOFTWARE See Terms of Use for definitions of Unicode Inc.’s Data Files and Software. diff --git a/src/licensedcode/data/rules/unicode_66.RULE b/src/licensedcode/data/rules/unicode_66.RULE index 3b54fc7894..af9d5391a8 100644 --- a/src/licensedcode/data/rules/unicode_66.RULE +++ b/src/licensedcode/data/rules/unicode_66.RULE @@ -1,6 +1,7 @@ --- license_expression: unicode is_license_tag: yes +is_required_phrase: yes is_continuous: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/unicode_7.RULE b/src/licensedcode/data/rules/unicode_7.RULE index a0f1e0d715..4f58e9bd1b 100644 --- a/src/licensedcode/data/rules/unicode_7.RULE +++ b/src/licensedcode/data/rules/unicode_7.RULE @@ -8,6 +8,6 @@ ignorable_urls: - http://www.unicode.org/copyright.html#License --- -licensed under the Unicode -License Agreement +{{licensed under the Unicode +License Agreement}} ([LICENSE-UNICODE](http://www.unicode.org/copyright.html#License)). \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_9.RULE b/src/licensedcode/data/rules/unicode_9.RULE index 77c4efc3c0..803ff280e6 100644 --- a/src/licensedcode/data/rules/unicode_9.RULE +++ b/src/licensedcode/data/rules/unicode_9.RULE @@ -13,7 +13,7 @@ ignorable_urls: - http://www.unicode.org/reports --- -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE +{{UNICODE, INC. LICENSE AGREEMENT}} - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/ . Unicode Software includes any source code published in the Unicode Standard or under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, and http://www.unicode.org/cldr/data/. diff --git a/src/licensedcode/data/rules/unicode_required_phrase_1.RULE b/src/licensedcode/data/rules/unicode_required_phrase_1.RULE new file mode 100644 index 0000000000..5b031b61d7 --- /dev/null +++ b/src/licensedcode/data/rules/unicode_required_phrase_1.RULE @@ -0,0 +1,7 @@ +--- +license_expression: unicode +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under the unicode license agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/unicode_required_phrase_2.RULE b/src/licensedcode/data/rules/unicode_required_phrase_2.RULE new file mode 100644 index 0000000000..4f6ede6976 --- /dev/null +++ b/src/licensedcode/data/rules/unicode_required_phrase_2.RULE @@ -0,0 +1,7 @@ +--- +license_expression: unicode +is_license_tag: yes +is_required_phrase: yes +--- + +licensed under unicode license agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_16.RULE b/src/licensedcode/data/rules/warranty-disclaimer_16.RULE index edb5a44513..3f597f01e8 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_16.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_16.RULE @@ -4,7 +4,7 @@ is_license_notice: yes notes: this is the mit disclaimer --- -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +{{THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND}}, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN diff --git a/src/licensedcode/data/rules/warranty-disclaimer_29.RULE b/src/licensedcode/data/rules/warranty-disclaimer_29.RULE index 0882aab9a9..8a35b31d4d 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_29.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_29.RULE @@ -4,10 +4,10 @@ is_license_text: yes relevance: 100 --- -//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -//IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -//FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -//AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -//LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -//OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -//THE SOFTWARE. \ No newline at end of file +{{THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND}}, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/src/licensedcode/data/rules/warranty-disclaimer_39.RULE b/src/licensedcode/data/rules/warranty-disclaimer_39.RULE index 3f56573bae..34928d75d7 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_39.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_39.RULE @@ -5,7 +5,7 @@ relevance: 100 minimum_coverage: 95 --- -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +{{THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND}}, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL VEILLARD BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER diff --git a/src/licensedcode/data/rules/warranty-disclaimer_59.RULE b/src/licensedcode/data/rules/warranty-disclaimer_59.RULE index 8f70c9f5b8..8559b28b81 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_59.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_59.RULE @@ -4,4 +4,4 @@ is_license_text: yes relevance: 100 --- -provided "as-is" and without warranty of any kind, express, implied or otherwise, including without limitation, any warranty of merchantability or fitness for a particular purpose. \ No newline at end of file +{{provided "as-is" and without warranty of any kind}}, express, implied or otherwise, including without limitation, any warranty of merchantability or fitness for a particular purpose. \ No newline at end of file diff --git a/src/licensedcode/data/rules/warranty-disclaimer_94.RULE b/src/licensedcode/data/rules/warranty-disclaimer_94.RULE index 12e6ef298d..7293746c72 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_94.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_94.RULE @@ -4,7 +4,7 @@ is_license_notice: yes --- DISCLAIMER: this program is not guaranteed to be free of error (although it is believed to -be free of error). This software is provided 'AS IS', without warranty of any kind, +be free of error). This {{software is provided 'AS IS', without warranty of any kind}}, expressed or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, diff --git a/src/licensedcode/data/rules/warranty-disclaimer_97.RULE b/src/licensedcode/data/rules/warranty-disclaimer_97.RULE index a3fa8486af..bc6301d1f7 100644 --- a/src/licensedcode/data/rules/warranty-disclaimer_97.RULE +++ b/src/licensedcode/data/rules/warranty-disclaimer_97.RULE @@ -4,7 +4,7 @@ is_license_text: yes notes: Seen in https://sourceforge.net/projects/shptrans --- -THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. +{{THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND}}. THE COPYRIGHT HOLDERS AND CONTRIBUTING AUTHORS DISCLAIM ANY AND ALL WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR diff --git a/src/licensedcode/data/rules/zlib_101.RULE b/src/licensedcode/data/rules/zlib_101.RULE index 4e0ff0914f..2acb6ea3d0 100644 --- a/src/licensedcode/data/rules/zlib_101.RULE +++ b/src/licensedcode/data/rules/zlib_101.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This software is covered under the zlib license. \ No newline at end of file +This software is covered under the {{zlib license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_105.RULE b/src/licensedcode/data/rules/zlib_105.RULE index d574d918af..ad9a38f9dc 100644 --- a/src/licensedcode/data/rules/zlib_105.RULE +++ b/src/licensedcode/data/rules/zlib_105.RULE @@ -6,4 +6,4 @@ ignorable_urls: - http://www.opensource.org/licenses/zlib-license.php --- -http://www.opensource.org/licenses/zlib-license.php zlib/libpng license \ No newline at end of file +http://www.opensource.org/licenses/zlib-license.php {{zlib/libpng license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_106.RULE b/src/licensedcode/data/rules/zlib_106.RULE index 9009ab2642..f45360c156 100644 --- a/src/licensedcode/data/rules/zlib_106.RULE +++ b/src/licensedcode/data/rules/zlib_106.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -the library is considered as a whole under the Zlib license. \ No newline at end of file +the library is considered as a whole under the {{Zlib license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_12.RULE b/src/licensedcode/data/rules/zlib_12.RULE index a742da3c47..8503011911 100644 --- a/src/licensedcode/data/rules/zlib_12.RULE +++ b/src/licensedcode/data/rules/zlib_12.RULE @@ -3,7 +3,7 @@ license_expression: zlib is_license_text: yes --- -The zlib/libpng License +The {{zlib/libpng License}} This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. diff --git a/src/licensedcode/data/rules/zlib_14.RULE b/src/licensedcode/data/rules/zlib_14.RULE index 03b489f582..e43b0cd6ab 100644 --- a/src/licensedcode/data/rules/zlib_14.RULE +++ b/src/licensedcode/data/rules/zlib_14.RULE @@ -1,6 +1,7 @@ --- license_expression: zlib is_license_reference: yes +is_required_phrase: yes relevance: 100 --- diff --git a/src/licensedcode/data/rules/zlib_16.RULE b/src/licensedcode/data/rules/zlib_16.RULE index e4e6a0fad2..a33681aff3 100644 --- a/src/licensedcode/data/rules/zlib_16.RULE +++ b/src/licensedcode/data/rules/zlib_16.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -May be used and distributed under the zlib/libpng license. \ No newline at end of file +May be used and distributed under the {{zlib/libpng license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_19.RULE b/src/licensedcode/data/rules/zlib_19.RULE index f1aa3a653b..083ecd147d 100644 --- a/src/licensedcode/data/rules/zlib_19.RULE +++ b/src/licensedcode/data/rules/zlib_19.RULE @@ -3,5 +3,5 @@ license_expression: zlib is_license_reference: yes --- -The zlib source code is licensed under the Zlib license, which is a +The zlib source code is licensed under the {{Zlib license}}, which is a permissive license compatible with BSD-3-Clause. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_2.RULE b/src/licensedcode/data/rules/zlib_2.RULE index b8369f6843..983861ab91 100644 --- a/src/licensedcode/data/rules/zlib_2.RULE +++ b/src/licensedcode/data/rules/zlib_2.RULE @@ -8,7 +8,7 @@ ignorable_urls: - http://www.opensource.org/licenses/zlib-license.php --- -Based on "The zlib/libpng License": +Based on "The {{zlib/libpng License}}": http://www.opensource.org/licenses/zlib-license.php diff --git a/src/licensedcode/data/rules/zlib_30.RULE b/src/licensedcode/data/rules/zlib_30.RULE index 4efceadbe3..c55ac6f029 100644 --- a/src/licensedcode/data/rules/zlib_30.RULE +++ b/src/licensedcode/data/rules/zlib_30.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 99 --- -Distributed under the permissive zlib License \ No newline at end of file +Distributed under the permissive {{zlib License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_4.RULE b/src/licensedcode/data/rules/zlib_4.RULE index c473e1c458..f260c2445a 100644 --- a/src/licensedcode/data/rules/zlib_4.RULE +++ b/src/licensedcode/data/rules/zlib_4.RULE @@ -3,7 +3,7 @@ license_expression: zlib is_license_text: yes --- -zlib/libpng license +{{zlib/libpng license}} This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of diff --git a/src/licensedcode/data/rules/zlib_44.RULE b/src/licensedcode/data/rules/zlib_44.RULE index 0455a7023e..d0ce03ca60 100644 --- a/src/licensedcode/data/rules/zlib_44.RULE +++ b/src/licensedcode/data/rules/zlib_44.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -ZLIB license (see zlib.h) \ No newline at end of file +{{ZLIB license}} (see zlib.h) \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_48.RULE b/src/licensedcode/data/rules/zlib_48.RULE index 3e1d621ffc..be689c5302 100644 --- a/src/licensedcode/data/rules/zlib_48.RULE +++ b/src/licensedcode/data/rules/zlib_48.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -Open Source Software Licensed under the Zlib License \ No newline at end of file +Open Source Software Licensed under the {{Zlib License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_50.RULE b/src/licensedcode/data/rules/zlib_50.RULE index cae2614f89..6c862608a8 100644 --- a/src/licensedcode/data/rules/zlib_50.RULE +++ b/src/licensedcode/data/rules/zlib_50.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -Terms of the Zlib License: \ No newline at end of file +Terms of the {{Zlib License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_51.RULE b/src/licensedcode/data/rules/zlib_51.RULE index dc4fcde5ca..11430929aa 100644 --- a/src/licensedcode/data/rules/zlib_51.RULE +++ b/src/licensedcode/data/rules/zlib_51.RULE @@ -6,4 +6,4 @@ ignorable_urls: - https://opensource.org/licenses/Zlib --- -`Zlib` - [Zlib/libpng License](https://opensource.org/licenses/Zlib) \ No newline at end of file +`Zlib` - [{{Zlib/libpng License}}](https://opensource.org/licenses/Zlib) \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_52.RULE b/src/licensedcode/data/rules/zlib_52.RULE index 1f4ee43a35..cf9a10ffa3 100644 --- a/src/licensedcode/data/rules/zlib_52.RULE +++ b/src/licensedcode/data/rules/zlib_52.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the Zlib license \ No newline at end of file +under the {{Zlib license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_53.RULE b/src/licensedcode/data/rules/zlib_53.RULE index 80d2d8a833..e3e7bf181f 100644 --- a/src/licensedcode/data/rules/zlib_53.RULE +++ b/src/licensedcode/data/rules/zlib_53.RULE @@ -8,4 +8,4 @@ referenced_filenames: --- // This software may be modified and distributed under the terms -// of the zlib license. See the LICENSE file for details. \ No newline at end of file +// of the {{zlib license}}. See the LICENSE file for details. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_55.RULE b/src/licensedcode/data/rules/zlib_55.RULE index 6973b75e94..6fabf1a476 100644 --- a/src/licensedcode/data/rules/zlib_55.RULE +++ b/src/licensedcode/data/rules/zlib_55.RULE @@ -6,4 +6,4 @@ relevance: 100 License -This code is under the zlib license, permitting free commercial use. \ No newline at end of file +This code is under the {{zlib license}}, permitting free commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_56.RULE b/src/licensedcode/data/rules/zlib_56.RULE index 524de13632..2affe3cd77 100644 --- a/src/licensedcode/data/rules/zlib_56.RULE +++ b/src/licensedcode/data/rules/zlib_56.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is under the zlib license, permitting free commercial use. \ No newline at end of file +This code is under the {{zlib license}}, permitting free commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_57.RULE b/src/licensedcode/data/rules/zlib_57.RULE index 8f52b0bcaf..ba1a9d02c2 100644 --- a/src/licensedcode/data/rules/zlib_57.RULE +++ b/src/licensedcode/data/rules/zlib_57.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -code is under the zlib license, permitting free commercial use. \ No newline at end of file +code is under the {{zlib license}}, permitting free commercial use. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_58.RULE b/src/licensedcode/data/rules/zlib_58.RULE index fd92473a99..444fb49128 100644 --- a/src/licensedcode/data/rules/zlib_58.RULE +++ b/src/licensedcode/data/rules/zlib_58.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -open source software under the [zlib license]: LICENSE \ No newline at end of file +open source software under the [{{zlib license}}]: LICENSE \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_59.RULE b/src/licensedcode/data/rules/zlib_59.RULE index 1b1bbf4122..b983c69b12 100644 --- a/src/licensedcode/data/rules/zlib_59.RULE +++ b/src/licensedcode/data/rules/zlib_59.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -open source software under the zlib license \ No newline at end of file +open source software under the {{zlib license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_64.RULE b/src/licensedcode/data/rules/zlib_64.RULE index 8473b5aa80..77a6807438 100644 --- a/src/licensedcode/data/rules/zlib_64.RULE +++ b/src/licensedcode/data/rules/zlib_64.RULE @@ -8,4 +8,4 @@ referenced_filenames: License -The content of this repository is distributed under the terms of the zlib license, which you can find in the LICENSE file located in this directory. \ No newline at end of file +The content of this repository is distributed under the terms of the {{zlib license}}, which you can find in the LICENSE file located in this directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_65.RULE b/src/licensedcode/data/rules/zlib_65.RULE index 569be67ba4..2ecc5f6d9b 100644 --- a/src/licensedcode/data/rules/zlib_65.RULE +++ b/src/licensedcode/data/rules/zlib_65.RULE @@ -6,4 +6,4 @@ referenced_filenames: - LICENSE --- -The content of this repository is distributed under the terms of the zlib license, which you can find in the LICENSE file located in this directory. \ No newline at end of file +The content of this repository is distributed under the terms of the {{zlib license}}, which you can find in the LICENSE file located in this directory. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_66.RULE b/src/licensedcode/data/rules/zlib_66.RULE index 79d6864bd0..fb53d78e11 100644 --- a/src/licensedcode/data/rules/zlib_66.RULE +++ b/src/licensedcode/data/rules/zlib_66.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -distributed under the zlib license \ No newline at end of file +distributed under the {{zlib license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_69.RULE b/src/licensedcode/data/rules/zlib_69.RULE index c2cf41857e..29db8dba16 100644 --- a/src/licensedcode/data/rules/zlib_69.RULE +++ b/src/licensedcode/data/rules/zlib_69.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -are covered under this zlib license \ No newline at end of file +are covered under this {{zlib license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_7.RULE b/src/licensedcode/data/rules/zlib_7.RULE index 218525b98e..edec5ee7a2 100644 --- a/src/licensedcode/data/rules/zlib_7.RULE +++ b/src/licensedcode/data/rules/zlib_7.RULE @@ -1,8 +1,9 @@ --- license_expression: zlib is_license_reference: yes +is_required_phrase: yes is_continuous: yes relevance: 100 --- -zlib License \ No newline at end of file +{{zlib License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_70.RULE b/src/licensedcode/data/rules/zlib_70.RULE index aee0a22338..cd6ab3db72 100644 --- a/src/licensedcode/data/rules/zlib_70.RULE +++ b/src/licensedcode/data/rules/zlib_70.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -covered under this zlib license \ No newline at end of file +covered under this {{zlib license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_74.RULE b/src/licensedcode/data/rules/zlib_74.RULE index 2d4053e786..31d4c48b3f 100644 --- a/src/licensedcode/data/rules/zlib_74.RULE +++ b/src/licensedcode/data/rules/zlib_74.RULE @@ -6,4 +6,4 @@ referenced_filenames: - License.txt --- -This code is distributed under the zlib/libpng license (see License.txt for details). \ No newline at end of file +This code is distributed under the {{zlib/libpng license}} (see License.txt for details). \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_75.RULE b/src/licensedcode/data/rules/zlib_75.RULE index 3298583e34..747c2253f1 100644 --- a/src/licensedcode/data/rules/zlib_75.RULE +++ b/src/licensedcode/data/rules/zlib_75.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is distributed under the zlib/libpng license \ No newline at end of file +This code is distributed under the {{zlib/libpng license}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_76.RULE b/src/licensedcode/data/rules/zlib_76.RULE index be1f0b6a0e..6fb9aae06a 100644 --- a/src/licensedcode/data/rules/zlib_76.RULE +++ b/src/licensedcode/data/rules/zlib_76.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -is using the zlib license agreement \ No newline at end of file +is using the {{zlib license}} agreement \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_80.RULE b/src/licensedcode/data/rules/zlib_80.RULE index 1c0b37a120..4d1f25bbd7 100644 --- a/src/licensedcode/data/rules/zlib_80.RULE +++ b/src/licensedcode/data/rules/zlib_80.RULE @@ -5,4 +5,4 @@ relevance: 100 minimum_coverage: 100 --- -Zlib License (MIT-Style) \ No newline at end of file +{{Zlib License}} (MIT-Style) \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_83.RULE b/src/licensedcode/data/rules/zlib_83.RULE index d2011e82cf..02a1d6549a 100644 --- a/src/licensedcode/data/rules/zlib_83.RULE +++ b/src/licensedcode/data/rules/zlib_83.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -under the terms of its separate zlib license. \ No newline at end of file +under the terms of its separate {{zlib license}}. \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_84.RULE b/src/licensedcode/data/rules/zlib_84.RULE index 51f1dedeff..1e3b21e562 100644 --- a/src/licensedcode/data/rules/zlib_84.RULE +++ b/src/licensedcode/data/rules/zlib_84.RULE @@ -5,4 +5,4 @@ relevance: 100 --- License -This code is licensed under the zlib License: \ No newline at end of file +This code is licensed under the {{zlib License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_85.RULE b/src/licensedcode/data/rules/zlib_85.RULE index d7494b4583..dc74f028c4 100644 --- a/src/licensedcode/data/rules/zlib_85.RULE +++ b/src/licensedcode/data/rules/zlib_85.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -This code is licensed under the zlib License: \ No newline at end of file +This code is licensed under the {{zlib License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_87.RULE b/src/licensedcode/data/rules/zlib_87.RULE index 257a7df7fd..c7ba19f404 100644 --- a/src/licensedcode/data/rules/zlib_87.RULE +++ b/src/licensedcode/data/rules/zlib_87.RULE @@ -4,4 +4,4 @@ is_license_notice: yes relevance: 100 --- -licensed under ZLIB license, \ No newline at end of file +licensed under {{ZLIB license}}, \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_88.RULE b/src/licensedcode/data/rules/zlib_88.RULE index f2ad22eab2..98183faa5d 100644 --- a/src/licensedcode/data/rules/zlib_88.RULE +++ b/src/licensedcode/data/rules/zlib_88.RULE @@ -5,4 +5,4 @@ relevance: 100 --- Other dependencies and licenses: -Open Source Software Licensed Under the zlib License: \ No newline at end of file +Open Source Software Licensed Under the {{zlib License}}: \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_92.RULE b/src/licensedcode/data/rules/zlib_92.RULE index 8dbefde9af..4371575e17 100644 --- a/src/licensedcode/data/rules/zlib_92.RULE +++ b/src/licensedcode/data/rules/zlib_92.RULE @@ -3,4 +3,4 @@ license_expression: zlib is_license_reference: yes --- -The zlib/libpng License \ No newline at end of file +The {{zlib/libpng License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_93.RULE b/src/licensedcode/data/rules/zlib_93.RULE index 48f0affc03..4ce3e8aeb5 100644 --- a/src/licensedcode/data/rules/zlib_93.RULE +++ b/src/licensedcode/data/rules/zlib_93.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -name: zlib License \ No newline at end of file +name: {{zlib License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_94.RULE b/src/licensedcode/data/rules/zlib_94.RULE index 33c411bcc0..4802cc11ff 100644 --- a/src/licensedcode/data/rules/zlib_94.RULE +++ b/src/licensedcode/data/rules/zlib_94.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -Zlib zlib License \ No newline at end of file +Zlib {{zlib License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_95.RULE b/src/licensedcode/data/rules/zlib_95.RULE index 8967382a63..84af4751f2 100644 --- a/src/licensedcode/data/rules/zlib_95.RULE +++ b/src/licensedcode/data/rules/zlib_95.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -zlib License Zlib \ No newline at end of file +{{zlib License}} Zlib \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_96.RULE b/src/licensedcode/data/rules/zlib_96.RULE index 33b6e099c3..d52b5e92e4 100644 --- a/src/licensedcode/data/rules/zlib_96.RULE +++ b/src/licensedcode/data/rules/zlib_96.RULE @@ -7,4 +7,4 @@ minimum_coverage: 100 notes: Rule based on an SPDX license identifier and name --- -license: zlib License \ No newline at end of file +license: {{zlib License}} \ No newline at end of file diff --git a/src/licensedcode/data/rules/zlib_99.RULE b/src/licensedcode/data/rules/zlib_99.RULE index 980cc82ac0..3d5e9d336d 100644 --- a/src/licensedcode/data/rules/zlib_99.RULE +++ b/src/licensedcode/data/rules/zlib_99.RULE @@ -4,4 +4,4 @@ is_license_reference: yes relevance: 100 --- -wikipedia.org/wiki/Zlib/libpng_license \ No newline at end of file +wikipedia.org/wiki/{{Zlib/libpng_license}} \ No newline at end of file diff --git a/src/licensedcode/detection.py b/src/licensedcode/detection.py index 03f9115084..de6fdb46c1 100644 --- a/src/licensedcode/detection.py +++ b/src/licensedcode/detection.py @@ -260,8 +260,6 @@ def from_matches( return detection def spdx_license_expression(self): - from licensedcode.cache import build_spdx_license_expression - from licensedcode.cache import get_cache return str(build_spdx_license_expression( license_expression=self.license_expression, licensing=get_cache().licensing, diff --git a/src/licensedcode/index.py b/src/licensedcode/index.py index 267a15f47b..346746bfe0 100644 --- a/src/licensedcode/index.py +++ b/src/licensedcode/index.py @@ -20,7 +20,6 @@ from intbitset import intbitset from licensedcode import SMALL_RULE -from licensedcode import TINY_RULE from licensedcode.legalese import common_license_words from licensedcode import match from licensedcode import match_aho @@ -42,6 +41,12 @@ The LicenseIndex is the main class and holds the index structures. The `match` method drives the matching using a succession of matching strategies. Actual matching is delegated to other modules that implement a matching strategy. + +The index uses data structures optimized for space and speed. This means we often use data keyed by +an integers "id", and often use lists and lower level byte arrays where the integer id is the index +in the list or array. As a convention, we use an _id suffix for numeric id variable names, and the +"identifier" for human readable names. For instance, a license rule has a numeric rid like 123, and +an identifier like gpl-2.0_12.RULE. """ # Tracing flags @@ -177,27 +182,28 @@ def __init__( # len_legalese is considered a "junk" very common token self.len_legalese = 0 - # mapping of token string > token id + # mapping of token string > integer token id self.dictionary = {} # set of token ids made entirely of digits self.digit_only_tids = set() - # mapping-like of token id -> token string as a list where the index is the + # mapping-like of token id int -> token string as a list where the index is the # token id and the value the actual token string. # This the reverse of the dictionary. self.tokens_by_tid = [] # Note: all the following are mappings-like (using lists) of - # rid-> data are lists of data where the index is the rule id. + # rid-> data are lists of data where the index integer is the rule id. - # mapping of rule identifiers -> rule objects + # mapping of rule int id -> rule objects + # TODO: rename to rules_by_identifier for consistency self.rules_by_id = {} - # maping-like of rule_id -> rule objects proper + # maping-like of rule int id -> rule objects proper self.rules_by_rid = [] - # maping-like of rule_id -> sequence of token_ids + # maping-like of rule int id -> sequence of token int ids self.tids_by_rid = [] # mapping-like of rule id->(mapping of (token_id->[positions, ...]) @@ -205,11 +211,11 @@ def __init__( # inverted index postings list self.high_postings_by_rid = [] - # mapping-like of rule_id -> tokens ids sets/multisets + # mapping-like of rule int id -> tokens ids sets/multisets self.sets_by_rid = [] self.msets_by_rid = [] - # mapping of hash -> single rid for hash match: duplicated rules are not allowed + # mapping of hash -> single int rid for hash match: duplicated rules are not allowed self.rid_by_hash = {} # Aho-Corasick automatons for regular rules and experimental fragments @@ -221,11 +227,13 @@ def __init__( # disjunctive sets of rule ids: regular and false positive # TODO: consider using intbitset instead + # set of int rid for regular rules self.regular_rids = set() + # set of int rid for false positive rules, where a match is subtracted from the matches self.false_positive_rids = set() - # These rule ids are for rules that can be matched with a sequence - # match. Other rules can only be matched exactly + # These rule int ids are for rules that CAN be matched with a sequence + # match. Other rules can only be matched exactly using an automaton self.approx_matchable_rids = set() # if True the index has been optimized and becomes read only: @@ -410,7 +418,6 @@ def _add_rules( raise Exception(rtid, rts, rule) from e rule_length = rule.length - is_tiny = rule_length < TINY_RULE # build hashes index and check for duplicates rule texts rule_hash = match_hash_index_hash(rule_token_ids) @@ -455,18 +462,10 @@ def _add_rules( # Some rules that cannot be matched as a sequence are "weak" rules # or can require to be matched only as a continuous sequence of - # tokens. This includes, tiny, is_continuous or is_license_reference - # rules. We skip adding these to the data structures used for + # tokens. This includes, is_tiny, is_continuous or or is_small rules with + # is_license_reference rules. We skip adding these to the data structures used for # sequence matching. - can_match_as_sequence = not ( - is_weak - or is_tiny - or rule.is_continuous - or (rule.is_small - and (rule.is_license_reference or rule.is_license_tag)) - ) - - if can_match_as_sequence: + if rule.is_approx_matchable and not is_weak: approx_matchable_rids_add(rid) #################### @@ -585,6 +584,13 @@ def _add_rules( self.optimized = True + def is_rule_approx_matchable(self, rule): + """ + Return True if a ``rule`` Rule is matchable approximately. Some rules are small or their + text implies that they can only be matched exactly using an automaton. + """ + return rule.rid in self.approx_matchable_rids + def debug_matches( self, matches, @@ -624,7 +630,7 @@ def get_spdx_id_matches( **kwargs, ): """ - Matching strategy for SPDX-Licensed-Identifier style of expressions. If + Matching strategy for SPDX-License-Identifier style of expressions. If `from_spdx_id_lines` is True detect only in the SPDX license identifier lines found in the query. Otherwise use the whole query for detection. @@ -715,8 +721,14 @@ def get_fragments_matches( return matches - def get_approximate_matches(self, query, matched_qspans, existing_matches, - deadline=sys.maxsize, **kwargs): + def get_approximate_matches( + self, + query, + matched_qspans, + existing_matches, + deadline=sys.maxsize, + **kwargs, + ): """ Approximate matching strategy breaking a query in query_runs and using multiple local alignments (aka. diff). Return a list of matches. @@ -808,7 +820,7 @@ def get_query_run_approximate_matches( **kwargs, ): """ - Return Return a list of approximate matches for a single query run. + Return a list of approximate matches for a single query run. """ matches = [] @@ -1190,7 +1202,7 @@ def _tokens2text(self, tokens): def get_weak_rids(len_legalese, tids_by_rid, _idx): """ Return a set of "weak" rule ids made entirely of junk tokens: they can only - be matched using an automaton. + be matched exactly using an automaton. """ weak_rids = set() weak_rids_add = weak_rids.add @@ -1214,8 +1226,8 @@ def get_weak_rids(len_legalese, tids_by_rid, _idx): def get_matched_rule_ids(matches, query_run): """ - Yield the subset of matched rule ids from a `matches` LicenseMatch - sequence that are within the `query_run` query run. + Yield the subset of matched rule ids from a ``matches`` LicenseMatch + sequence that are within the ``query_run`` query run. """ qstart = query_run.start qend = query_run.end diff --git a/src/licensedcode/match.py b/src/licensedcode/match.py index 8b55832bd5..0820e741a5 100644 --- a/src/licensedcode/match.py +++ b/src/licensedcode/match.py @@ -55,7 +55,7 @@ TRACE_FILTER_BELOW_MIN_SCORE = False TRACE_FILTER_SINGLE_WORD_GIBBERISH = False TRACE_SET_LINES = False -TRACE_KEY_PHRASES = False +TRACE_REQUIRED_PHRASES = False TRACE_REGIONS = False TRACE_FILTER_LICENSE_LIST = False TRACE_FILTER_LICENSE_LIST_DETAILED = False @@ -91,7 +91,7 @@ def logger_debug(*args): pass or TRACE_MATCHED_TEXT_DETAILS or TRACE_HIGHLIGHTED_TEXT or TRACE_FILTER_SINGLE_WORD_GIBBERISH - or TRACE_KEY_PHRASES + or TRACE_REQUIRED_PHRASES or TRACE_REGIONS or TRACE_FILTER_LICENSE_LIST or TRACE_FILTER_LICENSE_LIST_DETAILED @@ -133,7 +133,7 @@ def _debug_print_matched_query_text(match, extras=5): class DiscardReason(IntEnum): NOT_DISCARDED = 0 - MISSING_KEY_PHRASES = 1 + MISSING_REQUIRED_PHRASES = 1 BELOW_MIN_COVERAGE = 2 SPURIOUS_SINGLE_TOKEN = 3 TOO_SHORT = 4 @@ -645,15 +645,15 @@ def combine(self, other): discard_reason = DiscardReason.NOT_DISCARDED elif ( - self.discard_reason == DiscardReason.MISSING_KEY_PHRASES - and other.discard_reason == DiscardReason.MISSING_KEY_PHRASES + self.discard_reason == DiscardReason.MISSING_REQUIRED_PHRASES + and other.discard_reason == DiscardReason.MISSING_REQUIRED_PHRASES ): - discard_reason = DiscardReason.MISSING_KEY_PHRASES + discard_reason = DiscardReason.MISSING_REQUIRED_PHRASES - elif self.discard_reason == DiscardReason.MISSING_KEY_PHRASES: + elif self.discard_reason == DiscardReason.MISSING_REQUIRED_PHRASES: discard_reason = other.discard_reason - elif other.discard_reason == DiscardReason.MISSING_KEY_PHRASES: + elif other.discard_reason == DiscardReason.MISSING_REQUIRED_PHRASES: discard_reason = self.discard_reason else: @@ -756,7 +756,7 @@ def matched_text( side effects as the caching depends on which index instance is being used and this index can change during testing. """ - if TRACE_MATCHED_TEXT: + if TRACE_MATCHED_TEXT and not TRACE_REPR_ALL_MATCHED_TEXTS: logger_debug(f'LicenseMatch.matched_text: self.query: {self.query}') query = self.query @@ -1834,7 +1834,7 @@ def filter_invalid_matches_to_single_word_gibberish( - the scanned file is a binary file (we could relax this in the future - the matched rule has a single word (length 1) - - the matched rule "is_license_reference: yes" + - the matched rule "is_license_reference" or "is_license_clue" - the matched rule has a low relevance, e.g., under 75 - the matched text has either: - one or more leading or trailing punctuations (except for +) @@ -1850,11 +1850,12 @@ def filter_invalid_matches_to_single_word_gibberish( for match in matches: rule = match.rule - if rule.length == 1 and rule.is_license_reference and match.query.is_binary: - matched_text = match.matched_text( - whole_lines=False, - highlight=False, - ).strip() + if ( + rule.length == 1 + and (rule.is_license_reference or rule.is_license_clue) + and match.query.is_binary + ): + matched_text = match.matched_text(whole_lines=False, highlight=False,).strip() rule_text = rule.text @@ -1978,12 +1979,16 @@ def is_valid_short_match( False >>> is_valid_short_match("GPL[", "GPL") False + >>> is_valid_short_match("GPL\\\\ ", "GPL") + False >>> is_valid_short_match("~gpl", "GPL") False >>> is_valid_short_match("GPL", "gpl") True >>> is_valid_short_match("Gpl+", "gpl+") True + >>> is_valid_short_match(" GPL foo ", " GPL foo ") + True >>> is_valid_short_match("~gpl", "GPL", max_diff=0) False >>> is_valid_short_match("~gpl", "GPL", max_diff=1) @@ -2037,21 +2042,24 @@ def is_valid_short_match( if matched_text == rule_text: return True - # For long enough rules (length in characters), we consider all matches to - # be correct - len_rule_text = len(rule_text) + normalized_matched_text = " ".join(matched_text.split()) + normalized_rule_text = " ".join(rule_text.split()) + + if normalized_matched_text == normalized_rule_text: + return True + + # For long enough rules (length in characters), we consider all matches to be correct + len_rule_text = len(normalized_rule_text) if len_rule_text >= 5: return True # Length differences help decide that this is invalid as the extra chars # will be punctuation by construction - diff = len(matched_text) - len_rule_text + diff = len(normalized_matched_text) - len_rule_text if diff and diff != max_diff: if trace: - logger_debug( - ' ==> is_valid_short_match:', 'diff:', diff, - 'max_diff:', max_diff) + logger_debug(' ==> is_valid_short_match:', 'diff:', diff, 'max_diff:', max_diff) return False @@ -2129,25 +2137,27 @@ def filter_false_positive_matches( return kept, discarded -def filter_matches_missing_key_phrases( +def filter_matches_missing_required_phrases( matches, - trace=TRACE_KEY_PHRASES, - reason=DiscardReason.MISSING_KEY_PHRASES, + trace=TRACE_REQUIRED_PHRASES, + reason=DiscardReason.MISSING_REQUIRED_PHRASES, ): """ Return a filtered list of kept LicenseMatch matches and a list of discardable matches given a ``matches`` list of LicenseMatch by removing - all ``matches`` that do not contain all key phrases defined in their matched + all ``matches`` that do not contain all required phrases defined in their matched rule. - A key phrase must be matched exactly without gaps or unknown words. + A required phrase must be matched exactly without gaps or unknown words. A rule with "is_continuous" set to True is the same as if its whole text - was defined as a keyphrase and is processed here too. + was defined as a required phrase and is processed here too. + Same for a rule with "is_required_phrase" set to True. + """ - # never discard a solo match, unless matched to "is_continuous" rule + # never discard a solo match, unless matched to "is_continuous" or "is_required_phrase" rule if len(matches) == 1: rule = matches[0] - if not rule.is_continuous: + if not (rule.is_continuous or rule.is_required_phrase): return matches, [] kept = [] @@ -2156,19 +2166,19 @@ def filter_matches_missing_key_phrases( discarded_append = discarded.append if trace: - logger_debug('filter_matches_missing_key_phrases') + logger_debug('filter_matches_missing_required_phrases') for match in matches: if trace: - logger_debug(' CHECKING KEY PHRASES for:', match) + logger_debug(' CHECKING REQUIRED PHRASES for:', match) - is_continuous = match.rule.is_continuous - ikey_spans = match.rule.key_phrase_spans + is_continuous = match.rule.is_continuous or match.rule.is_required_phrase + ikey_spans = match.rule.required_phrase_spans if not (ikey_spans or is_continuous): kept_append(match) if trace: - logger_debug(' ==> KEEPING, NO KEY PHRASES OR IS_CONTINUOUS DEFINED') + logger_debug(' ==> KEEPING, NO REQUIRED PHRASES OR IS_CONTINUOUS DEFINED') continue if is_continuous and not match.is_continuous(): @@ -2182,7 +2192,7 @@ def filter_matches_missing_key_phrases( if any(ikey_span not in ispan for ikey_span in ikey_spans): if trace: logger_debug( - ' ==> DISCARDING, KEY PHRASES MISSING', + ' ==> DISCARDING, REQUIRED PHRASES MISSING', 'ikey_spans:', ikey_spans, 'ispan:', ispan, ) @@ -2193,11 +2203,11 @@ def filter_matches_missing_key_phrases( # use whole ispan in this case ikey_spans = [match.ispan] - # keep matches as candidate if they contain all key phrase positions in the ispan + # keep matches as candidate if they contain all required phrase positions in the ispan if trace: - print(' CANDIDATE TO KEEP: all ikey_span in match.ispan:', ikey_spans, ispan) + print(' CANDIDATE TO KEEP: all ikey_span in match.ispan: ikey_spans:', ikey_spans, 'ispan:', ispan) - # discard matches that contain key phrases, but interrupted by + # discard matches that contain required phrases, but interrupted by # unknown or stop words. unknown_by_pos = match.query.unknowns_by_pos @@ -2208,8 +2218,8 @@ def filter_matches_missing_key_phrases( istopwords_by_pos = match.rule.stopwords_by_pos istopwords_by_pos_get = istopwords_by_pos.get - # iterate on each key phrase span to ensure that they are continuous - # and contain no unknown words on the query side + # iterate on each required phrase span to ensure that they are continuous + # and contain no unknown words or stop words on the query side is_valid = True @@ -2217,7 +2227,7 @@ def filter_matches_missing_key_phrases( for ikey_span in ikey_spans: - # check that are no gaps in the key phrase span on the query side + # check that are no gaps in the required phrase span on the query side # BUT, do not redo the check for is_continuous already checked above if is_continuous: qkey_span = qspan @@ -2229,22 +2239,19 @@ def filter_matches_missing_key_phrases( qkey_span = Span(qkey_poss) if len(qkey_span) != qkey_span.magnitude(): - - logger_debug( - ' ==> DISCARDING, KEY PHRASES PRESENT, BUT NOT CONTINUOUS:', - 'qkey_span:', qkey_span, 'qpan:', qspan - ) - + if trace: + logger_debug( + ' ==> DISCARDING, REQUIRED PHRASES PRESENT, BUT NOT CONTINUOUS:', + 'qkey_span:', qkey_span, 'qspan:', qspan + ) is_valid = False break - # check that key phrase spans does not contain stop words and does - # not contain unknown words - - # NOTE: we do not check the last qkey_span position of a key phrase + # Check that required phrase spans does not contain unknown words. + # NOTE: we do not check the last qkey_span position of a required phrase # since unknown is a number of words after a given span position: # these are pinned to the last position and we would not care for - # what unknown or stop words show up after a key phrase ends. + # what unknown or stop words show up after a required phrase ends. qkey_span_end = qkey_span.end contains_unknown = any( @@ -2254,14 +2261,17 @@ def filter_matches_missing_key_phrases( if contains_unknown: logger_debug( - ' ==> DISCARDING, KEY PHRASES PRESENT, BUT UNKNOWNS:', - 'qkey_span:', qkey_span, 'qpan:', qspan, + ' ==> DISCARDING, REQUIRED PHRASES PRESENT, BUT UNKNOWNS:', + 'qkey_span:', qkey_span, 'qspan:', qspan, 'unknown_by_pos:', unknown_by_pos ) is_valid = False break + # Check that required phrase spans does not contain stop words. This must be true for + # continuous rules or not, as long as we have a key span: it cannot be interrupted + has_same_stopwords_pos = True for qpos, ipos in zip(qspan, ispan): if qpos not in qkey_span or qpos == qkey_span_end: @@ -2273,8 +2283,8 @@ def filter_matches_missing_key_phrases( if not has_same_stopwords_pos: logger_debug( - ' ==> DISCARDING, KEY PHRASES PRESENT, BUT STOPWORDS NOT SAME:', - 'qkey_span:', qkey_span, 'qpan:', qspan, + ' ==> DISCARDING, REQUIRED PHRASES PRESENT, BUT STOPWORDS NOT SAME:', + 'qkey_span:', qkey_span, 'qspan:', qspan, 'istopwords_by_pos:', istopwords_by_pos, 'qstopwords_by_pos:', qstopwords_by_pos ) @@ -2283,12 +2293,15 @@ def filter_matches_missing_key_phrases( break if is_valid: - logger_debug(' ==> KEEPING, KEY PHRASES PRESENT, CONTINUOUS AND NO UNKNOWNS') + logger_debug(' ==> KEEPING, REQUIRED PHRASES PRESENT, CONTINUOUS AND NO UNKNOWNS') kept_append(match) else: match.discard_reason = reason discarded_append(match) + if discarded and not kept: + logger_debug(' ==> REINSTATING DISCARDED MISSING REQUIRED PHRASES') + if trace: print() @@ -2631,8 +2644,13 @@ def is_candidate_false_positive( license list match. """ is_candidate = ( - # only tags or refs, - (match.rule.is_license_reference or match.rule.is_license_tag or match.rule.is_license_intro) + # only tags, refs, or clues + ( + match.rule.is_license_reference + or match.rule.is_license_tag + or match.rule.is_license_intro + or match.rule.is_license_clue + ) # but not tags that are SPDX license identifiers and not match.matcher == '1-spdx-id' # exact matches only @@ -2647,6 +2665,8 @@ def is_candidate_false_positive( print(' is_candidate_false_positive:', is_candidate, 'is_license_reference:', match.rule.is_license_reference, 'is_license_tag:', match.rule.is_license_tag, + 'is_license_intro:', match.rule.is_license_intro, + 'is_license_clue:', match.rule.is_license_clue, 'coverage:', match.coverage(), 'match.len():', match.len(), '<=', 'max_length:', max_length, ':', match.len() <= max_length @@ -2707,9 +2727,9 @@ def _log(_matches, _discarded, msg): # FIXME: we should have only a single loop on all the matches at once!! # and not 10's of loops!!! - matches, discarded = filter_matches_missing_key_phrases(matches) + matches, discarded = filter_matches_missing_required_phrases(matches) all_discarded_extend(discarded) - _log(matches, discarded, 'HAS KEY PHRASES') + _log(matches, discarded, 'HAS REQUIRED PHRASES') matches, discarded = filter_spurious_matches(matches) all_discarded_extend(discarded) @@ -2798,6 +2818,7 @@ def _log(_matches, _discarded, msg): return matches, all_discarded +# variant using slots and attrs @attr.s(slots=True, frozen=True) class Token1: """ @@ -2818,6 +2839,7 @@ class Token1: is_known = attr.ib(default=False) +# variant using slots class Token2: """ Used to represent a token in collected query-side matched texts and SPDX @@ -2855,6 +2877,7 @@ def __init__( self.is_known = is_known +# variant using namedtuple class Token3(NamedTuple): """ Used to represent a token in collected query-side matched texts and SPDX diff --git a/src/licensedcode/models.py b/src/licensedcode/models.py index dc0a4b9a7b..fd3f4659c2 100644 --- a/src/licensedcode/models.py +++ b/src/licensedcode/models.py @@ -34,15 +34,13 @@ from licensedcode import MIN_MATCH_HIGH_LENGTH from licensedcode import MIN_MATCH_LENGTH from licensedcode import SMALL_RULE +from licensedcode import TINY_RULE from licensedcode.frontmatter import dumps_frontmatter from licensedcode.frontmatter import load_frontmatter from licensedcode.languages import LANG_INFO as known_languages -from licensedcode.spans import Span +from licensedcode.tokenize import get_existing_required_phrase_spans from licensedcode.tokenize import index_tokenizer from licensedcode.tokenize import index_tokenizer_with_stopwords -from licensedcode.tokenize import key_phrase_tokenizer -from licensedcode.tokenize import KEY_PHRASE_OPEN -from licensedcode.tokenize import KEY_PHRASE_CLOSE from licensedcode.tokenize import query_lines from scancode.api import SCANCODE_LICENSEDB_URL from scancode.api import SCANCODE_LICENSE_URL @@ -893,6 +891,7 @@ def get_license_dirs(additional_dirs): Return a list of all subdirectories containing license files within the input list of additional directories. These directories do not have to be absolute paths. """ + additional_dirs = additional_dirs or [] return [f"{str(Path(path).absolute())}/licenses" for path in additional_dirs] @@ -901,6 +900,7 @@ def get_rule_dirs(additional_dirs): Return a list of all subdirectories containing rule files within the input list of additional directories. These directories do not have to be absolute paths. """ + additional_dirs = additional_dirs or [] return [f"{str(Path(path).absolute())}/rules" for path in additional_dirs] @@ -1428,13 +1428,35 @@ class BasicRule: 'Mutually exclusive from any is_license_* flag') ) + is_required_phrase = attr.ib( + default=False, + repr=False, + metadata=dict( + help='True if this is rule text is a required phrase. ' + 'A required phrase is often a part of another larger rule text ' + 'but is an essential section of the rule text which must be ' + 'present in the case of partial matches, otherwise the match ' + 'will be a false positive and misleading.') + ) + + skip_for_required_phrase_generation = attr.ib( + default=False, + repr=False, + metadata=dict( + help='True if this rule needs to be skipped while collecting ' + 'required phrase rules. Required phrase rules are created out ' + 'of other rule texts which have marked required phrases, ' + 'because some marked required phrases are special and should ' + 'not be applied to other rules.') + ) + language = attr.ib( default='en', repr=False, metadata=dict( help='Two-letter ISO 639-1 language code if this license text is ' 'not in English. See https://en.wikipedia.org/wiki/ISO_639-1 .') - ) + ) minimum_coverage = attr.ib( default=0, @@ -1475,7 +1497,7 @@ class BasicRule: 'words in its matched range? The default is to allow non-continuous ' 'approximate matches. Any extra unmatched known or unknown word is ' 'considered to break a match continuity. This attribute is either ' - 'stored or computed when the whole rule text is a {{key phrase}}.') + 'stored or computed when the whole rule text is a {{required phrase}}.') ) relevance = attr.ib( @@ -1619,16 +1641,26 @@ class BasicRule: help='Text of this rule') ) - key_phrase_spans = attr.ib( + required_phrase_spans = attr.ib( default=attr.Factory(list), repr=False, metadata=dict( - help='List of spans representing key phrases for this rule. These are Spans ' + help='List of spans representing required phrases for this rule. These are Spans ' 'of rule text position spans that must be present for this rule to be matched. ' 'Key phrases are enclosed in {{double curly braces}} in the rule text.' ) ) + source = attr.ib( + default=None, + repr=False, + metadata=dict( + help='An indication of a source for this rule, like the identifier of other rules used ' + 'as a base.' + ) + ) + + # These thresholds attributes are computed upon text loading or calling the # thresholds function explicitly ########################################################################### @@ -1699,6 +1731,13 @@ class BasicRule: 'for a match to this rule to be considered as valid.') ) + is_tiny = attr.ib( + default=False, + repr=TRACE_REPR, + metadata=dict( + help='Internal computed flag set to True if this rule is "tiny"') + ) + is_small = attr.ib( default=False, repr=TRACE_REPR, @@ -1796,6 +1835,49 @@ def has_unknown(self): # license flag instead return self.license_expression and 'unknown' in self.license_expression + @property + def is_approx_matchable(self): + """ + Return True if this self can be matched approximately + """ + return not ( + self.is_false_positive + or self.is_required_phrase + or self.is_tiny + or self.is_continuous + or (self.is_small and (self.is_license_reference or self.is_license_tag)) + ) + + def is_generic(self, licenses_by_key): + """ + Return True if the license_expression of this rule contains a generic or unknown + license key. + """ + license_keys = self.licensing.license_keys(self.license_expression) + for lic_key in license_keys: + lic = licenses_by_key.get(lic_key) + if lic and (lic.is_generic or lic.is_unknown): + return True + return False + + @property + def license_flag_names(self): + return ( + 'is_license_text', + 'is_license_notice', + 'is_license_reference', + 'is_license_tag', + 'is_license_intro', + 'is_license_clue', + ) + + @property + def license_flags(self): + return { + license_flag_name: getattr(self, license_flag_name) + for license_flag_name in self.license_flag_names + } + def validate(self, licensing=None, thorough=False): """ Validate this rule using the provided ``licensing`` Licensing and yield @@ -1803,17 +1885,8 @@ def validate(self, licensing=None, thorough=False): """ is_false_positive = self.is_false_positive - license_flags = ( - self.is_license_notice, - self.is_license_text, - self.is_license_reference, - self.is_license_tag, - self.is_license_intro, - self.is_license_clue, - ) - - has_license_flags = any(license_flags) - has_many_license_flags = len([l for l in license_flags if l]) != 1 + has_license_flags = any(self.license_flags.values()) + has_many_license_flags = sum(self.license_flags.values()) > 1 license_expression = self.license_expression @@ -1847,6 +1920,9 @@ def validate(self, licensing=None, thorough=False): if any(ignorables): yield 'is_false_positive rule cannot have ignorable_* attributes.' + if self.is_required_phrase: + yield 'is_false_positive rule cannot be is_required_phase.' + if self.language not in known_languages: yield f'Unknown language: {self.language}' @@ -1866,9 +1942,27 @@ def validate(self, licensing=None, thorough=False): if not check_is_list_of_strings(self.referenced_filenames): yield 'referenced_filenames must be a list of strings' + if (self.is_license_clue or self.is_license_intro) and self.is_required_phrase: + yield 'License intro/clue rules cannot be required phrase rules' + + if self.is_required_phrase and self.skip_for_required_phrase_generation: + yield 'We can skip collecting required phrases only in non required phrase rules' + if not all(check_is_list_of_strings(i) for i in ignorables): yield 'ignorables must be a list of strings' + if self.is_required_phrase: + if self.is_license_intro: + yield 'is_required_phrase rule cannot be is_license_intro.' + + if self.is_license_clue: + yield 'is_required_phrase rule cannot be is_license_clue.' + + if thorough: + from licensedcode.cache import get_licenses_db + if self.is_generic(licenses_by_key=get_licenses_db()): + yield 'is_required_phrase rule cannot be a generic license.' + if not license_expression: yield 'Missing license_expression.' else: @@ -1898,7 +1992,7 @@ def validate(self, licensing=None, thorough=False): # without failing (i.e. whether the text is yaml safe) try: yaml_string = saneyaml_dump(data) - loaded_yaml = saneyaml_load(yaml_string) + _loaded_yaml = saneyaml_load(yaml_string) except Exception: yield (f'Error invalid YAML text at: {self.identifier}, failed during saneyaml.load()') @@ -1957,15 +2051,10 @@ def get_flags_mapping(self): Return a list of boolean attributes for a rule which are set to True. """ - rule_boolean_attributes = [ - 'is_license_text', - 'is_license_notice', - 'is_license_reference', - 'is_license_tag', - 'is_license_intro', - 'is_license_clue', + rule_boolean_attributes = self.license_flag_names + ( + 'is_required_phrase', 'is_continuous', - ] + ) mapping = {} for attribute in rule_boolean_attributes: @@ -1990,6 +2079,8 @@ def to_reference(self): data['is_license_tag'] = self.is_license_tag data['is_license_intro'] = self.is_license_intro data['is_license_clue'] = self.is_license_clue + data['is_required_phrase'] = self.is_required_phrase + data['skip_for_required_phrase_generation'] = self.skip_for_required_phrase_generation data['is_continuous'] = self.is_continuous data['is_builtin'] = self.is_builtin data['is_from_license'] = self.is_from_license @@ -2020,14 +2111,10 @@ def to_dict(self, include_text=False): if self.license_expression: data['license_expression'] = self.license_expression - flags = ( + flags = self.license_flag_names + ( 'is_false_positive', - 'is_license_text', - 'is_license_notice', - 'is_license_reference', - 'is_license_tag', - 'is_license_intro', - 'is_license_clue', + 'is_required_phrase', + 'skip_for_required_phrase_generation', 'is_continuous', 'is_deprecated' ) @@ -2053,6 +2140,9 @@ def to_dict(self, include_text=False): if self.notes: data['notes'] = self.notes + if self.source: + data['source'] = self.source + if include_text and self.text: data['text'] = self.text @@ -2183,40 +2273,39 @@ def tokens(self): self.stopwords_by_pos = stopwords_by_pos self.set_relevance() - # set key phrase spans that must be present for the rule + # set required phrase spans that must be present for the rule # to pass through refinement - self.key_phrase_spans = self.build_key_phrase_spans() + self.required_phrase_spans = self.build_required_phrase_spans() self._set_continuous() return toks def _set_continuous(self): """ - Set the "is_continuous" flag if this rule must be matched exactly - without gaps, stopwords or unknown words. Must run after - key_phrase_spans computation. + Set the "is_continuous" flag if this rule must be matched exactly without gaps, stopwords or + unknown words. Must run after required_phrase_spans computation. """ if ( not self.is_continuous - and self.key_phrase_spans - and len(self.key_phrase_spans) == 1 - and len(self.key_phrase_spans[0]) == self.length + and self.required_phrase_spans + and len(self.required_phrase_spans) == 1 + and len(self.required_phrase_spans[0]) == self.length ): self.is_continuous = True - def build_key_phrase_spans(self): + def build_required_phrase_spans(self): """ - Return a list of Spans marking key phrases token positions of that must + Return a list of Spans marking required phrases token positions of that must be present for this rule to be matched. """ if self.is_from_license: return [] try: - return list(get_key_phrase_spans(self.text)) + return get_existing_required_phrase_spans(self.text) except Exception as e: raise InvalidRule(f'Invalid rule: {self}') from e - def compute_thresholds(self, small_rule=SMALL_RULE): + def compute_thresholds(self, small_rule=SMALL_RULE, tiny_rule=TINY_RULE): """ Compute and set thresholds either considering the occurrence of all tokens or the occurence of unique tokens. @@ -2242,17 +2331,20 @@ def compute_thresholds(self, small_rule=SMALL_RULE): ) self.is_small = self.length < small_rule + self.is_tiny = self.length < tiny_rule + - def dump(self, rules_data_dir): + def dump(self, rules_data_dir, **kwargs): """ - Dump a representation of this rule as a .RULE file stored in - ``rules_data_dir`` as a UTF-8 file having: + Dump a representation of this rule as a .RULE file stored in ``rules_data_dir`` as a UTF-8 + file having: - the rule data as YAML frontmatter - the rule text - and this is a `rule_file`. + And this is a ``rule_file``. + + Also writes any kwargs as extra data in the rule metadata. - Does nothing if this rule was created from a License (e.g., - `is_from_license` is True) + Does nothing if this rule was created from a License (e.g., `is_from_license` is True) """ if self.is_from_license or self.is_synthetic: return @@ -2260,6 +2352,10 @@ def dump(self, rules_data_dir): rule_file = self.rule_file(rules_data_dir=rules_data_dir) metadata = self.to_dict() + # This can be used to pass objects to dump on the rule file with + # other rule metadata, like debugging collection of required phrases + if kwargs: + metadata.update(kwargs) content = self.text output = dumps_frontmatter(content=content, metadata=metadata) with open(rule_file, 'w') as of: @@ -2303,6 +2399,10 @@ def load(self, rule_file, with_checks=True): self.is_false_positive = data.get('is_false_positive', False) + self.is_required_phrase = data.get('is_required_phrase', False) + self.skip_for_required_phrase_generation = data.get('skip_for_required_phrase_generation', False) + self.source = data.get('source') + relevance = as_int(float(data.get('relevance') or 0)) # Keep track if we have a stored relevance of not. if relevance: @@ -2366,6 +2466,11 @@ def set_relevance(self): self.has_stored_relevance = True return + if self.is_required_phrase and not self.relevance: + self.relevance = 90 + self.has_stored_relevance = True + return + computed_relevance = compute_relevance(self.length) if self.has_stored_relevance: @@ -2740,8 +2845,7 @@ def set_ignorables(licensish, ignorables, verbose=False): def get_ignorables(text, verbose=False): """ Return a mapping of ignorable clues lists found in a ``text`` for - copyrights, holders, authors, urls, emails. Do not include items with empty - values. + copyrights, holders, authors, urls, emails. Do not include items with empty values. Display progress messages if ``verbose`` is True. """ @@ -2816,6 +2920,34 @@ def build_ignorables_mapping(copyrights, holders, authors, urls, emails): return {k: v for k, v in sorted(ignorables.items()) if v} +def rule_exists(text): + """ + Return the matched rule if the text is an existing rule matched + exactly, False otherwise. + """ + from licensedcode.match_hash import MATCH_HASH + from licensedcode import cache + + idx = cache.get_index() + + matches = idx.match(query_string=text) + if not matches: + return False + if len(matches) > 1: + return False + match = matches[0] + if match.matcher == MATCH_HASH and match.coverage() == 100: + return match.rule + + +def get_rule_id_for_text(text): + rule = rule_exists(text=text) + if rule: + return rule.identifier + else: + return False + + def find_rule_base_location(name_prefix, rules_directory=rules_data_dir): """ Return a new, unique and non-existing base location in ``rules_directory`` @@ -2844,83 +2976,39 @@ def find_rule_base_location(name_prefix, rules_directory=rules_data_dir): idx += 1 -def get_key_phrase_spans(text): - """ - Yield Spans of key phrase token positions found in the rule ``text``. - Tokens form a key phrase when enclosed in {{double curly braces}}. - - For example: - - >>> text = 'This is enclosed in {{double curly braces}}' - >>> # 0 1 2 3 4 5 6 - >>> x = list(get_key_phrase_spans(text)) - >>> assert x == [Span(4, 6)], x - - >>> text = 'This is {{enclosed}} a {{double curly braces}} or not' - >>> # 0 1 2 SW 3 4 5 6 7 - >>> x = list(get_key_phrase_spans(text)) - >>> assert x == [Span(2), Span(3, 5)], x - - >>> text = 'This {{is}} enclosed a {{double curly braces}} or not' - >>> # 0 1 2 SW 3 4 5 6 7 - >>> x = list(get_key_phrase_spans(text)) - >>> assert x == [Span([1]), Span([3, 4, 5])], x - - >>> text = '{{AGPL-3.0 GNU Affero General Public License v3.0}}' - >>> # 0 1 2 3 4 5 6 7 8 9 - >>> x = list(get_key_phrase_spans(text)) - >>> assert x == [Span(0, 9)], x - - >>> assert list(get_key_phrase_spans('{This}')) == [] - - >>> def check_exception(text): - ... try: - ... return list(get_key_phrase_spans(text)) - ... except InvalidRule: - ... pass - - >>> check_exception('This {{is') - >>> check_exception('This }}is') - >>> check_exception('{{This }}is{{') - >>> check_exception('This }}is{{') - >>> check_exception('{{}}') - >>> check_exception('{{This is') - >>> check_exception('{{This is{{') - >>> check_exception('{{This is{{ }}') - >>> check_exception('{{{{This}}}}') - >>> check_exception('}}This {{is}}') - >>> check_exception('This }} {{is}}') - >>> check_exception('{{This}}') - [Span(0)] - >>> check_exception('{This}') - [] - >>> check_exception('{{{This}}}') - [Span(0)] - """ - ipos = 0 - in_key_phrase = False - key_phrase = [] - for token in key_phrase_tokenizer(text): - if token == KEY_PHRASE_OPEN: - if in_key_phrase: - raise InvalidRule('Invalid rule with nested key phrase {{ {{ braces', text) - in_key_phrase = True - - elif token == KEY_PHRASE_CLOSE: - if in_key_phrase: - if key_phrase: - yield Span(key_phrase) - key_phrase.clear() - else: - raise InvalidRule('Invalid rule with empty key phrase {{}} braces', text) - in_key_phrase = False - else: - raise InvalidRule(f'Invalid rule with dangling key phrase missing closing braces', text) - continue - else: - if in_key_phrase: - key_phrase.append(ipos) - ipos += 1 +def get_rules_by_identifier(rules_data_dir=rules_data_dir): + """ + Get a dictionary of {rule_identifier: rule} for all license rules. + """ + rules = list(load_rules(rules_data_dir=rules_data_dir)) + + rules_by_identifier = { + rule.identifier: rule + for rule in rules + } + + return rules_by_identifier + + +def map_rules_by_expression(rules_by_identifier): + """ + Get a dictionary (sorted by license_expression) of {license_expression: rules} + from a dictionary of rules by their identifier. + """ + rules_by_expression = defaultdict(list) + + for rule in rules_by_identifier.values(): + # Only return rules with license_expression (i.e. skip false positives) + if rule.license_expression: + rules_by_expression[rule.license_expression].append(rule) + + return dict(sorted(rules_by_expression.items())) - if key_phrase or in_key_phrase: - raise InvalidRule(f'Invalid rule with dangling key phrase missing final closing braces', text) + +def get_rules_by_expression(rules_data_dir=rules_data_dir): + """ + Get a dictionary (sorted by license_expression) of {license_expression: rules} + where `rules` is a list of all rule objects having the `license_expression`. + """ + rules_by_identifier = get_rules_by_identifier(rules_data_dir) + return map_rules_by_expression(rules_by_identifier) diff --git a/src/licensedcode/required_phrases.py b/src/licensedcode/required_phrases.py new file mode 100644 index 0000000000..a527e870f3 --- /dev/null +++ b/src/licensedcode/required_phrases.py @@ -0,0 +1,969 @@ +# -*- 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 re + +from collections import defaultdict + +import attr +import click + +from commoncode.cliutils import PluggableCommandLineOption +from license_expression import Licensing + +from licensedcode.cache import build_index +from licensedcode.cache import get_index +from licensedcode.cache import get_licenses_db +from licensedcode.models import find_rule_base_location +from licensedcode.models import get_ignorables +from licensedcode.models import get_normalized_ignorables +from licensedcode.models import get_rules_by_expression +from licensedcode.models import load_rules +from licensedcode.models import rules_data_dir +from licensedcode.models import Rule +from licensedcode.models import rule_exists +from licensedcode.models import update_ignorables +from licensedcode.spans import Span +from licensedcode.stopwords import STOPWORDS +from licensedcode.tokenize import REQUIRED_PHRASE_CLOSE +from licensedcode.tokenize import REQUIRED_PHRASE_OPEN +from licensedcode.tokenize import required_phrase_tokenizer +from licensedcode.tokenize import matched_query_text_tokenizer +from licensedcode.tokenize import get_existing_required_phrase_spans + +""" +This is a utility module for "required phrases". +This is a designed to run as a command line tool with extensive debugging and tracing facilitues. + +Usage: + +- start with gen-new-required-phrases-rules: this will create new rules from existing "required +phrases" found in rules. + +- regen the index + +- then continue with add-required-phrases to update existing rules with required phrases found in +"is_required_phrase" rules and license attributes/fields. + +""" + +# Add rule identifiers here to trace required phrase collection or required +# phrase marking for a specific rule (Example: "mit_12.RULE") +TRACE_REQUIRED_PHRASE_FOR_RULES = [] + +#################################################################################################### +# +# Shared utilities +# +#################################################################################################### + + +def get_normalized_tokens(text, skip_required_phrase_markers=True, preserve_case=False): + """ + Return a list of normalized token strings in ``text``. + """ + required_phrase_markers = [REQUIRED_PHRASE_CLOSE, REQUIRED_PHRASE_OPEN] + tokens = list(required_phrase_tokenizer(text=text, preserve_case=preserve_case)) + if skip_required_phrase_markers: + tokens = [ + token + for token in tokens + if token not in required_phrase_markers + ] + + return tokens + + +def get_normalized_text(text, skip_required_phrase_markers=True): + """ + Return the normalized text for ``text``. Optionally ``skip_required_phrase_markers`` double + {{curly braces}}. + """ + return " ".join( + get_normalized_tokens( + text=text, + skip_required_phrase_markers=skip_required_phrase_markers, + ) + ) + + +def find_phrase_spans_in_text(text, phrase_text, preserve_case=False): + """ + Return a list of Spans where the ``phrase_text`` exists in ``text``, or an empty list. + """ + spans_with_required_phrase = [] + + text_tokens = list(get_normalized_tokens( + text=text, + preserve_case=preserve_case, + skip_required_phrase_markers=True, + )) + required_phrase_tokens = list(get_normalized_tokens( + text=phrase_text, + preserve_case=preserve_case, + skip_required_phrase_markers=True, + )) + required_phrase_first_token = required_phrase_tokens[0] + + # Initial check to see if all tokens in the required phrase are present + if all( + required_phrase_token in text_tokens + for required_phrase_token in required_phrase_tokens + ): + start_positions = [ + i + for i, x in enumerate(text_tokens) + if x == required_phrase_first_token + ] + + for start_pos in start_positions: + end_pos = start_pos + len(required_phrase_tokens) + + if ( + end_pos <= len(text_tokens) + and text_tokens[start_pos:end_pos] == required_phrase_tokens + ): + spans_with_required_phrase.append(Span(start_pos, end_pos - 1)) + + return spans_with_required_phrase + + +def get_non_overlapping_spans(old_required_phrase_spans, new_required_phrase_spans): + """ + Given two list of spans `old_required_phrase_spans` and `new_required_phrase_spans`, + return all the spans in `new_required_phrase_spans` that do not overlap with any + of the spans in `old_required_phrase_spans`. + + The list of spans `old_required_phrase_spans` contains all the spans of required + phrases or ignorables already present in a rule text, and the other list of spans + `new_required_phrase_spans` contains the proposed new required phrases. + """ + for new_span in new_required_phrase_spans: + if old_required_phrase_spans: + if any(old_span.overlap(new_span) != 0 for old_span in old_required_phrase_spans): + continue + + yield new_span + + +def add_required_phrase_markers(text, required_phrase_span): + """ + Given a ``text`` and a ``required_phrase_span`` Span, add required phrase + curly brace markers to the ``text`` before the start and after the of the span. + This is taking care of whitespace and stopwords. + """ + tokens_tuples_with_markers = [] + token_index = 0 + + for token_tuple in matched_query_text_tokenizer(text): + + is_word, token = token_tuple + + if is_word and token.lower() not in STOPWORDS: + if token_index == required_phrase_span.start: + tokens_tuples_with_markers.append((False, REQUIRED_PHRASE_OPEN)) + + token_index += 1 + + tokens_tuples_with_markers.append(token_tuple) + + if is_word and token.lower() not in STOPWORDS: + if token_index == required_phrase_span.end + 1: + tokens_tuples_with_markers.append((False, REQUIRED_PHRASE_CLOSE)) + + return combine_tokens(tokens_tuples_with_markers) + + +def combine_tokens(token_tuples): + """ + Returns a string `combined_text` combining token tuples from the list `token_tuples`, + which are token tuples created by the tokenizer functions. + """ + return ''.join(token for _, token in token_tuples) + + +@attr.s +class IsRequiredPhrase: + """ + Represent a required phrase text and rule from an "is_required_phrase" Rule + """ + + rule = attr.ib(metadata=dict(help='Rule that contains this phrase')) + required_phrase_text = attr.ib(metadata=dict(help='Normalized required phrase text.')) + + @property + def license_expression(self): + self.rule.license_expression + + @staticmethod + def sorted(isrequiredphrases): + """ + Return an ``isrequiredphrases`` list of IsRequiredPhrase sorted by decreasing text length. + """ + sorter = lambda p: (len(p.rule.text), p.required_phrase_text) + return sorted(isrequiredphrases, key=sorter, reverse=True) + + +def collect_is_required_phrase_from_rules(rules_by_expression, verbose=False): + """ + Return a mapping of ``{license_expression: list of [IsRequiredPhrase, ...]`` collecting the + texts of all rules in the ``rules_by_expression`` mapping if the "is_required_phrase" is True.. + """ + is_required_phrases_by_expression = {} + + for license_expression, rules in rules_by_expression.items(): + if verbose: + click.echo(f'Collecting required phrases for license_expression: {license_expression}') + + is_required_phrases = [] + + for rule in rules: + if not rule.is_required_phrase: + continue + + if rule.identifier in TRACE_REQUIRED_PHRASE_FOR_RULES: + click.echo(f"Collecting required phrase from rule: {rule.identifier}: {rule.text!r}") + + is_required_phrases.append(IsRequiredPhrase(rule=rule, required_phrase_text=rule.text)) + + # We need to sort required phrases by decreasing length so we look for and mark the longest + # possible required phrases before the shorter ones contained in the same text + is_required_phrases = IsRequiredPhrase.sorted(is_required_phrases) + is_required_phrases_by_expression[license_expression] = is_required_phrases + + if verbose: + count = len(is_required_phrases) + click.echo(f'Collected {count} required phrases for license_expression: {license_expression}') + click.echo('Collected required phrases texts: ') + for rqph in is_required_phrases: + click.echo(f' {rqph.required_phrase_text!r}: {rqph.rule.identifier}') + + return is_required_phrases_by_expression + + +def update_required_phrases_in_rules( + required_phrases_by_expression, + rules_by_expression, + write_phrase_source=False, + verbose=False, + dry_run=False, +): + """ + Update the text of rules in a ``rules_by_expression`` mapping with required phrases from the + ``required_phrases_by_expression`` mapping. + If ``write_phrase_source`` is True, include debug information in the saved rule source field. + """ + for license_expression, rules in rules_by_expression.items(): + if license_expression not in required_phrases_by_expression: + continue + + if verbose: + click.echo(f'marking required phrases in rule texts for license_expression: {license_expression}') + + required_phrases = required_phrases_by_expression.get(license_expression) + if not required_phrases: + continue + + add_required_phrases_to_rules_text( + required_phrases=required_phrases, + rules=rules, + write_phrase_source=write_phrase_source, + dry_run=dry_run, + ) + + +def update_rules_using_is_required_phrases_rules( + license_expression=None, + write_phrase_source=False, + verbose=False, + dry_run=False, +): + """ + Add required phrases to rules using is_required_phrase rules. + Optionally filter rules with ``license_expression``. + """ + rules_by_expression = get_base_rules_by_expression(license_expression=license_expression) + + required_phrases_by_expression = collect_is_required_phrase_from_rules( + rules_by_expression=rules_by_expression, + verbose=verbose, + ) + if verbose: + click.echo(f"update_rules_using_is_required_phrases_rules: required_phrases_by_expression # {len(required_phrases_by_expression)}") + + rules_by_expression = get_updatable_rules_by_expression( + license_expression, + simple_expression=False, + ) + if verbose: + click.echo(f"update_rules_using_is_required_phrases_rules: rules_by_expression # {len(rules_by_expression)}") + + update_required_phrases_in_rules( + required_phrases_by_expression=required_phrases_by_expression, + rules_by_expression=rules_by_expression, + write_phrase_source=write_phrase_source, + verbose=verbose, + dry_run=dry_run, + ) + + +def get_base_rules_by_expression(license_expression=None): + """ + Return a mapping of rules_by_expression, filtered for an optional ``license_expression``. + """ + rules_by_expression = get_rules_by_expression() + if license_expression: + rules_by_expression = {license_expression: rules_by_expression[license_expression]} + + return rules_by_expression + + +def get_updatable_rules_by_expression(license_expression=None, simple_expression=True): + """ + Return a mapping of rules_by_expression, filtered for an optional ``license_expression``. + The rules are suitable to receive required phrase updates + If simple_expression is True, only consider lincense rules with a single license key. + """ + rules_by_expression = get_base_rules_by_expression() + + index = get_index() + licensing = Licensing() + + updatable_rules_by_expression = {} + + # filter rules to keep only updatable rules + for expression, rules in rules_by_expression.items(): + if simple_expression: + license_keys = licensing.license_keys(license_expression) + if len(license_keys) != 1: + continue + + updatable_rules = [] + for rule in rules: + if rule.is_from_license: + continue + + # long texts are best left alone + if rule.is_license_text and len(rule.text) > 300: + continue + + # skip required phrase, false positive, tiny and and more + if rule.is_required_phrase or not rule.is_approx_matchable: + continue + + # skip rules that ask to be skipped + if rule.skip_for_required_phrase_generation: + continue + + # skip non-approx matchable, they will be matche exactly + if not index.is_rule_approx_matchable(rule): + continue + + updatable_rules.append(rule) + + if updatable_rules: + updatable_rules_by_expression[expression] = updatable_rules + + return updatable_rules_by_expression + + +def add_required_phrases_to_rules_text( + required_phrases, + rules, + write_phrase_source=False, + dry_run=False, +): + """ + Add the ``required_phrases`` list of IsRequiredPhrase to each rule in a ``rules`` list of + license Rule. + """ + for rule in rules: + for required_phrase in required_phrases: + debug = False + if rule.identifier in TRACE_REQUIRED_PHRASE_FOR_RULES: + click.echo( + f"Trying to updating rule: {rule.identifier} " + f"with required phrase: '{required_phrase.required_phrase_text}'." + ) + debug = True + + source = rule.source or "" + if write_phrase_source: + source += f" {required_phrase.rule.identifier}" + + add_required_phrase_to_rule( + rule=rule, + required_phrase=required_phrase.required_phrase_text, + source=source, + debug=debug, + dry_run=dry_run, + ) + + +def add_license_attributes_as_required_phrases_to_rules_text( + license_object, + rules, + write_phrase_source=False, + dry_run=False, +): + """ + Add new required phrases to the ``rules`` list of Rule using the ``license_object`` License + fields for required phrases. + """ + + license_fields_mapping_by_order = { + "name": license_object.name, + "short_name": license_object.short_name, + # "key", + # "spdx_license_key", + } + + for rule in rules: + for field_name, required_phrase_text in license_fields_mapping_by_order.values(): + debug = False + if rule.identifier in TRACE_REQUIRED_PHRASE_FOR_RULES: + click.echo( + f"Updating rule: {rule.identifier} " + f"with required phrase from license: {field_name!r}: {required_phrase_text!r}." + ) + debug = True + + source = rule.source or "" + if write_phrase_source: + source += f" {license_object.key}.LICENSE : {field_name}" + + add_required_phrase_to_rule( + rule=rule, + required_phrase=required_phrase_text, + source=source, + debug=debug, + dry_run=dry_run, + ) + + +def get_ignorable_spans(rule): + """ + Return a list of ignorable Spans for the ``rule``. + Ignorable spans are for URLs and referenced filenames present in a rule text. These should not + be messed up with when injecting new required phrases in a rule text. + """ + ignorable_spans = [] + ignorables = rule.referenced_filenames + rule.ignorable_urls + for ignorable in ignorables: + ignorable_spans.extend( + find_phrase_spans_in_text( + text=rule.text, + required_phrase=ignorable, + preserve_case=True, + ) + ) + + return ignorable_spans + + +def add_required_phrase_to_rule(rule, required_phrase, source, debug=False, dry_run=False): + """ + Update and save the ``rule`` Rule tagging the text with the ``required_phrase`` text. Skip + updating and saving the rule to disk under some conditions, like if ignorables would be changed. + Return True if the rule was updated and False otherwise. + """ + + # These are candidate spans for new requriedf_phrases, if they exist + new_required_phrase_spans = find_phrase_spans_in_text( + text=rule.text, + required_phrase=required_phrase, + ) + + # we get spans for already existing required phrases and ignorables + ignorable_spans = get_ignorable_spans(rule) + old_required_phrase_spans = get_existing_required_phrase_spans(rule.text) + + # we verify whether there are spans which overlap with the + # already present required phrases or ignorables + spans_to_add = list( + get_non_overlapping_spans( + old_required_phrase_spans=old_required_phrase_spans + ignorable_spans, + new_required_phrase_spans=new_required_phrase_spans, + ) + ) + + if new_required_phrase_spans and debug: + click.echo(f"New required phrase spans for {rule.identifier}: {new_required_phrase_spans}") + click.echo(f"Old required phrase spans: {old_required_phrase_spans}") + click.echo(f"Ignorable spans: {ignorable_spans}") + click.echo(f"required phrase spans to add: {spans_to_add}") + ignorable_debug = rule.referenced_filenames + rule.ignorable_urls + click.echo(f"debug ignorables: {ignorable_debug}") + + # we add required phrase markers for the non-overlapping spans + new_rule_text = rule.text + for span_to_add in spans_to_add: + new_rule_text = add_required_phrase_markers( + text=new_rule_text, + required_phrase_span=span_to_add, + ) + + # write the rule on disk if there are any updates + if new_rule_text == rule.text: + return False + + if has_ignorable_changes(rule=rule, updated_text=new_rule_text): + if debug: + click.echo( + f"NOT Updating rule: {rule.identifier} " + f"because IGNORABLES would change " + f"with required phrase: {required_phrase} " + ) + + return False + + rule.source = source or None + rule.text = new_rule_text + if not dry_run: + if debug: + click.echo( + f"UPDATE: Updating rule: {rule.identifier} " + f"with required phrase: {required_phrase!r} " + f"source: {source!r}" + ) + rule.dump(rules_data_dir) + return True + + +def has_ignorable_changes(rule, updated_text): + """ + Return True if there would be changes in the "ignorable_*" attributes of a ``rule`` Rule if its + text was to be updated with a new ``updated_text``. + """ + existing_ignorables = get_normalized_ignorables(rule) + updated_ignorables = get_ignorables(updated_text) + return existing_ignorables != updated_ignorables + + +def update_rules_using_license_attributes( + license_expression=None, + write_phrase_source=False, + verbose=False, + dry_run=False, +): + """ + Add required phrases found in the license fields. + + Iterate rules by license key, collect required phrases from the license attributes like name and + short name. Add those as required phrases in all selected rules that are using the + ``license_expression``. + """ + rules_by_expression = get_updatable_rules_by_expression(license_expression, simple_expression=True) + + licenses_by_key = get_licenses_db() + + # license expression is alway a single key here + for license_key, rules in rules_by_expression.items(): + licence_object = licenses_by_key[license_key] + if verbose: + click.echo(f'Updating rules with required phrases for license_expression: {license_key}') + + add_license_attributes_as_required_phrases_to_rules_text( + license_object=licence_object, + rules=rules, + write_phrase_source=write_phrase_source, + dry_run=dry_run, + ) + +#################################################################################################### +# +# Inject new required phrase in rules +# +#################################################################################################### + + +def delete_required_phrase_rules_source_debug(rules_data_dir): + """ + Remove the "source" attribute from all rules. + """ + for rule in load_rules(rules_data_dir=rules_data_dir): + if rule.source: + rule.source = None + rule.dump(rules_data_dir) + + +@click.command(name='add-required-phrases') +@click.option( + "-o", + "--from-other-rules", + is_flag=True, + default=False, + help="Propagate existing required phrases from other rules to all selected rules. " + "Mutually exclusive with --from-license-attributes.", + cls=PluggableCommandLineOption, +) +@click.option( + "-a", + "--from-license-attributes", + is_flag=True, + default=False, + help="Propagate license attributes as required phrases to all selected rules. " + "Mutually exclusive with --from-other-rule.", + cls=PluggableCommandLineOption, +) +@click.option( + "-l", + "--license-expression", + type=str, + default=None, + metavar="STRING", + help="Optional license expression filter. If provided, only consider the rules that are using " + "this expression. Otherwise, process all rules. Example: `apache-2.0`.", + cls=PluggableCommandLineOption, +) +@click.option( + "--validate", + is_flag=True, + default=False, + help="Validate that all rules and licenses and rules are consistent, for all rule languages. " + "For this validation, run a mock indexing. The regenerated index is not saved to disk.", + cls=PluggableCommandLineOption, +) +@click.option( + "-r", + "--reindex", + is_flag=True, + default=False, + help="Recreate and cache the licenses index with updated rules add the end.", + cls=PluggableCommandLineOption, +) +@click.option( + "-w", + "--write-phrase-source", + is_flag=True, + default=False, + help="In modified rule files, write the source field to trace the source of required phrases " + "applied to that rule.", + cls=PluggableCommandLineOption, +) +@click.option( + "-d", + "--delete-phrase-source", + is_flag=True, + default=False, + help="In rule files, delete the source extra debug data used to trace source of phrases.", + cls=PluggableCommandLineOption, +) +@click.option( + "--dry-run", + is_flag=True, + default=False, + help="Do not save rules.", + cls=PluggableCommandLineOption, +) +@click.option( + "-v", + "--verbose", + is_flag=True, + default=False, + help="Print verbose logging information.", + cls=PluggableCommandLineOption, +) +@click.help_option("-h", "--help") +def add_required_phrases( + from_other_rules, + from_license_attributes, + license_expression, + validate, + reindex, + delete_phrase_source, + write_phrase_source, + dry_run, + verbose, +): + """ + Update license detection rules with new "required phrases" to improve rules detection accuracy. + """ + + if delete_phrase_source: + click.echo('Deleting rules phrase source debug data.') + delete_required_phrase_rules_source_debug(rules_data_dir) + return + + elif from_other_rules: + click.echo('Updating rules from is_required_phrase rules.') + update_rules_using_is_required_phrases_rules( + license_expression=license_expression, + write_phrase_source=write_phrase_source, + dry_run=dry_run, + verbose=verbose, + ) + + elif from_license_attributes: + click.echo('Updating rules from license attributes.') + update_rules_using_license_attributes( + license_expression=license_expression, + write_phrase_source=write_phrase_source, + dry_run=dry_run, + verbose=verbose, + ) + + validate_and_reindex(validate, reindex, verbose) + + +def validate_and_reindex(validate, reindex, verbose): + if validate: + if verbose: + click.echo('Validate all rules and licenses for all languages...') + build_index(index_all_languages=True) + + if reindex: + if verbose: + click.echo('Rebuilding and caching the license index...') + get_index(force=True) + +#################################################################################################### +# +# Generate new required phrase rules from existing tagged required phrases +# +#################################################################################################### + + +@click.command(name='gen-new-required-phrases-rules') +@click.option( + "-l", + "--license-expression", + type=str, + default=None, + metavar="STRING", + help="Optional license expression filter. If provided, only consider the rules that are using " + "this expression. Otherwise, process all rules. Example: `apache-2.0`.", + cls=PluggableCommandLineOption, +) +@click.option( + "-r", + "--reindex", + is_flag=True, + default=False, + help="Recreate and cache the licenses index with updated rules add the end.", + cls=PluggableCommandLineOption, +) +@click.option( + "--validate", + is_flag=True, + default=False, + help="Validate that all rules and licenses and rules are consistent, for all rule languages. " + "For this validation, run a mock indexing. The regenerated index is not saved to disk.", + cls=PluggableCommandLineOption, +) +@click.option( + "-v", + "--verbose", + is_flag=True, + default=False, + help="Print verbose logging information.", + cls=PluggableCommandLineOption, +) +@click.help_option("-h", "--help") +def gen_required_phrases_rules( + license_expression, + validate, + reindex, + verbose, +): + """ + Create new license detection rules from "required phrases" in existing rules. + """ + generate_new_required_phrase_rules(license_expression=license_expression, verbose=verbose) + validate_and_reindex(validate, reindex, verbose) + + +def generate_new_required_phrase_rules(license_expression=None, verbose=False): + """ + Create new rules ctreated from collecting unique required phrases accross all rules. + + As a side effect, also update existing rules matched to a required phrase text with the + "is_required_phrase" flag. + + Consider only rules with the optional ``license_expression`` if provided. + """ + if verbose: + lex = license_expression or "all" + click.echo(f'Collecting required phrases for {lex} license_expression.') + + index = get_index() + licenses_by_key = get_licenses_db() + + # track text -> expressions to keep only a text that uniquely identifies a single expression + phrases_by_normalized_phrase = defaultdict(list) + + for rule in index.rules_by_rid: + if rule.license_expression != license_expression: + continue + + if ( + rule.is_required_phrase + or rule.skip_for_required_phrase_generation + or rule.is_license_intro + or rule.is_license_clue + or rule.is_false_positive + or rule.is_from_license + or rule.is_generic(licenses_by_key) + ): + continue + + for required_phrase_text in get_required_phrase_verbatim(rule.text): + phrase = RequiredPhraseRuleCandidate.create(license_expression=license_expression, text=required_phrase_text) + if phrase.is_good(rule): + phrases_by_normalized_phrase[phrase.normalized_text].append(phrase) + + # Add new variations of the required phrases already present in the list + for variation in generate_required_phrase_variations(required_phrase_text): + phrase = RequiredPhraseRuleCandidate.create(license_expression=license_expression, text=variation) + if phrase.is_good(rule): + phrases_by_normalized_phrase[phrase.normalized_text].append(phrase) + + for phrases in phrases_by_normalized_phrase.values(): + # keep only phrases pointing used for the same expression + if len(set(p.license_expression for p in phrases)) == 1: + # keep the first one + phrase = phrases[0] + else: + continue + + # check if we already have a rule we can match for this required phrase tag if needed + matched_rule = rule_exists(text=phrase.raw_text) + if matched_rule: + if matched_rule.skip_for_required_phrase_generation: + if verbose: + click.echo( + f'WARNING: Skipping pre-existing required phrase rule ' + f'"skip_for_required_phrase_generation": {matched_rule.identifier}.' + ) + continue + + modified = False + + if not matched_rule.is_required_phrase: + matched_rule.is_required_phrase = True + modified = True + + if matched_rule.text.strip() != phrase.raw_text: + matched_rule.text = phrase.raw_text + modified = True + + if matched_rule.is_continuous: + matched_rule.is_continuous = False + modified = True + + if modified: + matched_rule.dump(rules_data_dir) + if verbose: + click.echo(f'WARNING: Updating existing rule with is_required flag and more: {matched_rule.identifier}.') + else: + if verbose: + click.echo(f'WARNING: Skipping pre-existing required phrase rule: {matched_rule.identifier}.') + + continue + + # at last create a new rule + rule = phrase.create_rule() + if verbose: + click.echo(f'Creating required phrase new rule: {rule.identifier}.') + + +@attr.s +class RequiredPhraseRuleCandidate: + """ + A candidate phrase object with its license expression, raw text and normalized text. Used when + generating new rules for requireqed phrases. + """ + license_expression = attr.ib(metadata=dict(help='A license expression string.')) + raw_text = attr.ib(metadata=dict(help='Raw, original required phrase text.')) + normalized_text = attr.ib(metadata=dict(help='Normalized required phrase text.')) + + def is_good(self, rule): + """ + Return True if this phrase is a minimally suitable to use as a required phrase + """ + # long enough + num_tokens = len(get_normalized_tokens(self.normalized_text)) + if num_tokens <= 1: + return False + + to_ignore = set() + # not a referenced filename + to_ignore.update(map(get_normalized_text, rule.referenced_filenames)) + if self.normalized_text in to_ignore: + return False + + return True + + @classmethod + def create(cls, license_expression, text): + return cls( + license_expression=license_expression, + raw_text=text, + normalized_text=get_normalized_text(text), + ) + + def create_rule(self): + """ + Create, save and return a new "required_phrase" Rule from this phrase. + """ + base_name = f"{self.license_expression}_required_phrase" + base_loc = find_rule_base_location(name_prefix=base_name) + file_path = f"{base_loc}.RULE" + identifier = file_path.split('/')[-1] + + rule = Rule( + license_expression=self.license_expression, + identifier=identifier, + text=self.raw_text, + is_required_phrase=True, + is_license_reference=True, + relevance=100, + ) + update_ignorables(licensish=rule) + rule.dump(rules_data_dir) + return rule + + +_verbatim_required_phrase = r'{{([^}]+)}}' +collect_verbatim_required_phrase = re.compile(_verbatim_required_phrase, re.UNICODE).findall + + +def get_required_phrase_verbatim(text): + """ + Yield required_phrase strings from a rule ``text`` excluding required phrases {{brace}} markers. + + This tokenizer behaves the same as as the ``index_tokenizer`` returning also + REQUIRED_PHRASE_OPEN and REQUIRED_PHRASE_CLOSE as separate tokens so that they can be + used to parse required phrases. + + >>> x = list(get_required_phrase_verbatim('bar {{ AGPL-3.0 GNU Affero License v3.0 }} foo')) + >>> assert x == ['AGPL-3.0 GNU Affero License v3.0'], x + + >>> x = list(get_required_phrase_verbatim(' + {{ ++ AGPL-3.0/}} and {{ GNU Affero License v3.0 }} ')) + >>> assert x == ['++ AGPL-3.0/', 'GNU Affero License v3.0'], x + """ + if not text: + return + for phrase in collect_verbatim_required_phrase(text): + phrase = phrase.strip() + if phrase: + yield phrase + + +def generate_required_phrase_variations(text): + """ + Yield strings that are useful variations of the ``text``, used to generate rule variants. + """ + words_to_skip = ["the"] + required_phrase_words = text.split() + for skip_word in words_to_skip: + variant = [w for w in required_phrase_words if w.lower() != skip_word] + yield " ".join(variant) + diff --git a/src/licensedcode/tokenize.py b/src/licensedcode/tokenize.py index fdcc06fb45..bea07dd5a2 100644 --- a/src/licensedcode/tokenize.py +++ b/src/licensedcode/tokenize.py @@ -9,16 +9,19 @@ # import re -from collections import defaultdict + from binascii import crc32 +from collections import defaultdict from itertools import islice +from licensedcode.spans import Span from licensedcode.stopwords import STOPWORDS from textcode.analysis import numbered_text_lines """ -Utilities to break texts in lines and tokens (aka. words) with specialized -version for queries and rules texts. +Utilities to break texts in lines and tokens (aka. words), +and handle required phrases in texts through these tokens, +with specialized version for queries and rules texts. """ @@ -75,26 +78,26 @@ def query_lines( query_pattern = '[^_\\W]+\\+?[^_\\W]*' word_splitter = re.compile(query_pattern, re.UNICODE).findall -key_phrase_pattern = '(?:' + query_pattern + '|\\{\\{|\\}\\})' -key_phrase_splitter = re.compile(key_phrase_pattern, re.UNICODE).findall +required_phrase_pattern = '(?:' + query_pattern + '|\\{\\{|\\}\\})' +required_phrase_splitter = re.compile(required_phrase_pattern, re.UNICODE).findall -KEY_PHRASE_OPEN = '{{' -KEY_PHRASE_CLOSE = '}}' +REQUIRED_PHRASE_OPEN = '{{' +REQUIRED_PHRASE_CLOSE = '}}' # FIXME: this should be folded in a single pass tokenization with the index_tokenizer -def key_phrase_tokenizer(text, stopwords=STOPWORDS): +def required_phrase_tokenizer(text, stopwords=STOPWORDS, preserve_case=False): """ - Yield tokens from a rule ``text`` including key phrases {{brace}} markers. + Yield tokens from a rule ``text`` including required phrases {{brace}} markers. This tokenizer behaves the same as as the ``index_tokenizer`` returning also - KEY_PHRASE_OPEN and KEY_PHRASE_CLOSE as separate tokens so that they can be - used to parse key phrases. + REQUIRED_PHRASE_OPEN and REQUIRED_PHRASE_CLOSE as separate tokens so that they can be + used to parse required phrases. - >>> x = list(key_phrase_splitter('{{AGPL-3.0 GNU Affero License v3.0}}')) + >>> x = list(required_phrase_splitter('{{AGPL-3.0 GNU Affero License v3.0}}')) >>> assert x == ['{{', 'AGPL', '3', '0', 'GNU', 'Affero', 'License', 'v3', '0', '}}'], x - >>> x = list(key_phrase_splitter('{{{AGPL{{{{Affero }}License}}0}}')) + >>> x = list(required_phrase_splitter('{{{AGPL{{{{Affero }}License}}0}}')) >>> assert x == ['{{', 'AGPL', '{{', '{{', 'Affero', '}}', 'License', '}}', '0', '}}'], x >>> list(index_tokenizer('')) == [] @@ -103,17 +106,115 @@ def key_phrase_tokenizer(text, stopwords=STOPWORDS): >>> x = list(index_tokenizer('{{AGPL-3.0 GNU Affero License v3.0}}')) >>> assert x == ['agpl', '3', '0', 'gnu', 'affero', 'license', 'v3', '0'] - >>> x = list(key_phrase_tokenizer('{{AGPL-3.0 GNU Affero License v3.0}}')) + >>> x = list(required_phrase_tokenizer('{{AGPL-3.0 GNU Affero License v3.0}}')) >>> assert x == ['{{', 'agpl', '3', '0', 'gnu', 'affero', 'license', 'v3', '0', '}}'] """ if not text: return - for token in key_phrase_splitter(text.lower()): + if not preserve_case: + text = text.lower() + + for token in required_phrase_splitter(text): if token and token not in stopwords: yield token -def index_tokenizer(text, stopwords=STOPWORDS): +def get_existing_required_phrase_spans(text): + """ + Return a list of token position Spans, one for each {{tagged}} required phrase found in ``text``. + + For example: + + >>> text = 'This is enclosed in {{double curly braces}}' + >>> # 0 1 2 3 4 5 6 + >>> x = get_existing_required_phrase_spans(text) + >>> assert x == [Span(4, 6)], x + + >>> text = 'This is {{enclosed}} a {{double curly braces}} or not' + >>> # 0 1 2 SW 3 4 5 6 7 + >>> x = get_existing_required_phrase_spans(text) + >>> assert x == [Span(2), Span(3, 5)], x + + >>> text = 'This {{is}} enclosed a {{double curly braces}} or not' + >>> # 0 1 2 SW 3 4 5 6 7 + >>> x = get_existing_required_phrase_spans(text) + >>> assert x == [Span([1]), Span([3, 4, 5])], x + + >>> text = '{{AGPL-3.0 GNU Affero General Public License v3.0}}' + >>> # 0 1 2 3 4 5 6 7 8 9 + >>> x = get_existing_required_phrase_spans(text) + >>> assert x == [Span(0, 9)], x + + >>> assert get_existing_required_phrase_spans('{This}') == [] + + >>> def check_exception(text): + ... try: + ... return get_existing_required_phrase_spans(text) + ... except InvalidRuleRequiredPhrase: + ... pass + + >>> check_exception('This {{is') + >>> check_exception('This }}is') + >>> check_exception('{{This }}is{{') + >>> check_exception('This }}is{{') + >>> check_exception('{{}}') + >>> check_exception('{{This is') + >>> check_exception('{{This is{{') + >>> check_exception('{{This is{{ }}') + >>> check_exception('{{{{This}}}}') + >>> check_exception('}}This {{is}}') + >>> check_exception('This }} {{is}}') + >>> check_exception('{{This}}') + [Span(0)] + >>> check_exception('{This}') + [] + >>> check_exception('{{{This}}}') + [Span(0)] + """ + return list(get_phrase_spans(text)) + + +class InvalidRuleRequiredPhrase(Exception): + pass + + + +def get_phrase_spans(text): + """ + Yield position Spans for each tagged required phrase found in ``text``. + """ + ipos = 0 + in_required_phrase = False + current_phrase_positions = [] + for token in required_phrase_tokenizer(text): + if token == REQUIRED_PHRASE_OPEN: + if in_required_phrase: + raise InvalidRuleRequiredPhrase('Invalid rule with nested required phrase {{ {{ braces', text) + in_required_phrase = True + + elif token == REQUIRED_PHRASE_CLOSE: + if in_required_phrase: + if current_phrase_positions: + yield Span(current_phrase_positions) + current_phrase_positions = [] + else: + raise InvalidRuleRequiredPhrase('Invalid rule with empty required phrase {{}} braces', text) + in_required_phrase = False + else: + raise InvalidRuleRequiredPhrase(f'Invalid rule with dangling required phrase missing closing braces', text) + continue + else: + if in_required_phrase: + current_phrase_positions.append(ipos) + ipos += 1 + + if current_phrase_positions or in_required_phrase: + raise InvalidRuleRequiredPhrase(f'Invalid rule with dangling required phrase missing final closing braces', text) + + + + +def index_tokenizer(text, stopwords=STOPWORDS, preserve_case=False): """ Return an iterable of tokens from a rule or query ``text`` using index tokenizing rules. Ignore words that exist as lowercase in the ``stopwords`` @@ -137,7 +238,9 @@ def index_tokenizer(text, stopwords=STOPWORDS): """ if not text: return [] - words = word_splitter(text.lower()) + if not preserve_case: + text = text.lower() + words = word_splitter(text) return (token for token in words if token and token not in stopwords) diff --git a/tests/formattedcode/data/common/manifests-expected.json b/tests/formattedcode/data/common/manifests-expected.json index 7df3f70314..c5964181f2 100644 --- a/tests/formattedcode/data/common/manifests-expected.json +++ b/tests/formattedcode/data/common/manifests-expected.json @@ -783,15 +783,15 @@ "identifier": "apache_2_0-d66ab77d-a5cc-7104-e702-dc7df61fe9e8", "license_expression": "apache-2.0", "license_expression_spdx": "Apache-2.0", - "detection_count": 3, + "detection_count": 2, "reference_matches": [ { "license_expression": "apache-2.0", "license_expression_spdx": "Apache-2.0", "from_file": "manifests/npm-license-mapping/package.json", - "start_line": 20, - "end_line": 20, - "matcher": "2-aho", + "start_line": 1, + "end_line": 1, + "matcher": "1-hash", "score": 100.0, "matched_length": 3, "match_coverage": 100.0, @@ -801,6 +801,28 @@ } ] }, + { + "identifier": "apache_2_0-0d7a2023-aae9-2989-7f00-27b713b809bb", + "license_expression": "apache-2.0", + "license_expression_spdx": "Apache-2.0", + "detection_count": 1, + "reference_matches": [ + { + "license_expression": "apache-2.0", + "license_expression_spdx": "Apache-2.0", + "from_file": "manifests/npm-license-mapping/package.json", + "start_line": 18, + "end_line": 20, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 5, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "apache-2.0_required_phrase_7.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_required_phrase_7.RULE" + } + ] + }, { "identifier": "apache_2_0-ec759ae0-ea5a-f138-793e-388520e080c0", "license_expression": "apache-2.0", @@ -1560,22 +1582,22 @@ "license_expression": "apache-2.0", "license_expression_spdx": "Apache-2.0", "from_file": "manifests/npm-license-mapping/package.json", - "start_line": 20, + "start_line": 18, "end_line": 20, "matcher": "2-aho", "score": 100.0, - "matched_length": 3, + "matched_length": 5, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE" + "rule_identifier": "apache-2.0_required_phrase_7.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_required_phrase_7.RULE" } ], - "identifier": "apache_2_0-d66ab77d-a5cc-7104-e702-dc7df61fe9e8" + "identifier": "apache_2_0-0d7a2023-aae9-2989-7f00-27b713b809bb" } ], "license_clues": [], - "percentage_of_license_text": 5.51, + "percentage_of_license_text": 7.09, "copyrights": [], "holders": [], "authors": [ diff --git a/tests/formattedcode/data/common/manifests-expected.jsonlines b/tests/formattedcode/data/common/manifests-expected.jsonlines index 73ec845146..30a7523d25 100644 --- a/tests/formattedcode/data/common/manifests-expected.jsonlines +++ b/tests/formattedcode/data/common/manifests-expected.jsonlines @@ -20,9 +20,9 @@ "system_environment": { "operating_system": "linux", "cpu_architecture": "64", - "platform": "Linux-5.15.0-122-generic-x86_64-with-glibc2.35", - "platform_version": "#132-Ubuntu SMP Thu Aug 29 13:45:52 UTC 2024", - "python_version": "3.10.12 (main, Sep 11 2024, 15:47:36) [GCC 11.4.0]" + "platform": "Linux-6.8.0-45-generic-x86_64-with-glibc2.35", + "platform_version": "#45~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Sep 11 15:25:05 UTC 2", + "python_version": "3.11.8 (main, Feb 12 2024, 14:25:06) [GCC 11.4.0]" }, "spdx_license_list_version": "3.25", "files_count": 4 @@ -819,15 +819,15 @@ "identifier": "apache_2_0-d66ab77d-a5cc-7104-e702-dc7df61fe9e8", "license_expression": "apache-2.0", "license_expression_spdx": "Apache-2.0", - "detection_count": 3, + "detection_count": 2, "reference_matches": [ { "license_expression": "apache-2.0", "license_expression_spdx": "Apache-2.0", "from_file": "manifests/npm-license-mapping/package.json", - "start_line": 20, - "end_line": 20, - "matcher": "2-aho", + "start_line": 1, + "end_line": 1, + "matcher": "1-hash", "score": 100.0, "matched_length": 3, "match_coverage": 100.0, @@ -837,6 +837,28 @@ } ] }, + { + "identifier": "apache_2_0-0d7a2023-aae9-2989-7f00-27b713b809bb", + "license_expression": "apache-2.0", + "license_expression_spdx": "Apache-2.0", + "detection_count": 1, + "reference_matches": [ + { + "license_expression": "apache-2.0", + "license_expression_spdx": "Apache-2.0", + "from_file": "manifests/npm-license-mapping/package.json", + "start_line": 18, + "end_line": 20, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 5, + "match_coverage": 100.0, + "rule_relevance": 100, + "rule_identifier": "apache-2.0_required_phrase_7.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_required_phrase_7.RULE" + } + ] + }, { "identifier": "apache_2_0-ec759ae0-ea5a-f138-793e-388520e080c0", "license_expression": "apache-2.0", @@ -1614,22 +1636,22 @@ "license_expression": "apache-2.0", "license_expression_spdx": "Apache-2.0", "from_file": "manifests/npm-license-mapping/package.json", - "start_line": 20, + "start_line": 18, "end_line": 20, "matcher": "2-aho", "score": 100.0, - "matched_length": 3, + "matched_length": 5, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "spdx_license_id_apache-2.0_for_apache-2.0.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE" + "rule_identifier": "apache-2.0_required_phrase_7.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_required_phrase_7.RULE" } ], - "identifier": "apache_2_0-d66ab77d-a5cc-7104-e702-dc7df61fe9e8" + "identifier": "apache_2_0-0d7a2023-aae9-2989-7f00-27b713b809bb" } ], "license_clues": [], - "percentage_of_license_text": 5.51, + "percentage_of_license_text": 7.09, "copyrights": [], "holders": [], "authors": [ diff --git a/tests/formattedcode/data/common/manifests-expected.yaml b/tests/formattedcode/data/common/manifests-expected.yaml index f1d2b6a190..717000e25f 100644 --- a/tests/formattedcode/data/common/manifests-expected.yaml +++ b/tests/formattedcode/data/common/manifests-expected.yaml @@ -29,9 +29,9 @@ headers: system_environment: operating_system: linux cpu_architecture: 64 - platform: Linux-5.15.0-122-generic-x86_64-with-glibc2.35 - platform_version: '#132-Ubuntu SMP Thu Aug 29 13:45:52 UTC 2024' - python_version: 3.10.12 (main, Sep 11 2024, 15:47:36) [GCC 11.4.0] + platform: Linux-6.8.0-45-generic-x86_64-with-glibc2.35 + platform_version: '#45~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Sep 11 15:25:05 UTC 2' + python_version: 3.11.8 (main, Feb 12 2024, 14:25:06) [GCC 11.4.0] spdx_license_list_version: '3.25' files_count: 4 summary: @@ -735,21 +735,42 @@ license_detections: - identifier: apache_2_0-d66ab77d-a5cc-7104-e702-dc7df61fe9e8 license_expression: apache-2.0 license_expression_spdx: Apache-2.0 - detection_count: 3 + detection_count: 2 reference_matches: - license_expression: apache-2.0 license_expression_spdx: Apache-2.0 from_file: manifests/npm-license-mapping/package.json - start_line: 20 - end_line: 20 - matcher: 2-aho + start_line: 1 + end_line: 1 + matcher: 1-hash score: '100.0' matched_length: 3 match_coverage: '100.0' rule_relevance: 100 rule_identifier: spdx_license_id_apache-2.0_for_apache-2.0.RULE rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE - matched_text: ' "type": "Apache 2.0",' + matched_text: Apache-2.0 + - identifier: apache_2_0-0d7a2023-aae9-2989-7f00-27b713b809bb + license_expression: apache-2.0 + license_expression_spdx: Apache-2.0 + detection_count: 1 + reference_matches: + - license_expression: apache-2.0 + license_expression_spdx: Apache-2.0 + from_file: manifests/npm-license-mapping/package.json + start_line: 18 + end_line: 20 + matcher: 2-aho + score: '100.0' + matched_length: 5 + match_coverage: '100.0' + rule_relevance: 100 + rule_identifier: apache-2.0_required_phrase_7.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_required_phrase_7.RULE + matched_text: | + "licenses": [ + { + "type": "Apache 2.0", - identifier: apache_2_0-ec759ae0-ea5a-f138-793e-388520e080c0 license_expression: apache-2.0 license_expression_spdx: Apache-2.0 @@ -1601,6 +1622,8 @@ license_rule_references: is_license_tag: yes is_license_intro: no is_license_clue: no + is_required_phrase: yes + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -1615,7 +1638,37 @@ license_rule_references: ignorable_authors: [] ignorable_urls: [] ignorable_emails: [] - text: 'license: Apache-2.0' + text: license="Apache-2.0 + - license_expression: apache-2.0 + identifier: apache-2.0_required_phrase_7.RULE + language: en + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_required_phrase_7.RULE + is_license_text: no + is_license_notice: no + is_license_reference: no + is_license_tag: yes + is_license_intro: no + is_license_clue: no + is_required_phrase: yes + skip_for_required_phrase_generation: no + is_continuous: no + is_builtin: yes + is_from_license: no + is_synthetic: no + length: 5 + relevance: 100 + minimum_coverage: 80 + referenced_filenames: [] + notes: + ignorable_copyrights: [] + ignorable_holders: [] + ignorable_authors: [] + ignorable_urls: [] + ignorable_emails: [] + text: | + "licenses": [ + { + "type": "Apache-2.0 - license_expression: cddl-1.0 identifier: cddl-1.0.RULE language: en @@ -1626,6 +1679,8 @@ license_rule_references: is_license_tag: no is_license_intro: no is_license_clue: no + is_required_phrase: no + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -1651,6 +1706,8 @@ license_rule_references: is_license_tag: yes is_license_intro: no is_license_clue: no + is_required_phrase: no + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -1677,6 +1734,8 @@ license_rule_references: is_license_tag: no is_license_intro: no is_license_clue: no + is_required_phrase: no + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -1703,6 +1762,8 @@ license_rule_references: is_license_tag: yes is_license_intro: no is_license_clue: no + is_required_phrase: no + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -1728,6 +1789,8 @@ license_rule_references: is_license_tag: no is_license_intro: no is_license_clue: no + is_required_phrase: no + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -1744,7 +1807,7 @@ license_rule_references: ignorable_emails: [] text: | This library is free software; you can redistribute it and/or modify it under - the terms of the GNU Lesser General Public License version 3.0 as published + the terms of the {{GNU Lesser General Public License version 3.0}} as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT @@ -1765,6 +1828,8 @@ license_rule_references: is_license_tag: no is_license_intro: no is_license_clue: no + is_required_phrase: no + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -1790,6 +1855,8 @@ license_rule_references: is_license_tag: no is_license_intro: yes is_license_clue: no + is_required_phrase: no + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -1818,6 +1885,8 @@ license_rule_references: is_license_tag: yes is_license_intro: no is_license_clue: no + is_required_phrase: yes + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -1843,6 +1912,8 @@ license_rule_references: is_license_tag: yes is_license_intro: no is_license_clue: no + is_required_phrase: no + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -1868,6 +1939,8 @@ license_rule_references: is_license_tag: yes is_license_intro: no is_license_clue: no + is_required_phrase: no + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -1893,6 +1966,8 @@ license_rule_references: is_license_tag: no is_license_intro: no is_license_clue: no + is_required_phrase: yes + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -1907,7 +1982,7 @@ license_rule_references: ignorable_authors: [] ignorable_urls: [] ignorable_emails: [] - text: apache-2.0 + text: Apache-2.0 files: - path: manifests type: directory @@ -2416,19 +2491,22 @@ files: - license_expression: apache-2.0 license_expression_spdx: Apache-2.0 from_file: manifests/npm-license-mapping/package.json - start_line: 20 + start_line: 18 end_line: 20 matcher: 2-aho score: '100.0' - matched_length: 3 + matched_length: 5 match_coverage: '100.0' rule_relevance: 100 - rule_identifier: spdx_license_id_apache-2.0_for_apache-2.0.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_apache-2.0_for_apache-2.0.RULE - matched_text: ' "type": "Apache 2.0",' - identifier: apache_2_0-d66ab77d-a5cc-7104-e702-dc7df61fe9e8 + rule_identifier: apache-2.0_required_phrase_7.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_required_phrase_7.RULE + matched_text: | + "licenses": [ + { + "type": "Apache 2.0", + identifier: apache_2_0-0d7a2023-aae9-2989-7f00-27b713b809bb license_clues: [] - percentage_of_license_text: '5.51' + percentage_of_license_text: '7.09' copyrights: [] holders: [] authors: diff --git a/tests/formattedcode/data/yaml/package-and-licenses-expected.yaml b/tests/formattedcode/data/yaml/package-and-licenses-expected.yaml index 7a82f48dc1..d53f7a0a7c 100644 --- a/tests/formattedcode/data/yaml/package-and-licenses-expected.yaml +++ b/tests/formattedcode/data/yaml/package-and-licenses-expected.yaml @@ -29,10 +29,10 @@ headers: system_environment: operating_system: linux cpu_architecture: 64 - platform: Linux-5.15.0-113-generic-x86_64-with-glibc2.35 - platform_version: '#123-Ubuntu SMP Mon Jun 10 08:16:17 UTC 2024' - python_version: 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0] - spdx_license_list_version: '3.24' + platform: Linux-6.8.0-45-generic-x86_64-with-glibc2.35 + platform_version: '#45~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Sep 11 15:25:05 UTC 2' + python_version: 3.11.8 (main, Feb 12 2024, 14:25:06) [GCC 11.4.0] + spdx_license_list_version: '3.25' files_count: 4 summary: declared_license_expression: apache-2.0 @@ -626,6 +626,8 @@ license_rule_references: is_license_tag: no is_license_intro: no is_license_clue: no + is_required_phrase: no + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: yes @@ -854,6 +856,8 @@ license_rule_references: is_license_tag: yes is_license_intro: no is_license_clue: no + is_required_phrase: yes + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -868,7 +872,7 @@ license_rule_references: ignorable_authors: [] ignorable_urls: [] ignorable_emails: [] - text: 'license: Apache-2.0' + text: license="Apache-2.0 - license_expression: apache-2.0 identifier: apache-2.0_73.RULE language: en @@ -879,6 +883,8 @@ license_rule_references: is_license_tag: no is_license_intro: no is_license_clue: no + is_required_phrase: no + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -904,6 +910,8 @@ license_rule_references: is_license_tag: no is_license_intro: no is_license_clue: no + is_required_phrase: no + skip_for_required_phrase_generation: no is_continuous: yes is_builtin: yes is_from_license: no @@ -929,6 +937,8 @@ license_rule_references: is_license_tag: no is_license_intro: no is_license_clue: no + is_required_phrase: no + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: yes @@ -972,6 +982,8 @@ license_rule_references: is_license_tag: no is_license_intro: no is_license_clue: no + is_required_phrase: yes + skip_for_required_phrase_generation: no is_continuous: no is_builtin: yes is_from_license: no @@ -986,7 +998,7 @@ license_rule_references: ignorable_authors: [] ignorable_urls: [] ignorable_emails: [] - text: apache-2.0 + text: Apache-2.0 files: - path: package-and-licenses type: directory diff --git a/tests/licensedcode/data/additional_licenses/additional_license_combined_test.expected.json b/tests/licensedcode/data/additional_licenses/additional_license_combined_test.expected.json index 84756a725d..7bb435a87e 100644 --- a/tests/licensedcode/data/additional_licenses/additional_license_combined_test.expected.json +++ b/tests/licensedcode/data/additional_licenses/additional_license_combined_test.expected.json @@ -270,6 +270,8 @@ "is_license_tag": true, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": true, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -284,7 +286,7 @@ "ignorable_authors": [], "ignorable_urls": [], "ignorable_emails": [], - "text": "license: Apache-2.0" + "text": "license=\"Apache-2.0" }, { "license_expression": "example-installed-1", @@ -297,6 +299,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": false, "is_from_license": true, @@ -324,6 +328,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": false, "is_from_license": true, @@ -351,6 +357,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": false, "is_from_license": true, @@ -378,6 +386,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": false, "is_from_license": true, diff --git a/tests/licensedcode/data/additional_licenses/additional_license_directory_test.expected.json b/tests/licensedcode/data/additional_licenses/additional_license_directory_test.expected.json index 4f21067f4a..5394f33934 100644 --- a/tests/licensedcode/data/additional_licenses/additional_license_directory_test.expected.json +++ b/tests/licensedcode/data/additional_licenses/additional_license_directory_test.expected.json @@ -117,6 +117,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": false, "is_from_license": true, @@ -144,6 +146,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": false, "is_from_license": true, diff --git a/tests/licensedcode/data/additional_licenses/additional_license_plugin_test.expected.json b/tests/licensedcode/data/additional_licenses/additional_license_plugin_test.expected.json index 011b2128c7..6383d1e809 100644 --- a/tests/licensedcode/data/additional_licenses/additional_license_plugin_test.expected.json +++ b/tests/licensedcode/data/additional_licenses/additional_license_plugin_test.expected.json @@ -70,6 +70,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": false, "is_from_license": true, diff --git a/tests/licensedcode/data/datadriven/external/atarashi/Apache-2.0.xml.yml b/tests/licensedcode/data/datadriven/external/atarashi/Apache-2.0.xml.yml index a9e02b1a85..d6d1e73c2e 100644 --- a/tests/licensedcode/data/datadriven/external/atarashi/Apache-2.0.xml.yml +++ b/tests/licensedcode/data/datadriven/external/atarashi/Apache-2.0.xml.yml @@ -1,2 +1,4 @@ license_expressions: - apache-2.0 + - apache-2.0 + diff --git a/tests/licensedcode/data/datadriven/external/fossology-tests/Apache/Apache-2.0.xml.yml b/tests/licensedcode/data/datadriven/external/fossology-tests/Apache/Apache-2.0.xml.yml index a9e02b1a85..d6d1e73c2e 100644 --- a/tests/licensedcode/data/datadriven/external/fossology-tests/Apache/Apache-2.0.xml.yml +++ b/tests/licensedcode/data/datadriven/external/fossology-tests/Apache/Apache-2.0.xml.yml @@ -1,2 +1,4 @@ license_expressions: - apache-2.0 + - apache-2.0 + diff --git a/tests/licensedcode/data/datadriven/external/fossology-tests/CCLRC/cdunifpp_check.c.yml b/tests/licensedcode/data/datadriven/external/fossology-tests/CCLRC/cdunifpp_check.c.yml index c9c5e2f5b5..5a450d1f40 100644 --- a/tests/licensedcode/data/datadriven/external/fossology-tests/CCLRC/cdunifpp_check.c.yml +++ b/tests/licensedcode/data/datadriven/external/fossology-tests/CCLRC/cdunifpp_check.c.yml @@ -1,2 +1,2 @@ license_expressions: - - mit + - cclrc diff --git a/tests/licensedcode/data/datadriven/external/fossology-tests/Dual-license/Oracle+Sun_oracle_index.html.yml b/tests/licensedcode/data/datadriven/external/fossology-tests/Dual-license/Oracle+Sun_oracle_index.html.yml index cd17ad2b2b..501dc62c9a 100644 --- a/tests/licensedcode/data/datadriven/external/fossology-tests/Dual-license/Oracle+Sun_oracle_index.html.yml +++ b/tests/licensedcode/data/datadriven/external/fossology-tests/Dual-license/Oracle+Sun_oracle_index.html.yml @@ -1,4 +1,3 @@ license_expressions: - sleepycat - - generic-trademark - - generic-trademark + diff --git a/tests/licensedcode/data/datadriven/external/fossology-tests/LGPL/License.rtf.yml b/tests/licensedcode/data/datadriven/external/fossology-tests/LGPL/License.rtf.yml index 830b0c374c..af8da9d64b 100644 --- a/tests/licensedcode/data/datadriven/external/fossology-tests/LGPL/License.rtf.yml +++ b/tests/licensedcode/data/datadriven/external/fossology-tests/LGPL/License.rtf.yml @@ -1,2 +1,4 @@ license_expressions: - lgpl-2.1 +notes: failing pending https://github.com/nexB/scancode-toolkit/issues/1548 +expected_failure: yes diff --git a/tests/licensedcode/data/datadriven/external/glc/Apache-2.0-Header.t2.yml b/tests/licensedcode/data/datadriven/external/glc/Apache-2.0-Header.t2.yml index eeb56539f7..474f3e488f 100644 --- a/tests/licensedcode/data/datadriven/external/glc/Apache-2.0-Header.t2.yml +++ b/tests/licensedcode/data/datadriven/external/glc/Apache-2.0-Header.t2.yml @@ -1,5 +1,6 @@ license_expressions: - apache-2.0 + - warranty-disclaimer notes: | License test derived from a file of the BSD-licensed repository at: https://raw.githubusercontent.com/google/licensecheck/v0.3.1/testdata/Apache-2.0-Header.t2 diff --git a/tests/licensedcode/data/datadriven/external/licensecheck/fedora/MIT.yml b/tests/licensedcode/data/datadriven/external/licensecheck/fedora/MIT.yml index e139bb48f3..98baf6ddcc 100644 --- a/tests/licensedcode/data/datadriven/external/licensecheck/fedora/MIT.yml +++ b/tests/licensedcode/data/datadriven/external/licensecheck/fedora/MIT.yml @@ -24,7 +24,7 @@ license_expressions: - mpich - freetts - other-permissive - - warranty-disclaimer + - other-permissive - mozilla-gc - adobe-glyph - mit-xfig diff --git a/tests/licensedcode/data/datadriven/external/slic-tests/cubeb_resampler.cpp.yml b/tests/licensedcode/data/datadriven/external/slic-tests/cubeb_resampler.cpp.yml index 54de00b5e4..8b7cf83273 100644 --- a/tests/licensedcode/data/datadriven/external/slic-tests/cubeb_resampler.cpp.yml +++ b/tests/licensedcode/data/datadriven/external/slic-tests/cubeb_resampler.cpp.yml @@ -1,2 +1,2 @@ license_expressions: - - boost-1.0 + - isc diff --git a/tests/licensedcode/data/datadriven/lic1/gpl-2.0-plus_33.txt.yml b/tests/licensedcode/data/datadriven/lic1/gpl-2.0-plus_33.txt.yml index ee6c9f29f6..ad9b46536d 100644 --- a/tests/licensedcode/data/datadriven/lic1/gpl-2.0-plus_33.txt.yml +++ b/tests/licensedcode/data/datadriven/lic1/gpl-2.0-plus_33.txt.yml @@ -1,4 +1,8 @@ license_expressions: - gpl-2.0-plus + - gpl-1.0-plus - gpl-2.0-plus + - gpl-1.0-plus + - gpl-1.0-plus + - gpl-1.0-plus notes: spurrious PHP license diff --git a/tests/licensedcode/data/datadriven/lic2/2206-misc-python/float.patch.yml b/tests/licensedcode/data/datadriven/lic2/2206-misc-python/float.patch.yml index b2244b5dc2..9a6dd0b0fb 100644 --- a/tests/licensedcode/data/datadriven/lic2/2206-misc-python/float.patch.yml +++ b/tests/licensedcode/data/datadriven/lic2/2206-misc-python/float.patch.yml @@ -1,2 +1,2 @@ license_expressions: - - warranty-disclaimer + - proprietary-license diff --git a/tests/licensedcode/data/datadriven/lic2/apache-1.1_and_apache-2.0_and_beerware_and_bsd-simplified-darwin_and_darwin-file_and_other.label.yml b/tests/licensedcode/data/datadriven/lic2/apache-1.1_and_apache-2.0_and_beerware_and_bsd-simplified-darwin_and_darwin-file_and_other.label.yml index 2833385b5b..cff813d521 100644 --- a/tests/licensedcode/data/datadriven/lic2/apache-1.1_and_apache-2.0_and_beerware_and_bsd-simplified-darwin_and_darwin-file_and_other.label.yml +++ b/tests/licensedcode/data/datadriven/lic2/apache-1.1_and_apache-2.0_and_beerware_and_bsd-simplified-darwin_and_darwin-file_and_other.label.yml @@ -16,6 +16,7 @@ license_expressions: - rsa-md4 - apache-1.1 - apache-1.1 + - apache-1.1 - public-domain - rsa-1990 - mit-old-style-no-advert diff --git a/tests/licensedcode/data/datadriven/lic2/bsd-new_111.txt.yml b/tests/licensedcode/data/datadriven/lic2/bsd-new_111.txt.yml index 651f92bb36..8316ff5ea9 100644 --- a/tests/licensedcode/data/datadriven/lic2/bsd-new_111.txt.yml +++ b/tests/licensedcode/data/datadriven/lic2/bsd-new_111.txt.yml @@ -1,2 +1,3 @@ license_expressions: - bsd-new + - bsd-new diff --git a/tests/licensedcode/data/datadriven/lic2/bsd-new_87.txt.yml b/tests/licensedcode/data/datadriven/lic2/bsd-new_87.txt.yml index 651f92bb36..8316ff5ea9 100644 --- a/tests/licensedcode/data/datadriven/lic2/bsd-new_87.txt.yml +++ b/tests/licensedcode/data/datadriven/lic2/bsd-new_87.txt.yml @@ -1,2 +1,3 @@ license_expressions: - bsd-new + - bsd-new diff --git a/tests/licensedcode/data/datadriven/lic3/about_1.html.yml b/tests/licensedcode/data/datadriven/lic3/about_1.html.yml index 5b5bd6aa8b..3775b53b03 100644 --- a/tests/licensedcode/data/datadriven/lic3/about_1.html.yml +++ b/tests/licensedcode/data/datadriven/lic3/about_1.html.yml @@ -2,3 +2,5 @@ license_expressions: - epl-1.0 - apache-2.0 - apache-2.0 + - apache-2.0 + diff --git a/tests/licensedcode/data/datadriven/lic3/about_2.html.yml b/tests/licensedcode/data/datadriven/lic3/about_2.html.yml index 54ce515ef1..c5d9e442ef 100644 --- a/tests/licensedcode/data/datadriven/lic3/about_2.html.yml +++ b/tests/licensedcode/data/datadriven/lic3/about_2.html.yml @@ -5,4 +5,5 @@ license_expressions: - apache-2.0 - apache-2.0 - apache-2.0 + - apache-2.0 - epl-2.0 diff --git a/tests/licensedcode/data/datadriven/lic3/licenses_list.json.yml b/tests/licensedcode/data/datadriven/lic3/licenses_list.json.yml index 58abd31f4e..86b4c8479c 100644 --- a/tests/licensedcode/data/datadriven/lic3/licenses_list.json.yml +++ b/tests/licensedcode/data/datadriven/lic3/licenses_list.json.yml @@ -1,3 +1 @@ -license_expressions: - - mpl-2.0 notes: FIXME - should be empty this is a long list of SPDX licenses and nothing should be detected diff --git a/tests/licensedcode/data/licenses_reference_reporting/license-reference-works-with-clues.expected.json b/tests/licensedcode/data/licenses_reference_reporting/license-reference-works-with-clues.expected.json index dfec4b7a5c..9cb3feae31 100644 --- a/tests/licensedcode/data/licenses_reference_reporting/license-reference-works-with-clues.expected.json +++ b/tests/licensedcode/data/licenses_reference_reporting/license-reference-works-with-clues.expected.json @@ -1094,6 +1094,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -1121,6 +1123,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -1148,6 +1152,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -1175,6 +1181,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": true, @@ -1202,6 +1210,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": true, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -1229,6 +1239,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -1256,6 +1268,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -1270,7 +1284,7 @@ "ignorable_authors": [], "ignorable_urls": [], "ignorable_emails": [], - "text": "released under the GPL" + "text": "released {{under the GPL}}" }, { "license_expression": "unknown-license-reference", @@ -1283,6 +1297,8 @@ "is_license_tag": false, "is_license_intro": true, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -1310,6 +1326,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -1337,6 +1355,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -1366,6 +1386,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -1403,6 +1425,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -1417,7 +1441,7 @@ "ignorable_authors": [], "ignorable_urls": [], "ignorable_emails": [], - "text": "GPL-compatible" + "text": "GPL-compatible\n" }, { "license_expression": "python-cwi", @@ -1430,6 +1454,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": true, @@ -1457,6 +1483,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -1482,7 +1510,7 @@ "http://www.pythonlabs.com/logos.html" ], "ignorable_emails": [], - "text": "B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON\n===============================================================\n\nPYTHON SOFTWARE FOUNDATION LICENSE VERSION 2\n--------------------------------------------\n\n1. This LICENSE AGREEMENT is between the Python Software Foundation\n(\"PSF\"), and the Individual or Organization (\"Licensee\") accessing and\notherwise using this software (\"Python\") in source or binary form and\nits associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, PSF hereby\ngrants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,\nanalyze, test, perform and/or display publicly, prepare derivative works,\ndistribute, and otherwise use Python alone or in any derivative version,\nprovided, however, that PSF's License Agreement and PSF's notice of copyright,\ni.e., \"Copyright (c) Python Software Foundation;\nAll Rights Reserved\" are retained in Python alone or in any derivative version\nprepared by Licensee.\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates Python or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to Python.\n\n4. PSF is making Python available to Licensee on an \"AS IS\"\nbasis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON\nFOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\nA RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n7. Nothing in this License Agreement shall be deemed to create any\nrelationship of agency, partnership, or joint venture between PSF and\nLicensee. This License Agreement does not grant permission to use PSF\ntrademarks or trade name in a trademark sense to endorse or promote\nproducts or services of Licensee, or any third party.\n\n8. By copying, installing or otherwise using Python, Licensee\nagrees to be bound by the terms and conditions of this License\nAgreement.\n\n\nBEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0\n-------------------------------------------\n\nBEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1\n\n1. This LICENSE AGREEMENT is between BeOpen.com (\"BeOpen\"), having an\noffice at 160 Saratoga Avenue, Santa Clara, CA 95051, and the\nIndividual or Organization (\"Licensee\") accessing and otherwise using\nthis software in source or binary form and its associated\ndocumentation (\"the Software\").\n\n2. Subject to the terms and conditions of this BeOpen Python License\nAgreement, BeOpen hereby grants Licensee a non-exclusive,\nroyalty-free, world-wide license to reproduce, analyze, test, perform\nand/or display publicly, prepare derivative works, distribute, and\notherwise use the Software alone or in any derivative version,\nprovided, however, that the BeOpen Python License is retained in the\nSoftware, alone or in any derivative version prepared by Licensee.\n\n3. BeOpen is making the Software available to Licensee on an \"AS IS\"\nbasis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE\nSOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS\nAS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY\nDERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n5. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n6. This License Agreement shall be governed by and interpreted in all\nrespects by the law of the State of California, excluding conflict of\nlaw provisions. Nothing in this License Agreement shall be deemed to\ncreate any relationship of agency, partnership, or joint venture\nbetween BeOpen and Licensee. This License Agreement does not grant\npermission to use BeOpen trademarks or trade names in a trademark\nsense to endorse or promote products or services of Licensee, or any\nthird party. As an exception, the \"BeOpen Python\" logos available at\nhttp://www.pythonlabs.com/logos.html may be used according to the\npermissions granted on that web page.\n\n7. By copying, installing or otherwise using the software, Licensee\nagrees to be bound by the terms and conditions of this License\nAgreement.\n\n\nCNRI LICENSE AGREEMENT FOR PYTHON 1.6.1\n---------------------------------------\n\n1. This LICENSE AGREEMENT is between the Corporation for National\nResearch Initiatives, having an office at 1895 Preston White Drive,\nReston, VA 20191 (\"CNRI\"), and the Individual or Organization\n(\"Licensee\") accessing and otherwise using Python 1.6.1 software in\nsource or binary form and its associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, CNRI\nhereby grants Licensee a nonexclusive, royalty-free, world-wide\nlicense to reproduce, analyze, test, perform and/or display publicly,\nprepare derivative works, distribute, and otherwise use Python 1.6.1\nalone or in any derivative version, provided, however, that CNRI's\nLicense Agreement and CNRI's notice of copyright, i.e., \"Copyright (c)\n1995-2001 Corporation for National Research Initiatives; All Rights\nReserved\" are retained in Python 1.6.1 alone or in any derivative\nversion prepared by Licensee. Alternately, in lieu of CNRI's License\nAgreement, Licensee may substitute the following text (omitting the\nquotes): \"Python 1.6.1 is made available subject to the terms and\nconditions in CNRI's License Agreement. This Agreement together with\nPython 1.6.1 may be located on the Internet using the following\nunique, persistent identifier (known as a handle): 1895.22/1013. This\nAgreement may also be obtained from a proxy server on the Internet\nusing the following URL: http://hdl.handle.net/1895.22/1013\".\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates Python 1.6.1 or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to Python 1.6.1.\n\n4. CNRI is making Python 1.6.1 available to Licensee on an \"AS IS\"\nbasis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON\n1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\nA RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n7. This License Agreement shall be governed by the federal\nintellectual property law of the United States, including without\nlimitation the federal copyright law, and, to the extent such\nU.S. federal law does not apply, by the law of the Commonwealth of\nVirginia, excluding Virginia's conflict of law provisions.\nNotwithstanding the foregoing, with regard to derivative works based\non Python 1.6.1 that incorporate non-separable material that was\npreviously distributed under the GNU General Public License (GPL), the\nlaw of the Commonwealth of Virginia shall govern this License\nAgreement only as to issues arising under or with respect to\nParagraphs 4, 5, and 7 of this License Agreement. Nothing in this\nLicense Agreement shall be deemed to create any relationship of\nagency, partnership, or joint venture between CNRI and Licensee. This\nLicense Agreement does not grant permission to use CNRI trademarks or\ntrade name in a trademark sense to endorse or promote products or\nservices of Licensee, or any third party.\n\n8. By clicking on the \"ACCEPT\" button where indicated, or by copying,\ninstalling or otherwise using Python 1.6.1, Licensee agrees to be\nbound by the terms and conditions of this License Agreement.\n\n ACCEPT\n\n\nCWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2\n--------------------------------------------------\n\nCopyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,\nThe Netherlands. All rights reserved.\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted,\nprovided that the above copyright notice appear in all copies and that\nboth that copyright notice and this permission notice appear in\nsupporting documentation, and that the name of Stichting Mathematisch\nCentrum or CWI not be used in advertising or publicity pertaining to\ndistribution of the software without specific, written prior\npermission.\n\nSTICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO\nTHIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE\nFOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT\nOF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE." + "text": "B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON\n===============================================================\n\n{{PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2}}\n--------------------------------------------\n\n1. This LICENSE AGREEMENT is between the Python Software Foundation\n(\"PSF\"), and the Individual or Organization (\"Licensee\") accessing and\notherwise using this software (\"Python\") in source or binary form and\nits associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, PSF hereby\ngrants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,\nanalyze, test, perform and/or display publicly, prepare derivative works,\ndistribute, and otherwise use Python alone or in any derivative version,\nprovided, however, that PSF's License Agreement and PSF's notice of copyright,\ni.e., \"Copyright (c) Python Software Foundation;\nAll Rights Reserved\" are retained in Python alone or in any derivative version\nprepared by Licensee.\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates Python or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to Python.\n\n4. PSF is making Python available to Licensee on an \"AS IS\"\nbasis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON\nFOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\nA RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n7. Nothing in this License Agreement shall be deemed to create any\nrelationship of agency, partnership, or joint venture between PSF and\nLicensee. This License Agreement does not grant permission to use PSF\ntrademarks or trade name in a trademark sense to endorse or promote\nproducts or services of Licensee, or any third party.\n\n8. By copying, installing or otherwise using Python, Licensee\nagrees to be bound by the terms and conditions of this License\nAgreement.\n\n\nBEOPEN.COM {{LICENSE AGREEMENT FOR PYTHON 2.0}}\n-------------------------------------------\n\nBEOPEN {{PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1}}\n\n1. This LICENSE AGREEMENT is between BeOpen.com (\"BeOpen\"), having an\noffice at 160 Saratoga Avenue, Santa Clara, CA 95051, and the\nIndividual or Organization (\"Licensee\") accessing and otherwise using\nthis software in source or binary form and its associated\ndocumentation (\"the Software\").\n\n2. Subject to the terms and conditions of this BeOpen Python License\nAgreement, BeOpen hereby grants Licensee a non-exclusive,\nroyalty-free, world-wide license to reproduce, analyze, test, perform\nand/or display publicly, prepare derivative works, distribute, and\notherwise use the Software alone or in any derivative version,\nprovided, however, that the BeOpen Python License is retained in the\nSoftware, alone or in any derivative version prepared by Licensee.\n\n3. BeOpen is making the Software available to Licensee on an \"AS IS\"\nbasis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE\nSOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS\nAS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY\nDERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n5. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n6. This License Agreement shall be governed by and interpreted in all\nrespects by the law of the State of California, excluding conflict of\nlaw provisions. Nothing in this License Agreement shall be deemed to\ncreate any relationship of agency, partnership, or joint venture\nbetween BeOpen and Licensee. This License Agreement does not grant\npermission to use BeOpen trademarks or trade names in a trademark\nsense to endorse or promote products or services of Licensee, or any\nthird party. As an exception, the \"BeOpen Python\" logos available at\nhttp://www.pythonlabs.com/logos.html may be used according to the\npermissions granted on that web page.\n\n7. By copying, installing or otherwise using the software, Licensee\nagrees to be bound by the terms and conditions of this License\nAgreement.\n\n\nCNRI LICENSE AGREEMENT FOR PYTHON 1.6.1\n---------------------------------------\n\n1. This LICENSE AGREEMENT is between the Corporation for National\nResearch Initiatives, having an office at 1895 Preston White Drive,\nReston, VA 20191 (\"CNRI\"), and the Individual or Organization\n(\"Licensee\") accessing and otherwise using Python 1.6.1 software in\nsource or binary form and its associated documentation.\n\n2. Subject to the terms and conditions of this License Agreement, CNRI\nhereby grants Licensee a nonexclusive, royalty-free, world-wide\nlicense to reproduce, analyze, test, perform and/or display publicly,\nprepare derivative works, distribute, and otherwise use Python 1.6.1\nalone or in any derivative version, provided, however, that CNRI's\nLicense Agreement and CNRI's notice of copyright, i.e., \"Copyright (c)\n1995-2001 Corporation for National Research Initiatives; All Rights\nReserved\" are retained in Python 1.6.1 alone or in any derivative\nversion prepared by Licensee. Alternately, in lieu of CNRI's License\nAgreement, Licensee may substitute the following text (omitting the\nquotes): \"Python 1.6.1 is made available subject to the terms and\nconditions in CNRI's License Agreement. This Agreement together with\nPython 1.6.1 may be located on the Internet using the following\nunique, persistent identifier (known as a handle): 1895.22/1013. This\nAgreement may also be obtained from a proxy server on the Internet\nusing the following URL: http://hdl.handle.net/1895.22/1013\".\n\n3. In the event Licensee prepares a derivative work that is based on\nor incorporates Python 1.6.1 or any part thereof, and wants to make\nthe derivative work available to others as provided herein, then\nLicensee hereby agrees to include in any such work a brief summary of\nthe changes made to Python 1.6.1.\n\n4. CNRI is making Python 1.6.1 available to Licensee on an \"AS IS\"\nbasis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR\nIMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND\nDISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS\nFOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT\nINFRINGE ANY THIRD PARTY RIGHTS.\n\n5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON\n1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS\nA RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,\nOR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.\n\n6. This License Agreement will automatically terminate upon a material\nbreach of its terms and conditions.\n\n7. This License Agreement shall be governed by the federal\nintellectual property law of the United States, including without\nlimitation the federal copyright law, and, to the extent such\nU.S. federal law does not apply, by the law of the Commonwealth of\nVirginia, excluding Virginia's conflict of law provisions.\nNotwithstanding the foregoing, with regard to derivative works based\non Python 1.6.1 that incorporate non-separable material that was\npreviously distributed under the GNU General Public License (GPL), the\nlaw of the Commonwealth of Virginia shall govern this License\nAgreement only as to issues arising under or with respect to\nParagraphs 4, 5, and 7 of this License Agreement. Nothing in this\nLicense Agreement shall be deemed to create any relationship of\nagency, partnership, or joint venture between CNRI and Licensee. This\nLicense Agreement does not grant permission to use CNRI trademarks or\ntrade name in a trademark sense to endorse or promote products or\nservices of Licensee, or any third party.\n\n8. By clicking on the \"ACCEPT\" button where indicated, or by copying,\ninstalling or otherwise using Python 1.6.1, Licensee agrees to be\nbound by the terms and conditions of this License Agreement.\n\n ACCEPT\n\n\nCWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2\n--------------------------------------------------\n\nCopyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,\nThe Netherlands. All rights reserved.\n\nPermission to use, copy, modify, and distribute this software and its\ndocumentation for any purpose and without fee is hereby granted,\nprovided that the above copyright notice appear in all copies and that\nboth that copyright notice and this permission notice appear in\nsupporting documentation, and that the name of Stichting Mathematisch\nCentrum or CWI not be used in advertising or publicity pertaining to\ndistribution of the software without specific, written prior\npermission.\n\nSTICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO\nTHIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND\nFITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE\nFOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT\nOF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE." }, { "license_expression": "python", @@ -1495,6 +1523,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -1524,6 +1554,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -1551,6 +1583,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": true, @@ -1588,6 +1622,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": true, @@ -1619,6 +1655,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, diff --git a/tests/licensedcode/data/licenses_reference_reporting/scan-matched-text-with-reference.expected.json b/tests/licensedcode/data/licenses_reference_reporting/scan-matched-text-with-reference.expected.json index 8e42514689..8e2a11d533 100644 --- a/tests/licensedcode/data/licenses_reference_reporting/scan-matched-text-with-reference.expected.json +++ b/tests/licensedcode/data/licenses_reference_reporting/scan-matched-text-with-reference.expected.json @@ -370,6 +370,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -388,7 +390,7 @@ "http://www.apache.org/licenses/LICENSE-2.0" ], "ignorable_emails": [], - "text": "Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." + "text": "{{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the {{Apache License, Version 2.0}} (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." }, { "license_expression": "artistic-2.0", @@ -401,6 +403,8 @@ "is_license_tag": true, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": true, "is_builtin": true, "is_from_license": false, @@ -428,6 +432,8 @@ "is_license_tag": true, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -455,6 +461,8 @@ "is_license_tag": true, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, diff --git a/tests/licensedcode/data/licenses_reference_reporting/scan-with-reference.expected.json b/tests/licensedcode/data/licenses_reference_reporting/scan-with-reference.expected.json index 0ee5aff24b..afdf7ed6e8 100644 --- a/tests/licensedcode/data/licenses_reference_reporting/scan-with-reference.expected.json +++ b/tests/licensedcode/data/licenses_reference_reporting/scan-with-reference.expected.json @@ -360,6 +360,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -378,7 +380,7 @@ "http://www.apache.org/licenses/LICENSE-2.0" ], "ignorable_emails": [], - "text": "Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." + "text": "{{Licensed to the Apache Software Foundation}} (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the {{Apache License, Version 2.0}} (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License." }, { "license_expression": "artistic-2.0", @@ -391,6 +393,8 @@ "is_license_tag": true, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": true, "is_builtin": true, "is_from_license": false, @@ -418,6 +422,8 @@ "is_license_tag": true, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -445,6 +451,8 @@ "is_license_tag": true, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, diff --git a/tests/licensedcode/data/plugin_license/clues/woodstox.expected.json b/tests/licensedcode/data/plugin_license/clues/woodstox.expected.json index ea29b34be5..6f4f06ffc3 100644 --- a/tests/licensedcode/data/plugin_license/clues/woodstox.expected.json +++ b/tests/licensedcode/data/plugin_license/clues/woodstox.expected.json @@ -143,6 +143,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -159,7 +161,7 @@ "http://www.apache.org/licenses/" ], "ignorable_emails": [], - "text": "Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/" + "text": "{{Apache License\nVersion 2.0}}, January 2004\nhttp://www.apache.org/licenses/" }, { "license_expression": "apache-2.0", @@ -172,6 +174,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -190,7 +194,7 @@ "http://www.apache.org/licenses/" ], "ignorable_emails": [], - "text": "This copy of is licensed under the\nApache (Software) License, version 2.0 (\"the License\").\nSee the License for details about distribution rights, and the\nspecific rights regarding derivate works.\n\nYou may obtain a copy of the License at:\n\nhttp://www.apache.org/licenses/\n\nA copy is also included in the downloadable source code package\ncontaining , in file \"AL2.0\", under the same directory\nas this file." + "text": "This copy of is licensed under {{the\nApache (Software) License, version 2.0}} (\"the License\").\nSee the License for details about distribution rights, and the\nspecific rights regarding derivate works.\n\nYou may obtain a copy of the License at:\n\nhttp://www.apache.org/licenses/\n\nA copy is also included in the downloadable source code package\ncontaining , in file \"AL2.0\", under the same directory\nas this file." }, { "license_expression": "unknown-license-reference", @@ -203,6 +207,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": true, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, diff --git a/tests/licensedcode/data/plugin_license/license-expression/scan.expected.json b/tests/licensedcode/data/plugin_license/license-expression/scan.expected.json index e99ad76f5d..279505c213 100644 --- a/tests/licensedcode/data/plugin_license/license-expression/scan.expected.json +++ b/tests/licensedcode/data/plugin_license/license-expression/scan.expected.json @@ -239,6 +239,8 @@ "is_license_tag": false, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": true, @@ -272,6 +274,8 @@ "is_license_tag": true, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, diff --git a/tests/licensedcode/data/plugin_license/license-expression/spdx-expressions.expected.json b/tests/licensedcode/data/plugin_license/license-expression/spdx-expressions.expected.json index 24f4a668a3..52c51af4c1 100644 --- a/tests/licensedcode/data/plugin_license/license-expression/spdx-expressions.expected.json +++ b/tests/licensedcode/data/plugin_license/license-expression/spdx-expressions.expected.json @@ -140,6 +140,8 @@ "is_license_tag": true, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, @@ -167,6 +169,8 @@ "is_license_tag": true, "is_license_intro": false, "is_license_clue": false, + "is_required_phrase": false, + "skip_for_required_phrase_generation": false, "is_continuous": false, "is_builtin": true, "is_from_license": false, diff --git a/tests/licensedcode/data/plugin_license/scan/e2fsprogs-expected.json b/tests/licensedcode/data/plugin_license/scan/e2fsprogs-expected.json index e2fb0c8295..7ae85896b1 100644 --- a/tests/licensedcode/data/plugin_license/scan/e2fsprogs-expected.json +++ b/tests/licensedcode/data/plugin_license/scan/e2fsprogs-expected.json @@ -21,32 +21,61 @@ "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_and_patent-disclaimer_3.RULE" } ] + }, + { + "identifier": "lgpl_2_0_plus-ad844342-08bd-13b3-957e-f7440d82d6ed", + "license_expression": "lgpl-2.0-plus", + "license_expression_spdx": "LGPL-2.0-or-later", + "detection_count": 1, + "reference_matches": [ + { + "license_expression": "lgpl-2.0-plus", + "license_expression_spdx": "LGPL-2.0-or-later", + "from_file": "e2fsprogs/e2fsprogs-copyright", + "start_line": 19, + "end_line": 19, + "matcher": "2-aho", + "score": 99.0, + "matched_length": 2, + "match_coverage": 100.0, + "rule_relevance": 99, + "rule_identifier": "lgpl_33.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_33.RULE" + } + ] } ], "files": [ { "path": "e2fsprogs-copyright", "type": "file", - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [ + "detected_license_expression": "lgpl-2.0-plus", + "detected_license_expression_spdx": "LGPL-2.0-or-later", + "license_detections": [ { "license_expression": "lgpl-2.0-plus", "license_expression_spdx": "LGPL-2.0-or-later", - "from_file": "e2fsprogs/e2fsprogs-copyright", - "start_line": 19, - "end_line": 20, - "matcher": "3-seq", - "score": 14.39, - "matched_length": 20, - "match_coverage": 14.39, - "rule_relevance": 100, - "rule_identifier": "lgpl-2.0-plus_65.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.0-plus_65.RULE" + "matches": [ + { + "license_expression": "lgpl-2.0-plus", + "license_expression_spdx": "LGPL-2.0-or-later", + "from_file": "e2fsprogs/e2fsprogs-copyright", + "start_line": 19, + "end_line": 19, + "matcher": "2-aho", + "score": 99.0, + "matched_length": 2, + "match_coverage": 100.0, + "rule_relevance": 99, + "rule_identifier": "lgpl_33.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl_33.RULE" + } + ], + "identifier": "lgpl_2_0_plus-ad844342-08bd-13b3-957e-f7440d82d6ed" } ], - "percentage_of_license_text": 22.73, + "license_clues": [], + "percentage_of_license_text": 2.27, "scan_errors": [] }, { diff --git a/tests/licensedcode/data/plugin_license/unknown_intro/scan-unknown-intro-eclipse-foundation-tycho.expected.json b/tests/licensedcode/data/plugin_license/unknown_intro/scan-unknown-intro-eclipse-foundation-tycho.expected.json index 30461cca32..e0d617fe8d 100644 --- a/tests/licensedcode/data/plugin_license/unknown_intro/scan-unknown-intro-eclipse-foundation-tycho.expected.json +++ b/tests/licensedcode/data/plugin_license/unknown_intro/scan-unknown-intro-eclipse-foundation-tycho.expected.json @@ -26,7 +26,7 @@ ] }, { - "identifier": "apache_2_0-14c27abb-363c-4c38-b5c4-095fce7dd164", + "identifier": "apache_2_0-a6e2f0c7-bc81-4ff9-2c82-cf3897de2210", "license_expression": "apache-2.0", "license_expression_spdx": "Apache-2.0", "detection_count": 2, @@ -37,16 +37,32 @@ "license_expression_spdx": "Apache-2.0", "from_file": "scan-unknown-intro-eclipse-foundation-tycho/about_1.html", "start_line": 34, + "end_line": 34, + "matcher": "2-aho", + "score": 90.0, + "matched_length": 6, + "match_coverage": 100.0, + "rule_relevance": 90, + "rule_identifier": "apache-2.0_required_phrase_29.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_required_phrase_29.RULE", + "matched_text": "

The plug-in includes SureFire JUnit Runner ${surefire-version} developed by the Apache Software Foundation. Therefore:

", + "matched_text_diagnostics": "developed by the Apache Software Foundation." + }, + { + "license_expression": "apache-2.0", + "license_expression_spdx": "Apache-2.0", + "from_file": "scan-unknown-intro-eclipse-foundation-tycho/about_1.html", + "start_line": 37, "end_line": 37, "matcher": "2-aho", "score": 95.0, - "matched_length": 25, + "matched_length": 14, "match_coverage": 100.0, "rule_relevance": 95, - "rule_identifier": "apache-2.0_1203.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1203.RULE", - "matched_text": "

The plug-in includes SureFire JUnit Runner ${surefire-version} developed by the Apache Software Foundation. Therefore:

\n\n
\nThis product includes software developed by the Apache Software Foundation (http://www.apache.org/).", - "matched_text_diagnostics": "developed by the Apache Software Foundation. Therefore:

\n\n
\nThis product includes software developed by the Apache Software Foundation (http://www.apache.org/http://www.apache.org/).", + "matched_text_diagnostics": "This product includes software developed by the Apache Software Foundation (" } ] }, @@ -307,20 +323,36 @@ "license_expression_spdx": "Apache-2.0", "from_file": "scan-unknown-intro-eclipse-foundation-tycho/about_1.html", "start_line": 34, + "end_line": 34, + "matcher": "2-aho", + "score": 90.0, + "matched_length": 6, + "match_coverage": 100.0, + "rule_relevance": 90, + "rule_identifier": "apache-2.0_required_phrase_29.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_required_phrase_29.RULE", + "matched_text": "

The plug-in includes SureFire JUnit Runner ${surefire-version} developed by the Apache Software Foundation. Therefore:

", + "matched_text_diagnostics": "developed by the Apache Software Foundation." + }, + { + "license_expression": "apache-2.0", + "license_expression_spdx": "Apache-2.0", + "from_file": "scan-unknown-intro-eclipse-foundation-tycho/about_1.html", + "start_line": 37, "end_line": 37, "matcher": "2-aho", "score": 95.0, - "matched_length": 25, + "matched_length": 14, "match_coverage": 100.0, "rule_relevance": 95, - "rule_identifier": "apache-2.0_1203.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1203.RULE", - "matched_text": "

The plug-in includes SureFire JUnit Runner ${surefire-version} developed by the Apache Software Foundation. Therefore:

\n\n
\nThis product includes software developed by the Apache Software Foundation (http://www.apache.org/).", - "matched_text_diagnostics": "developed by the Apache Software Foundation. Therefore:

\n\n
\nThis product includes software developed by the Apache Software Foundation (http://www.apache.org/http://www.apache.org/).", + "matched_text_diagnostics": "This product includes software developed by the Apache Software Foundation (" } ], "detection_log": [], - "identifier": "apache_2_0-14c27abb-363c-4c38-b5c4-095fce7dd164" + "identifier": "apache_2_0-a6e2f0c7-bc81-4ff9-2c82-cf3897de2210" }, { "license_expression": "apache-2.0", @@ -348,7 +380,7 @@ } ], "license_clues": [], - "percentage_of_license_text": 61.74, + "percentage_of_license_text": 60.56, "scan_errors": [] }, { @@ -390,20 +422,36 @@ "license_expression_spdx": "Apache-2.0", "from_file": "scan-unknown-intro-eclipse-foundation-tycho/about_2.html", "start_line": 34, + "end_line": 34, + "matcher": "2-aho", + "score": 90.0, + "matched_length": 6, + "match_coverage": 100.0, + "rule_relevance": 90, + "rule_identifier": "apache-2.0_required_phrase_29.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_required_phrase_29.RULE", + "matched_text": "

The plug-in includes Surefire Shared Java 5 Provider Base ${surefire-version} developed by the Apache Software Foundation. Therefore:

", + "matched_text_diagnostics": "developed by the Apache Software Foundation." + }, + { + "license_expression": "apache-2.0", + "license_expression_spdx": "Apache-2.0", + "from_file": "scan-unknown-intro-eclipse-foundation-tycho/about_2.html", + "start_line": 37, "end_line": 37, "matcher": "2-aho", "score": 95.0, - "matched_length": 25, + "matched_length": 14, "match_coverage": 100.0, "rule_relevance": 95, - "rule_identifier": "apache-2.0_1203.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1203.RULE", - "matched_text": "

The plug-in includes Surefire Shared Java 5 Provider Base ${surefire-version} developed by the Apache Software Foundation. Therefore:

\n\n
\nThis product includes software developed by the Apache Software Foundation (http://www.apache.org/).", - "matched_text_diagnostics": "developed by the Apache Software Foundation. Therefore:

\n\n
\nThis product includes software developed by the Apache Software Foundation (http://www.apache.org/http://www.apache.org/).", + "matched_text_diagnostics": "This product includes software developed by the Apache Software Foundation (" } ], "detection_log": [], - "identifier": "apache_2_0-14c27abb-363c-4c38-b5c4-095fce7dd164" + "identifier": "apache_2_0-a6e2f0c7-bc81-4ff9-2c82-cf3897de2210" }, { "license_expression": "apache-2.0", @@ -527,7 +575,7 @@ } ], "license_clues": [], - "percentage_of_license_text": 52.59, + "percentage_of_license_text": 52.03, "scan_errors": [] }, { diff --git a/tests/licensedcode/data/tokenize/htmlish.html.expected.key_phrase_tokenizer.json b/tests/licensedcode/data/tokenize/htmlish.html.expected.required_phrase_tokenizer.json similarity index 100% rename from tests/licensedcode/data/tokenize/htmlish.html.expected.key_phrase_tokenizer.json rename to tests/licensedcode/data/tokenize/htmlish.html.expected.required_phrase_tokenizer.json diff --git a/tests/licensedcode/data/tokenize/htmlish.txt.expected.key_phrase_tokenizer.json b/tests/licensedcode/data/tokenize/htmlish.txt.expected.required_phrase_tokenizer.json similarity index 100% rename from tests/licensedcode/data/tokenize/htmlish.txt.expected.key_phrase_tokenizer.json rename to tests/licensedcode/data/tokenize/htmlish.txt.expected.required_phrase_tokenizer.json diff --git a/tests/licensedcode/test_index.py b/tests/licensedcode/test_index.py index c768b2ba58..5f937dfc70 100644 --- a/tests/licensedcode/test_index.py +++ b/tests/licensedcode/test_index.py @@ -209,7 +209,7 @@ def test_index_does_not_fail_on_rules_with_similar_normalized_names(self): index.LicenseIndex(rules) @pytest.mark.scanslow - def test_index_rules_with_key_phrases_and_without_are_duplicates(self): + def test_index_rules_with_required_phrases_and_without_are_duplicates(self): rules_dir = self.get_test_loc('index/duplicate-key-phrases/rules') lics_dir = self.get_test_loc('index/duplicate-key-phrases/licenses') rules = models.get_rules(licenses_data_dir=lics_dir, rules_data_dir=rules_dir) diff --git a/tests/licensedcode/test_match.py b/tests/licensedcode/test_match.py index 4baf1e9433..9346abda2a 100644 --- a/tests/licensedcode/test_match.py +++ b/tests/licensedcode/test_match.py @@ -16,7 +16,7 @@ from licensedcode.index import LicenseIndex from licensedcode.legalese import build_dictionary_from_iterable from licensedcode.match import filter_contained_matches -from licensedcode.match import filter_matches_missing_key_phrases +from licensedcode.match import filter_matches_missing_required_phrases from licensedcode.match import filter_overlapping_matches from licensedcode.match import get_full_matched_text from licensedcode.match import get_matching_regions @@ -40,8 +40,8 @@ class TestLicenseMatchBasic(FileBasedTesting): def test_LicenseMatch_equality(self): r1 = create_rule_from_text_and_expression( - text='r1', - identifier='apache-2.0.RULE', + text='r1', + identifier='apache-2.0.RULE', license_expression='apache-2.0 OR gpl', ) m1_r1 = LicenseMatch(rule=r1, qspan=Span(0, 2), ispan=Span(0, 2)) @@ -51,8 +51,8 @@ def test_LicenseMatch_equality(self): assert not (m1_r1 != m2_r1) r2 = create_rule_from_text_and_expression( - text='r1', - identifier='apache-2.0.RULE', + text='r1', + identifier='apache-2.0.RULE', license_expression='apache-2.0 OR gpl', ) m3_r2 = LicenseMatch(rule=r2, qspan=Span(0, 2), ispan=Span(0, 2)) @@ -265,7 +265,7 @@ def test_LicenseMatch_score_is_not_100_with_aho_match_and_extra_unknown_token_ah match = idx.match(query_string=querys)[0] assert match.score() < 100 - def test_LicenseMatch_matches_only_when_all_key_phrases_are_present(self): + def test_LicenseMatch_matches_only_when_all_required_phrases_are_present(self): text_r1 = ( 'License ' 'Distributed under the {{MIT License}}. See LICENSE for {{more information}}.' @@ -288,7 +288,7 @@ def test_LicenseMatch_matches_only_when_all_key_phrases_are_present(self): matches = idx.match(query_string=querys) assert not matches - def test_LicenseMatch_matches_only_when_all_key_phrases_are_present_in_order(self): + def test_LicenseMatch_matches_only_when_all_required_phrases_are_present_in_order(self): text_r1 = ( 'License ' 'Distributed under the {{MIT License}}. See LICENSE for more information. ' @@ -313,7 +313,7 @@ def test_LicenseMatch_matches_only_when_all_key_phrases_are_present_in_order(sel assert len(matches) == 1 assert matches[0].rule == r2 - def test_LicenseMatch_matches_only_when_key_phrases_are_uninterrupted_by_unknown(self): + def test_LicenseMatch_matches_only_when_required_phrases_are_uninterrupted_by_unknown(self): text_r1 = ( 'License ' 'Distributed under the {{MIT License}}. See LICENSE for more information.' @@ -339,7 +339,7 @@ def test_LicenseMatch_matches_only_when_key_phrases_are_uninterrupted_by_unknown assert len(matches) == 1 assert matches[0].rule == r2 - def test_LicenseMatch_matches_only_when_key_phrases_are_uninterrupted_by_stopword(self): + def test_LicenseMatch_matches_only_when_required_phrases_are_uninterrupted_by_stopword(self): text_r1 = ( 'License ' 'Distributed under the {{MIT License}}. See LICENSE for more information.' @@ -366,7 +366,35 @@ def test_LicenseMatch_matches_only_when_key_phrases_are_uninterrupted_by_stopwor assert len(matches) == 1 assert matches[0].rule == r2 - def test_LicenseMatch_matches_key_phrases_aho_with_exact_match_selects_key_phrase_match(self): + def test_LicenseMatch_matches_also_when_required_phrases_stopwords_match_rule_stopwords(self): + text_r1 = ( + 'License ' + 'Distributed under the {{MIT a License}}. See LICENSE for more information.' + # ^ stopword + 'You can redistribute this file under this or any other license.') + r1 = create_rule_from_text_and_expression(license_expression='mit', text=text_r1) + + text_r2 = ( + 'License ' + 'Distributed under the BSD License. See LICENSE for more information.' + 'You can redistribute this file under this or any other license.') + r2 = create_rule_from_text_and_expression(license_expression='gpl', text=text_r2) + + idx = index.LicenseIndex([r1, r2]) + + querys = ( + 'See LICENSE for more information, and also you can redistribute this file under this or any other license.' + 'License ' + 'Distributed under the MIT, a License. See LICENSE or website for more information.' + # ^ stopword ^ + 'You can redistribute this file under this or any other license.' + ) + + matches = idx.match(query_string=querys) + assert len(matches) == 1 + assert matches[0].rule == r1 + + def test_LicenseMatch_matches_required_phrases_aho_with_exact_match_selects_required_phrase_match(self): text_r1 = ( 'License ' 'Distributed under the {{MIT License}}. See LICENSE for more information.' @@ -390,7 +418,7 @@ def test_LicenseMatch_matches_key_phrases_aho_with_exact_match_selects_key_phras assert len(matches) == 1 assert matches[0].rule == r1 - def test_LicenseMatch_matches_only_when_key_phrase_is_uninterrupted(self): + def test_LicenseMatch_matches_only_when_required_phrase_is_uninterrupted(self): text_r1 = ( 'licensed under the ' '{{Creative Commons Attribution 4.0 License}} ' @@ -410,12 +438,12 @@ def test_LicenseMatch_matches_only_when_key_phrase_is_uninterrupted(self): legalese = build_dictionary_from_iterable(['licensed', 'license', 'attribution', ]) idx = index.LicenseIndex([r1, r2], _legalese=legalese) - assert r1.key_phrase_spans == [Span(3, 8)] - assert r2.key_phrase_spans == [] + assert r1.required_phrase_spans == [Span(3, 8)] + assert r2.required_phrase_spans == [] # NonCommercial and ShareAlike are "unknown" words here # therefore we should match r2 as as a sequence and not r1 because the - # key phrase are interrupted + # required phrase are interrupted querys = ( 'This work is ' # 0 UW 1 @@ -1007,65 +1035,65 @@ def test_filter_overlapping_matches_matches_filters_matches_does_not_discard_non assert result == [m1] assert discarded == [m2] - def test_filter_key_phrases_keeps_matches_where_key_phrase_spans_is_fully_container_in_ispan(self): + def test_filter_required_phrases_keeps_matches_where_required_phrase_spans_is_fully_container_in_ispan(self): idx = index.LicenseIndex() query = Query(query_string="Lorum ipsum", idx=idx) - r1 = create_rule_from_text_and_expression(license_expression='apache-1.1', key_phrase_spans=[Span(2, 4)]) + r1 = create_rule_from_text_and_expression(license_expression='apache-1.1', required_phrase_spans=[Span(2, 4)]) - match_key_phrase_fully_contained = LicenseMatch(rule=r1, query=query, qspan=Span(0, 5), ispan=Span(0, 5)) - match_key_phrase_fully_outside = LicenseMatch(rule=r1, query=query, qspan=Span(5, 8), ispan=Span(5, 8)) - match_key_phrase_partially_contained = LicenseMatch(rule=r1, query=query, qspan=Span(0, 3), ispan=Span(0, 2)) - match_key_phrase_fully_containing = LicenseMatch(rule=r1, query=query, qspan=Span(3), ispan=Span(3)) + match_required_phrase_fully_contained = LicenseMatch(rule=r1, query=query, qspan=Span(0, 5), ispan=Span(0, 5)) + match_required_phrase_fully_outside = LicenseMatch(rule=r1, query=query, qspan=Span(5, 8), ispan=Span(5, 8)) + match_required_phrase_partially_contained = LicenseMatch(rule=r1, query=query, qspan=Span(0, 3), ispan=Span(0, 2)) + match_required_phrase_fully_containing = LicenseMatch(rule=r1, query=query, qspan=Span(3), ispan=Span(3)) - kept, discarded = filter_matches_missing_key_phrases([ - match_key_phrase_fully_contained, - match_key_phrase_fully_outside, - match_key_phrase_partially_contained, - match_key_phrase_fully_containing + kept, discarded = filter_matches_missing_required_phrases([ + match_required_phrase_fully_contained, + match_required_phrase_fully_outside, + match_required_phrase_partially_contained, + match_required_phrase_fully_containing ]) assert kept == [ - match_key_phrase_fully_contained + match_required_phrase_fully_contained ] assert discarded == [ - match_key_phrase_fully_outside, - match_key_phrase_partially_contained, - match_key_phrase_fully_containing + match_required_phrase_fully_outside, + match_required_phrase_partially_contained, + match_required_phrase_fully_containing ] - def test_filter_key_phrases_discards_matches_where_qspan_intersects_with_unknown_or_stopwords(self): + def test_filter_required_phrases_discards_matches_where_qspan_intersects_with_unknown_or_stopwords(self): idx = index.LicenseIndex() query = Query(query_string="Lorum ipsum", idx=idx) query.unknowns_by_pos = {12: 1} query.stopwords_by_pos = {23: 1} - r1 = create_rule_from_text_and_expression(license_expression='apache-1.1', key_phrase_spans=[Span(2, 4)]) + r1 = create_rule_from_text_and_expression(license_expression='apache-1.1', required_phrase_spans=[Span(2, 4)]) - match_key_phrase_fully_contained = LicenseMatch(rule=r1, query=query, qspan=Span(0, 5), ispan=Span(0, 5)) + match_required_phrase_fully_contained = LicenseMatch(rule=r1, query=query, qspan=Span(0, 5), ispan=Span(0, 5)) match_qspan_intersects_with_unknowns = LicenseMatch(rule=r1, query=query, qspan=Span(10, 15), ispan=Span(0, 5)) match_qspan_intersects_with_stopwords = LicenseMatch(rule=r1, query=query, qspan=Span(20, 25), ispan=Span(0, 5)) - kept, discarded = filter_matches_missing_key_phrases([ - match_key_phrase_fully_contained, + kept, discarded = filter_matches_missing_required_phrases([ + match_required_phrase_fully_contained, match_qspan_intersects_with_unknowns, match_qspan_intersects_with_stopwords, ]) assert kept == [ - match_key_phrase_fully_contained + match_required_phrase_fully_contained ] assert discarded == [ match_qspan_intersects_with_unknowns, match_qspan_intersects_with_stopwords ] - def test_filter_key_phrases_discards_matches_where_key_phrase_is_interruped_in_qspan(self): + def test_filter_required_phrases_discards_matches_where_required_phrase_is_interruped_in_qspan(self): idx = index.LicenseIndex() query = Query(query_string="Lorum ipsum", idx=idx) query.unknowns_by_pos = {} r1 = Rule( license_expression='apache-1.1', - key_phrase_spans=[Span(12, 14)], + required_phrase_spans=[Span(12, 14)], ) qspan_ispan_same_pos = LicenseMatch( @@ -1081,7 +1109,7 @@ def test_filter_key_phrases_discards_matches_where_key_phrase_is_interruped_in_q qspan=Span([20, 21, 22, 23, 25]), ispan=Span(10, 15) ) - kept, discarded = filter_matches_missing_key_phrases([ + kept, discarded = filter_matches_missing_required_phrases([ qspan_ispan_same_pos, qspan_with_offset, qspan_non_contiguous @@ -1832,33 +1860,7 @@ def test_matched_text_is_collected_correctly_in_binary_ffmpeg_windows_whole_line 'MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n' 'GNU General Public License for more details.\n' 'You should have received a copy of the GNU General Public License\n' - 'along with %s. If not, see .\n' - - 'File formats:\n' - 'D. = Demuxing supported\n' - '.E = Muxing supported\n' - '%s%s %-15s %s\n' - 'Devices:\n' - 'Codecs:\n' - 'D..... = Decoding supported\n' - '.E.... = Encoding supported\n' - '..V... = Video codec\n' - "No option name near '%s'\n" - "Unable to parse '%s': %s\n" - "Setting '%s' to value '%s'\n" - "Option '%s' not found\n" - '--enable-gpl --enable-version3 --enable-dxva2 --enable-libmfx --enable-nvenc ' - '--enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r ' - '--enable-gnutls --enable-iconv --enable-libass --enable-libbluray ' - '--enable-libbs2b --enable-libcaca --enable-libfreetype --enable-libgme ' - '--enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame ' - '--enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenh264 ' - '--enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libsnappy ' - '--enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame ' - '--enable-libvidstab --enable-libvo-amrwbenc --enable-libvorbis ' - '--enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 ' - '--enable-libx265 --enable-libxavs --enable-libxvid --enable-libzimg ' - '--enable-lzma --enable-decklink --enable-zlib', + 'along with %s. If not, see .', '--enable-gpl --enable-version3 --enable-dxva2 --enable-libmfx --enable-nvenc ' '--enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r ' @@ -1987,23 +1989,7 @@ def test_matched_text_is_collected_correctly_in_binary_ffmpeg_windows_not_whole_ 'MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n' 'GNU General Public License for more details.\n' 'You should have received a copy of the GNU General Public License\n' - - 'along with %s. If not, see .\n' - - 'File formats:\n' - 'D. = Demuxing supported\n' - '.E = Muxing supported\n' - '%s%s %-15s %s\n' - 'Devices:\n' - 'Codecs:\n' - 'D..... = Decoding supported\n' - '.E.... = Encoding supported\n' - '..V... = Video codec\n' - "No option name near '%s'\n" - "Unable to parse '%s': %s\n" - "Setting '%s' to value '%s'\n" - "Option '%s' not found\n" - '--enable-gpl --', + 'along with %s. If not, see .', 'enable-gpl --enable-version3 --', 'license: GPL version 3 or later', diff --git a/tests/licensedcode/test_models.py b/tests/licensedcode/test_models.py index 4dbabfb234..aab5cc62fc 100644 --- a/tests/licensedcode/test_models.py +++ b/tests/licensedcode/test_models.py @@ -14,7 +14,6 @@ from licensedcode import index from licensedcode import models -from licensedcode.models import get_key_phrase_spans from licensedcode.models import InvalidRule from licensedcode.models import Rule from licensedcode.models import rules_data_dir @@ -577,23 +576,21 @@ def test_Rule__validate_with_invalid_language(self): validations.extend(rule.validate()) expected = [ 'Unknown language: foobar', - 'Invalid rule is_license_* flags. Only one allowed.', 'At least one is_license_* flag is needed.', - 'Invalid rule is_license_* flags. Only one allowed.', 'At least one is_license_* flag is needed.', ] assert validations == expected - def test_key_phrases_yields_spans(self): + def test_required_phrases_yields_spans(self): rule_text = ( 'This released software is {{released}} by under {{the MIT license}}. ' 'Which is a license originating at Massachusetts Institute of Technology (MIT).' ) rule = models.Rule(license_expression='mit', text=rule_text) - key_phrase_spans = list(rule.build_key_phrase_spans()) - assert key_phrase_spans == [Span(4), Span(7, 9)] + required_phrase_spans = list(rule.build_required_phrase_spans()) + assert required_phrase_spans == [Span(4), Span(7, 9)] - def test_key_phrases_raises_exception_when_markup_is_not_closed(self): + def test_required_phrases_raises_exception_when_markup_is_not_closed(self): rule_text = ( 'This released software is {{released}} by under {{the MIT license. ' 'Which is a license originating at Massachusetts Institute of Technology (MIT).' @@ -601,7 +598,7 @@ def test_key_phrases_raises_exception_when_markup_is_not_closed(self): rule = models.Rule(license_expression='mit', text=rule_text) try: - list(rule.build_key_phrase_spans()) + list(rule.build_required_phrase_spans()) raise Exception('Exception should be raised') except InvalidRule: pass @@ -612,53 +609,3 @@ def test_rule_text_file_and_data_file_are_computed_correctly(self): rule = rules[0] assert rule.rule_file(rules_data_dir=rule_dir).startswith(rule_dir) - -class TestGetKeyPhrases(TestCaseClass): - - def test_get_key_phrases_yields_spans(self): - text = ( - 'This released software is {{released}} by under {{the MIT license}}. ' - 'Which is a license originating at Massachusetts Institute of Technology (MIT).' - ) - - key_phrase_spans = get_key_phrase_spans(text) - assert list(key_phrase_spans) == [Span(4), Span(7, 9)] - - def test_get_key_phrases_raises_exception_key_phrase_markup_is_not_closed(self): - text = 'This software is {{released by under the MIT license.' - try: - list(get_key_phrase_spans(text)) - raise Exception('Exception should be raised') - except InvalidRule: - pass - - def test_get_key_phrases_ignores_stopwords_in_positions(self): - text = 'The word comma is a stop word so comma does not increase the span position {{MIT license}}.' - key_phrase_spans = get_key_phrase_spans(text) - assert list(key_phrase_spans) == [Span(11, 12)] - - def test_get_key_phrases_yields_spans_without_stop_words(self): - text = 'This released software is {{released span}} by under {{the MIT quot license}}.' - key_phrase_spans = get_key_phrase_spans(text) - assert list(key_phrase_spans) == [Span(4), Span(7, 9)] - - def test_get_key_phrases_does_not_yield_empty_spans(self): - text = 'This released software {{comma}} is {{}} by under {{the MIT license}}.' - try: - list(get_key_phrase_spans(text)) - raise Exception('Exception should be raised') - except InvalidRule: - pass - - def test_get_key_phrases_only_considers_outer_key_phrase_markup(self): - text = 'This released {{{software under the MIT}}} license.' - key_phrase_spans = get_key_phrase_spans(text) - assert list(key_phrase_spans) == [Span(2, 5)] - - def test_get_key_phrases_ignores_nested_key_phrase_markup(self): - text = 'This released {{software {{under the}} MIT}} license.' - try: - list(get_key_phrase_spans(text)) - raise Exception('Exception should be raised') - except InvalidRule: - pass diff --git a/tests/licensedcode/test_required_phrases.py b/tests/licensedcode/test_required_phrases.py new file mode 100644 index 0000000000..860ccc70f5 --- /dev/null +++ b/tests/licensedcode/test_required_phrases.py @@ -0,0 +1,182 @@ +# +# 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. +# + +from unittest import TestCase as TestCaseClass + +import pytest + +from licensedcode.models import InvalidRule +from licensedcode.models import Rule +from licensedcode.required_phrases import update_rules_using_is_required_phrases_rules +from licensedcode.required_phrases import update_rules_using_license_attributes +from licensedcode.required_phrases import IsRequiredPhrase +from licensedcode.required_phrases import add_required_phrase_markers +from licensedcode.spans import Span +from licensedcode.required_phrases import find_phrase_spans_in_text +from licensedcode.tokenize import get_existing_required_phrase_spans + + +class TestIsRequiredPhraseCanSort(TestCaseClass): + + required_phrase_texts = [ + "mit", + "the MIT License", + "MIT License with Disclaimer", + "licenses: mit", + "MIT license", + ] + is_required_phrases = [ + IsRequiredPhrase( + required_phrase_text=text, + rule=Rule( + license_expression="mit", + identifier="mit_231.RULE", + text=text, + is_required_phrase=True, + is_license_tag=True, + ) + ) + for text in required_phrase_texts + ] + + def test_sort_is_required_phrases_works(self): + srps = IsRequiredPhrase.sorted(self.is_required_phrases) + results = [srp.required_phrase_text for srp in srps] + + expected = [ + "MIT License with Disclaimer", + "the MIT License", + "licenses: mit", + "MIT license", + "mit", + ] + assert results == expected + + +class TestFindPhraseInText: + + text_with_stopwords = ( + "A copy of the GNU General Public License is available as " + "/usr/share/common-licenses/GPL-2 in the Debian GNU/Linux distribution. " + "A copy of the GNU General Public License is available as " + "/usr/share/common-licenses/GPL-2 in the Debian GNU/Linux distribution." + ) + + text_with_stopwords_and_marked_required_phrases = ( + "A copy of the GNU General Public License is available as " + "/{{usr/share/common-licenses/GPL-2}} in the Debian GNU/Linux distribution. " + "A copy of the GNU General Public License is available as " + "/{{usr/share/common-licenses/GPL-2}} in the Debian GNU/Linux distribution." + ) + + def test_find_phrase_spans_in_text_with_behaves_same_as_get_existing_required_phrase_spans(self): + spans_with_phrase = find_phrase_spans_in_text( + text=self.text_with_stopwords, + phrase_text="usr share common licenses gpl 2", + ) + + spans_with_find = get_existing_required_phrase_spans( + text=self.text_with_stopwords_and_marked_required_phrases, + ) + + assert spans_with_phrase == spans_with_find + + def test_find_phrase_spans_in_text_and_add_required_phrase_matches(self): + + spans = find_phrase_spans_in_text( + text=self.text_with_stopwords, + phrase_text="usr share common licenses gpl 2", + ) + + text = self.text_with_stopwords + for span in spans: + text = add_required_phrase_markers( + text=text, + required_phrase_span=span, + ) + + assert text == self.text_with_stopwords_and_marked_required_phrases + + +class TestFindSpansInText: + + text_with_articles = ( + "A copy of the GNU General Public License is available as " + "/usr/share/common-licenses/GPL-2 in the Debian GNU/Linux distribution. " + "A copy of the GNU General Public License is available as " + "/usr/share/common-licenses/GPL-2 in the Debian GNU/Linux distribution." + ) + + text_with_articles_and_marked_required_phrases = ( + "A copy of the GNU General Public License is available as " + "/{{usr/share/common-licenses/GPL-2}} in the Debian GNU/Linux distribution. " + "A copy of the GNU General Public License is available as " + "/{{usr/share/common-licenses/GPL-2}} in the Debian GNU/Linux distribution." + ) + + text_with_extra_characters = ( + "This is the http://www.opensource.org/licenses/mit-license.php MIT " + "Software License which is OSI-certified, and GPL-compatible." + ) + + text_with_extra_characters_and_marked_required_phrases = ( + "This is the http://www.opensource.org/licenses/mit-license.php {{MIT " + "Software License}} which is OSI-certified, and GPL-compatible." + ) + + def test_find_phrase_spans_in_text(self): + text = "is released under the MIT license. See the LICENSE" + spans = find_phrase_spans_in_text(text=text, phrase_text="mit license") + assert spans == [Span(4, 5)] + + def test_find_phrase_spans_in_text_multiple(self): + spans = find_phrase_spans_in_text( + text=self.text_with_articles, + phrase_text="usr share common licenses gpl 2", + ) + assert spans == [Span(10, 15), Span(32, 37)] + + def test_find_phrase_spans_in_text_then_add_with_multiple_spans(self): + spans = find_phrase_spans_in_text( + text=self.text_with_articles, + phrase_text="usr share common licenses gpl 2", + ) + text = self.text_with_articles + for span in spans: + text = add_required_phrase_markers( + text=text, + required_phrase_span=span, + ) + + assert text == self.text_with_articles_and_marked_required_phrases + + def test_add_required_phrase_markers_in_text_with_extra_characters(self): + spans = find_phrase_spans_in_text( + text=self.text_with_extra_characters, + phrase_text="mit software license", + ) + text = self.text_with_extra_characters + for span in spans: + text = add_required_phrase_markers( + text=text, + required_phrase_span=span, + ) + + assert text == self.text_with_extra_characters_and_marked_required_phrases + + +class TestKeyPhrasesCanBeMarked(TestCaseClass): + + @pytest.mark.scanslow + def test_update_rules_using_is_required_phrases_rules(self): + update_rules_using_is_required_phrases_rules(verbose=True, dry_run=True) + + @pytest.mark.scanslow + def test_update_rules_using_license_attributes(self): + update_rules_using_license_attributes(verbose=True, dry_run=True) diff --git a/tests/licensedcode/test_tokenize.py b/tests/licensedcode/test_tokenize.py index 5b36ec59bc..950a94cf76 100644 --- a/tests/licensedcode/test_tokenize.py +++ b/tests/licensedcode/test_tokenize.py @@ -12,22 +12,25 @@ import itertools import json import os + from time import time from commoncode.testcase import FileBasedTesting +from licensedcode.spans import Span +from licensedcode.tokenize import get_existing_required_phrase_spans from licensedcode.tokenize import index_tokenizer -from licensedcode.tokenize import key_phrase_tokenizer +from licensedcode.tokenize import InvalidRuleRequiredPhrase from licensedcode.tokenize import matched_query_text_tokenizer +from licensedcode.tokenize import ngrams from licensedcode.tokenize import query_lines from licensedcode.tokenize import query_tokenizer -from licensedcode.tokenize import ngrams +from licensedcode.tokenize import required_phrase_tokenizer from licensedcode.tokenize import select_ngrams from licensedcode.tokenize import tokens_and_non_tokens from licensedcode.tokenize import word_splitter from scancode_config import REGEN_TEST_FIXTURES - TEST_DATA_DIR = os.path.join(os.path.dirname(__file__), 'data') @@ -406,114 +409,181 @@ def test_index_tokenizer_lines_on_html_like_texts_2(self, regen=REGEN_TEST_FIXTU result = [list(index_tokenizer(line)) for _ln, line in lines] check_results(result, expected_file, regen=regen) - def test_key_phrase_tokenizer_on_html_like_texts(self, regen=REGEN_TEST_FIXTURES): + +class TestRequirePhraseTokenizer(FileBasedTesting): + test_data_dir = TEST_DATA_DIR + + def test_required_phrase_tokenizer_on_html_like_texts(self, regen=REGEN_TEST_FIXTURES): test_file = self.get_test_loc('tokenize/htmlish.txt') - expected_file = test_file + '.expected.key_phrase_tokenizer.json' + expected_file = test_file + '.expected.required_phrase_tokenizer.json' lines = query_lines(test_file) - result = [list(key_phrase_tokenizer(line)) for _ln, line in lines] + result = [list(required_phrase_tokenizer(line)) for _ln, line in lines] check_results(result, expected_file, regen=regen) - def test_key_phrase_tokenizer_lines_on_html_like_texts_2(self, regen=REGEN_TEST_FIXTURES): + def test_required_phrase_tokenizer_lines_on_html_like_texts_2(self, regen=REGEN_TEST_FIXTURES): test_file = self.get_test_loc('tokenize/htmlish.html') - expected_file = test_file + '.expected.key_phrase_tokenizer.json' + expected_file = test_file + '.expected.required_phrase_tokenizer.json' lines = query_lines(test_file) - result = [list(key_phrase_tokenizer(line)) for _ln, line in lines] + result = [list(required_phrase_tokenizer(line)) for _ln, line in lines] check_results(result, expected_file, regen=regen) - def test_key_phrase_tokenizer_handles_empty_string(self): + def test_required_phrase_tokenizer_handles_empty_string(self): text = '' - result = list(key_phrase_tokenizer(text)) + result = list(required_phrase_tokenizer(text)) assert result == [] - def test_key_phrase_tokenizer_handles_blank_lines(self): + def test_required_phrase_tokenizer_handles_blank_lines(self): text = u' \n\n\t ' - result = list(key_phrase_tokenizer(text)) + result = list(required_phrase_tokenizer(text)) assert result == [] - def test_key_phrase_tokenizer_handles_blank_lines2(self): + def test_required_phrase_tokenizer_handles_blank_lines2(self): text = ' \n\t ' - result = list(key_phrase_tokenizer(text)) + result = list(required_phrase_tokenizer(text)) assert result == [] - def test_key_phrase_tokenizer_handles_empty_lines(self): + def test_required_phrase_tokenizer_handles_empty_lines(self): text = u'\n\n' expected = [] - assert list(key_phrase_tokenizer(text)) == expected + assert list(required_phrase_tokenizer(text)) == expected - def test_key_phrase_tokenizer_does_not_crash_on_unicode_rules_text_1(self): + def test_required_phrase_tokenizer_does_not_crash_on_unicode_rules_text_1(self): test_file = self.get_test_loc('tokenize/unicode/12290.txt') with io.open(test_file, encoding='utf-8') as test: - list(key_phrase_tokenizer(test.read())) + list(required_phrase_tokenizer(test.read())) - def test_key_phrase_does_not_crash_on_unicode_rules_text_2(self): + def test_required_phrase_does_not_crash_on_unicode_rules_text_2(self): test_file = self.get_test_loc('tokenize/unicode/12319.txt') with io.open(test_file, encoding='utf-8') as test: - list(key_phrase_tokenizer(test.read())) + list(required_phrase_tokenizer(test.read())) - def test_key_phrase_does_not_crash_on_unicode_rules_text_3(self): + def test_required_phrase_does_not_crash_on_unicode_rules_text_3(self): test_file = self.get_test_loc('tokenize/unicode/12405.txt') with io.open(test_file, encoding='utf-8') as test: - list(key_phrase_tokenizer(test.read())) + list(required_phrase_tokenizer(test.read())) - def test_key_phrase_does_not_crash_on_unicode_rules_text_4(self): + def test_required_phrase_does_not_crash_on_unicode_rules_text_4(self): test_file = self.get_test_loc('tokenize/unicode/12407.txt') with io.open(test_file, encoding='utf-8') as test: - list(key_phrase_tokenizer(test.read())) + list(required_phrase_tokenizer(test.read())) - def test_key_phrase_does_not_crash_on_unicode_rules_text_5(self): + def test_required_phrase_does_not_crash_on_unicode_rules_text_5(self): test_file = self.get_test_loc('tokenize/unicode/12420.txt') with io.open(test_file, encoding='utf-8') as test: - list(key_phrase_tokenizer(test.read())) + list(required_phrase_tokenizer(test.read())) - def test_key_phrase_tokenizer_returns_same_word_tokens_as_index_tokenizer(self): + def test_required_phrase_tokenizer_returns_same_word_tokens_as_index_tokenizer(self): """ - It is important that the `key_phrase_tokenizer` returns the same amount - of tokens (excluding key_phrase markup) as the `index_tokenizer` so that + It is important that the `required_phrase_tokenizer` returns the same amount + of tokens (excluding required_phrase markup) as the `index_tokenizer` so that they Span positions derived from the tokens line up. """ text = 'Redistribution \n\n comma and use in \n\t binary \xe4r till\xe5tet.' - key_phrase_tokens = key_phrase_tokenizer(text) + required_phrase_tokens = required_phrase_tokenizer(text) index_tokens = index_tokenizer(text) - assert list(key_phrase_tokens) == list(index_tokens) + assert list(required_phrase_tokens) == list(index_tokens) - def test_key_phrase_tokenizer_returns_key_phrase_markup_as_tokens_for_multiple_token_key_phrases(self): + def test_required_phrase_tokenizer_returns_required_phrase_markup_as_tokens_for_multiple_token_required_phrases(self): text = 'Redistribution and {{use in binary}} is permitted.' - assert list(key_phrase_tokenizer(text)) == [ + assert list(required_phrase_tokenizer(text)) == [ 'redistribution', 'and', '{{', 'use', 'in', 'binary', '}}', 'is', 'permitted', ] - def test_key_phrase_tokenizer_returns_key_phrase_markup_as_tokens_after_newline(self): + def test_required_phrase_tokenizer_returns_required_phrase_for_multiple_required_phrases(self): + text = 'Redistribution and {{use}} in {{binary}} is permitted.' + assert list(required_phrase_tokenizer(text)) == [ + 'redistribution', 'and', '{{', 'use', '}}', 'in', + '{{', 'binary', '}}', 'is', 'permitted', + ] + + def test_required_phrase_tokenizer_returns_required_phrase_markup_as_tokens_after_newline(self): text = '{{IS_RIGHT\nThis program is distributed under GPL\n}}IS_RIGHT' - assert list(key_phrase_tokenizer(text)) == [ + assert list(required_phrase_tokenizer(text)) == [ '{{', 'is', 'right', 'this', 'program', 'is', 'distributed', 'under', 'gpl', '}}', 'is', 'right' ] - def test_key_phrase_tokenizer_returns_key_phrase_markup_as_tokens_when_separated_by_space(self): + def test_required_phrase_tokenizer_returns_required_phrase_markup_as_tokens_when_separated_by_space(self): text = 'Redistribution {{ is }} permitted.' - assert list(key_phrase_tokenizer(text)) == ['redistribution', '{{', 'is', '}}', 'permitted'] + assert list(required_phrase_tokenizer(text)) == ['redistribution', '{{', 'is', '}}', 'permitted'] - def test_key_phrase_tokenizer_returns_key_phrase_markup_as_tokens_for_single_token_key_phrase(self): + def test_required_phrase_tokenizer_returns_required_phrase_markup_as_tokens_for_single_token_required_phrase(self): text = 'Redistribution {{is}} permitted.' - assert list(key_phrase_tokenizer(text)) == ['redistribution', '{{', 'is', '}}', 'permitted'] + assert list(required_phrase_tokenizer(text)) == ['redistribution', '{{', 'is', '}}', 'permitted'] - def test_key_phrase_tokenizer_returns_nested_key_phrase_markup_as_tokens(self): + def test_required_phrase_tokenizer_returns_nested_required_phrase_markup_as_tokens(self): text = 'Redistribution {{is {{not}} really}} permitted.' - assert list(key_phrase_tokenizer(text)) == [ + assert list(required_phrase_tokenizer(text)) == [ 'redistribution', '{{', 'is', '{{', 'not', '}}', 'really', '}}', 'permitted' ] - def test_key_phrase_tokenizer_ignores_invalid_key_phrase_markup(self): + def test_required_phrase_tokenizer_ignores_invalid_required_phrase_markup(self): text = 'Redistribution {{{is not really}}} { {permitted} }, I am {afraid}.' - assert list(key_phrase_tokenizer(text)) == [ + assert list(required_phrase_tokenizer(text)) == [ 'redistribution', '{{', 'is', 'not', 'really', '}}', 'permitted', 'i', 'am', 'afraid' ] + def test_get_existing_required_phrase_spans_returns_spans(self): + text = ( + 'This released software is {{released}} by under {{the MIT license}}. ' + 'Which is a license originating at Massachusetts Institute of Technology (MIT).' + ) + + spans = get_existing_required_phrase_spans(text) + assert spans == [Span(4), Span(7, 9)] + + def test_get_existing_required_phrase_spans_raises_exception_if_markup_is_not_closed(self): + text = 'This software is {{released by under the MIT license.' + try: + list(get_existing_required_phrase_spans(text)) + raise Exception('Exception should be raised') + except InvalidRuleRequiredPhrase: + pass + + def test_get_existing_required_phrase_spans_ignores_stopwords_in_positions(self): + text = 'The word comma is a stop word so comma does not increase the span position {{MIT license}}.' + spans = get_existing_required_phrase_spans(text) + assert spans == [Span(11, 12)] + + def test_get_existing_required_phrase_spans_yields_spans_without_stop_words(self): + text = 'This released software is {{released span}} by under {{the MIT quot license}}.' + spans = get_existing_required_phrase_spans(text) + assert spans == [Span(4), Span(7, 9)] + + def test_get_existing_required_phrase_spans_does_not_yield_empty_spans(self): + text = 'This released software {{comma}} is {{}} by under {{the MIT license}}.' + try: + list(get_existing_required_phrase_spans(text)) + raise Exception('Exception should be raised') + except InvalidRuleRequiredPhrase: + pass + + def test_get_existing_required_phrase_spans_only_considers_outer_required_phrase_markup(self): + text = 'This released {{{software under the MIT}}} license.' + required_phrase_spans = get_existing_required_phrase_spans(text) + assert required_phrase_spans == [Span(2, 5)] + + def test_get_existing_required_phrase_spans_ignores_nested_required_phrase_markup(self): + text = 'This released {{software {{under the}} MIT}} license.' + try: + list(get_existing_required_phrase_spans(text)) + raise Exception('Exception should be raised') + except InvalidRuleRequiredPhrase: + pass + + def test_get_existing_required_phrase_spans_with_markup(self): + text = ( + "Lua is free software distributed under the terms of the" + "{{MIT license}}" + "reproduced below;" + ) + assert get_existing_required_phrase_spans(text=text) == [Span(18, 19)] + class TestNgrams(FileBasedTesting): test_data_dir = TEST_DATA_DIR diff --git a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqsh/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqsh/APKBUILD-expected.json index 318def0894..43e8d7bbe1 100644 --- a/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqsh/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild-problems/alpine14/main/sqsh/APKBUILD-expected.json @@ -36,16 +36,16 @@ "start_line": 1, "end_line": 1, "matcher": "1-hash", - "score": 50.0, + "score": 100.0, "matched_length": 5, "match_coverage": 100.0, - "rule_relevance": 50, + "rule_relevance": 100, "rule_identifier": "spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "matched_text": "gpl-1.0-or-later" } ], - "identifier": "gpl_1_0_plus-757c6eaa-30b2-56ce-77bb-b6bd8dc83d88" + "identifier": "gpl_1_0_plus-15a72215-873f-562d-09b8-391aba044287" } ], "other_license_expression": null, diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/pnmixer/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/pnmixer/APKBUILD-expected.json index 374b69cd91..fd1bfc977a 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/pnmixer/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/pnmixer/APKBUILD-expected.json @@ -36,16 +36,16 @@ "start_line": 1, "end_line": 1, "matcher": "1-hash", - "score": 50.0, + "score": 100.0, "matched_length": 5, "match_coverage": 100.0, - "rule_relevance": 50, + "rule_relevance": 100, "rule_identifier": "spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "matched_text": "gpl-1.0-or-later" } ], - "identifier": "gpl_1_0_plus-757c6eaa-30b2-56ce-77bb-b6bd8dc83d88" + "identifier": "gpl_1_0_plus-15a72215-873f-562d-09b8-391aba044287" } ], "other_license_expression": null, diff --git a/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/ubuntu-archive-keyring/APKBUILD-expected.json b/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/ubuntu-archive-keyring/APKBUILD-expected.json index 8668fe57f8..184ca3ab7a 100644 --- a/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/ubuntu-archive-keyring/APKBUILD-expected.json +++ b/tests/packagedcode/data/alpine/apkbuild/alpine14/testing/ubuntu-archive-keyring/APKBUILD-expected.json @@ -36,16 +36,16 @@ "start_line": 1, "end_line": 1, "matcher": "1-hash", - "score": 50.0, + "score": 100.0, "matched_length": 5, "match_coverage": 100.0, - "rule_relevance": 50, + "rule_relevance": 100, "rule_identifier": "spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_gpl-1.0-or-later_for_gpl-1.0-plus.RULE", "matched_text": "gpl-1.0-or-later" } ], - "identifier": "gpl_1_0_plus-757c6eaa-30b2-56ce-77bb-b6bd8dc83d88" + "identifier": "gpl_1_0_plus-15a72215-873f-562d-09b8-391aba044287" } ], "other_license_expression": null, diff --git a/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/a/apache2/stable_copyright-detailed.expected.yml b/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/a/apache2/stable_copyright-detailed.expected.yml index f2ffb45069..3d12d85adf 100644 --- a/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/a/apache2/stable_copyright-detailed.expected.yml +++ b/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/a/apache2/stable_copyright-detailed.expected.yml @@ -406,10 +406,10 @@ other_license_detections: start_line: 306 end_line: 309 matcher: 2-aho - score: '100.0' + score: '99.0' matched_length: 47 match_coverage: '100.0' - rule_relevance: 100 + rule_relevance: 99 rule_identifier: apache-2.0_1021.RULE rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1021.RULE matched_text: | @@ -449,7 +449,7 @@ other_license_detections: sources, credits must appear in the documentation. 4. This notice may not be removed or altered. - identifier: apache_2_0_and_hs_regexp-418b8fd9-1905-1ad7-6930-311a90aaf0a7 + identifier: apache_2_0_and_hs_regexp-b58332f1-4f96-ae87-9f3d-691331c863c9 - license_expression: bsd-unchanged license_expression_spdx: LicenseRef-scancode-bsd-unchanged matches: diff --git a/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/d/devscripts/stable_copyright-detailed.expected.yml b/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/d/devscripts/stable_copyright-detailed.expected.yml index e2790b9779..6acc46b88a 100644 --- a/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/d/devscripts/stable_copyright-detailed.expected.yml +++ b/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/d/devscripts/stable_copyright-detailed.expected.yml @@ -75,87 +75,66 @@ declared_license: - GPL-3+ - ISC - Public-Domain -declared_license_expression: gpl-2.0-plus AND gpl-2.0 -declared_license_expression_spdx: GPL-2.0-or-later AND GPL-2.0-only -other_license_expression: (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-3.0 AND gpl-1.0-plus - AND gpl-3.0 AND gpl-3.0) AND (gpl-3.0-plus AND gpl-3.0-plus AND gpl-3.0 AND gpl-3.0) AND isc - AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND ((artistic-perl-1.0 AND artistic-perl-1.0) - OR (gpl-1.0-plus AND gpl-1.0-plus AND gpl-1.0-plus AND gpl-1.0-plus AND gpl-1.0)) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0 - AND gpl-2.0 AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0 - AND gpl-2.0 AND gpl-2.0) AND (gpl-3.0-plus AND gpl-3.0-plus AND gpl-3.0 AND gpl-3.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND artistic-2.0 AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) - AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-3.0-plus AND gpl-3.0-plus AND gpl-3.0 - AND gpl-3.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus - AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-3.0-plus AND gpl-3.0-plus - AND gpl-3.0 AND gpl-3.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-3.0-plus AND gpl-3.0-plus AND gpl-3.0 AND gpl-3.0) - AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) - AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) - AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) - AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) - AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND ((artistic-perl-1.0 AND artistic-perl-1.0) - OR (gpl-1.0-plus AND gpl-1.0-plus AND gpl-1.0-plus AND gpl-1.0-plus AND gpl-1.0)) AND (gpl-2.0 - AND gpl-2.0 AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus - AND gpl-2.0-plus AND gpl-2.0) AND public-domain-disclaimer AND (gpl-2.0-plus AND gpl-2.0-plus - AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus - AND gpl-2.0) -other_license_expression_spdx: (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND - (GPL-3.0-only AND GPL-1.0-or-later AND GPL-3.0-only AND GPL-3.0-only) AND (GPL-3.0-or-later - AND GPL-3.0-or-later AND GPL-3.0-only AND GPL-3.0-only) AND ISC AND (GPL-2.0-or-later AND - GPL-2.0-or-later AND GPL-2.0-only) AND ((Artistic-1.0-Perl AND Artistic-1.0-Perl) OR (GPL-1.0-or-later - AND GPL-1.0-or-later AND GPL-1.0-or-later AND GPL-1.0-or-later AND GPL-1.0-only)) AND (GPL-2.0-or-later - AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) - AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later - AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later - AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-only AND GPL-2.0-only AND GPL-2.0-only) - AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later - AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later - AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) - AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later - AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later - AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) - AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-only AND GPL-2.0-only - AND GPL-2.0-only) AND (GPL-3.0-or-later AND GPL-3.0-or-later AND GPL-3.0-only AND GPL-3.0-only) - AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND Artistic-2.0 AND (GPL-2.0-or-later - AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) - AND (GPL-3.0-or-later AND GPL-3.0-or-later AND GPL-3.0-only AND GPL-3.0-only) AND (GPL-2.0-or-later - AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) - AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-3.0-or-later AND GPL-3.0-or-later - AND GPL-3.0-only AND GPL-3.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) - AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later - AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-3.0-or-later - AND GPL-3.0-or-later AND GPL-3.0-only AND GPL-3.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later - AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later - AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) - AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later - AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later - AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) - AND ((Artistic-1.0-Perl AND Artistic-1.0-Perl) OR (GPL-1.0-or-later AND GPL-1.0-or-later AND - GPL-1.0-or-later AND GPL-1.0-or-later AND GPL-1.0-only)) AND (GPL-2.0-only AND GPL-2.0-only - AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later - AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) - AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later - AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later - AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) - AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later - AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later - AND GPL-2.0-or-later AND GPL-2.0-only) AND LicenseRef-scancode-public-domain-disclaimer AND - (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later - AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later AND GPL-2.0-only) +declared_license_expression: gpl-2.0-plus +declared_license_expression_spdx: GPL-2.0-or-later +other_license_expression: (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-3.0 AND gpl-3.0) AND (gpl-3.0-plus + AND gpl-3.0-plus) AND isc AND (gpl-2.0-plus AND gpl-2.0-plus) AND ((artistic-perl-1.0 AND + artistic-perl-1.0) OR (gpl-1.0-plus AND gpl-1.0-plus)) AND (gpl-2.0-plus AND gpl-2.0-plus) + AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus + AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) + AND (gpl-2.0 AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) + AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus + AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) + AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus + AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0 AND gpl-2.0) AND (gpl-3.0-plus + AND gpl-3.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND artistic-2.0 AND (gpl-2.0-plus AND + gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-3.0-plus AND gpl-3.0-plus) AND + (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND + gpl-2.0-plus) AND (gpl-3.0-plus AND gpl-3.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND + (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND + gpl-2.0-plus) AND (gpl-3.0-plus AND gpl-3.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND + (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND + gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND + (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND + gpl-2.0-plus) AND ((artistic-perl-1.0 AND artistic-perl-1.0) OR (gpl-1.0-plus AND gpl-1.0-plus)) + AND (gpl-2.0 AND gpl-2.0) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) + AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus + AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) + AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus + AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) + AND public-domain-disclaimer AND (gpl-2.0-plus AND gpl-2.0-plus) AND (gpl-2.0-plus AND gpl-2.0-plus) + AND (gpl-2.0-plus AND gpl-2.0-plus) +other_license_expression_spdx: (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-3.0-only AND + GPL-3.0-only) AND (GPL-3.0-or-later AND GPL-3.0-or-later) AND ISC AND (GPL-2.0-or-later AND + GPL-2.0-or-later) AND ((Artistic-1.0-Perl AND Artistic-1.0-Perl) OR (GPL-1.0-or-later AND + GPL-1.0-or-later)) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) + AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND + (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-only + AND GPL-2.0-only) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) + AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND + (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later + AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND + GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) + AND (GPL-2.0-only AND GPL-2.0-only) AND (GPL-3.0-or-later AND GPL-3.0-or-later) AND (GPL-2.0-or-later + AND GPL-2.0-or-later) AND Artistic-2.0 AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later + AND GPL-2.0-or-later) AND (GPL-3.0-or-later AND GPL-3.0-or-later) AND (GPL-2.0-or-later AND + GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) + AND (GPL-3.0-or-later AND GPL-3.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND + (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later + AND GPL-2.0-or-later) AND (GPL-3.0-or-later AND GPL-3.0-or-later) AND (GPL-2.0-or-later AND + GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) + AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND + (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later + AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND ((Artistic-1.0-Perl + AND Artistic-1.0-Perl) OR (GPL-1.0-or-later AND GPL-1.0-or-later)) AND (GPL-2.0-only AND GPL-2.0-only) + AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND + (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later + AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND + GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) + AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND + (GPL-2.0-or-later AND GPL-2.0-or-later) AND LicenseRef-scancode-public-domain-disclaimer AND + (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later AND GPL-2.0-or-later) AND (GPL-2.0-or-later + AND GPL-2.0-or-later) license_detections: [] other_license_detections: - license_expression: artistic-perl-1.0 @@ -399,8 +378,8 @@ other_license_detections: DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. identifier: artistic_2_0-da505167-7963-b6e8-5f04-2ffe855ea5e9 - - license_expression: gpl-1.0-plus AND gpl-1.0 - license_expression_spdx: GPL-1.0-or-later AND GPL-1.0-only + - license_expression: gpl-1.0-plus + license_expression_spdx: GPL-1.0-or-later matches: - license_expression: gpl-1.0-plus license_expression_spdx: GPL-1.0-or-later @@ -419,61 +398,23 @@ other_license_detections: license_expression_spdx: GPL-1.0-or-later from_file: start_line: 554 - end_line: 557 - matcher: 2-aho + end_line: 560 + matcher: 1-hash score: '100.0' - matched_length: 39 + matched_length: 64 match_coverage: '100.0' rule_relevance: 100 - rule_identifier: gpl-1.0-plus_2.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_2.RULE + rule_identifier: gpl-1.0-plus_600.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_600.RULE matched_text: | This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. - - license_expression: gpl-1.0-plus - license_expression_spdx: GPL-1.0-or-later - from_file: - start_line: 559 - end_line: 560 - matcher: 2-aho - score: '100.0' - matched_length: 5 - match_coverage: '100.0' - rule_relevance: 100 - rule_identifier: gpl-1.0-plus_33.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE - matched_text: | - the GNU General - Public License - - license_expression: gpl-1.0-plus - license_expression_spdx: GPL-1.0-or-later - from_file: - start_line: 560 - end_line: 560 - matcher: 2-aho - score: '100.0' - matched_length: 5 - match_coverage: '100.0' - rule_relevance: 100 - rule_identifier: gpl-1.0-plus_424.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_424.RULE - matched_text: usr/share/common-licenses/GPL- - - license_expression: gpl-1.0 - license_expression_spdx: GPL-1.0-only - from_file: - start_line: 560 - end_line: 560 - matcher: 2-aho - score: '60.0' - matched_length: 2 - match_coverage: '100.0' - rule_relevance: 60 - rule_identifier: gpl-1.0_15.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0_15.RULE - matched_text: GPL-1' - identifier: gpl_1_0_plus_and_gpl_1_0-40cd1f34-7ef5-dd7b-2ab9-7f0a899d139c + + On Debian systems, the complete text of version 1 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-1' + identifier: gpl_1_0_plus-7fb9c875-428b-be17-3c9d-10d24f6fdce2 - license_expression: gpl-2.0 license_expression_spdx: GPL-2.0-only matches: @@ -494,36 +435,24 @@ other_license_detections: license_expression_spdx: GPL-2.0-only from_file: start_line: 563 - end_line: 565 - matcher: 2-aho + end_line: 568 + matcher: 1-hash score: '100.0' - matched_length: 31 + matched_length: 56 match_coverage: '100.0' rule_relevance: 100 - rule_identifier: gpl-2.0_396.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_396.RULE + rule_identifier: gpl-2.0_1469.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1469.RULE matched_text: | This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2. - - license_expression: gpl-2.0 - license_expression_spdx: GPL-2.0-only - from_file: - start_line: 567 - end_line: 568 - matcher: 2-aho - score: '100.0' - matched_length: 25 - match_coverage: '100.0' - rule_relevance: 100 - rule_identifier: gpl-2.0_1295.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1295.RULE - matched_text: | + On Debian systems, the complete text of version 2 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2' - identifier: gpl_2_0-558b8bf3-eeb8-2a7a-6f28-55f4c2aa111f - - license_expression: gpl-2.0-plus AND gpl-2.0 - license_expression_spdx: GPL-2.0-or-later AND GPL-2.0-only + identifier: gpl_2_0-9da9ca88-e4fe-5b90-99c2-60217eb58258 + - license_expression: gpl-2.0-plus + license_expression_spdx: GPL-2.0-or-later matches: - license_expression: gpl-2.0-plus license_expression_spdx: GPL-2.0-or-later @@ -542,37 +471,25 @@ other_license_detections: license_expression_spdx: GPL-2.0-or-later from_file: start_line: 571 - end_line: 574 - matcher: 2-aho + end_line: 577 + matcher: 1-hash score: '100.0' - matched_length: 39 + matched_length: 64 match_coverage: '100.0' rule_relevance: 100 - rule_identifier: gpl-2.0-plus_165.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_165.RULE + rule_identifier: gpl-2.0-plus_1144.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_1144.RULE matched_text: | This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - - license_expression: gpl-2.0 - license_expression_spdx: GPL-2.0-only - from_file: - start_line: 576 - end_line: 577 - matcher: 2-aho - score: '100.0' - matched_length: 25 - match_coverage: '100.0' - rule_relevance: 100 - rule_identifier: gpl-2.0_1295.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1295.RULE - matched_text: | + On Debian systems, the complete text of version 2 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-2' - identifier: gpl_2_0_plus_and_gpl_2_0-b73d5e9f-2938-57e1-de18-818469af1109 - - license_expression: gpl-3.0 AND gpl-1.0-plus - license_expression_spdx: GPL-3.0-only AND GPL-1.0-or-later + identifier: gpl_2_0_plus-31fe9146-096d-857e-b744-14c89f527b93 + - license_expression: gpl-3.0 + license_expression_spdx: GPL-3.0-only matches: - license_expression: gpl-3.0 license_expression_spdx: GPL-3.0-only @@ -587,53 +504,28 @@ other_license_detections: rule_identifier: gpl-3.0_rdesc_1.RULE rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_rdesc_1.RULE matched_text: 'License: gpl-3' - - license_expression: gpl-1.0-plus - license_expression_spdx: GPL-1.0-or-later - from_file: - start_line: 580 - end_line: 582 - matcher: 2-aho - score: '100.0' - matched_length: 29 - match_coverage: '100.0' - rule_relevance: 100 - rule_identifier: gpl_91.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl_91.RULE - matched_text: | - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; - license_expression: gpl-3.0 license_expression_spdx: GPL-3.0-only from_file: - start_line: 584 + start_line: 580 end_line: 585 - matcher: 2-aho + matcher: 1-hash score: '100.0' - matched_length: 8 + matched_length: 56 match_coverage: '100.0' rule_relevance: 100 - rule_identifier: gpl-3.0_237.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_237.RULE + rule_identifier: gpl-3.0_611.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_611.RULE matched_text: | - version 3 of the GNU General - Public License - - license_expression: gpl-3.0 - license_expression_spdx: GPL-3.0-only - from_file: - start_line: 585 - end_line: 585 - matcher: 2-aho - score: '100.0' - matched_length: 6 - match_coverage: '100.0' - rule_relevance: 100 - rule_identifier: gpl-3.0_93.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_93.RULE - matched_text: usr/share/common-licenses/GPL-3' - identifier: gpl_3_0_and_gpl_1_0_plus-9c11f207-d3a8-a6a3-d2a6-46552a959726 - - license_expression: gpl-3.0-plus AND gpl-3.0 - license_expression_spdx: GPL-3.0-or-later AND GPL-3.0-only + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 3. + + On Debian systems, the complete text of version 3 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-3' + identifier: gpl_3_0-ca3deef1-4116-da6c-5934-e8d444e8ba19 + - license_expression: gpl-3.0-plus + license_expression_spdx: GPL-3.0-or-later matches: - license_expression: gpl-3.0-plus license_expression_spdx: GPL-3.0-or-later @@ -652,48 +544,23 @@ other_license_detections: license_expression_spdx: GPL-3.0-or-later from_file: start_line: 588 - end_line: 591 - matcher: 2-aho + end_line: 594 + matcher: 1-hash score: '100.0' - matched_length: 39 + matched_length: 64 match_coverage: '100.0' rule_relevance: 100 - rule_identifier: gpl-3.0-plus_284.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_284.RULE + rule_identifier: gpl-3.0-plus_607.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_607.RULE matched_text: | This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. - - license_expression: gpl-3.0 - license_expression_spdx: GPL-3.0-only - from_file: - start_line: 593 - end_line: 594 - matcher: 2-aho - score: '100.0' - matched_length: 8 - match_coverage: '100.0' - rule_relevance: 100 - rule_identifier: gpl-3.0_237.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_237.RULE - matched_text: | - version 3 of the GNU General - Public License - - license_expression: gpl-3.0 - license_expression_spdx: GPL-3.0-only - from_file: - start_line: 594 - end_line: 594 - matcher: 2-aho - score: '100.0' - matched_length: 6 - match_coverage: '100.0' - rule_relevance: 100 - rule_identifier: gpl-3.0_93.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_93.RULE - matched_text: usr/share/common-licenses/GPL-3' - identifier: gpl_3_0_plus_and_gpl_3_0-3e5fdf20-1437-7ca2-c0cd-475f7307fbbb + + On Debian systems, the complete text of version 3 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-3' + identifier: gpl_3_0_plus-283ad538-b529-e278-bc29-e5df40e55a0a - license_expression: isc license_expression_spdx: ISC matches: diff --git a/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/f/freeorion/stable_copyright-detailed.expected.yml b/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/f/freeorion/stable_copyright-detailed.expected.yml index 17f840c700..5999530da6 100644 --- a/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/f/freeorion/stable_copyright-detailed.expected.yml +++ b/tests/packagedcode/data/debian/copyright/debian-2019-11-15/main/f/freeorion/stable_copyright-detailed.expected.yml @@ -251,12 +251,12 @@ other_license_detections: start_line: 146 end_line: 521 matcher: 3-seq - score: '99.82' - matched_length: 3348 - match_coverage: '99.82' + score: '99.97' + matched_length: 3347 + match_coverage: '99.97' rule_relevance: 100 - rule_identifier: cc-by-sa-3.0_41.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-sa-3.0_41.RULE + rule_identifier: cc-by-sa-3.0_86.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-sa-3.0_86.RULE matched_text: | Creative Commons Attribution-ShareAlike 3.0 Unported ․ @@ -634,7 +634,7 @@ other_license_detections: does not form part of the License. ․ Creative Commons may be contacted at http://creativecommons.org/. - identifier: cc_by_sa_3_0-33d6e24f-4dca-f73d-ade0-52b78a9bc1e8 + identifier: cc_by_sa_3_0-74f95720-661a-f9ed-42d1-d686fac86ea0 - license_expression: bitstream license_expression_spdx: Bitstream-Vera matches: diff --git a/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/coreutils/copyright-detailed.expected.yml b/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/coreutils/copyright-detailed.expected.yml index c489532e6e..919d0e6004 100644 --- a/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/coreutils/copyright-detailed.expected.yml +++ b/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/coreutils/copyright-detailed.expected.yml @@ -14,25 +14,17 @@ license_detections: - license_expression: gpl-3.0-plus license_expression_spdx: GPL-3.0-or-later from_file: - start_line: 22 + start_line: 30 end_line: 41 - matcher: 3-seq - score: '81.1' - matched_length: 103 - match_coverage: '81.1' + matcher: 2-aho + score: '100.0' + matched_length: 102 + match_coverage: '100.0' rule_relevance: 100 - rule_identifier: gpl-3.0-plus_487.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_487.RULE + rule_identifier: gpl-3.0-plus_290.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_290.RULE matched_text: | - License - ============================= - - lib/fts.c - --------- - - Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. - - This program is free software: you can redistribute it and/or modify + This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. @@ -44,7 +36,7 @@ license_detections: You should have received a copy of the GNU General Public License along with this program. If not, see . */ - identifier: gpl_3_0_plus-58ef5a2f-7e40-62ff-7783-d9d46c47ccfd + identifier: gpl_3_0_plus-494d0068-7138-a14f-4cbb-fd2137263a4f - license_expression: bsd-new license_expression_spdx: BSD-3-Clause matches: diff --git a/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/findutils/copyright-detailed.expected.yml b/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/findutils/copyright-detailed.expected.yml index 3f84981516..dcea73e895 100644 --- a/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/findutils/copyright-detailed.expected.yml +++ b/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/findutils/copyright-detailed.expected.yml @@ -4,21 +4,21 @@ declared_license_expression_spdx: GPL-3.0-or-later AND GFDL-1.3-or-later other_license_expression: other_license_expression_spdx: license_detections: - - license_expression: gpl-3.0-plus AND gfdl-1.3-plus - license_expression_spdx: GPL-3.0-or-later AND GFDL-1.3-or-later + - license_expression: gpl-3.0-plus + license_expression_spdx: GPL-3.0-or-later matches: - license_expression: gpl-3.0-plus license_expression_spdx: GPL-3.0-or-later from_file: start_line: 49 - end_line: 73 - matcher: 3-seq - score: '87.25' - matched_length: 130 - match_coverage: '87.25' + end_line: 64 + matcher: 2-aho + score: '100.0' + matched_length: 128 + match_coverage: '100.0' rule_relevance: 100 - rule_identifier: gpl-3.0-plus_410.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_410.RULE + rule_identifier: gpl-3.0-plus_288.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_288.RULE matched_text: | This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -36,15 +36,10 @@ license_detections: On Debian GNU/Linux systems, the complete text of the GNU General Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. - - ============================================= - DOCUMENTATION - ---------------------------- - Copyright (C) 1994-2021 Free Software Foundation, Inc. - - Permission is granted to copy, distribute and/or modify this - document under the terms of the GNU Free Documentation License, - Version + identifier: gpl_3_0_plus-5d3fc7ee-d4a6-e758-e035-959d5625a475 + - license_expression: gfdl-1.3-plus + license_expression_spdx: GFDL-1.3-or-later + matches: - license_expression: gfdl-1.3-plus license_expression_spdx: GFDL-1.3-or-later from_file: @@ -69,7 +64,7 @@ license_detections: On Debian GNU/Linux systems, the complete text of the GNU Free Documentation License, Version 1.3 can be found in `/usr/share/common-licenses/GFDL-1.3'. - identifier: gpl_3_0_plus_and_gfdl_1_3_plus-4e26323e-8ec7-12c7-944f-000d6284f4bd + identifier: gfdl_1_3_plus-3948eb51-a2cd-b4ad-a354-c56c2289470f other_license_detections: [] copyright: | Copyright (c) 1990-2021 Free Software Foundation, Inc. diff --git a/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libsepol1/copyright-detailed.expected.yml b/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libsepol1/copyright-detailed.expected.yml index 3e878b6358..8c71cc633b 100644 --- a/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libsepol1/copyright-detailed.expected.yml +++ b/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libsepol1/copyright-detailed.expected.yml @@ -4,23 +4,23 @@ declared_license_expression_spdx: LGPL-2.1-or-later AND GPL-2.0-only other_license_expression: other_license_expression_spdx: license_detections: - - license_expression: lgpl-2.1-plus AND gpl-2.0 - license_expression_spdx: LGPL-2.1-or-later AND GPL-2.0-only + - license_expression: lgpl-2.1-plus + license_expression_spdx: LGPL-2.1-or-later matches: - license_expression: lgpl-2.1-plus license_expression_spdx: LGPL-2.1-or-later from_file: start_line: 16 - end_line: 41 - matcher: 3-seq - score: '89.63' - matched_length: 147 - match_coverage: '89.63' + end_line: 31 + matcher: 2-aho + score: '100.0' + matched_length: 141 + match_coverage: '100.0' rule_relevance: 100 - rule_identifier: lgpl-2.1-plus_312.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_312.RULE + rule_identifier: lgpl-2.1-plus_298.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-2.1-plus_298.RULE matched_text: | - library is free software; you can redistribute it and/or + This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. @@ -36,16 +36,10 @@ license_detections: On Debian GNU/Linux systems, the complete text of the Lesser GNU General Public License can be found in `/usr/share/common-licenses/LGPL'. - - This package is maintained by Manoj Srivastava . - - The Debian specific changes are © 2005-2008, Manoj Srivastava - , and distributed under the terms of the GNU - General Public License, version 2. - - - On Debian GNU/Linux systems, the complete text of the GNU General - Public License can be found in `/usr/share/common-licenses/ + identifier: lgpl_2_1_plus-8a5e2990-4794-788b-8d4c-f58a9743e092 + - license_expression: gpl-2.0 + license_expression_spdx: GPL-2.0-only + matches: - license_expression: gpl-2.0 license_expression_spdx: GPL-2.0-only from_file: @@ -70,7 +64,7 @@ license_detections: . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - identifier: lgpl_2_1_plus_and_gpl_2_0-b692f769-146f-b44e-952a-1c81d2c7cf5e + identifier: gpl_2_0-e6238f93-b011-923d-bb0a-6fe716f20b50 other_license_detections: [] copyright: | Copyright (c) 2003, 2004 Stephen Smalley diff --git a/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libtasn1-6/copyright-detailed.expected.yml b/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libtasn1-6/copyright-detailed.expected.yml index a4ac64e299..2d7860cc8f 100644 --- a/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libtasn1-6/copyright-detailed.expected.yml +++ b/tests/packagedcode/data/debian/copyright/debian-slim-2021-04-07/usr/share/doc/libtasn1-6/copyright-detailed.expected.yml @@ -69,14 +69,14 @@ license_detections: license_expression_spdx: GPL-3.0-or-later from_file: start_line: 50 - end_line: 70 - matcher: 3-seq - score: '85.91' + end_line: 66 + matcher: 2-aho + score: '100.0' matched_length: 128 - match_coverage: '85.91' + match_coverage: '100.0' rule_relevance: 100 - rule_identifier: gpl-3.0-plus_417.RULE - rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_417.RULE + rule_identifier: gpl-3.0-plus_288.RULE + rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_288.RULE matched_text: | This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -95,10 +95,6 @@ license_detections: On Debian GNU/Linux systems, the complete text of the GNU General Public License version 3 can be found in /usr/share/common-licenses/GPL-3. - - - The documentation is distributed under the terms of the GNU Free - Documentation License ( - license_expression: gfdl-1.3 license_expression_spdx: GFDL-1.3-only from_file: @@ -137,7 +133,7 @@ license_detections: On Debian systems a copy of the complete text of the GNU FDL 1.3 can be found in /usr/share/common-licenses/GFDL-1.3. - identifier: gpl_3_0_plus_and_gfdl_1_3_and_gfdl_1_3_plus-20aaaa92-d02e-2c2d-0615-d69acc5b00d5 + identifier: gpl_3_0_plus_and_gfdl_1_3_and_gfdl_1_3_plus-ca4df800-141f-5c15-72b1-19b8df01217e other_license_detections: [] copyright: | Copyright (c) 2000-2020 Free Software Foundation, Inc. diff --git a/tests/packagedcode/data/debian/copyright/simplified-license/stable_copyright.expected.yml b/tests/packagedcode/data/debian/copyright/simplified-license/stable_copyright.expected.yml index 3b056a2133..db9d72f832 100644 --- a/tests/packagedcode/data/debian/copyright/simplified-license/stable_copyright.expected.yml +++ b/tests/packagedcode/data/debian/copyright/simplified-license/stable_copyright.expected.yml @@ -394,10 +394,10 @@ other_license_detections: start_line: 306 end_line: 309 matcher: 2-aho - score: '100.0' + score: '99.0' matched_length: 47 match_coverage: '100.0' - rule_relevance: 100 + rule_relevance: 99 rule_identifier: apache-2.0_1021.RULE rule_url: https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/apache-2.0_1021.RULE matched_text: | @@ -437,7 +437,7 @@ other_license_detections: sources, credits must appear in the documentation. 4. This notice may not be removed or altered. - identifier: apache_2_0_and_hs_regexp-418b8fd9-1905-1ad7-6930-311a90aaf0a7 + identifier: apache_2_0_and_hs_regexp-b58332f1-4f96-ae87-9f3d-691331c863c9 - license_expression: bsd-unchanged license_expression_spdx: LicenseRef-scancode-bsd-unchanged matches: diff --git a/tests/packagedcode/data/license_detection/reference-to-package/fusiondirectory.expected.json b/tests/packagedcode/data/license_detection/reference-to-package/fusiondirectory.expected.json index 9460193dc2..443e78d706 100644 --- a/tests/packagedcode/data/license_detection/reference-to-package/fusiondirectory.expected.json +++ b/tests/packagedcode/data/license_detection/reference-to-package/fusiondirectory.expected.json @@ -5179,7 +5179,7 @@ ] }, { - "identifier": "gpl_2_0_plus_and_gpl_3_0_plus_and_lgpl_2_1_plus_and_lgpl_3_0_plus_and_bsd_new_and_bsd_original_and_mit_and_public_domain_and_other_permissive-9e2a213a-3fc4-9ee3-8e3f-783829530b14", + "identifier": "gpl_2_0_plus_and_gpl_3_0_plus_and_lgpl_2_1_plus_and_lgpl_3_0_plus_and_bsd_new_and_bsd_original_and_mit_and_public_domain_and_other_permissive-019820ec-d1c8-e78d-ff9b-8346652f5932", "license_expression": "gpl-2.0-plus AND gpl-3.0-plus AND lgpl-2.1-plus AND lgpl-3.0-plus AND bsd-new AND bsd-original AND mit AND public-domain AND other-permissive", "license_expression_spdx": "GPL-2.0-or-later AND GPL-3.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-or-later AND BSD-3-Clause AND BSD-4-Clause AND MIT AND LicenseRef-scancode-public-domain AND LicenseRef-scancode-other-permissive", "detection_count": 2, @@ -5270,16 +5270,16 @@ "license_expression_spdx": "BSD-4-Clause", "from_file": "fusiondirectory/debian/copyright", "start_line": 1521, - "end_line": 1521, + "end_line": 1523, "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, + "score": 22.0, + "matched_length": 4, "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "spdx_license_id_bsd-4-clause_for_bsd-original.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "BSD-4-clause" + "rule_relevance": 22, + "rule_identifier": "bsd-original_required_phrase_2.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-original_required_phrase_2.RULE", + "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause\n\nLicense: GPL-2+", + "matched_text_diagnostics": "BSD-4-clause\n\nLicense:" }, { "license_expression": "gpl-2.0-plus", @@ -7133,16 +7133,16 @@ "license_expression_spdx": "BSD-4-Clause", "from_file": "fusiondirectory/debian/copyright", "start_line": 1521, - "end_line": 1521, + "end_line": 1523, "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, + "score": 22.0, + "matched_length": 4, "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "spdx_license_id_bsd-4-clause_for_bsd-original.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "BSD-4-clause" + "rule_relevance": 22, + "rule_identifier": "bsd-original_required_phrase_2.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-original_required_phrase_2.RULE", + "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause\n\nLicense: GPL-2+", + "matched_text_diagnostics": "BSD-4-clause\n\nLicense:" }, { "license_expression": "gpl-2.0-plus", @@ -7402,7 +7402,7 @@ } ], "detection_log": [], - "identifier": "gpl_2_0_plus_and_gpl_3_0_plus_and_lgpl_2_1_plus_and_lgpl_3_0_plus_and_bsd_new_and_bsd_original_and_mit_and_public_domain_and_other_permissive-9e2a213a-3fc4-9ee3-8e3f-783829530b14" + "identifier": "gpl_2_0_plus_and_gpl_3_0_plus_and_lgpl_2_1_plus_and_lgpl_3_0_plus_and_bsd_new_and_bsd_original_and_mit_and_public_domain_and_other_permissive-019820ec-d1c8-e78d-ff9b-8346652f5932" }, { "license_expression": "gpl-2.0-plus", @@ -13748,16 +13748,16 @@ "license_expression_spdx": "BSD-4-Clause", "from_file": "fusiondirectory/debian/copyright", "start_line": 1521, - "end_line": 1521, + "end_line": 1523, "matcher": "2-aho", - "score": 100.0, - "matched_length": 3, + "score": 22.0, + "matched_length": 4, "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "spdx_license_id_bsd-4-clause_for_bsd-original.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/spdx_license_id_bsd-4-clause_for_bsd-original.RULE", - "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause", - "matched_text_diagnostics": "BSD-4-clause" + "rule_relevance": 22, + "rule_identifier": "bsd-original_required_phrase_2.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/bsd-original_required_phrase_2.RULE", + "matched_text": "License: GPL-2+ or GPL-3+ or LGPL-2.1+ or LGPL-3+ or Expat or BSD-3-clause or BSD-4-clause\n\nLicense: GPL-2+", + "matched_text_diagnostics": "BSD-4-clause\n\nLicense:" }, { "license_expression": "gpl-2.0-plus", @@ -14017,7 +14017,7 @@ } ], "detection_log": [], - "identifier": "gpl_2_0_plus_and_gpl_3_0_plus_and_lgpl_2_1_plus_and_lgpl_3_0_plus_and_bsd_new_and_bsd_original_and_mit_and_public_domain_and_other_permissive-9e2a213a-3fc4-9ee3-8e3f-783829530b14" + "identifier": "gpl_2_0_plus_and_gpl_3_0_plus_and_lgpl_2_1_plus_and_lgpl_3_0_plus_and_bsd_new_and_bsd_original_and_mit_and_public_domain_and_other_permissive-019820ec-d1c8-e78d-ff9b-8346652f5932" } ], "license_clues": [], diff --git a/tests/packagedcode/data/license_detection/reference-to-package/samba.expected.json b/tests/packagedcode/data/license_detection/reference-to-package/samba.expected.json index 0db0a27036..af7beb7118 100644 --- a/tests/packagedcode/data/license_detection/reference-to-package/samba.expected.json +++ b/tests/packagedcode/data/license_detection/reference-to-package/samba.expected.json @@ -3,266 +3,52 @@ "dependencies": [], "license_detections": [ { - "identifier": "cc_by_sa_3_0_and_cc_by_sa_4_0_and_dco_1_1-4fb8e409-441a-1243-5a0d-d6af2acc0c62", - "license_expression": "cc-by-sa-3.0 AND cc-by-sa-4.0 AND dco-1.1", - "license_expression_spdx": "CC-BY-SA-3.0 AND CC-BY-SA-4.0 AND LicenseRef-scancode-dco-1.1", - "detection_count": 3, - "detection_log": [], - "reference_matches": [ - { - "license_expression": "cc-by-sa-3.0", - "license_expression_spdx": "CC-BY-SA-3.0", - "from_file": "samba/README.contributing", - "start_line": 121, - "end_line": 122, - "matcher": "3-seq", - "score": 75.0, - "matched_length": 12, - "match_coverage": 75.0, - "rule_relevance": 100, - "rule_identifier": "cc-by-sa-3.0_10.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-sa-3.0_10.RULE", - "matched_text": "licensed under Creative Commons Attribution-ShareAlike 4.0 License as found\nat https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on", - "matched_text_diagnostics": "licensed under Creative Commons Attribution-ShareAlike [4].[0] License [as] [found]\n[at] [https]://creativecommons.org/licenses/by-sa/" - }, - { - "license_expression": "cc-by-sa-4.0", - "license_expression_spdx": "CC-BY-SA-4.0", - "from_file": "samba/README.contributing", - "start_line": 122, - "end_line": 122, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "cc-by-sa-4.0_71.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-sa-4.0_71.RULE", - "matched_text": "at https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on", - "matched_text_diagnostics": "https://creativecommons.org/licenses/by-sa/4.0/legalcode" - }, - { - "license_expression": "dco-1.1", - "license_expression_spdx": "LicenseRef-scancode-dco-1.1", - "from_file": "samba/README.contributing", - "start_line": 123, - "end_line": 123, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 7, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "dco-1.1_2.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/dco-1.1_2.RULE", - "matched_text": "\"Developer's Certificate of Origin 1.1\" as found at", - "matched_text_diagnostics": "Developer's Certificate of Origin 1.1\"" - } - ] - }, - { - "identifier": "gpl_1_0_plus-4347f44c-ada6-f802-86dd-14a96429fac1", - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "detection_count": 3, - "detection_log": [], - "reference_matches": [ - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 63, - "end_line": 63, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_33.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE", - "matched_text": " by me, under the GNU General Public License, in the", - "matched_text_diagnostics": "the GNU General Public License," - } - ] - }, - { - "identifier": "gpl_1_0_plus_and_lgpl_3_0_plus_and_gpl_3_0_and_lgpl_3_0-3bd18dcd-0a4c-d46f-f42e-3d2919be9be0", - "license_expression": "gpl-1.0-plus AND lgpl-3.0-plus AND gpl-3.0 AND lgpl-3.0", - "license_expression_spdx": "GPL-1.0-or-later AND LGPL-3.0-or-later AND GPL-3.0-only AND LGPL-3.0-only", - "detection_count": 3, + "identifier": "gpl_3_0-55d9e83b-e359-63ed-4624-adbae121fa12", + "license_expression": "gpl-3.0", + "license_expression_spdx": "GPL-3.0-only", + "detection_count": 1, "detection_log": [], "reference_matches": [ - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 76, - "end_line": 76, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl_bare_gnu_gpl.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl_bare_gnu_gpl.RULE", - "matched_text": " requirements of the GNU GPL where they are relevant.", - "matched_text_diagnostics": "GNU GPL" - }, - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 79, - "end_line": 79, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_33.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE", - "matched_text": " the GNU General Public License and the GNU Lesser General Public", - "matched_text_diagnostics": "the GNU General Public License" - }, - { - "license_expression": "lgpl-3.0-plus", - "license_expression_spdx": "LGPL-3.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 79, - "end_line": 81, - "matcher": "3-seq", - "score": 47.22, - "matched_length": 17, - "match_coverage": 47.22, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0-plus_103.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_103.RULE", - "matched_text": " the GNU General Public License and the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of these Licenses, or (at the option of the project) any later", - "matched_text_diagnostics": "the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of" - }, { "license_expression": "gpl-3.0", "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 84, - "end_line": 84, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_12.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_12.RULE", - "matched_text": " http://www.gnu.org/licenses/gpl-3.0.html", - "matched_text_diagnostics": "http://www.gnu.org/licenses/gpl-3.0.html" - }, - { - "license_expression": "lgpl-3.0", - "license_expression_spdx": "LGPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 85, - "end_line": 85, + "from_file": "samba/source3/locale/net/de.po", + "start_line": 4, + "end_line": 4, "matcher": "2-aho", "score": 100.0, - "matched_length": 9, + "matched_length": 12, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "lgpl-3.0_1.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0_1.RULE", - "matched_text": " http://www.gnu.org/licenses/lgpl-3.0.html", - "matched_text_diagnostics": "http://www.gnu.org/licenses/lgpl-3.0.html" - } - ] - }, - { - "identifier": "gpl_2_0-29c387aa-50e0-0530-7b0b-aa32e3c372d6", - "license_expression": "gpl-2.0", - "license_expression_spdx": "GPL-2.0-only", - "detection_count": 3, - "detection_log": [], - "reference_matches": [ - { - "license_expression": "gpl-2.0", - "license_expression_spdx": "GPL-2.0-only", - "from_file": "samba/README.md", - "start_line": 6, - "end_line": 6, - "matcher": "3-seq", - "score": 81.82, - "matched_length": 9, - "match_coverage": 81.82, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0_1142.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1142.RULE", - "matched_text": "Samba is Free Software licensed under the GNU General Public License and", - "matched_text_diagnostics": "Free Software licensed under the GNU General Public License" + "rule_identifier": "gpl-3.0_614.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_614.RULE", + "matched_text": "# This file is distributed under the same license as the samba package.", + "matched_text_diagnostics": "This file is distributed under the same license as the samba package." } ] }, { - "identifier": "gpl_3_0-ab79e5a8-e510-cbf4-5302-ef968484bcdf", + "identifier": "gpl_3_0-aadebca9-8205-5b47-d989-c2c794d4fe31", "license_expression": "gpl-3.0", "license_expression_spdx": "GPL-3.0-only", - "detection_count": 3, + "detection_count": 1, "detection_log": [], "reference_matches": [ { "license_expression": "gpl-3.0", "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/COPYING", - "start_line": 1, - "end_line": 674, - "matcher": "1-hash", - "score": 100.0, - "matched_length": 5514, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_204.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_204.RULE", - "matched_text": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n.", - "matched_text_diagnostics": "GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n." - } - ] - }, - { - "identifier": "gpl_3_0-db305a6e-7013-4ffa-0ad4-09f113582e67", - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "detection_count": 3, - "detection_log": [ - "unknown-reference-to-local-file" - ], - "reference_matches": [ - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", "from_file": "samba/README.md", - "start_line": 22, - "end_line": 24, + "start_line": 6, + "end_line": 6, "matcher": "2-aho", "score": 100.0, - "matched_length": 24, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_579.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_579.RULE", - "matched_text": "This software is freely distributable under the GNU public license, a\ncopy of which you should have received with this software (in a file\ncalled COPYING).", - "matched_text_diagnostics": "This software is freely distributable under the GNU public license, a\ncopy of which you should have received with this software (in a file\ncalled COPYING)." - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/COPYING", - "start_line": 1, - "end_line": 674, - "matcher": "1-hash", - "score": 100.0, - "matched_length": 5514, + "matched_length": 11, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "gpl-3.0_204.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_204.RULE", - "matched_text": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n.", - "matched_text_diagnostics": "GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n." + "rule_identifier": "gpl-3.0_610.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_610.RULE", + "matched_text": "Samba is Free Software licensed under the GNU General Public License and", + "matched_text_diagnostics": "Samba is Free Software licensed under the GNU General Public License" } ] }, @@ -270,7 +56,7 @@ "identifier": "gpl_3_0_and_lgpl_3_0_and_gpl_2_0-ee9a67a8-9de9-86d0-077b-8e6f7f285b72", "license_expression": "gpl-3.0 AND lgpl-3.0 AND gpl-2.0", "license_expression_spdx": "GPL-3.0-only AND LGPL-3.0-only AND GPL-2.0-only", - "detection_count": 3, + "detection_count": 1, "detection_log": [], "reference_matches": [ { @@ -324,395 +110,169 @@ ] }, { - "identifier": "gpl_3_0_and_lgpl_3_0_and_gpl_2_0_and_gpl_1_0_plus_and_lgpl_3_0_plus_and_cc_by_sa_3_0_and_cc_by_sa_4_0_and_dco_1_1-91b1ed8a-fad5-77d3-29d0-7667c29ee122", - "license_expression": "gpl-3.0 AND lgpl-3.0 AND gpl-2.0 AND gpl-1.0-plus AND lgpl-3.0-plus AND cc-by-sa-3.0 AND cc-by-sa-4.0 AND dco-1.1", - "license_expression_spdx": "GPL-3.0-only AND LGPL-3.0-only AND GPL-2.0-only AND GPL-1.0-or-later AND LGPL-3.0-or-later AND CC-BY-SA-3.0 AND CC-BY-SA-4.0 AND LicenseRef-scancode-dco-1.1", - "detection_count": 1, - "detection_log": [ - "unknown-reference-to-local-file" - ], + "identifier": "gpl_3_0_plus-494d0068-7138-a14f-4cbb-fd2137263a4f", + "license_expression": "gpl-3.0-plus", + "license_expression_spdx": "GPL-3.0-or-later", + "detection_count": 2, + "detection_log": [], "reference_matches": [ { - "license_expression": "free-unknown", - "license_expression_spdx": "LicenseRef-scancode-free-unknown", - "from_file": "samba/source3/locale/net/de.po", - "start_line": 4, - "end_line": 4, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 10, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "free-unknown-package_4.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/free-unknown-package_4.RULE", - "matched_text": "# This file is distributed under the same license as the samba package.", - "matched_text_diagnostics": "This file is distributed under the same license as the" - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", + "license_expression": "gpl-3.0-plus", + "license_expression_spdx": "GPL-3.0-or-later", "from_file": "samba/COPYING", "start_line": 1, - "end_line": 674, + "end_line": 12, "matcher": "1-hash", "score": 100.0, - "matched_length": 5514, + "matched_length": 102, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "gpl-3.0_204.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_204.RULE", - "matched_text": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n.", - "matched_text_diagnostics": "GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n." - }, + "rule_identifier": "gpl-3.0-plus_290.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_290.RULE", + "matched_text": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, see .", + "matched_text_diagnostics": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, see ." + } + ] + }, + { + "identifier": "gpl_3_0_plus-fad3026d-9056-eade-07fd-2e4fba38e5f9", + "license_expression": "gpl-3.0-plus", + "license_expression_spdx": "GPL-3.0-or-later", + "detection_count": 1, + "detection_log": [ + "unknown-reference-to-local-file" + ], + "reference_matches": [ { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 38, - "end_line": 38, + "license_expression": "gpl-1.0-plus", + "license_expression_spdx": "GPL-1.0-or-later", + "from_file": "samba/README.md", + "start_line": 22, + "end_line": 24, "matcher": "2-aho", "score": 100.0, - "matched_length": 1, + "matched_length": 24, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "gpl-3.0_32.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_32.RULE", - "matched_text": "accommodate the licenses we use, which are GPLv3 and LGPLv3 (or later)", - "matched_text_diagnostics": "GPLv3" + "rule_identifier": "gpl-1.0-plus_579.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_579.RULE", + "matched_text": "This software is freely distributable under the GNU public license, a\ncopy of which you should have received with this software (in a file\ncalled COPYING).", + "matched_text_diagnostics": "This software is freely distributable under the GNU public license, a\ncopy of which you should have received with this software (in a file\ncalled COPYING)." }, { - "license_expression": "lgpl-3.0", - "license_expression_spdx": "LGPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 38, - "end_line": 38, - "matcher": "2-aho", + "license_expression": "gpl-3.0-plus", + "license_expression_spdx": "GPL-3.0-or-later", + "from_file": "samba/COPYING", + "start_line": 1, + "end_line": 12, + "matcher": "1-hash", "score": 100.0, - "matched_length": 1, + "matched_length": 102, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "lgpl-3.0_29.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0_29.RULE", - "matched_text": "accommodate the licenses we use, which are GPLv3 and LGPLv3 (or later)", - "matched_text_diagnostics": "LGPLv3 (" - }, + "rule_identifier": "gpl-3.0-plus_290.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_290.RULE", + "matched_text": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, see .", + "matched_text_diagnostics": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, see ." + } + ] + }, + { + "identifier": "samba_dco_1_0-3c39efe1-d34a-ae12-ea1a-aba6857f6f3a", + "license_expression": "samba-dco-1.0", + "license_expression_spdx": "LicenseRef-scancode-samba-dco-1.0", + "detection_count": 1, + "detection_log": [], + "reference_matches": [ { - "license_expression": "gpl-2.0", - "license_expression_spdx": "GPL-2.0-only", + "license_expression": "samba-dco-1.0", + "license_expression_spdx": "LicenseRef-scancode-samba-dco-1.0", "from_file": "samba/README.contributing", - "start_line": 39, - "end_line": 39, + "start_line": 51, + "end_line": 85, "matcher": "2-aho", "score": 100.0, - "matched_length": 1, + "matched_length": 250, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "gpl-2.0_bare_single_word.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_bare_single_word.RULE", - "matched_text": "whereas the Linux kernel uses GPLv2.", - "matched_text_diagnostics": "GPLv2." - }, + "rule_identifier": "samba-dco-1.0.LICENSE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/samba-dco-1.0.LICENSE", + "matched_text": "Samba Developer's Declaration, Version 1.0\n\nBy making a contribution to this project, I certify that:\n\n(a) The contribution was created in whole or in part by me and I\n have the right to submit it under the appropriate\n version of the GNU General Public License; or\n\n(b) The contribution is based upon previous work that, to the best\n of my knowledge, is covered under an appropriate open source\n license and I have the right under that license to submit that\n work with modifications, whether created in whole or in part\n by me, under the GNU General Public License, in the\n appropriate version; or\n\n(c) The contribution was provided directly to me by some other\n person who certified (a) or (b) and I have not modified\n it.\n\n(d) I understand and agree that this project and the\n contribution are public and that a record of the\n contribution (including all metadata and personal\n information I submit with it, including my sign-off) is\n maintained indefinitely and may be redistributed\n consistent with the Samba Team's policies and the\n requirements of the GNU GPL where they are relevant.\n\n(e) I am granting this work to this project under the terms of both\n the GNU General Public License and the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of these Licenses, or (at the option of the project) any later\n version.\n\n http://www.gnu.org/licenses/gpl-3.0.html\n http://www.gnu.org/licenses/lgpl-3.0.html", + "matched_text_diagnostics": "Samba Developer's Declaration, Version 1.0\n\nBy making a contribution to this project, I certify that:\n\n(a) The contribution was created in whole or in part by me and I\n have the right to submit it under the appropriate\n version of the GNU General Public License; or\n\n(b) The contribution is based upon previous work that, to the best\n of my knowledge, is covered under an appropriate open source\n license and I have the right under that license to submit that\n work with modifications, whether created in whole or in part\n by me, under the GNU General Public License, in the\n appropriate version; or\n\n(c) The contribution was provided directly to me by some other\n person who certified (a) or (b) and I have not modified\n it.\n\n(d) I understand and agree that this project and the\n contribution are public and that a record of the\n contribution (including all metadata and personal\n information I submit with it, including my sign-off) is\n maintained indefinitely and may be redistributed\n consistent with the Samba Team's policies and the\n requirements of the GNU GPL where they are relevant.\n\n(e) I am granting this work to this project under the terms of both\n the GNU General Public License and the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of these Licenses, or (at the option of the project) any later\n version.\n\n http://www.gnu.org/licenses/gpl-3.0.html\n http://www.gnu.org/licenses/lgpl-3.0.html" + } + ] + }, + { + "identifier": "samba_dco_1_0_and_dco_1_1_and_cc_by_sa_4_0-707bf046-bcf5-b1b0-c76f-8a8277819284", + "license_expression": "samba-dco-1.0 AND dco-1.1 AND cc-by-sa-4.0", + "license_expression_spdx": "LicenseRef-scancode-samba-dco-1.0 AND LicenseRef-scancode-dco-1.1 AND CC-BY-SA-4.0", + "detection_count": 1, + "detection_log": [], + "reference_matches": [ { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", + "license_expression": "samba-dco-1.0 AND dco-1.1 AND cc-by-sa-4.0", + "license_expression_spdx": "LicenseRef-scancode-samba-dco-1.0 AND LicenseRef-scancode-dco-1.1 AND CC-BY-SA-4.0", "from_file": "samba/README.contributing", - "start_line": 63, - "end_line": 63, + "start_line": 117, + "end_line": 124, "matcher": "2-aho", "score": 100.0, - "matched_length": 5, + "matched_length": 74, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_33.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE", - "matched_text": " by me, under the GNU General Public License, in the", - "matched_text_diagnostics": "the GNU General Public License," - }, - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 76, - "end_line": 76, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl_bare_gnu_gpl.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl_bare_gnu_gpl.RULE", - "matched_text": " requirements of the GNU GPL where they are relevant.", - "matched_text_diagnostics": "GNU GPL" - }, - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 79, - "end_line": 79, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_33.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE", - "matched_text": " the GNU General Public License and the GNU Lesser General Public", - "matched_text_diagnostics": "the GNU General Public License" - }, - { - "license_expression": "lgpl-3.0-plus", - "license_expression_spdx": "LGPL-3.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 79, - "end_line": 81, - "matcher": "3-seq", - "score": 47.22, - "matched_length": 17, - "match_coverage": 47.22, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0-plus_103.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_103.RULE", - "matched_text": " the GNU General Public License and the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of these Licenses, or (at the option of the project) any later", - "matched_text_diagnostics": "the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of" - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 84, - "end_line": 84, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_12.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_12.RULE", - "matched_text": " http://www.gnu.org/licenses/gpl-3.0.html", - "matched_text_diagnostics": "http://www.gnu.org/licenses/gpl-3.0.html" - }, - { - "license_expression": "lgpl-3.0", - "license_expression_spdx": "LGPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 85, - "end_line": 85, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0_1.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0_1.RULE", - "matched_text": " http://www.gnu.org/licenses/lgpl-3.0.html", - "matched_text_diagnostics": "http://www.gnu.org/licenses/lgpl-3.0.html" - }, - { - "license_expression": "cc-by-sa-3.0", - "license_expression_spdx": "CC-BY-SA-3.0", - "from_file": "samba/README.contributing", - "start_line": 121, - "end_line": 122, - "matcher": "3-seq", - "score": 75.0, - "matched_length": 12, - "match_coverage": 75.0, - "rule_relevance": 100, - "rule_identifier": "cc-by-sa-3.0_10.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-sa-3.0_10.RULE", - "matched_text": "licensed under Creative Commons Attribution-ShareAlike 4.0 License as found\nat https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on", - "matched_text_diagnostics": "licensed under Creative Commons Attribution-ShareAlike [4].[0] License [as] [found]\n[at] [https]://creativecommons.org/licenses/by-sa/" - }, - { - "license_expression": "cc-by-sa-4.0", - "license_expression_spdx": "CC-BY-SA-4.0", - "from_file": "samba/README.contributing", - "start_line": 122, - "end_line": 122, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "cc-by-sa-4.0_71.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-sa-4.0_71.RULE", - "matched_text": "at https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on", - "matched_text_diagnostics": "https://creativecommons.org/licenses/by-sa/4.0/legalcode" - }, - { - "license_expression": "dco-1.1", - "license_expression_spdx": "LicenseRef-scancode-dco-1.1", - "from_file": "samba/README.contributing", - "start_line": 123, - "end_line": 123, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 7, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "dco-1.1_2.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/dco-1.1_2.RULE", - "matched_text": "\"Developer's Certificate of Origin 1.1\" as found at", - "matched_text_diagnostics": "Developer's Certificate of Origin 1.1\"" - }, - { - "license_expression": "gpl-2.0", - "license_expression_spdx": "GPL-2.0-only", - "from_file": "samba/README.md", - "start_line": 6, - "end_line": 6, - "matcher": "3-seq", - "score": 81.82, - "matched_length": 9, - "match_coverage": 81.82, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0_1142.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1142.RULE", - "matched_text": "Samba is Free Software licensed under the GNU General Public License and", - "matched_text_diagnostics": "Free Software licensed under the GNU General Public License" - }, - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.md", - "start_line": 22, - "end_line": 24, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 24, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_579.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_579.RULE", - "matched_text": "This software is freely distributable under the GNU public license, a\ncopy of which you should have received with this software (in a file\ncalled COPYING).", - "matched_text_diagnostics": "This software is freely distributable under the GNU public license, a\ncopy of which you should have received with this software (in a file\ncalled COPYING)." - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/COPYING", - "start_line": 1, - "end_line": 674, - "matcher": "1-hash", - "score": 100.0, - "matched_length": 5514, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_204.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_204.RULE", - "matched_text": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n.", - "matched_text_diagnostics": "GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n." - } - ] - }, - { - "identifier": "gpl_3_0_plus-494d0068-7138-a14f-4cbb-fd2137263a4f", - "license_expression": "gpl-3.0-plus", - "license_expression_spdx": "GPL-3.0-or-later", - "detection_count": 1, - "detection_log": [], - "reference_matches": [ + "rule_identifier": "samba-dco-1.0_and_dco-1.1_and_cc-by-sa-4.0_1.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/samba-dco-1.0_and_dco-1.1_and_cc-by-sa-4.0_1.RULE", + "matched_text": "The \"Samba Developer's Declaration, Version 1.0\" is:\n (C) 2011 Software Freedom Conservancy, Inc.\n (C) 2005 Open Source Development Labs, Inc.\n\nlicensed under Creative Commons Attribution-ShareAlike 4.0 License as found\nat https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on\n\"Developer's Certificate of Origin 1.1\" as found at\nhttp://web.archive.org/web/20070306195036/http://osdlab.org/newsroom/press_releases/2004/2004_05_24_dco.html", + "matched_text_diagnostics": "The \"Samba Developer's Declaration, Version 1.0\" is:\n (C) 2011 Software Freedom Conservancy, Inc.\n (C) 2005 Open Source Development Labs, Inc.\n\nlicensed under Creative Commons Attribution-ShareAlike 4.0 License as found\nat https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on\n\"Developer's Certificate of Origin 1.1\" as found at\nhttp://web.archive.org/web/20070306195036/http://osdlab.org/newsroom/press_releases/2004/2004_05_24_dco.html" + } + ] + } + ], + "files": [ + { + "path": "COPYING", + "type": "file", + "package_data": [], + "for_packages": [], + "detected_license_expression": "gpl-3.0-plus", + "detected_license_expression_spdx": "GPL-3.0-or-later", + "license_detections": [ { "license_expression": "gpl-3.0-plus", "license_expression_spdx": "GPL-3.0-or-later", - "from_file": "samba/source3/locale/net/genmsg", - "start_line": 5, - "end_line": 16, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 102, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0-plus_290.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_290.RULE", - "matched_text": "# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, see .", - "matched_text_diagnostics": "This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 3 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, see ." - } - ] - } - ], - "files": [ - { - "path": "COPYING", - "type": "file", - "package_data": [], - "for_packages": [], - "detected_license_expression": "gpl-3.0", - "detected_license_expression_spdx": "GPL-3.0-only", - "license_detections": [ - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", "matches": [ { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", + "license_expression": "gpl-3.0-plus", + "license_expression_spdx": "GPL-3.0-or-later", "from_file": "samba/COPYING", "start_line": 1, - "end_line": 674, + "end_line": 12, "matcher": "1-hash", "score": 100.0, - "matched_length": 5514, + "matched_length": 102, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "gpl-3.0_204.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_204.RULE", - "matched_text": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n.", - "matched_text_diagnostics": "GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n." + "rule_identifier": "gpl-3.0-plus_290.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_290.RULE", + "matched_text": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, see .", + "matched_text_diagnostics": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, see ." } ], "detection_log": [], - "identifier": "gpl_3_0-ab79e5a8-e510-cbf4-5302-ef968484bcdf" + "identifier": "gpl_3_0_plus-494d0068-7138-a14f-4cbb-fd2137263a4f" } ], "license_clues": [], "percentage_of_license_text": 100.0, "scan_errors": [] }, - { - "path": "Makefile", - "type": "file", - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "scan_errors": [] - }, - { - "path": "README.Coding.md", - "type": "file", - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "scan_errors": [] - }, - { - "path": "README.cifs-utils", - "type": "file", - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "scan_errors": [] - }, { "path": "README.contributing", "type": "file", "package_data": [], "for_packages": [], - "detected_license_expression": "(gpl-3.0 AND lgpl-3.0 AND gpl-2.0) AND gpl-1.0-plus AND (gpl-1.0-plus AND lgpl-3.0-plus AND gpl-3.0 AND lgpl-3.0) AND (cc-by-sa-3.0 AND cc-by-sa-4.0 AND dco-1.1)", - "detected_license_expression_spdx": "(GPL-3.0-only AND LGPL-3.0-only AND GPL-2.0-only) AND GPL-1.0-or-later AND (GPL-1.0-or-later AND LGPL-3.0-or-later AND GPL-3.0-only AND LGPL-3.0-only) AND (CC-BY-SA-3.0 AND CC-BY-SA-4.0 AND LicenseRef-scancode-dco-1.1)", + "detected_license_expression": "(gpl-3.0 AND lgpl-3.0 AND gpl-2.0) AND samba-dco-1.0 AND (samba-dco-1.0 AND dco-1.1 AND cc-by-sa-4.0)", + "detected_license_expression_spdx": "(GPL-3.0-only AND LGPL-3.0-only AND GPL-2.0-only) AND LicenseRef-scancode-samba-dco-1.0 AND (LicenseRef-scancode-samba-dco-1.0 AND LicenseRef-scancode-dco-1.1 AND CC-BY-SA-4.0)", "license_detections": [ { "license_expression": "gpl-3.0 AND lgpl-3.0 AND gpl-2.0", @@ -771,209 +331,56 @@ "identifier": "gpl_3_0_and_lgpl_3_0_and_gpl_2_0-ee9a67a8-9de9-86d0-077b-8e6f7f285b72" }, { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "matches": [ - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 63, - "end_line": 63, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_33.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE", - "matched_text": " by me, under the GNU General Public License, in the", - "matched_text_diagnostics": "the GNU General Public License," - } - ], - "detection_log": [], - "identifier": "gpl_1_0_plus-4347f44c-ada6-f802-86dd-14a96429fac1" - }, - { - "license_expression": "gpl-1.0-plus AND lgpl-3.0-plus AND gpl-3.0 AND lgpl-3.0", - "license_expression_spdx": "GPL-1.0-or-later AND LGPL-3.0-or-later AND GPL-3.0-only AND LGPL-3.0-only", + "license_expression": "samba-dco-1.0", + "license_expression_spdx": "LicenseRef-scancode-samba-dco-1.0", "matches": [ { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 76, - "end_line": 76, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl_bare_gnu_gpl.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl_bare_gnu_gpl.RULE", - "matched_text": " requirements of the GNU GPL where they are relevant.", - "matched_text_diagnostics": "GNU GPL" - }, - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 79, - "end_line": 79, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_33.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE", - "matched_text": " the GNU General Public License and the GNU Lesser General Public", - "matched_text_diagnostics": "the GNU General Public License" - }, - { - "license_expression": "lgpl-3.0-plus", - "license_expression_spdx": "LGPL-3.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 79, - "end_line": 81, - "matcher": "3-seq", - "score": 47.22, - "matched_length": 17, - "match_coverage": 47.22, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0-plus_103.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_103.RULE", - "matched_text": " the GNU General Public License and the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of these Licenses, or (at the option of the project) any later", - "matched_text_diagnostics": "the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of" - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 84, - "end_line": 84, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_12.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_12.RULE", - "matched_text": " http://www.gnu.org/licenses/gpl-3.0.html", - "matched_text_diagnostics": "http://www.gnu.org/licenses/gpl-3.0.html" - }, - { - "license_expression": "lgpl-3.0", - "license_expression_spdx": "LGPL-3.0-only", + "license_expression": "samba-dco-1.0", + "license_expression_spdx": "LicenseRef-scancode-samba-dco-1.0", "from_file": "samba/README.contributing", - "start_line": 85, + "start_line": 51, "end_line": 85, "matcher": "2-aho", "score": 100.0, - "matched_length": 9, + "matched_length": 250, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "lgpl-3.0_1.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0_1.RULE", - "matched_text": " http://www.gnu.org/licenses/lgpl-3.0.html", - "matched_text_diagnostics": "http://www.gnu.org/licenses/lgpl-3.0.html" + "rule_identifier": "samba-dco-1.0.LICENSE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/licenses/samba-dco-1.0.LICENSE", + "matched_text": "Samba Developer's Declaration, Version 1.0\n\nBy making a contribution to this project, I certify that:\n\n(a) The contribution was created in whole or in part by me and I\n have the right to submit it under the appropriate\n version of the GNU General Public License; or\n\n(b) The contribution is based upon previous work that, to the best\n of my knowledge, is covered under an appropriate open source\n license and I have the right under that license to submit that\n work with modifications, whether created in whole or in part\n by me, under the GNU General Public License, in the\n appropriate version; or\n\n(c) The contribution was provided directly to me by some other\n person who certified (a) or (b) and I have not modified\n it.\n\n(d) I understand and agree that this project and the\n contribution are public and that a record of the\n contribution (including all metadata and personal\n information I submit with it, including my sign-off) is\n maintained indefinitely and may be redistributed\n consistent with the Samba Team's policies and the\n requirements of the GNU GPL where they are relevant.\n\n(e) I am granting this work to this project under the terms of both\n the GNU General Public License and the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of these Licenses, or (at the option of the project) any later\n version.\n\n http://www.gnu.org/licenses/gpl-3.0.html\n http://www.gnu.org/licenses/lgpl-3.0.html", + "matched_text_diagnostics": "Samba Developer's Declaration, Version 1.0\n\nBy making a contribution to this project, I certify that:\n\n(a) The contribution was created in whole or in part by me and I\n have the right to submit it under the appropriate\n version of the GNU General Public License; or\n\n(b) The contribution is based upon previous work that, to the best\n of my knowledge, is covered under an appropriate open source\n license and I have the right under that license to submit that\n work with modifications, whether created in whole or in part\n by me, under the GNU General Public License, in the\n appropriate version; or\n\n(c) The contribution was provided directly to me by some other\n person who certified (a) or (b) and I have not modified\n it.\n\n(d) I understand and agree that this project and the\n contribution are public and that a record of the\n contribution (including all metadata and personal\n information I submit with it, including my sign-off) is\n maintained indefinitely and may be redistributed\n consistent with the Samba Team's policies and the\n requirements of the GNU GPL where they are relevant.\n\n(e) I am granting this work to this project under the terms of both\n the GNU General Public License and the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of these Licenses, or (at the option of the project) any later\n version.\n\n http://www.gnu.org/licenses/gpl-3.0.html\n http://www.gnu.org/licenses/lgpl-3.0.html" } ], "detection_log": [], - "identifier": "gpl_1_0_plus_and_lgpl_3_0_plus_and_gpl_3_0_and_lgpl_3_0-3bd18dcd-0a4c-d46f-f42e-3d2919be9be0" + "identifier": "samba_dco_1_0-3c39efe1-d34a-ae12-ea1a-aba6857f6f3a" }, { - "license_expression": "cc-by-sa-3.0 AND cc-by-sa-4.0 AND dco-1.1", - "license_expression_spdx": "CC-BY-SA-3.0 AND CC-BY-SA-4.0 AND LicenseRef-scancode-dco-1.1", + "license_expression": "samba-dco-1.0 AND dco-1.1 AND cc-by-sa-4.0", + "license_expression_spdx": "LicenseRef-scancode-samba-dco-1.0 AND LicenseRef-scancode-dco-1.1 AND CC-BY-SA-4.0", "matches": [ { - "license_expression": "cc-by-sa-3.0", - "license_expression_spdx": "CC-BY-SA-3.0", - "from_file": "samba/README.contributing", - "start_line": 121, - "end_line": 122, - "matcher": "3-seq", - "score": 75.0, - "matched_length": 12, - "match_coverage": 75.0, - "rule_relevance": 100, - "rule_identifier": "cc-by-sa-3.0_10.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-sa-3.0_10.RULE", - "matched_text": "licensed under Creative Commons Attribution-ShareAlike 4.0 License as found\nat https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on", - "matched_text_diagnostics": "licensed under Creative Commons Attribution-ShareAlike [4].[0] License [as] [found]\n[at] [https]://creativecommons.org/licenses/by-sa/" - }, - { - "license_expression": "cc-by-sa-4.0", - "license_expression_spdx": "CC-BY-SA-4.0", - "from_file": "samba/README.contributing", - "start_line": 122, - "end_line": 122, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "cc-by-sa-4.0_71.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-sa-4.0_71.RULE", - "matched_text": "at https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on", - "matched_text_diagnostics": "https://creativecommons.org/licenses/by-sa/4.0/legalcode" - }, - { - "license_expression": "dco-1.1", - "license_expression_spdx": "LicenseRef-scancode-dco-1.1", + "license_expression": "samba-dco-1.0 AND dco-1.1 AND cc-by-sa-4.0", + "license_expression_spdx": "LicenseRef-scancode-samba-dco-1.0 AND LicenseRef-scancode-dco-1.1 AND CC-BY-SA-4.0", "from_file": "samba/README.contributing", - "start_line": 123, - "end_line": 123, + "start_line": 117, + "end_line": 124, "matcher": "2-aho", "score": 100.0, - "matched_length": 7, + "matched_length": 74, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "dco-1.1_2.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/dco-1.1_2.RULE", - "matched_text": "\"Developer's Certificate of Origin 1.1\" as found at", - "matched_text_diagnostics": "Developer's Certificate of Origin 1.1\"" + "rule_identifier": "samba-dco-1.0_and_dco-1.1_and_cc-by-sa-4.0_1.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/samba-dco-1.0_and_dco-1.1_and_cc-by-sa-4.0_1.RULE", + "matched_text": "The \"Samba Developer's Declaration, Version 1.0\" is:\n (C) 2011 Software Freedom Conservancy, Inc.\n (C) 2005 Open Source Development Labs, Inc.\n\nlicensed under Creative Commons Attribution-ShareAlike 4.0 License as found\nat https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on\n\"Developer's Certificate of Origin 1.1\" as found at\nhttp://web.archive.org/web/20070306195036/http://osdlab.org/newsroom/press_releases/2004/2004_05_24_dco.html", + "matched_text_diagnostics": "The \"Samba Developer's Declaration, Version 1.0\" is:\n (C) 2011 Software Freedom Conservancy, Inc.\n (C) 2005 Open Source Development Labs, Inc.\n\nlicensed under Creative Commons Attribution-ShareAlike 4.0 License as found\nat https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on\n\"Developer's Certificate of Origin 1.1\" as found at\nhttp://web.archive.org/web/20070306195036/http://osdlab.org/newsroom/press_releases/2004/2004_05_24_dco.html" } ], "detection_log": [], - "identifier": "cc_by_sa_3_0_and_cc_by_sa_4_0_and_dco_1_1-4fb8e409-441a-1243-5a0d-d6af2acc0c62" - } - ], - "license_clues": [ - { - "license_expression": "gpl-2.0-plus", - "license_expression_spdx": "GPL-2.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 57, - "end_line": 57, - "matcher": "3-seq", - "score": 20.0, - "matched_length": 6, - "match_coverage": 20.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0-plus_627.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0-plus_627.RULE", - "matched_text": " version of the GNU General Public License; or", - "matched_text_diagnostics": "of the GNU General Public License;" - }, - { - "license_expression": "free-unknown", - "license_expression_spdx": "LicenseRef-scancode-free-unknown", - "from_file": "samba/README.contributing", - "start_line": 60, - "end_line": 61, - "matcher": "2-aho", - "score": 50.0, - "matched_length": 3, - "match_coverage": 100.0, - "rule_relevance": 50, - "rule_identifier": "free-unknown_88.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/free-unknown_88.RULE", - "matched_text": " of my knowledge, is covered under an appropriate open source\n license and I have the right under that license to submit that", - "matched_text_diagnostics": "open source\n license" + "identifier": "samba_dco_1_0_and_dco_1_1_and_cc_by_sa_4_0-707bf046-bcf5-b1b0-c76f-8a8277819284" } ], - "percentage_of_license_text": 9.84, + "license_clues": [], + "percentage_of_license_text": 39.26, "scan_errors": [] }, { @@ -981,36 +388,36 @@ "type": "file", "package_data": [], "for_packages": [], - "detected_license_expression": "gpl-2.0 AND gpl-3.0", - "detected_license_expression_spdx": "GPL-2.0-only AND GPL-3.0-only", + "detected_license_expression": "gpl-3.0 AND gpl-3.0-plus", + "detected_license_expression_spdx": "GPL-3.0-only AND GPL-3.0-or-later", "license_detections": [ { - "license_expression": "gpl-2.0", - "license_expression_spdx": "GPL-2.0-only", + "license_expression": "gpl-3.0", + "license_expression_spdx": "GPL-3.0-only", "matches": [ { - "license_expression": "gpl-2.0", - "license_expression_spdx": "GPL-2.0-only", + "license_expression": "gpl-3.0", + "license_expression_spdx": "GPL-3.0-only", "from_file": "samba/README.md", "start_line": 6, "end_line": 6, - "matcher": "3-seq", - "score": 81.82, - "matched_length": 9, - "match_coverage": 81.82, + "matcher": "2-aho", + "score": 100.0, + "matched_length": 11, + "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "gpl-2.0_1142.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1142.RULE", + "rule_identifier": "gpl-3.0_610.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_610.RULE", "matched_text": "Samba is Free Software licensed under the GNU General Public License and", - "matched_text_diagnostics": "Free Software licensed under the GNU General Public License" + "matched_text_diagnostics": "Samba is Free Software licensed under the GNU General Public License" } ], "detection_log": [], - "identifier": "gpl_2_0-29c387aa-50e0-0530-7b0b-aa32e3c372d6" + "identifier": "gpl_3_0-aadebca9-8205-5b47-d989-c2c794d4fe31" }, { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", + "license_expression": "gpl-3.0-plus", + "license_expression_spdx": "GPL-3.0-or-later", "matches": [ { "license_expression": "gpl-1.0-plus", @@ -1029,786 +436,30 @@ "matched_text_diagnostics": "This software is freely distributable under the GNU public license, a\ncopy of which you should have received with this software (in a file\ncalled COPYING)." }, { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", + "license_expression": "gpl-3.0-plus", + "license_expression_spdx": "GPL-3.0-or-later", "from_file": "samba/COPYING", "start_line": 1, - "end_line": 674, + "end_line": 12, "matcher": "1-hash", "score": 100.0, - "matched_length": 5514, + "matched_length": 102, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "gpl-3.0_204.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_204.RULE", - "matched_text": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n.", - "matched_text_diagnostics": "GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n." + "rule_identifier": "gpl-3.0-plus_290.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0-plus_290.RULE", + "matched_text": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, see .", + "matched_text_diagnostics": "This program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, see ." } ], "detection_log": [ "unknown-reference-to-local-file" ], - "identifier": "gpl_3_0-db305a6e-7013-4ffa-0ad4-09f113582e67" + "identifier": "gpl_3_0_plus-fad3026d-9056-eade-07fd-2e4fba38e5f9" } ], "license_clues": [], - "percentage_of_license_text": 4.14, - "scan_errors": [] - }, - { - "path": "configure", - "type": "file", - "package_data": [ - { - "type": "autotools", - "namespace": null, - "name": "samba", - "version": null, - "qualifiers": {}, - "subpath": null, - "primary_language": null, - "description": null, - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": "gpl-3.0 AND (gpl-3.0 AND lgpl-3.0 AND gpl-2.0) AND gpl-1.0-plus AND (gpl-1.0-plus AND lgpl-3.0-plus AND gpl-3.0 AND lgpl-3.0) AND (cc-by-sa-3.0 AND cc-by-sa-4.0 AND dco-1.1) AND gpl-2.0", - "declared_license_expression_spdx": "GPL-3.0-only AND (GPL-3.0-only AND LGPL-3.0-only AND GPL-2.0-only) AND GPL-1.0-or-later AND (GPL-1.0-or-later AND LGPL-3.0-or-later AND GPL-3.0-only AND LGPL-3.0-only) AND (CC-BY-SA-3.0 AND CC-BY-SA-4.0 AND LicenseRef-scancode-dco-1.1) AND GPL-2.0-only", - "license_detections": [ - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "matches": [ - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/COPYING", - "start_line": 1, - "end_line": 674, - "matcher": "1-hash", - "score": 100.0, - "matched_length": 5514, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_204.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_204.RULE", - "matched_text": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n.", - "matched_text_diagnostics": "GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n." - } - ], - "detection_log": [], - "identifier": "gpl_3_0-ab79e5a8-e510-cbf4-5302-ef968484bcdf" - }, - { - "license_expression": "gpl-3.0 AND lgpl-3.0 AND gpl-2.0", - "license_expression_spdx": "GPL-3.0-only AND LGPL-3.0-only AND GPL-2.0-only", - "matches": [ - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 38, - "end_line": 38, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 1, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_32.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_32.RULE", - "matched_text": "accommodate the licenses we use, which are GPLv3 and LGPLv3 (or later)", - "matched_text_diagnostics": "GPLv3" - }, - { - "license_expression": "lgpl-3.0", - "license_expression_spdx": "LGPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 38, - "end_line": 38, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 1, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0_29.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0_29.RULE", - "matched_text": "accommodate the licenses we use, which are GPLv3 and LGPLv3 (or later)", - "matched_text_diagnostics": "LGPLv3 (" - }, - { - "license_expression": "gpl-2.0", - "license_expression_spdx": "GPL-2.0-only", - "from_file": "samba/README.contributing", - "start_line": 39, - "end_line": 39, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 1, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0_bare_single_word.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_bare_single_word.RULE", - "matched_text": "whereas the Linux kernel uses GPLv2.", - "matched_text_diagnostics": "GPLv2." - } - ], - "detection_log": [], - "identifier": "gpl_3_0_and_lgpl_3_0_and_gpl_2_0-ee9a67a8-9de9-86d0-077b-8e6f7f285b72" - }, - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "matches": [ - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 63, - "end_line": 63, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_33.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE", - "matched_text": " by me, under the GNU General Public License, in the", - "matched_text_diagnostics": "the GNU General Public License," - } - ], - "detection_log": [], - "identifier": "gpl_1_0_plus-4347f44c-ada6-f802-86dd-14a96429fac1" - }, - { - "license_expression": "gpl-1.0-plus AND lgpl-3.0-plus AND gpl-3.0 AND lgpl-3.0", - "license_expression_spdx": "GPL-1.0-or-later AND LGPL-3.0-or-later AND GPL-3.0-only AND LGPL-3.0-only", - "matches": [ - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 76, - "end_line": 76, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl_bare_gnu_gpl.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl_bare_gnu_gpl.RULE", - "matched_text": " requirements of the GNU GPL where they are relevant.", - "matched_text_diagnostics": "GNU GPL" - }, - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 79, - "end_line": 79, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_33.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE", - "matched_text": " the GNU General Public License and the GNU Lesser General Public", - "matched_text_diagnostics": "the GNU General Public License" - }, - { - "license_expression": "lgpl-3.0-plus", - "license_expression_spdx": "LGPL-3.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 79, - "end_line": 81, - "matcher": "3-seq", - "score": 47.22, - "matched_length": 17, - "match_coverage": 47.22, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0-plus_103.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_103.RULE", - "matched_text": " the GNU General Public License and the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of these Licenses, or (at the option of the project) any later", - "matched_text_diagnostics": "the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of" - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 84, - "end_line": 84, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_12.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_12.RULE", - "matched_text": " http://www.gnu.org/licenses/gpl-3.0.html", - "matched_text_diagnostics": "http://www.gnu.org/licenses/gpl-3.0.html" - }, - { - "license_expression": "lgpl-3.0", - "license_expression_spdx": "LGPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 85, - "end_line": 85, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0_1.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0_1.RULE", - "matched_text": " http://www.gnu.org/licenses/lgpl-3.0.html", - "matched_text_diagnostics": "http://www.gnu.org/licenses/lgpl-3.0.html" - } - ], - "detection_log": [], - "identifier": "gpl_1_0_plus_and_lgpl_3_0_plus_and_gpl_3_0_and_lgpl_3_0-3bd18dcd-0a4c-d46f-f42e-3d2919be9be0" - }, - { - "license_expression": "cc-by-sa-3.0 AND cc-by-sa-4.0 AND dco-1.1", - "license_expression_spdx": "CC-BY-SA-3.0 AND CC-BY-SA-4.0 AND LicenseRef-scancode-dco-1.1", - "matches": [ - { - "license_expression": "cc-by-sa-3.0", - "license_expression_spdx": "CC-BY-SA-3.0", - "from_file": "samba/README.contributing", - "start_line": 121, - "end_line": 122, - "matcher": "3-seq", - "score": 75.0, - "matched_length": 12, - "match_coverage": 75.0, - "rule_relevance": 100, - "rule_identifier": "cc-by-sa-3.0_10.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-sa-3.0_10.RULE", - "matched_text": "licensed under Creative Commons Attribution-ShareAlike 4.0 License as found\nat https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on", - "matched_text_diagnostics": "licensed under Creative Commons Attribution-ShareAlike [4].[0] License [as] [found]\n[at] [https]://creativecommons.org/licenses/by-sa/" - }, - { - "license_expression": "cc-by-sa-4.0", - "license_expression_spdx": "CC-BY-SA-4.0", - "from_file": "samba/README.contributing", - "start_line": 122, - "end_line": 122, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "cc-by-sa-4.0_71.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-sa-4.0_71.RULE", - "matched_text": "at https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on", - "matched_text_diagnostics": "https://creativecommons.org/licenses/by-sa/4.0/legalcode" - }, - { - "license_expression": "dco-1.1", - "license_expression_spdx": "LicenseRef-scancode-dco-1.1", - "from_file": "samba/README.contributing", - "start_line": 123, - "end_line": 123, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 7, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "dco-1.1_2.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/dco-1.1_2.RULE", - "matched_text": "\"Developer's Certificate of Origin 1.1\" as found at", - "matched_text_diagnostics": "Developer's Certificate of Origin 1.1\"" - } - ], - "detection_log": [], - "identifier": "cc_by_sa_3_0_and_cc_by_sa_4_0_and_dco_1_1-4fb8e409-441a-1243-5a0d-d6af2acc0c62" - }, - { - "license_expression": "gpl-2.0", - "license_expression_spdx": "GPL-2.0-only", - "matches": [ - { - "license_expression": "gpl-2.0", - "license_expression_spdx": "GPL-2.0-only", - "from_file": "samba/README.md", - "start_line": 6, - "end_line": 6, - "matcher": "3-seq", - "score": 81.82, - "matched_length": 9, - "match_coverage": 81.82, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0_1142.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1142.RULE", - "matched_text": "Samba is Free Software licensed under the GNU General Public License and", - "matched_text_diagnostics": "Free Software licensed under the GNU General Public License" - } - ], - "detection_log": [], - "identifier": "gpl_2_0-29c387aa-50e0-0530-7b0b-aa32e3c372d6" - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "matches": [ - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.md", - "start_line": 22, - "end_line": 24, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 24, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_579.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_579.RULE", - "matched_text": "This software is freely distributable under the GNU public license, a\ncopy of which you should have received with this software (in a file\ncalled COPYING).", - "matched_text_diagnostics": "This software is freely distributable under the GNU public license, a\ncopy of which you should have received with this software (in a file\ncalled COPYING)." - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/COPYING", - "start_line": 1, - "end_line": 674, - "matcher": "1-hash", - "score": 100.0, - "matched_length": 5514, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_204.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_204.RULE", - "matched_text": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n.", - "matched_text_diagnostics": "GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n." - } - ], - "detection_log": [ - "unknown-reference-to-local-file" - ], - "identifier": "gpl_3_0-db305a6e-7013-4ffa-0ad4-09f113582e67" - } - ], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "is_private": false, - "is_virtual": false, - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "autotools_configure", - "purl": "pkg:autotools/samba" - } - ], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "scan_errors": [] - }, - { - "path": "configure.developer", - "type": "file", - "package_data": [], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, - "scan_errors": [] - }, - { - "path": "setup.cfg", - "type": "file", - "package_data": [ - { - "type": "pypi", - "namespace": null, - "name": null, - "version": null, - "qualifiers": {}, - "subpath": null, - "primary_language": "Python", - "description": null, - "release_date": null, - "parties": [], - "keywords": [], - "homepage_url": null, - "download_url": null, - "size": null, - "sha1": null, - "md5": null, - "sha256": null, - "sha512": null, - "bug_tracking_url": null, - "code_view_url": null, - "vcs_url": null, - "copyright": null, - "holder": null, - "declared_license_expression": "gpl-3.0 AND (gpl-3.0 AND lgpl-3.0 AND gpl-2.0) AND gpl-1.0-plus AND (gpl-1.0-plus AND lgpl-3.0-plus AND gpl-3.0 AND lgpl-3.0) AND (cc-by-sa-3.0 AND cc-by-sa-4.0 AND dco-1.1) AND gpl-2.0", - "declared_license_expression_spdx": "GPL-3.0-only AND (GPL-3.0-only AND LGPL-3.0-only AND GPL-2.0-only) AND GPL-1.0-or-later AND (GPL-1.0-or-later AND LGPL-3.0-or-later AND GPL-3.0-only AND LGPL-3.0-only) AND (CC-BY-SA-3.0 AND CC-BY-SA-4.0 AND LicenseRef-scancode-dco-1.1) AND GPL-2.0-only", - "license_detections": [ - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "matches": [ - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/COPYING", - "start_line": 1, - "end_line": 674, - "matcher": "1-hash", - "score": 100.0, - "matched_length": 5514, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_204.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_204.RULE", - "matched_text": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n.", - "matched_text_diagnostics": "GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n." - } - ], - "detection_log": [], - "identifier": "gpl_3_0-ab79e5a8-e510-cbf4-5302-ef968484bcdf" - }, - { - "license_expression": "gpl-3.0 AND lgpl-3.0 AND gpl-2.0", - "license_expression_spdx": "GPL-3.0-only AND LGPL-3.0-only AND GPL-2.0-only", - "matches": [ - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 38, - "end_line": 38, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 1, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_32.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_32.RULE", - "matched_text": "accommodate the licenses we use, which are GPLv3 and LGPLv3 (or later)", - "matched_text_diagnostics": "GPLv3" - }, - { - "license_expression": "lgpl-3.0", - "license_expression_spdx": "LGPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 38, - "end_line": 38, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 1, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0_29.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0_29.RULE", - "matched_text": "accommodate the licenses we use, which are GPLv3 and LGPLv3 (or later)", - "matched_text_diagnostics": "LGPLv3 (" - }, - { - "license_expression": "gpl-2.0", - "license_expression_spdx": "GPL-2.0-only", - "from_file": "samba/README.contributing", - "start_line": 39, - "end_line": 39, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 1, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0_bare_single_word.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_bare_single_word.RULE", - "matched_text": "whereas the Linux kernel uses GPLv2.", - "matched_text_diagnostics": "GPLv2." - } - ], - "detection_log": [], - "identifier": "gpl_3_0_and_lgpl_3_0_and_gpl_2_0-ee9a67a8-9de9-86d0-077b-8e6f7f285b72" - }, - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "matches": [ - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 63, - "end_line": 63, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_33.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE", - "matched_text": " by me, under the GNU General Public License, in the", - "matched_text_diagnostics": "the GNU General Public License," - } - ], - "detection_log": [], - "identifier": "gpl_1_0_plus-4347f44c-ada6-f802-86dd-14a96429fac1" - }, - { - "license_expression": "gpl-1.0-plus AND lgpl-3.0-plus AND gpl-3.0 AND lgpl-3.0", - "license_expression_spdx": "GPL-1.0-or-later AND LGPL-3.0-or-later AND GPL-3.0-only AND LGPL-3.0-only", - "matches": [ - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 76, - "end_line": 76, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl_bare_gnu_gpl.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl_bare_gnu_gpl.RULE", - "matched_text": " requirements of the GNU GPL where they are relevant.", - "matched_text_diagnostics": "GNU GPL" - }, - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 79, - "end_line": 79, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_33.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE", - "matched_text": " the GNU General Public License and the GNU Lesser General Public", - "matched_text_diagnostics": "the GNU General Public License" - }, - { - "license_expression": "lgpl-3.0-plus", - "license_expression_spdx": "LGPL-3.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 79, - "end_line": 81, - "matcher": "3-seq", - "score": 47.22, - "matched_length": 17, - "match_coverage": 47.22, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0-plus_103.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_103.RULE", - "matched_text": " the GNU General Public License and the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of these Licenses, or (at the option of the project) any later", - "matched_text_diagnostics": "the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of" - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 84, - "end_line": 84, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_12.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_12.RULE", - "matched_text": " http://www.gnu.org/licenses/gpl-3.0.html", - "matched_text_diagnostics": "http://www.gnu.org/licenses/gpl-3.0.html" - }, - { - "license_expression": "lgpl-3.0", - "license_expression_spdx": "LGPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 85, - "end_line": 85, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0_1.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0_1.RULE", - "matched_text": " http://www.gnu.org/licenses/lgpl-3.0.html", - "matched_text_diagnostics": "http://www.gnu.org/licenses/lgpl-3.0.html" - } - ], - "detection_log": [], - "identifier": "gpl_1_0_plus_and_lgpl_3_0_plus_and_gpl_3_0_and_lgpl_3_0-3bd18dcd-0a4c-d46f-f42e-3d2919be9be0" - }, - { - "license_expression": "cc-by-sa-3.0 AND cc-by-sa-4.0 AND dco-1.1", - "license_expression_spdx": "CC-BY-SA-3.0 AND CC-BY-SA-4.0 AND LicenseRef-scancode-dco-1.1", - "matches": [ - { - "license_expression": "cc-by-sa-3.0", - "license_expression_spdx": "CC-BY-SA-3.0", - "from_file": "samba/README.contributing", - "start_line": 121, - "end_line": 122, - "matcher": "3-seq", - "score": 75.0, - "matched_length": 12, - "match_coverage": 75.0, - "rule_relevance": 100, - "rule_identifier": "cc-by-sa-3.0_10.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-sa-3.0_10.RULE", - "matched_text": "licensed under Creative Commons Attribution-ShareAlike 4.0 License as found\nat https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on", - "matched_text_diagnostics": "licensed under Creative Commons Attribution-ShareAlike [4].[0] License [as] [found]\n[at] [https]://creativecommons.org/licenses/by-sa/" - }, - { - "license_expression": "cc-by-sa-4.0", - "license_expression_spdx": "CC-BY-SA-4.0", - "from_file": "samba/README.contributing", - "start_line": 122, - "end_line": 122, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "cc-by-sa-4.0_71.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-sa-4.0_71.RULE", - "matched_text": "at https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on", - "matched_text_diagnostics": "https://creativecommons.org/licenses/by-sa/4.0/legalcode" - }, - { - "license_expression": "dco-1.1", - "license_expression_spdx": "LicenseRef-scancode-dco-1.1", - "from_file": "samba/README.contributing", - "start_line": 123, - "end_line": 123, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 7, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "dco-1.1_2.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/dco-1.1_2.RULE", - "matched_text": "\"Developer's Certificate of Origin 1.1\" as found at", - "matched_text_diagnostics": "Developer's Certificate of Origin 1.1\"" - } - ], - "detection_log": [], - "identifier": "cc_by_sa_3_0_and_cc_by_sa_4_0_and_dco_1_1-4fb8e409-441a-1243-5a0d-d6af2acc0c62" - }, - { - "license_expression": "gpl-2.0", - "license_expression_spdx": "GPL-2.0-only", - "matches": [ - { - "license_expression": "gpl-2.0", - "license_expression_spdx": "GPL-2.0-only", - "from_file": "samba/README.md", - "start_line": 6, - "end_line": 6, - "matcher": "3-seq", - "score": 81.82, - "matched_length": 9, - "match_coverage": 81.82, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0_1142.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1142.RULE", - "matched_text": "Samba is Free Software licensed under the GNU General Public License and", - "matched_text_diagnostics": "Free Software licensed under the GNU General Public License" - } - ], - "detection_log": [], - "identifier": "gpl_2_0-29c387aa-50e0-0530-7b0b-aa32e3c372d6" - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "matches": [ - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.md", - "start_line": 22, - "end_line": 24, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 24, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_579.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_579.RULE", - "matched_text": "This software is freely distributable under the GNU public license, a\ncopy of which you should have received with this software (in a file\ncalled COPYING).", - "matched_text_diagnostics": "This software is freely distributable under the GNU public license, a\ncopy of which you should have received with this software (in a file\ncalled COPYING)." - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/COPYING", - "start_line": 1, - "end_line": 674, - "matcher": "1-hash", - "score": 100.0, - "matched_length": 5514, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_204.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_204.RULE", - "matched_text": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n.", - "matched_text_diagnostics": "GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n." - } - ], - "detection_log": [ - "unknown-reference-to-local-file" - ], - "identifier": "gpl_3_0-db305a6e-7013-4ffa-0ad4-09f113582e67" - } - ], - "other_license_expression": null, - "other_license_expression_spdx": null, - "other_license_detections": [], - "extracted_license_statement": null, - "notice_text": null, - "source_packages": [], - "file_references": [], - "is_private": false, - "is_virtual": false, - "extra_data": {}, - "dependencies": [], - "repository_homepage_url": null, - "repository_download_url": null, - "api_data_url": null, - "datasource_id": "pypi_setup_cfg", - "purl": null - } - ], - "for_packages": [], - "detected_license_expression": null, - "detected_license_expression_spdx": null, - "license_detections": [], - "license_clues": [], - "percentage_of_license_text": 0, + "percentage_of_license_text": 21.88, "scan_errors": [] }, { @@ -1852,294 +503,36 @@ "type": "file", "package_data": [], "for_packages": [], - "detected_license_expression": "gpl-3.0 AND lgpl-3.0 AND gpl-2.0 AND gpl-1.0-plus AND lgpl-3.0-plus AND cc-by-sa-3.0 AND cc-by-sa-4.0 AND dco-1.1", - "detected_license_expression_spdx": "GPL-3.0-only AND LGPL-3.0-only AND GPL-2.0-only AND GPL-1.0-or-later AND LGPL-3.0-or-later AND CC-BY-SA-3.0 AND CC-BY-SA-4.0 AND LicenseRef-scancode-dco-1.1", + "detected_license_expression": "gpl-3.0", + "detected_license_expression_spdx": "GPL-3.0-only", "license_detections": [ { - "license_expression": "gpl-3.0 AND lgpl-3.0 AND gpl-2.0 AND gpl-1.0-plus AND lgpl-3.0-plus AND cc-by-sa-3.0 AND cc-by-sa-4.0 AND dco-1.1", - "license_expression_spdx": "GPL-3.0-only AND LGPL-3.0-only AND GPL-2.0-only AND GPL-1.0-or-later AND LGPL-3.0-or-later AND CC-BY-SA-3.0 AND CC-BY-SA-4.0 AND LicenseRef-scancode-dco-1.1", + "license_expression": "gpl-3.0", + "license_expression_spdx": "GPL-3.0-only", "matches": [ { - "license_expression": "free-unknown", - "license_expression_spdx": "LicenseRef-scancode-free-unknown", + "license_expression": "gpl-3.0", + "license_expression_spdx": "GPL-3.0-only", "from_file": "samba/source3/locale/net/de.po", "start_line": 4, "end_line": 4, "matcher": "2-aho", "score": 100.0, - "matched_length": 10, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "free-unknown-package_4.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/free-unknown-package_4.RULE", - "matched_text": "# This file is distributed under the same license as the samba package.", - "matched_text_diagnostics": "This file is distributed under the same license as the" - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/COPYING", - "start_line": 1, - "end_line": 674, - "matcher": "1-hash", - "score": 100.0, - "matched_length": 5514, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_204.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_204.RULE", - "matched_text": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n.", - "matched_text_diagnostics": "GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n." - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 38, - "end_line": 38, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 1, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_32.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_32.RULE", - "matched_text": "accommodate the licenses we use, which are GPLv3 and LGPLv3 (or later)", - "matched_text_diagnostics": "GPLv3" - }, - { - "license_expression": "lgpl-3.0", - "license_expression_spdx": "LGPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 38, - "end_line": 38, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 1, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0_29.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0_29.RULE", - "matched_text": "accommodate the licenses we use, which are GPLv3 and LGPLv3 (or later)", - "matched_text_diagnostics": "LGPLv3 (" - }, - { - "license_expression": "gpl-2.0", - "license_expression_spdx": "GPL-2.0-only", - "from_file": "samba/README.contributing", - "start_line": 39, - "end_line": 39, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 1, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0_bare_single_word.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_bare_single_word.RULE", - "matched_text": "whereas the Linux kernel uses GPLv2.", - "matched_text_diagnostics": "GPLv2." - }, - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 63, - "end_line": 63, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_33.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE", - "matched_text": " by me, under the GNU General Public License, in the", - "matched_text_diagnostics": "the GNU General Public License," - }, - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 76, - "end_line": 76, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 2, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl_bare_gnu_gpl.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl_bare_gnu_gpl.RULE", - "matched_text": " requirements of the GNU GPL where they are relevant.", - "matched_text_diagnostics": "GNU GPL" - }, - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 79, - "end_line": 79, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 5, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_33.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_33.RULE", - "matched_text": " the GNU General Public License and the GNU Lesser General Public", - "matched_text_diagnostics": "the GNU General Public License" - }, - { - "license_expression": "lgpl-3.0-plus", - "license_expression_spdx": "LGPL-3.0-or-later", - "from_file": "samba/README.contributing", - "start_line": 79, - "end_line": 81, - "matcher": "3-seq", - "score": 47.22, - "matched_length": 17, - "match_coverage": 47.22, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0-plus_103.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0-plus_103.RULE", - "matched_text": " the GNU General Public License and the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of these Licenses, or (at the option of the project) any later", - "matched_text_diagnostics": "the GNU Lesser General Public\n License as published by the Free Software Foundation; either version\n 3 of" - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 84, - "end_line": 84, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-3.0_12.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_12.RULE", - "matched_text": " http://www.gnu.org/licenses/gpl-3.0.html", - "matched_text_diagnostics": "http://www.gnu.org/licenses/gpl-3.0.html" - }, - { - "license_expression": "lgpl-3.0", - "license_expression_spdx": "LGPL-3.0-only", - "from_file": "samba/README.contributing", - "start_line": 85, - "end_line": 85, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "lgpl-3.0_1.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/lgpl-3.0_1.RULE", - "matched_text": " http://www.gnu.org/licenses/lgpl-3.0.html", - "matched_text_diagnostics": "http://www.gnu.org/licenses/lgpl-3.0.html" - }, - { - "license_expression": "cc-by-sa-3.0", - "license_expression_spdx": "CC-BY-SA-3.0", - "from_file": "samba/README.contributing", - "start_line": 121, - "end_line": 122, - "matcher": "3-seq", - "score": 75.0, "matched_length": 12, - "match_coverage": 75.0, - "rule_relevance": 100, - "rule_identifier": "cc-by-sa-3.0_10.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-sa-3.0_10.RULE", - "matched_text": "licensed under Creative Commons Attribution-ShareAlike 4.0 License as found\nat https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on", - "matched_text_diagnostics": "licensed under Creative Commons Attribution-ShareAlike [4].[0] License [as] [found]\n[at] [https]://creativecommons.org/licenses/by-sa/" - }, - { - "license_expression": "cc-by-sa-4.0", - "license_expression_spdx": "CC-BY-SA-4.0", - "from_file": "samba/README.contributing", - "start_line": 122, - "end_line": 122, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 9, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "cc-by-sa-4.0_71.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/cc-by-sa-4.0_71.RULE", - "matched_text": "at https://creativecommons.org/licenses/by-sa/4.0/legalcode and based on", - "matched_text_diagnostics": "https://creativecommons.org/licenses/by-sa/4.0/legalcode" - }, - { - "license_expression": "dco-1.1", - "license_expression_spdx": "LicenseRef-scancode-dco-1.1", - "from_file": "samba/README.contributing", - "start_line": 123, - "end_line": 123, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 7, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "dco-1.1_2.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/dco-1.1_2.RULE", - "matched_text": "\"Developer's Certificate of Origin 1.1\" as found at", - "matched_text_diagnostics": "Developer's Certificate of Origin 1.1\"" - }, - { - "license_expression": "gpl-2.0", - "license_expression_spdx": "GPL-2.0-only", - "from_file": "samba/README.md", - "start_line": 6, - "end_line": 6, - "matcher": "3-seq", - "score": 81.82, - "matched_length": 9, - "match_coverage": 81.82, - "rule_relevance": 100, - "rule_identifier": "gpl-2.0_1142.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-2.0_1142.RULE", - "matched_text": "Samba is Free Software licensed under the GNU General Public License and", - "matched_text_diagnostics": "Free Software licensed under the GNU General Public License" - }, - { - "license_expression": "gpl-1.0-plus", - "license_expression_spdx": "GPL-1.0-or-later", - "from_file": "samba/README.md", - "start_line": 22, - "end_line": 24, - "matcher": "2-aho", - "score": 100.0, - "matched_length": 24, - "match_coverage": 100.0, - "rule_relevance": 100, - "rule_identifier": "gpl-1.0-plus_579.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-1.0-plus_579.RULE", - "matched_text": "This software is freely distributable under the GNU public license, a\ncopy of which you should have received with this software (in a file\ncalled COPYING).", - "matched_text_diagnostics": "This software is freely distributable under the GNU public license, a\ncopy of which you should have received with this software (in a file\ncalled COPYING)." - }, - { - "license_expression": "gpl-3.0", - "license_expression_spdx": "GPL-3.0-only", - "from_file": "samba/COPYING", - "start_line": 1, - "end_line": 674, - "matcher": "1-hash", - "score": 100.0, - "matched_length": 5514, "match_coverage": 100.0, "rule_relevance": 100, - "rule_identifier": "gpl-3.0_204.RULE", - "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_204.RULE", - "matched_text": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n.", - "matched_text_diagnostics": "GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. \n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodified Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n \n Copyright (C) \n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see .\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n Copyright (C) \n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n." + "rule_identifier": "gpl-3.0_614.RULE", + "rule_url": "https://github.com/nexB/scancode-toolkit/tree/develop/src/licensedcode/data/rules/gpl-3.0_614.RULE", + "matched_text": "# This file is distributed under the same license as the samba package.", + "matched_text_diagnostics": "This file is distributed under the same license as the samba package." } ], - "detection_log": [ - "unknown-reference-to-local-file" - ], - "identifier": "gpl_3_0_and_lgpl_3_0_and_gpl_2_0_and_gpl_1_0_plus_and_lgpl_3_0_plus_and_cc_by_sa_3_0_and_cc_by_sa_4_0_and_dco_1_1-91b1ed8a-fad5-77d3-29d0-7667c29ee122" + "detection_log": [], + "identifier": "gpl_3_0-55d9e83b-e359-63ed-4624-adbae121fa12" } ], "license_clues": [], - "percentage_of_license_text": 0.03, + "percentage_of_license_text": 14.29, "scan_errors": [] }, { @@ -2176,7 +569,7 @@ } ], "license_clues": [], - "percentage_of_license_text": 27.06, + "percentage_of_license_text": 85.0, "scan_errors": [] } ] diff --git a/tests/packagedcode/data/license_detection/reference-to-package/samba/COPYING b/tests/packagedcode/data/license_detection/reference-to-package/samba/COPYING index 94a9ed024d..6946682203 100644 --- a/tests/packagedcode/data/license_detection/reference-to-package/samba/COPYING +++ b/tests/packagedcode/data/license_detection/reference-to-package/samba/COPYING @@ -1,674 +1,12 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, see . diff --git a/tests/packagedcode/data/license_detection/reference-to-package/samba/Makefile b/tests/packagedcode/data/license_detection/reference-to-package/samba/Makefile deleted file mode 100644 index 7f5960d519..0000000000 --- a/tests/packagedcode/data/license_detection/reference-to-package/samba/Makefile +++ /dev/null @@ -1,139 +0,0 @@ -# simple makefile wrapper to run waf - -WAF_BINARY=$(PYTHON) ./buildtools/bin/waf -WAF=PYTHONHASHSEED=1 WAF_MAKE=1 $(WAF_BINARY) - -all: - $(WAF) build - -install: - $(WAF) install - -uninstall: - $(WAF) uninstall - -test: - $(WAF) test $(TEST_OPTIONS) - -testonly: - $(WAF) testonly $(TEST_OPTIONS) - -perftest: - $(WAF) test --perf-test $(TEST_OPTIONS) - -help: - @echo NOTE: to run extended waf options use $(WAF_BINARY) or modify your PATH - $(WAF) --help - -subunit-test: - $(WAF) test --filtered-subunit $(TEST_OPTIONS) - -testenv: - $(WAF) test --testenv $(TEST_OPTIONS) - -lcov: - @echo usage: - @echo "" - @echo ./configure --enable-coverage - @echo make -j - @echo make test TESTS=mytest - @echo make lcov - @echo "" - rm -f lcov.info - lcov --capture --directory . --output-file lcov.info && \ - genhtml lcov.info --output-directory public --prefix=$$(pwd) && \ - echo Please open public/index.html in browser to view the coverage report - -gdbtestenv: - $(WAF) test --testenv --gdbtest $(TEST_OPTIONS) - -quicktest: - $(WAF) test --quick $(TEST_OPTIONS) - -randomized-test: - $(WAF) test --random-order $(TEST_OPTIONS) - -testlist: - $(WAF) test --list $(TEST_OPTIONS) - -test-nopython: - $(WAF) test --no-subunit-filter --test-list=selftest/no-python-tests.txt $(TEST_OPTIONS) - -dist: - touch .tmplock - WAFLOCK=.tmplock $(WAF) dist - -distcheck: - touch .tmplock - WAFLOCK=.tmplock $(WAF) distcheck - -clean: - $(WAF) clean - -distclean: - $(WAF) distclean - -reconfigure: configure - $(WAF) reconfigure - -show_waf_options: - $(WAF) --help - -# some compatibility make targets -everything: all - -testsuite: all - -check: test - -torture: all - -# this should do an install as well, once install is finished -installcheck: test - -etags: - $(WAF) etags - -ctags: - $(WAF) ctags - -pydoctor: - $(WAF) pydoctor - -pep8: - $(WAF) pep8 - -# Adding force on the dependencies will force the target to be always rebuild form the Make -# point of view forcing make to invoke waf - -bin/smbd: FORCE - $(WAF) --targets=smbd/smbd - -bin/winbindd: FORCE - $(WAF) --targets=winbindd/winbindd - -bin/nmbd: FORCE - $(WAF) --targets=nmbd/nmbd - -bin/smbclient: FORCE - $(WAF) --targets=client/smbclient - -# this allows for things like "make bin/smbtorture" -# mainly for the binary that don't have a broken mode like smbd that must -# be build with smbd/smbd -bin/%: FORCE - $(WAF) --targets=$(subst bin/,,$@) - -# Catch all rule to be able to call make service_repl in order to find the name -# of the submodule you want to build, look at the wscript -%: - $(WAF) --targets=$@ - -# This rule has to be the last one -FORCE: -# Having .NOTPARALLEL will force make to do target once at a time but still -j -# will be present in the MAKEFLAGS that are in turn interpreted by WAF -# so only 1 waf at a time will be called but it will still be able to do parralel builds if -# instructed to do so -.NOTPARALLEL: % -.PHONY: FORCE everything testsuite check torture diff --git a/tests/packagedcode/data/license_detection/reference-to-package/samba/README.Coding.md b/tests/packagedcode/data/license_detection/reference-to-package/samba/README.Coding.md deleted file mode 100644 index 7aaf56a44e..0000000000 --- a/tests/packagedcode/data/license_detection/reference-to-package/samba/README.Coding.md +++ /dev/null @@ -1,580 +0,0 @@ -# Coding conventions in the Samba tree - -## Quick Start - -Coding style guidelines are about reducing the number of unnecessary -reformatting patches and making things easier for developers to work -together. -You don't have to like them or even agree with them, but once put in place -we all have to abide by them (or vote to change them). However, coding -style should never outweigh coding itself and so the guidelines -described here are hopefully easy enough to follow as they are very -common and supported by tools and editors. - -The basic style for C code is the Linux kernel coding style (See -Documentation/CodingStyle in the kernel source tree). This closely matches -what most Samba developers use already anyways, with a few exceptions as -mentioned below. - -The coding style for Python code is documented in -[PEP8](https://www.python.org/dev/peps/pep-0008/). New Python code -should be compatible with Python 3.6 onwards. - -But to save you the trouble of reading the Linux kernel style guide, here -are the highlights. - -* Maximum Line Width is 80 Characters - The reason is not about people with low-res screens but rather sticking - to 80 columns prevents you from easily nesting more than one level of - if statements or other code blocks. Use [source3/script/count_80_col.pl](source3/script/count_80_col.pl) - to check your changes. - -* Use 8 Space Tabs to Indent - No whitespace fillers. - -* No Trailing Whitespace - Use [source3/script/strip_trail_ws.pl](source3/script/strip_trail_ws.pl) to clean up your files before - committing. - -* Follow the K&R guidelines. We won't go through all of them here. Do you - have a copy of "The C Programming Language" anyways right? You can also use - the [format_indent.sh script found in source3/script/](source3/script/format_indent.sh) if all else fails. - - - -## Editor Hints - -### Emacs - -Add the follow to your $HOME/.emacs file: - -``` - (add-hook 'c-mode-hook - (lambda () - (c-set-style "linux") - (c-toggle-auto-state))) -``` - - -### Vi - -(Thanks to SATOH Fumiyasu for these hints): - -For the basic vi editor included with all variants of \*nix, add the -following to $HOME/.exrc: - -``` - set tabstop=8 - set shiftwidth=8 -``` - -For Vim, the following settings in $HOME/.vimrc will also deal with -displaying trailing whitespace: - -``` - if has("syntax") && (&t_Co > 2 || has("gui_running")) - syntax on - function! ActivateInvisibleCharIndicator() - syntax match TrailingSpace "[ \t]\+$" display containedin=ALL - highlight TrailingSpace ctermbg=Red - endf - autocmd BufNewFile,BufRead * call ActivateInvisibleCharIndicator() - endif - " Show tabs, trailing whitespace, and continued lines visually - set list listchars=tab:»·,trail:·,extends:… - - " highlight overly long lines same as TODOs. - set textwidth=80 - autocmd BufNewFile,BufRead *.c,*.h exec 'match Todo /\%>' . &textwidth . 'v.\+/' -``` - -### How to use clang-format - -Install 'git-format-clang' which is part of the clang suite (Fedora: -git-clang-format, openSUSE: clang-tools). - -Now do your changes and stage them with `git add`. Once they are staged -format the code using `git clang-format` before you commit. - -Now the formatting changed can be viewed with `git diff` against the -staged changes. - -## FAQ & Statement Reference - -### Comments - -Comments should always use the standard C syntax. C++ -style comments are not currently allowed. - -The lines before a comment should be empty. If the comment directly -belongs to the following code, there should be no empty line -after the comment, except if the comment contains a summary -of multiple following code blocks. - -This is good: - -``` - ... - int i; - - /* - * This is a multi line comment, - * which explains the logical steps we have to do: - * - * 1. We need to set i=5, because... - * 2. We need to call complex_fn1 - */ - - /* This is a one line comment about i = 5. */ - i = 5; - - /* - * This is a multi line comment, - * explaining the call to complex_fn1() - */ - ret = complex_fn1(); - if (ret != 0) { - ... - - /** - * @brief This is a doxygen comment. - * - * This is a more detailed explanation of - * this simple function. - * - * @param[in] param1 The parameter value of the function. - * - * @param[out] result1 The result value of the function. - * - * @return 0 on success and -1 on error. - */ - int example(int param1, int *result1); -``` - -This is bad: - -``` - ... - int i; - /* - * This is a multi line comment, - * which explains the logical steps we have to do: - * - * 1. We need to set i=5, because... - * 2. We need to call complex_fn1 - */ - /* This is a one line comment about i = 5. */ - i = 5; - /* - * This is a multi line comment, - * explaining the call to complex_fn1() - */ - ret = complex_fn1(); - if (ret != 0) { - ... - - /*This is a one line comment.*/ - - /* This is a multi line comment, - with some more words...*/ - - /* - * This is a multi line comment, - * with some more words...*/ -``` - -### Indention & Whitespace & 80 columns - -To avoid confusion, indentations have to be tabs with length 8 (not 8 -' ' characters). When wrapping parameters for function calls, -align the parameter list with the first parameter on the previous line. -Use tabs to get as close as possible and then fill in the final 7 -characters or less with whitespace. For example, - -``` - var1 = foo(arg1, arg2, - arg3); -``` - -The previous example is intended to illustrate alignment of function -parameters across lines and not as encourage for gratuitous line -splitting. Never split a line before columns 70 - 79 unless you -have a really good reason. Be smart about formatting. - -One exception to the previous rule is function calls, declarations, and -definitions. In function calls, declarations, and definitions, either the -declaration is a one-liner, or each parameter is listed on its own -line. The rationale is that if there are many parameters, each one -should be on its own line to make tracking interface changes easier. - - -## If, switch, & Code blocks - -Always follow an `if` keyword with a space but don't include additional -spaces following or preceding the parentheses in the conditional. -This is good: - -``` - if (x == 1) -``` - -This is bad: - -``` - if ( x == 1 ) -``` - -Yes we have a lot of code that uses the second form and we are trying -to clean it up without being overly intrusive. - -Note that this is a rule about parentheses following keywords and not -functions. Don't insert a space between the name and left parentheses when -invoking functions. - -Braces for code blocks used by `for`, `if`, `switch`, `while`, `do..while`, etc. -should begin on the same line as the statement keyword and end on a line -of their own. You should always include braces, even if the block only -contains one statement. NOTE: Functions are different and the beginning left -brace should be located in the first column on the next line. - -If the beginning statement has to be broken across lines due to length, -the beginning brace should be on a line of its own. - -The exception to the ending rule is when the closing brace is followed by -another language keyword such as else or the closing while in a `do..while` -loop. - -Good examples: - -``` - if (x == 1) { - printf("good\n"); - } - - for (x=1; x<10; x++) { - print("%d\n", x); - } - - for (really_really_really_really_long_var_name=0; - really_really_really_really_long_var_name<10; - really_really_really_really_long_var_name++) - { - print("%d\n", really_really_really_really_long_var_name); - } - - do { - printf("also good\n"); - } while (1); -``` - -Bad examples: - -``` - while (1) - { - print("I'm in a loop!\n"); } - - for (x=1; - x<10; - x++) - { - print("no good\n"); - } - - if (i < 10) - print("I should be in braces.\n"); -``` - - -### Goto - -While many people have been academically taught that `goto`s are -fundamentally evil, they can greatly enhance readability and reduce memory -leaks when used as the single exit point from a function. But in no Samba -world what so ever is a goto outside of a function or block of code a good -idea. - -Good Examples: - -``` - int function foo(int y) - { - int *z = NULL; - int ret = 0; - - if (y < 10) { - z = malloc(sizeof(int) * y); - if (z == NULL) { - ret = 1; - goto done; - } - } - - print("Allocated %d elements.\n", y); - - done: - if (z != NULL) { - free(z); - } - - return ret; - } -``` - - -### Primitive Data Types - -Samba has large amounts of historical code which makes use of data types -commonly supported by the C99 standard. However, at the time such types -as boolean and exact width integers did not exist and Samba developers -were forced to provide their own. Now that these types are guaranteed to -be available either as part of the compiler C99 support or from -lib/replace/, new code should adhere to the following conventions: - - * Booleans are of type `bool` (not `BOOL`) - * Boolean values are `true` and `false` (not `True` or `False`) - * Exact width integers are of type `[u]int[8|16|32|64]_t` - -Most of the time a good name for a boolean variable is 'ok'. Here is an -example we often use: - -``` - bool ok; - - ok = foo(); - if (!ok) { - /* do something */ - } -``` - -It makes the code more readable and is easy to debug. - -### Typedefs - -Samba tries to avoid `typedef struct { .. } x_t;` so we do always try to use -`struct x { .. };`. We know there are still such typedefs in the code, -but for new code, please don't do that anymore. - -### Initialize pointers - -All pointer variables MUST be initialized to NULL. History has -demonstrated that uninitialized pointer variables have lead to various -bugs and security issues. - -Pointers MUST be initialized even if the assignment directly follows -the declaration, like pointer2 in the example below, because the -instructions sequence may change over time. - -Good Example: - -``` - char *pointer1 = NULL; - char *pointer2 = NULL; - - pointer2 = some_func2(); - - ... - - pointer1 = some_func1(); -``` - -Bad Example: - -``` - char *pointer1; - char *pointer2; - - pointer2 = some_func2(); - - ... - - pointer1 = some_func1(); -``` - -### Make use of helper variables - -Please try to avoid passing function calls as function parameters -in new code. This makes the code much easier to read and -it's also easier to use the "step" command within gdb. - -Good Example: - -``` - char *name = NULL; - int ret; - - name = get_some_name(); - if (name == NULL) { - ... - } - - ret = some_function_my_name(name); - ... -``` - - -Bad Example: - -``` - ret = some_function_my_name(get_some_name()); - ... -``` - -Please try to avoid passing function return values to if- or -while-conditions. The reason for this is better handling of code under a -debugger. - -Good example: - -``` - x = malloc(sizeof(short)*10); - if (x == NULL) { - fprintf(stderr, "Unable to alloc memory!\n"); - } -``` - -Bad example: - -``` - if ((x = malloc(sizeof(short)*10)) == NULL ) { - fprintf(stderr, "Unable to alloc memory!\n"); - } -``` - -There are exceptions to this rule. One example is walking a data structure in -an iterator style: - -``` - while ((opt = poptGetNextOpt(pc)) != -1) { - ... do something with opt ... - } -``` - -Another exception: DBG messages for example printing a SID or a GUID: -Here we don't expect any surprise from the printing functions, and the -main reason of this guideline is to make debugging easier. That reason -rarely exists for this particular use case, and we gain some -efficiency because the DBG_ macros don't evaluate their arguments if -the debuglevel is not high enough. - -``` - if (!NT_STATUS_IS_OK(status)) { - struct dom_sid_buf sid_buf; - struct GUID_txt_buf guid_buf; - DBG_WARNING( - "objectSID [%s] for GUID [%s] invalid\n", - dom_sid_str_buf(objectsid, &sid_buf), - GUID_buf_string(&cache->entries[idx], &guid_buf)); - } -``` - -But in general, please try to avoid this pattern. - - -### Control-Flow changing macros - -Macros like `NT_STATUS_NOT_OK_RETURN` that change control flow -(`return`/`goto`/etc) from within the macro are considered bad, because -they look like function calls that never change control flow. Please -do not use them in new code. - -The only exception is the test code that depends repeated use of calls -like `CHECK_STATUS`, `CHECK_VAL` and others. - - -### Error and out logic - -Don't do this: - -``` - frame = talloc_stackframe(); - - if (ret == LDB_SUCCESS) { - if (result->count == 0) { - ret = LDB_ERR_NO_SUCH_OBJECT; - } else { - struct ldb_message *match = - get_best_match(dn, result); - if (match == NULL) { - TALLOC_FREE(frame); - return LDB_ERR_OPERATIONS_ERROR; - } - *msg = talloc_move(mem_ctx, &match); - } - } - - TALLOC_FREE(frame); - return ret; -``` - -It should be: - -``` - frame = talloc_stackframe(); - - if (ret != LDB_SUCCESS) { - TALLOC_FREE(frame); - return ret; - } - - if (result->count == 0) { - TALLOC_FREE(frame); - return LDB_ERR_NO_SUCH_OBJECT; - } - - match = get_best_match(dn, result); - if (match == NULL) { - TALLOC_FREE(frame); - return LDB_ERR_OPERATIONS_ERROR; - } - - *msg = talloc_move(mem_ctx, &match); - TALLOC_FREE(frame); - return LDB_SUCCESS; -``` - - -### DEBUG statements - -Use these following macros instead of DEBUG: - -``` -DBG_ERR log level 0 error conditions -DBG_WARNING log level 1 warning conditions -DBG_NOTICE log level 3 normal, but significant, condition -DBG_INFO log level 5 informational message -DBG_DEBUG log level 10 debug-level message -``` - -Example usage: - -``` -DBG_ERR("Memory allocation failed\n"); -DBG_DEBUG("Received %d bytes\n", count); -``` - -The messages from these macros are automatically prefixed with the -function name. - - - -### PRINT format specifiers PRIuxx - -Use %PRIu32 instead of %u for uint32_t. Do not assume that this is valid: - -/usr/include/inttypes.h -104:# define PRIu32 "u" - -It could be possible to have a platform where "unsigned" is 64-bit. In theory -even 16-bit. The point is that "unsigned" being 32-bit is nowhere specified. -The PRIuxx specifiers are standard. - -Example usage: - -``` -D_DEBUG("Resolving %"PRIu32" SID(s).\n", state->num_sids); -``` - -Note: - -Do not use PRIu32 for uid_t and gid_t, they do not have to be uint32_t. diff --git a/tests/packagedcode/data/license_detection/reference-to-package/samba/README.cifs-utils b/tests/packagedcode/data/license_detection/reference-to-package/samba/README.cifs-utils deleted file mode 100644 index 6da2ae6eae..0000000000 --- a/tests/packagedcode/data/license_detection/reference-to-package/samba/README.cifs-utils +++ /dev/null @@ -1,7 +0,0 @@ -As of Sunday March 7th, 2010, the Linux CIFS utilities are no longer -part of the samba suite of tools and have been split off into their own -project. Please see this webpage for information on how to acquire and -build them: - - http://linux-cifs.samba.org/cifs-utils/ - diff --git a/tests/packagedcode/data/license_detection/reference-to-package/samba/README.md b/tests/packagedcode/data/license_detection/reference-to-package/samba/README.md index cf55b03bdf..d6ed0f9840 100644 --- a/tests/packagedcode/data/license_detection/reference-to-package/samba/README.md +++ b/tests/packagedcode/data/license_detection/reference-to-package/samba/README.md @@ -24,114 +24,3 @@ copy of which you should have received with this software (in a file called COPYING). - -CONTRIBUTIONS -============= - -Please see https://wiki.samba.org/index.php/Contribute -for detailed set-by-step instructions on how to submit a patch -for Samba via GitLab. - -Samba's GitLab mirror is at https://gitlab.com/samba-team/samba - -OUR CONTRIBUTORS -================ - -See https://www.samba.org/samba/team/ for details of the Samba Team, -as well as details of all those currently active in Samba development. - -If you like a particular feature then look through the git change-log -(on the web at https://gitweb.samba.org/?p=samba.git;a=summary) and see -who added it, then send them an email. - -Remember that free software of this kind lives or dies by the response -we get. If no one tells us they like it then we'll probably move onto -something else. - - -MORE INFO -========= - -DOCUMENTATION -------------- - -There is quite a bit of documentation included with the package, -including man pages and the wiki at https://wiki.samba.org - -If you would like to help with our documentation, please contribute -that improved content to the wiki, we are moving as much content there -as possible. - - -MAILING LIST ------------- - -Please do NOT send subscription/unsubscription requests to the lists! - -There is a mailing list for discussion of Samba. For details go to - or send mail to - -There is also an announcement mailing list where new versions are -announced. To subscribe go to or send mail -to . All announcements also -go to the samba list, so you only need to be on one. - -For details of other Samba mailing lists and for access to archives, see - - - -MAILING LIST ETIQUETTE ----------------------- - -A few tips when submitting to this or any mailing list. - -1. Make your subject short and descriptive. Avoid the words "help" or - "Samba" in the subject. The readers of this list already know that - a) you need help, and b) you are writing about samba (of course, - you may need to distinguish between Samba PDC and other file - sharing software). Avoid phrases such as "what is" and "how do - i". Some good subject lines might look like "Slow response with - Excel files" or "Migrating from Samba PDC to NT PDC". - -2. If you include the original message in your reply, trim it so that - only the relevant lines, enough to establish context, are - included. Chances are (since this is a mailing list) we've already - read the original message. - -3. Trim irrelevant headers from the original message in your - reply. All we need to see is a) From, b) Date, and c) Subject. We - don't even really need the Subject, if you haven't changed - it. Better yet is to just preface the original message with "On - [date] [someone] wrote:". - -4. Please don't reply to or argue about spam, spam filters or viruses - on any Samba lists. We do have a spam filtering system that is - working quite well thank you very much but occasionally unwanted - messages slip through. Deal with it. - -5. Never say "Me too." It doesn't help anyone solve the - problem. Instead, if you ARE having the same problem, give more - information. Have you seen something that the other writer hasn't - mentioned, which may be helpful? - -6. If you ask about a problem, then come up with the solution on your - own or through another source, by all means post it. Someone else - may have the same problem and is waiting for an answer, but never - hears of it. - -7. Give as much *relevant* information as possible such as Samba - release number, OS, kernel version, etc... - -8. RTFM. Google. - - -WEBSITE -------- - -A Samba website has been setup with lots of useful info. Connect to: - -https://www.samba.org/ - -As well as general information and documentation, this also has searchable -archives of the mailing list and links to other useful resources such as -the wiki. diff --git a/tests/packagedcode/data/license_detection/reference-to-package/samba/configure b/tests/packagedcode/data/license_detection/reference-to-package/samba/configure deleted file mode 100755 index ef80911d94..0000000000 --- a/tests/packagedcode/data/license_detection/reference-to-package/samba/configure +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh - -PREVPATH=$(dirname $0) - -WAF=./buildtools/bin/waf - -# using JOBS=1 gives maximum compatibility with -# systems like AIX which have broken threading in python -JOBS=1 -export JOBS - -# Make sure we don't have any library preloaded. -unset LD_PRELOAD - -# Make sure we get stable hashes -PYTHONHASHSEED=1 -export PYTHONHASHSEED - -cd . || exit 1 -$PYTHON $WAF configure "$@" || exit 1 -cd $PREVPATH diff --git a/tests/packagedcode/data/license_detection/reference-to-package/samba/configure.developer b/tests/packagedcode/data/license_detection/reference-to-package/samba/configure.developer deleted file mode 100755 index 68616e526a..0000000000 --- a/tests/packagedcode/data/license_detection/reference-to-package/samba/configure.developer +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -`dirname $0`/configure -C \ - --enable-developer \ - "$@" diff --git a/tests/packagedcode/data/license_detection/reference-to-package/samba/setup.cfg b/tests/packagedcode/data/license_detection/reference-to-package/samba/setup.cfg deleted file mode 100644 index 6c3d32cbc9..0000000000 --- a/tests/packagedcode/data/license_detection/reference-to-package/samba/setup.cfg +++ /dev/null @@ -1,8 +0,0 @@ -[pycodestyle] -# refer to: https://pep8.readthedocs.io/en/1.4.6/intro.html#error-codes -# E402: module level import not at top of file -# W503: line break before binary operator -# -ignore = E402,W503 -show-source = true -statistics = true diff --git a/tests/packagedcode/data/license_detection/reference-to-package/samba/source3/locale/net/de.po b/tests/packagedcode/data/license_detection/reference-to-package/samba/source3/locale/net/de.po index 95d62990db..804af4ba14 100644 --- a/tests/packagedcode/data/license_detection/reference-to-package/samba/source3/locale/net/de.po +++ b/tests/packagedcode/data/license_detection/reference-to-package/samba/source3/locale/net/de.po @@ -15,8838 +15,3 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../../utils/net.c:103 -msgid "Enter machine password: " -msgstr "Bitte Maschinenpasswort eingeben: " - -#: ../../utils/net.c:107 -msgid "Unable to write the machine account password in the secrets database" -msgstr "" - -#: ../../utils/net.c:111 -msgid "Modified trust account password in secrets database\n" -msgstr "" - -#: ../../utils/net.c:115 -msgid "" -"Machine account password change requires the -f flag.\n" -"Do NOT use this function unless you know what it does!\n" -"This function will change the ADS Domain member machine account password in the secrets.tdb file!\n" -msgstr "" - -#: ../../utils/net.c:132 -msgid "Failed to open secrets.tdb.\n" -msgstr "" - -#: ../../utils/net.c:139 ../../utils/net.c:157 ../../utils/net_ads.c:1435 ../../utils/net_ads.c:1487 ../../utils/net_conf.c:1156 ../../utils/net_groupmap.c:195 ../../utils/net_groupmap.c:271 ../../utils/net_groupmap.c:355 ../../utils/net_groupmap.c:411 -#: ../../utils/net_groupmap.c:494 ../../utils/net_groupmap.c:521 ../../utils/net_help.c:36 ../../utils/net_rap.c:161 ../../utils/net_rap.c:302 ../../utils/net_rap.c:467 ../../utils/net_rap.c:752 ../../utils/net_rap.c:893 ../../utils/net_rap.c:1004 -#: ../../utils/net_rap.c:1195 ../../utils/net_rpc.c:2730 ../../utils/net_rpc.c:2845 ../../utils/net_rpc.c:4961 ../../utils/net_rpc.c:6953 ../../utils/net_rpc.c:7043 ../../utils/net_rpc.c:7148 ../../utils/net_util.c:586 -msgid "Usage:\n" -msgstr "Verwendung:\n" - -#: ../../utils/net.c:141 -#, c-format -msgid "" -" net setauthuser -U user[%%password] \n" -" Set the auth user account to userpassword. Prompt for password if not specified.\n" -msgstr "" - -#: ../../utils/net.c:146 ../../utils/net.c:164 -msgid "" -" net setauthuser delete\n" -" Delete the auth user setting.\n" -msgstr "" - -#: ../../utils/net.c:159 -#, c-format -msgid "" -" net setauthuser -U user[%%password]\n" -" Set the auth user account to userpassword. Prompt for password if not specified.\n" -msgstr "" - -#: ../../utils/net.c:169 -msgid "the auth user" -msgstr "" - -#: ../../utils/net.c:171 -msgid "Failed to get the auth users password.\n" -msgstr "" - -#: ../../utils/net.c:177 -msgid "error storing auth user name\n" -msgstr "" - -#: ../../utils/net.c:183 -msgid "error storing auth user domain\n" -msgstr "" - -#: ../../utils/net.c:189 -msgid "error storing auth user password\n" -msgstr "" - -#: ../../utils/net.c:213 -msgid "No authorised user configured\n" -msgstr "" - -#: ../../utils/net.c:255 ../../utils/net.c:336 -#, c-format -msgid "Unable to open secrets.tdb. Can't fetch domain SID for name: %s\n" -msgstr "" - -#: ../../utils/net.c:268 ../../utils/net.c:359 -#, c-format -msgid "SID for domain %s is: %s\n" -msgstr "SID der Domäne %s ist: %s\n" - -# c-format -#: ../../utils/net.c:280 ../../utils/net.c:301 ../../utils/net.c:320 ../../utils/net.c:405 ../../utils/net_ads.c:134 ../../utils/net_ads.c:166 ../../utils/net_ads.c:382 ../../utils/net_ads.c:709 ../../utils/net_ads.c:862 ../../utils/net_ads.c:898 -#: ../../utils/net_ads.c:942 ../../utils/net_ads.c:1057 ../../utils/net_ads.c:1560 ../../utils/net_ads.c:1600 ../../utils/net_ads.c:1665 ../../utils/net_ads.c:1792 ../../utils/net_ads.c:1896 ../../utils/net_ads.c:1982 ../../utils/net_ads.c:2225 -#: ../../utils/net_ads.c:2246 ../../utils/net_ads.c:2274 ../../utils/net_ads.c:2293 ../../utils/net_ads.c:2362 ../../utils/net_ads.c:2388 ../../utils/net_ads.c:2445 ../../utils/net_ads_gpo.c:41 ../../utils/net_ads_gpo.c:230 ../../utils/net_ads_gpo.c:304 -#: ../../utils/net_ads_gpo.c:456 ../../utils/net_ads_gpo.c:498 ../../utils/net_ads_gpo.c:586 ../../utils/net_afs.c:38 ../../utils/net_afs.c:71 ../../utils/net_cache.c:159 ../../utils/net_cache.c:198 ../../utils/net_cache.c:228 ../../utils/net_cache.c:257 -#: ../../utils/net_cache.c:283 ../../utils/net_cache.c:306 ../../utils/net_cache.c:321 ../../utils/net_conf.c:42 ../../utils/net_conf.c:50 ../../utils/net_conf.c:63 ../../utils/net_conf.c:70 ../../utils/net_conf.c:78 ../../utils/net_conf.c:87 -#: ../../utils/net_conf.c:104 ../../utils/net_conf.c:113 ../../utils/net_conf.c:122 ../../utils/net_conf.c:131 ../../utils/net_conf.c:140 ../../utils/net_conf.c:149 ../../utils/net_conf.c:158 ../../utils/net_dom.c:27 ../../utils/net_dom.c:32 -#: ../../utils/net_dom.c:37 ../../utils/net_eventlog.c:47 ../../utils/net_eventlog.c:104 ../../utils/net_eventlog.c:200 ../../utils/net_groupmap.c:119 ../../utils/net_groupmap.c:557 ../../utils/net_groupmap.c:677 ../../utils/net_groupmap.c:715 -#: ../../utils/net_groupmap.c:738 ../../utils/net_groupmap.c:762 ../../utils/net_groupmap.c:822 ../../utils/net_idmap.c:65 ../../utils/net_idmap.c:97 ../../utils/net_idmap.c:244 ../../utils/net_idmap.c:344 ../../utils/net_lookup.c:327 -#: ../../utils/net_lookup.c:351 ../../utils/net_lookup.c:384 ../../utils/net_rap.c:507 ../../utils/net_rap.c:537 ../../utils/net_registry.c:134 ../../utils/net_registry.c:189 ../../utils/net_registry.c:246 ../../utils/net_registry.c:291 -#: ../../utils/net_registry.c:341 ../../utils/net_registry.c:398 ../../utils/net_registry.c:443 ../../utils/net_rpc.c:280 ../../utils/net_rpc.c:413 ../../utils/net_rpc.c:443 ../../utils/net_rpc.c:561 ../../utils/net_rpc.c:629 ../../utils/net_rpc.c:999 -#: ../../utils/net_rpc.c:1049 ../../utils/net_rpc.c:1131 ../../utils/net_rpc.c:1186 ../../utils/net_rpc.c:1933 ../../utils/net_rpc.c:2136 ../../utils/net_rpc.c:2221 ../../utils/net_rpc.c:3072 ../../utils/net_rpc.c:3258 ../../utils/net_rpc.c:3593 -#: ../../utils/net_rpc.c:3720 ../../utils/net_rpc.c:3755 ../../utils/net_rpc.c:4560 ../../utils/net_rpc.c:4686 ../../utils/net_rpc.c:4750 ../../utils/net_rpc.c:4768 ../../utils/net_rpc.c:5071 ../../utils/net_rpc.c:5220 ../../utils/net_rpc.c:5279 -#: ../../utils/net_rpc.c:5394 ../../utils/net_rpc.c:5436 ../../utils/net_rpc.c:5554 ../../utils/net_rpc.c:5638 ../../utils/net_rpc.c:5803 ../../utils/net_rpc.c:5937 ../../utils/net_rpc.c:6096 ../../utils/net_rpc.c:6471 ../../utils/net_rpc.c:6520 -#: ../../utils/net_rpc.c:6558 ../../utils/net_rpc.c:6614 ../../utils/net_rpc.c:6646 ../../utils/net_rpc.c:6678 ../../utils/net_rpc.c:6710 ../../utils/net_rpc.c:6742 ../../utils/net_rpc.c:6846 ../../utils/net_rpc.c:6873 ../../utils/net_rpc.c:6900 -#: ../../utils/net_rpc.c:6926 ../../utils/net_rpc.c:6980 ../../utils/net_rpc_audit.c:370 ../../utils/net_rpc_audit.c:388 ../../utils/net_rpc_audit.c:406 ../../utils/net_rpc_audit.c:424 ../../utils/net_rpc_audit.c:442 ../../utils/net_rpc_registry.c:475 -#: ../../utils/net_rpc_registry.c:530 ../../utils/net_rpc_registry.c:646 ../../utils/net_rpc_registry.c:674 ../../utils/net_rpc_registry.c:748 ../../utils/net_rpc_registry.c:799 ../../utils/net_rpc_registry.c:831 ../../utils/net_rpc_registry.c:905 -#: ../../utils/net_rpc_registry.c:1094 ../../utils/net_rpc_registry.c:1140 ../../utils/net_rpc_registry.c:1213 ../../utils/net_rpc_rights.c:417 ../../utils/net_rpc_rights.c:455 ../../utils/net_rpc_rights.c:526 ../../utils/net_rpc_rights.c:583 -#: ../../utils/net_rpc_rights.c:601 ../../utils/net_rpc_rights.c:623 ../../utils/net_rpc_samsync.c:258 ../../utils/net_rpc_samsync.c:341 ../../utils/net_rpc_samsync.c:485 ../../utils/net_rpc_service.c:218 ../../utils/net_rpc_service.c:327 -#: ../../utils/net_rpc_service.c:459 ../../utils/net_rpc_service.c:505 ../../utils/net_rpc_service.c:551 ../../utils/net_rpc_service.c:597 ../../utils/net_rpc_service.c:677 ../../utils/net_rpc_service.c:756 ../../utils/net_rpc_service.c:827 -#: ../../utils/net_rpc_service.c:845 ../../utils/net_rpc_service.c:863 ../../utils/net_rpc_service.c:881 ../../utils/net_rpc_service.c:899 ../../utils/net_rpc_service.c:917 ../../utils/net_rpc_service.c:935 ../../utils/net_rpc_service.c:953 -#: ../../utils/net_rpc_sh_acct.c:158 ../../utils/net_rpc_sh_acct.c:229 ../../utils/net_rpc_shell.c:217 ../../utils/net_sam.c:40 ../../utils/net_sam.c:146 ../../utils/net_sam.c:239 ../../utils/net_sam.c:303 ../../utils/net_sam.c:468 -#: ../../utils/net_sam.c:535 ../../utils/net_sam.c:583 ../../utils/net_sam.c:642 ../../utils/net_sam.c:699 ../../utils/net_sam.c:738 ../../utils/net_sam.c:866 ../../utils/net_sam.c:930 ../../utils/net_sam.c:967 ../../utils/net_sam.c:1000 -#: ../../utils/net_sam.c:1043 ../../utils/net_sam.c:1080 ../../utils/net_sam.c:1124 ../../utils/net_sam.c:1178 ../../utils/net_sam.c:1267 ../../utils/net_sam.c:1341 ../../utils/net_sam.c:1416 ../../utils/net_sam.c:1551 ../../utils/net_sam.c:1593 -#: ../../utils/net_status.c:69 ../../utils/net_status.c:221 ../../utils/net_time.c:139 ../../utils/net_time.c:165 ../../utils/net_time.c:227 -#, c-format -msgid "Usage:" -msgstr "Verwendung:" - -#: ../../utils/net.c:346 -msgid "Could not fetch local SID\n" -msgstr "Lokale SID nicht abrufbar\n" - -#: ../../utils/net.c:350 -#, c-format -msgid "SID for local machine %s is: %s\n" -msgstr "SID des lokalen Rechners %s ist: %s\n" - -#: ../../utils/net.c:354 -msgid "Could not fetch domain SID\n" -msgstr "SID der Domäne nicht abrufbar\n" - -#: ../../utils/net.c:371 -#, c-format -msgid "get_maxrid: Could not search %s\n" -msgstr "get_maxrid: Konnte %s nicht suchen\n" - -#: ../../utils/net.c:410 -msgid "can't get current maximum rid\n" -msgstr "" - -#: ../../utils/net.c:414 -#, c-format -msgid "Currently used maximum rid: %d\n" -msgstr "" - -#: ../../utils/net.c:425 -msgid "Run functions using RPC transport" -msgstr "RPC Protokoll nutzen" - -#: ../../utils/net.c:426 -msgid " Use 'net help rpc' to get more extensive information about 'net rpc' commands." -msgstr "" - -#: ../../utils/net.c:433 -msgid "Run functions using RAP transport" -msgstr "RAP Protokoll nutzen" - -#: ../../utils/net.c:434 -msgid " Use 'net help rap' to get more extensive information about 'net rap' commands." -msgstr "" - -#: ../../utils/net.c:441 -msgid "Run functions using ADS transport" -msgstr "ADS Protokoll nutzen" - -#: ../../utils/net.c:442 -msgid " Use 'net help ads' to get more extensive information about 'net ads' commands." -msgstr "" - -#: ../../utils/net.c:451 -msgid "Functions on remote opened files" -msgstr "Freigegebene Dateien verwalten" - -#: ../../utils/net.c:452 -msgid " Use 'net help file' to get more information about 'net file' commands." -msgstr "" - -#: ../../utils/net.c:459 -msgid "Functions on shares" -msgstr "Freigaben verwalten" - -#: ../../utils/net.c:460 -msgid " Use 'net help share' to get more information about 'net share' commands." -msgstr "" - -#: ../../utils/net.c:467 -msgid "Manage sessions" -msgstr "Sitzungen verwalten" - -#: ../../utils/net.c:468 -msgid " Use 'net help session' to get more information about 'net session' commands." -msgstr "" - -#: ../../utils/net.c:475 ../../utils/net_rap.c:1293 -msgid "List servers in workgroup" -msgstr "Server der Arbeitsgruppe auflisten" - -#: ../../utils/net.c:476 -msgid " Use 'net help server' to get more information about 'net server' commands." -msgstr "" - -#: ../../utils/net.c:483 -msgid "List domains/workgroups on network" -msgstr "Domänen/Arbeitsgruppen im Netzwerk auflisten" - -#: ../../utils/net.c:484 -msgid " Use 'net help domain' to get more information about 'net domain' commands." -msgstr "" - -#: ../../utils/net.c:491 -msgid "Modify printer queue" -msgstr "Druckerwarteschlange ändern" - -#: ../../utils/net.c:492 -msgid " Use 'net help printq' to get more information about 'net printq' commands." -msgstr "" - -#: ../../utils/net.c:499 -msgid "Manage users" -msgstr "Benutzer verwalten" - -#: ../../utils/net.c:500 -msgid " Use 'net help user' to get more information about 'net user' commands." -msgstr "" - -#: ../../utils/net.c:507 -msgid "Manage groups" -msgstr "Gruppen verwalten" - -#: ../../utils/net.c:508 -msgid " Use 'net help group' to get more information about 'net group' commands." -msgstr "" - -#: ../../utils/net.c:515 -msgid "Manage group mappings" -msgstr "Gruppenzuweisungen verwalten" - -#: ../../utils/net.c:516 -msgid " Use 'net help groupmap' to get more information about 'net groupmap' commands." -msgstr "" - -#: ../../utils/net.c:523 -msgid "Functions on the SAM database" -msgstr "SAM Datenbank nutzen" - -#: ../../utils/net.c:524 -msgid " Use 'net help sam' to get more information about 'net sam' commands." -msgstr "" - -#: ../../utils/net.c:531 -msgid "Validate username and password" -msgstr "Benutzername und Passwort prüfen" - -#: ../../utils/net.c:532 -msgid " Use 'net help validate' to get more information about 'net validate' commands." -msgstr "" - -#: ../../utils/net.c:539 -msgid "Modify group memberships" -msgstr "Gruppenzugehörigkeiten verwalten" - -#: ../../utils/net.c:540 -msgid " Use 'net help groupmember' to get more information about 'net groupmember' commands." -msgstr "" - -#: ../../utils/net.c:546 -msgid "Execute remote command on a remote OS/2 server" -msgstr "Befehl auf einem entfernten OS/2 Server ausführen" - -#: ../../utils/net.c:547 -msgid " Use 'net help admin' to get more information about 'net admin' commands." -msgstr "" - -#: ../../utils/net.c:553 -msgid "List/modify running services" -msgstr "Zeige/Ändere laufende Dienste" - -#: ../../utils/net.c:554 -msgid " Use 'net help service' to get more information about 'net service' commands." -msgstr "" - -#: ../../utils/net.c:561 -msgid "Change user password on target server" -msgstr "Benutzerpasswort auf Zielserver ändern" - -#: ../../utils/net.c:562 -msgid " Use 'net help password' to get more information about 'net password' commands." -msgstr "" - -#: ../../utils/net.c:568 -msgid "Change the trust password" -msgstr "Passwort von Vertrauenskonto ändern" - -#: ../../utils/net.c:569 -msgid " Use 'net help changetrustpw' to get more information about 'net changetrustpw'." -msgstr "" - -#: ../../utils/net.c:575 -msgid "Change the secret password" -msgstr "Das geheime Passwort ändern" - -#: ../../utils/net.c:576 -msgid "" -" net [options] changesecretpw\n" -" Change the ADS domain member machine account password in secrets.tdb.\n" -" Do NOT use this function unless you know what it does.\n" -" Requires the -f flag to work." -msgstr "" - -#: ../../utils/net.c:586 -msgid "Set the winbind auth user" -msgstr "Winbind Authentfikationseinstellungen setzten" - -#: ../../utils/net.c:587 -#, c-format -msgid "" -" net -U user[%%password] [-W domain] setauthuser\n" -" Set the auth user, password (and optionally domain\n" -" Will prompt for password if not given.\n" -" net setauthuser delete\n" -" Delete the existing auth user settings." -msgstr "" - -#: ../../utils/net.c:597 -msgid "Get the winbind auth user settings" -msgstr "Winbind Authentfikationseinstellungen lesen" - -#: ../../utils/net.c:598 -msgid "" -" net getauthuser\n" -" Get the current winbind auth user settings." -msgstr "" - -#: ../../utils/net.c:604 -msgid "Show/set time" -msgstr "Zeigt/Setzt die Systemzeit" - -#: ../../utils/net.c:605 -msgid " Use 'net help time' to get more information about 'net time' commands." -msgstr "" - -#: ../../utils/net.c:611 -msgid "Look up host names/IP addresses" -msgstr "Hostname/IP-Adresse nachschlagen" - -#: ../../utils/net.c:612 -msgid " Use 'net help lookup' to get more information about 'net lookup' commands." -msgstr "" - -#: ../../utils/net.c:618 -msgid "Join a domain/AD" -msgstr "Einer Domäne/AD beitreten" - -#: ../../utils/net.c:619 -msgid " Use 'net help join' to get more information about 'net join'." -msgstr "" - -#: ../../utils/net.c:625 -msgid "Join/unjoin (remote) machines to/from a domain/AD" -msgstr "Domäne/AD betreten/verlassen" - -#: ../../utils/net.c:626 -msgid " Use 'net help dom' to get more information about 'net dom' commands." -msgstr "" - -#: ../../utils/net.c:632 -msgid "Operate on the cache tdb file" -msgstr "Cache tdb Datei nutzen" - -#: ../../utils/net.c:633 -msgid " Use 'net help cache' to get more information about 'net cache' commands." -msgstr "" - -#: ../../utils/net.c:639 -msgid "Get the SID for the local domain" -msgstr "SID der lokalen Domäne anzeigen" - -#: ../../utils/net.c:640 -msgid " net getlocalsid" -msgstr "" - -#: ../../utils/net.c:645 -msgid "Set the SID for the local domain" -msgstr "SID der lokalen Domäne ändern" - -#: ../../utils/net.c:646 -msgid " net setlocalsid S-1-5-21-x-y-z" -msgstr "" - -#: ../../utils/net.c:651 -msgid "Set domain SID on member servers" -msgstr "SID der Domäne ändern (wenn zugehörig)" - -#: ../../utils/net.c:652 -msgid " net setdomainsid S-1-5-21-x-y-z" -msgstr "" - -#: ../../utils/net.c:657 -msgid "Get domain SID on member servers" -msgstr "SID der Domäne anzeigen (wenn zugehörig)" - -#: ../../utils/net.c:658 -msgid " net getdomainsid" -msgstr "" - -#: ../../utils/net.c:663 -msgid "Display the maximum RID currently used" -msgstr "Die höchste verwendete RID anzeigen" - -#: ../../utils/net.c:664 -msgid " net maxrid" -msgstr "" - -#: ../../utils/net.c:669 -msgid "IDmap functions" -msgstr "IDmap nutzen" - -#: ../../utils/net.c:670 -msgid " Use 'net help idmap to get more information about 'net idmap' commands." -msgstr "" - -#: ../../utils/net.c:676 -msgid "Display server status" -msgstr "Zeigt den Server Status" - -#: ../../utils/net.c:677 -msgid " Use 'net help status' to get more information about 'net status' commands." -msgstr "" - -#: ../../utils/net.c:683 -msgid "Manage user-modifiable shares" -msgstr "Benutzerfreigaben verwalten" - -#: ../../utils/net.c:684 -msgid " Use 'net help usershare to get more information about 'net usershare' commands." -msgstr "" - -#: ../../utils/net.c:690 -msgid "Display list of all users with SID" -msgstr "Zeigt eine Liste aller SID-Benutzer" - -#: ../../utils/net.c:691 -msgid " Use 'net help usersidlist' to get more information about 'net usersidlist'." -msgstr "" - -#: ../../utils/net.c:697 -msgid "Manage Samba registry based configuration" -msgstr "Konfiguration ändern" - -#: ../../utils/net.c:698 -msgid " Use 'net help conf' to get more information about 'net conf' commands." -msgstr "" - -#: ../../utils/net.c:704 -msgid "Manage the Samba registry" -msgstr "Die Sambaregistrierung verwalten" - -#: ../../utils/net.c:705 -msgid " Use 'net help registry' to get more information about 'net registry' commands." -msgstr "" - -#: ../../utils/net.c:711 -msgid "Process Win32 *.evt eventlog files" -msgstr "Arbeitet mit Win32 *.evt Eventlog Dateien" - -#: ../../utils/net.c:712 -msgid " Use 'net help eventlog' to get more information about 'net eventlog' commands." -msgstr "" - -#: ../../utils/net.c:720 -msgid "Manage AFS tokens" -msgstr "AFS Tickets verwalten" - -#: ../../utils/net.c:721 -msgid " Use 'net help afs' to get more information about 'net afs' commands." -msgstr "" - -#: ../../utils/net.c:729 -msgid "Print usage information" -msgstr "Zeigt die Hilfe an" - -#: ../../utils/net.c:730 -msgid " Use 'net help help' to list usage information for 'net' commands." -msgstr "" - -#: ../../utils/net.c:759 -msgid "Encrypt SMB transport" -msgstr "SMB Übertragung verschlüsseln" - -#: ../../utils/net.c:827 -msgid "" -"\n" -"Invalid ip address specified\n" -msgstr "" - -#: ../../utils/net.c:842 -#, c-format -msgid "" -"\n" -"Invalid option %s: %s\n" -msgstr "" -"\n" -"Ungültige Option %s: %s\n" - -#: ../../utils/net_ads.c:53 ../../utils/net_ads.c:399 -msgid "CLDAP query failed!\n" -msgstr "" - -#: ../../utils/net_ads.c:57 -#, c-format -msgid "" -"Information for Domain Controller: %s\n" -"\n" -msgstr "" - -#: ../../utils/net_ads.c:60 -msgid "Response Type: " -msgstr "" - -#: ../../utils/net_ads.c:73 -#, c-format -msgid "GUID: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:75 -#, c-format -msgid "" -"Flags:\n" -"\tIs a PDC: %s\n" -"\tIs a GC of the forest: %s\n" -"\tIs an LDAP server: %s\n" -"\tSupports DS: %s\n" -"\tIs running a KDC: %s\n" -"\tIs running time services: %s\n" -"\tIs the closest DC: %s\n" -"\tIs writable: %s\n" -"\tHas a hardware clock: %s\n" -"\tIs a non-domain NC serviced by LDAP server: %s\n" -"\tIs NT6 DC that has some secrets: %s\n" -"\tIs NT6 DC that has all secrets: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:88 ../../utils/net_ads.c:89 ../../utils/net_ads.c:90 ../../utils/net_ads.c:91 ../../utils/net_ads.c:92 ../../utils/net_ads.c:93 ../../utils/net_ads.c:94 ../../utils/net_ads.c:95 ../../utils/net_ads.c:96 ../../utils/net_ads.c:97 -#: ../../utils/net_ads.c:98 ../../utils/net_ads.c:99 ../../utils/net_rap.c:376 ../../utils/net_rpc_sh_acct.c:204 ../../utils/net_rpc_sh_acct.c:207 -msgid "yes" -msgstr "Ja" - -#: ../../utils/net_ads.c:88 ../../utils/net_ads.c:89 ../../utils/net_ads.c:90 ../../utils/net_ads.c:91 ../../utils/net_ads.c:92 ../../utils/net_ads.c:93 ../../utils/net_ads.c:94 ../../utils/net_ads.c:95 ../../utils/net_ads.c:96 ../../utils/net_ads.c:97 -#: ../../utils/net_ads.c:98 ../../utils/net_ads.c:99 ../../utils/net_rap.c:376 ../../utils/net_rpc_sh_acct.c:204 ../../utils/net_rpc_sh_acct.c:207 -msgid "no" -msgstr "Nein" - -#: ../../utils/net_ads.c:102 -#, c-format -msgid "Forest:\t\t\t%s\n" -msgstr "" - -#: ../../utils/net_ads.c:103 -#, c-format -msgid "Domain:\t\t\t%s\n" -msgstr "Domäne:\t\t\t%s\n" - -#: ../../utils/net_ads.c:104 -#, c-format -msgid "Domain Controller:\t%s\n" -msgstr "" - -#: ../../utils/net_ads.c:106 -#, c-format -msgid "Pre-Win2k Domain:\t%s\n" -msgstr "" - -#: ../../utils/net_ads.c:107 -#, c-format -msgid "Pre-Win2k Hostname:\t%s\n" -msgstr "" - -#: ../../utils/net_ads.c:109 -#, c-format -msgid "User name:\t%s\n" -msgstr "Benutzername:\t%s\n" - -#: ../../utils/net_ads.c:111 -#, c-format -msgid "Server Site Name :\t\t%s\n" -msgstr "" - -#: ../../utils/net_ads.c:112 -#, c-format -msgid "Client Site Name :\t\t%s\n" -msgstr "" - -#: ../../utils/net_ads.c:114 -#, c-format -msgid "NT Version: %d\n" -msgstr "NT Version: %d\n" - -#: ../../utils/net_ads.c:115 -#, c-format -msgid "LMNT Token: %.2x\n" -msgstr "" - -#: ../../utils/net_ads.c:116 -#, c-format -msgid "LM20 Token: %.2x\n" -msgstr "" - -#: ../../utils/net_ads.c:135 -msgid "Find the ADS DC using CLDAP lookup.\n" -msgstr "" - -#: ../../utils/net_ads.c:140 ../../utils/net_ads.c:388 -msgid "Didn't find the cldap server!\n" -msgstr "" - -#: ../../utils/net_ads.c:167 -msgid "Display information about an Active Directory server.\n" -msgstr "" - -#: ../../utils/net_ads.c:173 ../../utils/net_ads.c:178 -msgid "Didn't find the ldap server!\n" -msgstr "" - -#: ../../utils/net_ads.c:187 -msgid "Failed to get server's current time!\n" -msgstr "" - -#: ../../utils/net_ads.c:192 -#, c-format -msgid "LDAP server: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:193 -#, c-format -msgid "LDAP server name: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:194 -#, c-format -msgid "Realm: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:195 -#, c-format -msgid "Bind Path: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:196 -#, c-format -msgid "LDAP port: %d\n" -msgstr "" - -#: ../../utils/net_ads.c:197 -#, c-format -msgid "Server time: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:200 -#, c-format -msgid "KDC server: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:201 -#, c-format -msgid "Server time offset: %d\n" -msgstr "" - -#: ../../utils/net_ads.c:383 -msgid "Print the workgroup name" -msgstr "" - -#: ../../utils/net_ads.c:404 -#, c-format -msgid "Workgroup: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:465 -#, c-format -msgid "ads_user_add: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:470 -#, c-format -msgid "ads_user_add: User %s already exists\n" -msgstr "" - -#: ../../utils/net_ads.c:484 -#, c-format -msgid "Could not add user %s: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:491 ../../utils/net_ads.c:504 -#, c-format -msgid "User %s added\n" -msgstr "" - -#. password didn't set, delete account -#: ../../utils/net_ads.c:510 -#, c-format -msgid "Could not add user %s. Error setting password %s\n" -msgstr "" - -#: ../../utils/net_ads.c:558 -#, c-format -msgid "ads_user_info: failed to escape user %s\n" -msgstr "" - -#: ../../utils/net_ads.c:576 -#, c-format -msgid "ads_search: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:582 -msgid "ads_pull_uint32 failed\n" -msgstr "" - -#: ../../utils/net_ads.c:589 -#, c-format -msgid "ads_domain_sid: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:649 -#, c-format -msgid "User %s does not exist.\n" -msgstr "" - -#: ../../utils/net_ads.c:659 -#, c-format -msgid "User %s deleted\n" -msgstr "" - -#: ../../utils/net_ads.c:663 -#, c-format -msgid "Error deleting user %s: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:676 -msgid "Add an AD user" -msgstr "" - -#: ../../utils/net_ads.c:677 -msgid "" -"net ads user add\n" -" Add an AD user" -msgstr "" - -#: ../../utils/net_ads.c:684 -msgid "Display information about an AD user" -msgstr "" - -#: ../../utils/net_ads.c:685 -msgid "" -"net ads user info\n" -" Display information about an AD user" -msgstr "" - -#: ../../utils/net_ads.c:692 -msgid "Delete an AD user" -msgstr "" - -#: ../../utils/net_ads.c:693 -msgid "" -"net ads user delete\n" -" Delete an AD user" -msgstr "" - -#: ../../utils/net_ads.c:710 -msgid "List AD users" -msgstr "AD Benutzer auflisten" - -#: ../../utils/net_ads.c:720 ../../utils/net_rap.c:903 ../../utils/net_rpc.c:888 -msgid "" -"\n" -"User name Comment\n" -"-----------------------------\n" -msgstr "" - -#: ../../utils/net_ads.c:760 -#, c-format -msgid "ads_group_add: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:765 -#, c-format -msgid "ads_group_add: Group %s already exists\n" -msgstr "" - -#: ../../utils/net_ads.c:778 -#, c-format -msgid "Group %s added\n" -msgstr "" - -#: ../../utils/net_ads.c:781 -#, c-format -msgid "Could not add group %s: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:810 -#, c-format -msgid "Group %s does not exist.\n" -msgstr "" - -#: ../../utils/net_ads.c:820 -#, c-format -msgid "Group %s deleted\n" -msgstr "" - -#: ../../utils/net_ads.c:824 -#, c-format -msgid "Error deleting group %s: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:837 -msgid "Add an AD group" -msgstr "AD Gruppe hinzufügen" - -#: ../../utils/net_ads.c:838 -msgid "" -"net ads group add\n" -" Add an AD group" -msgstr "" -"net ads group add\n" -" AD Gruppe hinzufügen" - -#: ../../utils/net_ads.c:845 -msgid "Delete an AD group" -msgstr "AD Gruppe entfernen" - -#: ../../utils/net_ads.c:846 -msgid "" -"net ads group delete\n" -" Delete an AD group" -msgstr "" -"net ads group delete\n" -" AD Gruppe entfernen" - -#: ../../utils/net_ads.c:863 -msgid "List AD groups" -msgstr "AD Gruppen auflisten" - -#: ../../utils/net_ads.c:873 ../../utils/net_rpc.c:2273 -msgid "" -"\n" -"Group name Comment\n" -"-----------------------------\n" -msgstr "" -"\n" -"Gruppenname Kommentar\n" -"-----------------------------\n" - -#: ../../utils/net_ads.c:899 ../../utils/net_ads.c:2548 -msgid "Display machine account details" -msgstr "" - -#: ../../utils/net_ads.c:909 -#, c-format -msgid "ads_find_machine_acct: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:915 -#, c-format -msgid "No machine account for '%s' found\n" -msgstr "" - -#: ../../utils/net_ads.c:943 -msgid "Leave an AD domain" -msgstr "" - -#: ../../utils/net_ads.c:948 -msgid "No realm set, are we joined ?\n" -msgstr "" - -#: ../../utils/net_ads.c:953 ../../utils/net_ads.c:1281 -msgid "Could not initialise talloc context.\n" -msgstr "" - -#: ../../utils/net_ads.c:963 -msgid "Could not initialise unjoin context.\n" -msgstr "" - -#: ../../utils/net_ads.c:983 -#, c-format -msgid "Failed to leave domain: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:990 -#, c-format -msgid "Deleted account for '%s' in realm '%s'\n" -msgstr "" - -#: ../../utils/net_ads.c:997 -#, c-format -msgid "Disabled account for '%s' in realm '%s'\n" -msgstr "" - -#. Based on what we requested, we shouldn't get here, but if -#. we did, it means the secrets were removed, and therefore -#. we have left the domain -#: ../../utils/net_ads.c:1006 -#, c-format -msgid "Machine '%s' Left domain '%s'\n" -msgstr "" - -#: ../../utils/net_ads.c:1058 -msgid "Test if the existing join is ok" -msgstr "" - -#: ../../utils/net_ads.c:1065 -#, c-format -msgid "Join to domain is not valid: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:1070 -#, c-format -msgid "Join is OK\n" -msgstr "Mitgliedschaft ist OK\n" - -#: ../../utils/net_ads.c:1081 -msgid "Host is not configured as a member server.\n" -msgstr "" - -#: ../../utils/net_ads.c:1086 ../../utils/net_rpc.c:462 -#, c-format -msgid "Our netbios name can be at most 15 chars long, \"%s\" is %u chars long\n" -msgstr "" - -#: ../../utils/net_ads.c:1093 -#, c-format -msgid "realm must be set in in %s for ADS join to succeed.\n" -msgstr "" - -#: ../../utils/net_ads.c:1126 -#, c-format -msgid "No DNS domain configured for %s. Unable to perform DNS Update.\n" -msgstr "" - -#: ../../utils/net_ads.c:1233 -msgid "" -"net ads join [options]\n" -"Valid options:\n" -msgstr "" - -#: ../../utils/net_ads.c:1235 -msgid "" -" createupn[=UPN] Set the userPrincipalName attribute during the join.\n" -" The deault UPN is in the form host/netbiosname@REALM.\n" -msgstr "" - -#: ../../utils/net_ads.c:1237 -msgid "" -" createcomputer=OU Precreate the computer account in a specific OU.\n" -" The OU string read from top to bottom without RDNs and delimited by a '/'.\n" -" E.g. \"createcomputer=Computers/Servers/Unix\"\n" -" NB: A backslash '\\' is used as escape at multiple levels and may\n" -" need to be doubled or even quadrupled. It is not used as a separator.\n" -msgstr "" - -#: ../../utils/net_ads.c:1242 -msgid " osName=string Set the operatingSystem attribute during the join.\n" -msgstr "" - -#: ../../utils/net_ads.c:1243 -msgid "" -" osVer=string Set the operatingSystemVersion attribute during the join.\n" -" NB: osName and osVer must be specified together for either to take effect.\n" -" Also, the operatingSystemService attribute is also set when along with\n" -" the two other attributes.\n" -msgstr "" - -#: ../../utils/net_ads.c:1275 -msgid "Invalid configuration. Exiting....\n" -msgstr "" - -#: ../../utils/net_ads.c:1304 -msgid "Please supply a valid OU path.\n" -msgstr "" - -#: ../../utils/net_ads.c:1311 -msgid "Please supply a operating system name.\n" -msgstr "" - -#: ../../utils/net_ads.c:1318 -msgid "Please supply a valid operating system version.\n" -msgstr "" - -#: ../../utils/net_ads.c:1329 -msgid "Please supply a valid domain name\n" -msgstr "" - -#: ../../utils/net_ads.c:1360 -#, c-format -msgid "" -"The workgroup in %s does not match the short\n" -"domain name obtained from the server.\n" -"Using the name [%s] from the server.\n" -"You should set \"workgroup = %s\" in %s.\n" -msgstr "" - -#: ../../utils/net_ads.c:1368 -#, c-format -msgid "Using short domain name -- %s\n" -msgstr "" - -#: ../../utils/net_ads.c:1371 -#, c-format -msgid "Joined '%s' to realm '%s'\n" -msgstr "" - -#: ../../utils/net_ads.c:1374 -#, c-format -msgid "Joined '%s' to domain '%s'\n" -msgstr "" - -#: ../../utils/net_ads.c:1398 ../../utils/net_ads.c:1454 -msgid "DNS update failed!\n" -msgstr "" - -#. issue an overall failure message at the end. -#: ../../utils/net_ads.c:1412 ../../utils/net_dom.c:205 -#, c-format -msgid "Failed to join domain: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:1437 -msgid "Register hostname with DNS\n" -msgstr "" - -#: ../../utils/net_ads.c:1442 -msgid "Could not initialise talloc context\n" -msgstr "" - -#: ../../utils/net_ads.c:1460 -msgid "Successfully registered hostname with DNS\n" -msgstr "" - -#: ../../utils/net_ads.c:1468 -msgid "DNS update support not enabled at compile time!\n" -msgstr "" - -#: ../../utils/net_ads.c:1488 -msgid "net ads dns gethostbyname \n" -msgstr "" - -#: ../../utils/net_ads.c:1489 -msgid "" -" Look up hostname from the AD\n" -" server\tName server to use\n" -" name\tName to look up\n" -msgstr "" - -#: ../../utils/net_ads.c:1497 -#, c-format -msgid "do_gethostbyname returned %d\n" -msgstr "" - -#: ../../utils/net_ads.c:1509 -msgid "Add host dns entry to AD" -msgstr "" - -#: ../../utils/net_ads.c:1510 -msgid "" -"net ads dns register\n" -" Add host dns entry to AD" -msgstr "" - -#: ../../utils/net_ads.c:1517 -msgid "Look up host" -msgstr "" - -#: ../../utils/net_ads.c:1518 -msgid "" -"net ads dns gethostbyname\n" -" Look up host" -msgstr "" - -#: ../../utils/net_ads.c:1533 -msgid "" -"\n" -"net ads printer search \n" -"\tsearch for a printer in the directory\n" -"\n" -"net ads printer info \n" -"\tlookup info in directory for printer on server\n" -"\t(note: printer defaults to \"*\", server defaults to local)\n" -"\n" -"net ads printer publish \n" -"\tpublish printer in directory\n" -"\t(note: printer name is required)\n" -"\n" -"net ads printer remove \n" -"\tremove printer from directory\n" -"\t(note: printer name is required)\n" -msgstr "" - -#: ../../utils/net_ads.c:1561 -msgid "List printers in the AD" -msgstr "" - -#: ../../utils/net_ads.c:1572 -#, c-format -msgid "ads_find_printer: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:1579 -msgid "No results found\n" -msgstr "" - -#: ../../utils/net_ads.c:1601 -msgid "" -"net ads printer info [printername [servername]]\n" -" Display printer info from AD\n" -" printername\tPrinter name or wildcard\n" -" servername\tName of the print server\n" -msgstr "" - -#: ../../utils/net_ads.c:1627 -#, c-format -msgid "Server '%s' not found: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:1635 ../../utils/net_ads.c:1820 -#, c-format -msgid "Printer '%s' not found\n" -msgstr "" - -#: ../../utils/net_ads.c:1666 -msgid "" -"net ads printer publish [servername]\n" -" Publish printer in AD\n" -" printername\tName of the printer\n" -" servername\tName of the print server\n" -msgstr "" - -#: ../../utils/net_ads.c:1700 -#, c-format -msgid "Unable to open a connnection to %s to obtain data for %s\n" -msgstr "" - -#: ../../utils/net_ads.c:1713 -#, c-format -msgid "Could not find machine account for server %s\n" -msgstr "" - -#: ../../utils/net_ads.c:1729 ../../utils/net_ads.c:1738 -msgid "Internal error, out of memory!" -msgstr "" - -#: ../../utils/net_ads.c:1749 -#, c-format -msgid "Unable to open a connnection to the spoolss pipe on %s\n" -msgstr "" - -#: ../../utils/net_ads.c:1793 -msgid "" -"net ads printer remove [servername]\n" -" Remove a printer from the AD\n" -" printername\tName of the printer\n" -" servername\tName of the print server\n" -msgstr "" - -#: ../../utils/net_ads.c:1813 -#, c-format -msgid "ads_find_printer_on_server: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:1832 -#, c-format -msgid "ads_del_dn: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:1848 -msgid "Search for a printer" -msgstr "Drucker suchen" - -#: ../../utils/net_ads.c:1849 -msgid "" -"net ads printer search\n" -" Search for a printer" -msgstr "" - -#: ../../utils/net_ads.c:1856 -msgid "Display printer information" -msgstr "" - -#: ../../utils/net_ads.c:1857 -msgid "" -"net ads printer info\n" -" Display printer information" -msgstr "" - -#: ../../utils/net_ads.c:1864 -msgid "Publish a printer" -msgstr "Drucker freigeben" - -#: ../../utils/net_ads.c:1865 -msgid "" -"net ads printer publish\n" -" Publish a printer" -msgstr "" - -#: ../../utils/net_ads.c:1872 -msgid "Delete a printer" -msgstr "Drucker löschen" - -#: ../../utils/net_ads.c:1873 -msgid "" -"net ads printer remove\n" -" Delete a printer" -msgstr "" - -#: ../../utils/net_ads.c:1897 -msgid "" -"net ads password \n" -" Change password for user\n" -" username\tName of user to change password for\n" -msgstr "" - -#: ../../utils/net_ads.c:1904 -msgid "You must supply an administrator username/password\n" -msgstr "" - -#: ../../utils/net_ads.c:1910 -msgid "ERROR: You must say which username to change password for\n" -msgstr "" - -#: ../../utils/net_ads.c:1942 -msgid "Didn't find the kerberos server!\n" -msgstr "" - -#: ../../utils/net_ads.c:1950 ../../utils/net_rpc.c:792 -#, c-format -msgid "Enter new password for %s:" -msgstr "Bitte neues Passwort für %s eingeben: " - -#: ../../utils/net_ads.c:1960 ../../utils/net_ads.c:2011 -#, c-format -msgid "Password change failed: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:1965 -#, c-format -msgid "Password change for %s completed.\n" -msgstr "" - -#: ../../utils/net_ads.c:1983 -msgid "Change the machine account's trust password" -msgstr "Passwort von Vertrauenskonto ändern" - -#: ../../utils/net_ads.c:2006 -#, c-format -msgid "Changing password for principal: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:2017 -#, c-format -msgid "Password change for principal %s succeeded.\n" -msgstr "" - -#: ../../utils/net_ads.c:2020 -msgid "Attempting to update system keytab with new password.\n" -msgstr "" - -#: ../../utils/net_ads.c:2022 -msgid "Failed to update system keytab.\n" -msgstr "" - -#: ../../utils/net_ads.c:2038 -msgid "" -"\n" -"net ads search \n" -"\n" -"Perform a raw LDAP search on a ADS server and dump the results.\n" -"The expression is a standard LDAP search expression, and the\n" -"attributes are a list of LDAP fields to show in the results.\n" -"\n" -"Example: net ads search '(objectCategory=group)' sAMAccountName\n" -"\n" -msgstr "" - -#: ../../utils/net_ads.c:2075 ../../utils/net_ads.c:2136 ../../utils/net_ads.c:2200 ../../utils/net_ads_gpo.c:253 -#, c-format -msgid "search failed: %s\n" -msgstr "Suche fehlgeschlagen: %s\n" - -#: ../../utils/net_ads.c:2080 ../../utils/net_ads.c:2205 ../../utils/net_ads_gpo.c:259 -#, c-format -msgid "" -"Got %d replies\n" -"\n" -msgstr "" - -#: ../../utils/net_ads.c:2098 -msgid "" -"\n" -"net ads dn \n" -"\n" -"perform a raw LDAP search on a ADS server and dump the results\n" -"The DN standard LDAP DN, and the attributes are a list of LDAP fields \n" -"to show in the results\n" -"\n" -"Example: net ads dn 'CN=administrator,CN=Users,DC=my,DC=domain' sAMAccountName\n" -"\n" -"Note: the DN must be provided properly escaped. See RFC 4514 for details\n" -"\n" -msgstr "" - -#: ../../utils/net_ads.c:2158 -msgid "" -"\n" -"net ads sid \n" -"\n" -"perform a raw LDAP search on a ADS server and dump the results\n" -"The SID is in string format, and the attributes are a list of LDAP fields \n" -"to show in the results\n" -"\n" -"Example: net ads sid 'S-1-5-32' distinguishedName\n" -"\n" -msgstr "" - -#: ../../utils/net_ads.c:2193 -msgid "could not convert sid\n" -msgstr "" - -#: ../../utils/net_ads.c:2226 -msgid "Delete the whole keytab" -msgstr "" - -#: ../../utils/net_ads.c:2247 -msgid "" -"net ads keytab add [principal ...]\n" -" Add principals to local keytab\n" -" principal\tKerberos principal to add to keytab\n" -msgstr "" - -#: ../../utils/net_ads.c:2254 -msgid "Processing principals to add...\n" -msgstr "" - -#: ../../utils/net_ads.c:2275 -msgid "Create new default keytab" -msgstr "" - -#: ../../utils/net_ads.c:2294 -msgid "" -"net ads keytab list [keytab]\n" -" List a local keytab\n" -" keytab\tKeytab to list\n" -msgstr "" - -#: ../../utils/net_ads.c:2315 -msgid "Add a service principal" -msgstr "" - -#: ../../utils/net_ads.c:2316 -msgid "" -"net ads keytab add\n" -" Add a service principal" -msgstr "" - -#: ../../utils/net_ads.c:2323 -msgid "Create a fresh keytab" -msgstr "" - -#: ../../utils/net_ads.c:2324 -msgid "" -"net ads keytab create\n" -" Create a fresh keytab" -msgstr "" - -#: ../../utils/net_ads.c:2331 -msgid "Remove all keytab entries" -msgstr "" - -#: ../../utils/net_ads.c:2332 -msgid "" -"net ads keytab flush\n" -" Remove all keytab entries" -msgstr "" - -#: ../../utils/net_ads.c:2339 -msgid "List a keytab" -msgstr "" - -#: ../../utils/net_ads.c:2340 -msgid "" -"net ads keytab list\n" -" List a keytab" -msgstr "" - -#: ../../utils/net_ads.c:2347 -msgid "" -"\n" -"Warning: \"kerberos method\" must be set to a keytab method to use keytab functions.\n" -msgstr "" - -#: ../../utils/net_ads.c:2363 -msgid "Renew TGT from existing credential cache" -msgstr "" - -#: ../../utils/net_ads.c:2369 -#, c-format -msgid "failed to renew kerberos ticket: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:2389 -msgid "Dump the Kerberos PAC" -msgstr "" - -#: ../../utils/net_ads.c:2417 -#, c-format -msgid "failed to query kerberos PAC: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:2426 -#, c-format -msgid "The Pac: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:2446 -msgid "Get Ticket Granting Ticket (TGT) for the user" -msgstr "" - -#: ../../utils/net_ads.c:2468 -#, c-format -msgid "failed to kinit password: %s\n" -msgstr "" - -#: ../../utils/net_ads.c:2482 -msgid "Retrieve Ticket Granting Ticket (TGT)" -msgstr "" - -#: ../../utils/net_ads.c:2483 -msgid "" -"net ads kerberos kinit\n" -" Receive Ticket Granting Ticket (TGT)" -msgstr "" - -#: ../../utils/net_ads.c:2490 -msgid "Renew Ticket Granting Ticket from credential cache" -msgstr "" - -#: ../../utils/net_ads.c:2491 -msgid "" -"net ads kerberos renew\n" -" Renew Ticket Granting Ticket (TGT) from credential cache" -msgstr "" - -#: ../../utils/net_ads.c:2499 -msgid "Dump Kerberos PAC" -msgstr "" - -#: ../../utils/net_ads.c:2500 -msgid "" -"net ads kerberos pac\n" -" Dump Kerberos PAC" -msgstr "" - -#: ../../utils/net_ads.c:2516 -msgid "Display details on remote ADS server" -msgstr "" - -#: ../../utils/net_ads.c:2517 -msgid "" -"net ads info\n" -" Display details on remote ADS server" -msgstr "" - -#: ../../utils/net_ads.c:2524 -msgid "Join the local machine to ADS realm" -msgstr "" - -#: ../../utils/net_ads.c:2525 -msgid "" -"net ads join\n" -" Join the local machine to ADS realm" -msgstr "" - -#: ../../utils/net_ads.c:2532 -msgid "Validate machine account" -msgstr "" - -#: ../../utils/net_ads.c:2533 -msgid "" -"net ads testjoin\n" -" Validate machine account" -msgstr "" - -#: ../../utils/net_ads.c:2540 -msgid "Remove the local machine from ADS" -msgstr "" - -#: ../../utils/net_ads.c:2541 -msgid "" -"net ads leave\n" -" Remove the local machine from ADS" -msgstr "" - -#: ../../utils/net_ads.c:2549 -msgid "" -"net ads status\n" -" Display machine account details" -msgstr "" - -#: ../../utils/net_ads.c:2556 ../../utils/net_rpc.c:7220 -msgid "List/modify users" -msgstr "" - -#: ../../utils/net_ads.c:2557 -msgid "" -"net ads user\n" -" List/modify users" -msgstr "" - -#: ../../utils/net_ads.c:2564 ../../utils/net_rpc.c:7237 -msgid "List/modify groups" -msgstr "" - -#: ../../utils/net_ads.c:2565 -msgid "" -"net ads group\n" -" List/modify groups" -msgstr "" - -#: ../../utils/net_ads.c:2572 -msgid "Issue dynamic DNS update" -msgstr "" - -#: ../../utils/net_ads.c:2573 -msgid "" -"net ads dns\n" -" Issue dynamic DNS update" -msgstr "" - -#: ../../utils/net_ads.c:2580 -msgid "Change user passwords" -msgstr "" - -#: ../../utils/net_ads.c:2581 -msgid "" -"net ads password\n" -" Change user passwords" -msgstr "" - -#: ../../utils/net_ads.c:2588 ../../utils/net_rpc.c:7269 -msgid "Change trust account password" -msgstr "Trust account Passwort ändern" - -#: ../../utils/net_ads.c:2589 -msgid "" -"net ads changetrustpw\n" -" Change trust account password" -msgstr "" - -#: ../../utils/net_ads.c:2596 -msgid "List/modify printer entries" -msgstr "" - -#: ../../utils/net_ads.c:2597 -msgid "" -"net ads printer\n" -" List/modify printer entries" -msgstr "" - -#: ../../utils/net_ads.c:2604 -msgid "Issue LDAP search using filter" -msgstr "" - -#: ../../utils/net_ads.c:2605 -msgid "" -"net ads search\n" -" Issue LDAP search using filter" -msgstr "" - -#: ../../utils/net_ads.c:2612 -msgid "Issue LDAP search by DN" -msgstr "" - -#: ../../utils/net_ads.c:2613 -msgid "" -"net ads dn\n" -" Issue LDAP search by DN" -msgstr "" - -#: ../../utils/net_ads.c:2620 -msgid "Issue LDAP search by SID" -msgstr "" - -#: ../../utils/net_ads.c:2621 -msgid "" -"net ads sid\n" -" Issue LDAP search by SID" -msgstr "" - -#: ../../utils/net_ads.c:2628 -msgid "Display workgroup name" -msgstr "" - -#: ../../utils/net_ads.c:2629 -msgid "" -"net ads workgroup\n" -" Display the workgroup name" -msgstr "" - -#: ../../utils/net_ads.c:2636 -msgid "Perform CLDAP query on DC" -msgstr "" - -#: ../../utils/net_ads.c:2637 -msgid "" -"net ads lookup\n" -" Find the ADS DC using CLDAP lookups" -msgstr "" - -#: ../../utils/net_ads.c:2644 -msgid "Manage local keytab file" -msgstr "" - -#: ../../utils/net_ads.c:2645 -msgid "" -"net ads keytab\n" -" Manage local keytab file" -msgstr "" - -#: ../../utils/net_ads.c:2652 -msgid "Manage group policy objects" -msgstr "" - -#: ../../utils/net_ads.c:2653 -msgid "" -"net ads gpo\n" -" Manage group policy objects" -msgstr "" - -#: ../../utils/net_ads.c:2660 -msgid "Manage kerberos keytab" -msgstr "" - -#: ../../utils/net_ads.c:2661 -msgid "" -"net ads kerberos\n" -" Manage kerberos keytab" -msgstr "" - -#: ../../utils/net_ads.c:2674 -msgid "ADS support not compiled in\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:42 -msgid "net ads gpo refresh " -msgstr "" - -#: ../../utils/net_ads_gpo.c:43 -msgid "" -" Lists all GPOs assigned to an account and downloads them\n" -" username\tUser to refresh GPOs for\n" -" machinename\tMachine to refresh GPOs for\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:57 -#, c-format -msgid "failed to connect AD server: %s\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:63 -#, c-format -msgid "failed to find samaccount for %s\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:71 -#, c-format -msgid "" -"\n" -"%s: '%s' has dn: '%s'\n" -"\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:72 ../../utils/net_ads_gpo.c:332 -msgid "machine" -msgstr "" - -#: ../../utils/net_ads_gpo.c:72 ../../utils/net_ads_gpo.c:332 -msgid "user" -msgstr "" - -#: ../../utils/net_ads_gpo.c:75 -msgid "* fetching token " -msgstr "" - -#: ../../utils/net_ads_gpo.c:83 ../../utils/net_ads_gpo.c:91 ../../utils/net_ads_gpo.c:103 ../../utils/net_ads_gpo.c:114 ../../utils/net_ads_gpo.c:159 -#, c-format -msgid "failed: %s\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:86 ../../utils/net_ads_gpo.c:95 ../../utils/net_ads_gpo.c:106 ../../utils/net_ads_gpo.c:119 ../../utils/net_ads_gpo.c:164 -msgid "finished\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:88 -msgid "* fetching GPO List " -msgstr "" - -#: ../../utils/net_ads_gpo.c:97 -msgid "* Refreshing Group Policy Data " -msgstr "" - -#: ../../utils/net_ads_gpo.c:108 -msgid "* storing GPO list to registry " -msgstr "" - -#: ../../utils/net_ads_gpo.c:123 -msgid "* dumping GPO list\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:152 -msgid "* re-reading GPO list from registry " -msgstr "" - -#: ../../utils/net_ads_gpo.c:168 -msgid "* dumping GPO list from registry\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:231 -msgid "List all GPOs on the DC" -msgstr "" - -#: ../../utils/net_ads_gpo.c:273 -#, c-format -msgid "ads_parse_gpo failed: %s\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:305 -msgid "net ads gpo list " -msgstr "" - -#: ../../utils/net_ads_gpo.c:306 -msgid "" -" Lists all GPOs for machine/user\n" -" username\tUser to list GPOs for\n" -" machinename\tMachine to list GPOs for\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:331 -#, c-format -msgid "%s: '%s' has dn: '%s'\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:457 -msgid "net ads gpo linkget " -msgstr "" - -#: ../../utils/net_ads_gpo.c:458 -msgid "" -" Lists gPLink of a container\n" -" container\tContainer to get link for\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:475 -#, c-format -msgid "get link for %s failed: %s\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:499 -msgid "net ads gpo linkadd [options]" -msgstr "" - -#: ../../utils/net_ads_gpo.c:500 -msgid "" -" Link a container to a GPO\n" -" linkdn\tContainer to link to a GPO\n" -" gpodn\tGPO to link container to\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:503 -msgid "" -"note: DNs must be provided properly escaped.\n" -"See RFC 4514 for details\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:524 -#, c-format -msgid "link add failed: %s\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:587 -msgid "net ads gpo getgpo " -msgstr "" - -#: ../../utils/net_ads_gpo.c:588 -msgid "" -" List speciefied GPO\n" -" gpo\t\tGPO to list\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:610 -#, c-format -msgid "get gpo for [%s] failed: %s\n" -msgstr "" - -#: ../../utils/net_ads_gpo.c:641 -msgid "List specified GPO" -msgstr "" - -#: ../../utils/net_ads_gpo.c:642 -msgid "" -"net ads gpo getgpo\n" -" List specified GPO" -msgstr "" - -#: ../../utils/net_ads_gpo.c:649 -msgid "Link a container to a GPO" -msgstr "" - -#: ../../utils/net_ads_gpo.c:650 -msgid "" -"net ads gpo linkadd\n" -" Link a container to a GPO" -msgstr "" - -#: ../../utils/net_ads_gpo.c:667 -msgid "Lists gPLink of container" -msgstr "" - -#: ../../utils/net_ads_gpo.c:668 -msgid "" -"net ads gpo linkget\n" -" Lists gPLink of container" -msgstr "" - -#: ../../utils/net_ads_gpo.c:675 -msgid "Lists all GPOs for machine/user" -msgstr "" - -#: ../../utils/net_ads_gpo.c:676 -msgid "" -"net ads gpo list\n" -" Lists all GPOs for machine/user" -msgstr "" - -#: ../../utils/net_ads_gpo.c:683 -msgid "Lists all GPOs on a DC" -msgstr "" - -#: ../../utils/net_ads_gpo.c:684 -msgid "" -"net ads gpo listall\n" -" Lists all GPOs on a DC" -msgstr "" - -#: ../../utils/net_ads_gpo.c:691 -msgid "Lists all GPOs assigned to an account and downloads them" -msgstr "" - -#: ../../utils/net_ads_gpo.c:693 -msgid "" -"net ads gpo refresh\n" -" Lists all GPOs assigned to an account and downloads them" -msgstr "" - -#: ../../utils/net_afs.c:25 -msgid "" -" net afs key filename\n" -"\tImports a OpenAFS KeyFile into our secrets.tdb\n" -"\n" -msgstr "" - -#: ../../utils/net_afs.c:27 -msgid "" -" net afs impersonate \n" -"\tCreates a token for user@cell\n" -"\n" -msgstr "" - -#: ../../utils/net_afs.c:43 -msgid "Could not open secrets.tdb\n" -msgstr "" - -#: ../../utils/net_afs.c:48 -#, c-format -msgid "Could not open %s\n" -msgstr "Konnte %s nicht öffnen\n" - -#: ../../utils/net_afs.c:53 -msgid "Could not read keyfile\n" -msgstr "" - -#: ../../utils/net_afs.c:58 -msgid "Could not write keyfile to secrets.tdb\n" -msgstr "" - -#: ../../utils/net_afs.c:78 -#, c-format -msgid "Could not create token\n" -msgstr "" - -#: ../../utils/net_afs.c:83 -#, c-format -msgid "Could not set token into kernel\n" -msgstr "" - -#: ../../utils/net_afs.c:87 -#, c-format -msgid "Success: %s@%s\n" -msgstr "" - -#: ../../utils/net_afs.c:98 -msgid "Import an OpenAFS keyfile" -msgstr "" - -#: ../../utils/net_afs.c:99 -msgid "" -"net afs key \n" -" Import kefile from ." -msgstr "" - -#: ../../utils/net_afs.c:106 -msgid "Get a user token" -msgstr "" - -#: ../../utils/net_afs.c:107 -msgid "" -"net afs impersonate \n" -" Create token for user@cell" -msgstr "" - -#: ../../utils/net_cache.c:74 -#, c-format -msgid "Key: %s\t Timeout: %s\t Value: %s %s\n" -msgstr "" - -#: ../../utils/net_cache.c:75 -msgid "(expired)" -msgstr "" - -#: ../../utils/net_cache.c:84 -#, c-format -msgid "Couldn't delete entry! key = %s\n" -msgstr "" - -#: ../../utils/net_cache.c:160 -msgid "net cache add \n" -msgstr "" - -#: ../../utils/net_cache.c:172 -msgid "Invalid timeout argument.\n" -msgstr "" - -#: ../../utils/net_cache.c:177 -msgid "New cache entry stored successfully.\n" -msgstr "" - -#: ../../utils/net_cache.c:181 -msgid "Entry couldn't be added. Perhaps there's already such a key.\n" -msgstr "" - -#: ../../utils/net_cache.c:199 -msgid " net cache del \n" -msgstr "" - -#: ../../utils/net_cache.c:204 -msgid "Entry deleted.\n" -msgstr "" - -#: ../../utils/net_cache.c:208 -msgid "Couldn't delete specified entry\n" -msgstr "" - -#: ../../utils/net_cache.c:229 -msgid " net cache get \n" -msgstr "" - -#: ../../utils/net_cache.c:239 -msgid "Failed to find entry\n" -msgstr "" - -#: ../../utils/net_cache.c:258 -msgid " net cache search \n" -msgstr " net cache search \n" - -#: ../../utils/net_cache.c:284 -msgid "List all cache entries." -msgstr "" - -#: ../../utils/net_cache.c:307 -msgid "Delete all cache entries." -msgstr "" - -#: ../../utils/net_cache.c:322 ../../utils/net_cache.c:400 -msgid "Move transient cache content to stable storage" -msgstr "" - -#: ../../utils/net_cache.c:345 -msgid "Add new cache entry" -msgstr "" - -#: ../../utils/net_cache.c:346 -msgid "" -"net cache add \n" -" Add new cache entry.\n" -" key string\tKey string to add cache data under.\n" -" data string\tData to store under given key.\n" -" timeout\tTimeout for cache data." -msgstr "" - -#: ../../utils/net_cache.c:356 -msgid "Delete existing cache entry by key" -msgstr "" - -#: ../../utils/net_cache.c:357 -msgid "" -"net cache del \n" -" Delete existing cache entry by key.\n" -" key string\tKey string to delete." -msgstr "" - -#: ../../utils/net_cache.c:365 -msgid "Get cache entry by key" -msgstr "" - -#: ../../utils/net_cache.c:366 -msgid "" -"net cache get \n" -" Get cache entry by key.\n" -" key string\tKey string to look up cache entry for." -msgstr "" - -#: ../../utils/net_cache.c:375 -msgid "Search entry by pattern" -msgstr "" - -#: ../../utils/net_cache.c:376 -msgid "" -"net cache search \n" -" Search entry by pattern.\n" -" pattern\tPattern to search for in cache." -msgstr "" - -#: ../../utils/net_cache.c:384 -msgid "List all cache entries" -msgstr "" - -#: ../../utils/net_cache.c:385 -msgid "" -"net cache list\n" -" List all cache entries" -msgstr "" - -#: ../../utils/net_cache.c:392 -msgid "Delete all cache entries" -msgstr "" - -#: ../../utils/net_cache.c:393 -msgid "" -"net cache flush\n" -" Delete all cache entries" -msgstr "" - -#: ../../utils/net_cache.c:401 -msgid "" -"net cache stabilize\n" -" Move transient cache content to stable storage" -msgstr "" - -#: ../../utils/net_conf.c:51 -msgid "" -" net conf import [--test|-T] []\n" -"\t[--test|-T] testmode - do not act, just print what would be done\n" -"\t only import service , ignore the rest\n" -msgstr "" - -#: ../../utils/net_conf.c:79 -msgid "net conf showshare \n" -msgstr "net conf showshare \n" - -#: ../../utils/net_conf.c:88 -msgid "" -" net conf addshare [writeable={y|N} [guest_ok={y|N} []]\n" -"\t the new share name.\n" -"\t the path on the filesystem to export.\n" -"\twriteable={y|N} set \"writeable to \"yes\" or \"no\" (default) on this share.\n" -"\tguest_ok={y|N} set \"guest ok\" to \"yes\" or \"no\" (default) on this share.\n" -"\t optional comment for the new share.\n" -msgstr "" - -#: ../../utils/net_conf.c:105 -msgid "net conf delshare \n" -msgstr "" - -#: ../../utils/net_conf.c:114 -msgid " net conf setparm
\n" -msgstr "" - -#: ../../utils/net_conf.c:123 -msgid " net conf getparm
\n" -msgstr "" - -#: ../../utils/net_conf.c:132 -msgid " net conf delparm
\n" -msgstr "" - -#: ../../utils/net_conf.c:141 -msgid " net conf getincludes
\n" -msgstr "" - -#: ../../utils/net_conf.c:150 -msgid " net conf setincludes
[]*\n" -msgstr "" - -#: ../../utils/net_conf.c:159 -msgid " net conf delincludes
\n" -msgstr "" - -#: ../../utils/net_conf.c:271 -#, c-format -msgid "Error getting config: %s\n" -msgstr "" - -#: ../../utils/net_conf.c:325 ../../utils/net_conf.c:338 ../../utils/net_conf.c:634 ../../utils/net_conf.c:762 ../../utils/net_conf.c:800 ../../utils/net_conf.c:806 ../../utils/net_conf.c:880 ../../utils/net_conf.c:886 ../../utils/net_conf.c:936 -#: ../../utils/net_conf.c:990 ../../utils/net_conf.c:1030 ../../utils/net_conf.c:1070 -msgid "error: out of memory!\n" -msgstr "" - -#: ../../utils/net_conf.c:344 -#, c-format -msgid "error loading file '%s': %s\n" -msgstr "" - -#: ../../utils/net_conf.c:350 -msgid "" -"\n" -"TEST MODE - would import the following configuration:\n" -"\n" -msgstr "" - -#: ../../utils/net_conf.c:366 ../../utils/net_conf.c:402 ../../utils/net_conf.c:427 ../../utils/net_conf.c:813 -#, c-format -msgid "error starting transaction: %s\n" -msgstr "" - -#: ../../utils/net_conf.c:420 ../../utils/net_conf.c:436 ../../utils/net_conf.c:837 -#, c-format -msgid "error committing transaction: %s\n" -msgstr "" - -#: ../../utils/net_conf.c:447 ../../utils/net_conf.c:848 -#, c-format -msgid "error cancelling transaction: %s\n" -msgstr "" - -#: ../../utils/net_conf.c:504 -#, c-format -msgid "Error deleting configuration: %s\n" -msgstr "" - -#: ../../utils/net_conf.c:541 -#, c-format -msgid "error getting share parameters: %s\n" -msgstr "" - -#: ../../utils/net_conf.c:650 -#, c-format -msgid "ERROR: share name %s contains invalid characters (any of %s)\n" -msgstr "" - -#: ../../utils/net_conf.c:658 -msgid "ERROR: 'global' is not a valid share name.\n" -msgstr "" - -#: ../../utils/net_conf.c:663 -#, c-format -msgid "ERROR: share %s already exists.\n" -msgstr "" - -#: ../../utils/net_conf.c:672 -#, c-format -msgid "Error: path '%s' is not an absolute path.\n" -msgstr "" - -#: ../../utils/net_conf.c:679 -#, c-format -msgid "" -"ERROR: cannot stat path '%s' to ensure this is a directory.\n" -"Error was '%s'.\n" -msgstr "" - -#: ../../utils/net_conf.c:688 -#, c-format -msgid "ERROR: path '%s' is not a directory.\n" -msgstr "" - -#: ../../utils/net_conf.c:699 -#, c-format -msgid "Error creating share %s: %s\n" -msgstr "" - -#: ../../utils/net_conf.c:710 ../../utils/net_conf.c:719 ../../utils/net_conf.c:727 ../../utils/net_conf.c:735 -#, c-format -msgid "Error setting parameter %s: %s\n" -msgstr "" - -#: ../../utils/net_conf.c:768 -#, c-format -msgid "Error deleting share %s: %s\n" -msgstr "" - -#: ../../utils/net_conf.c:821 -#, c-format -msgid "Error creating share '%s': %s\n" -msgstr "" - -#: ../../utils/net_conf.c:830 -#, c-format -msgid "Error setting value '%s': %s\n" -msgstr "" - -#: ../../utils/net_conf.c:894 ../../utils/net_conf.c:950 -#, c-format -msgid "Error: given service '%s' does not exist.\n" -msgstr "" - -#: ../../utils/net_conf.c:899 ../../utils/net_conf.c:955 -#, c-format -msgid "Error: given parameter '%s' is not set.\n" -msgstr "" - -#: ../../utils/net_conf.c:903 -#, c-format -msgid "Error getting value '%s': %s.\n" -msgstr "" - -#: ../../utils/net_conf.c:959 -#, c-format -msgid "Error deleting value '%s': %s.\n" -msgstr "" - -#: ../../utils/net_conf.c:997 -#, c-format -msgid "error getting includes: %s\n" -msgstr "" - -#: ../../utils/net_conf.c:1043 -#, c-format -msgid "error setting includes: %s\n" -msgstr "" - -#: ../../utils/net_conf.c:1076 -#, c-format -msgid "error deleting includes: %s\n" -msgstr "" - -#: ../../utils/net_conf.c:1180 -msgid "Dump the complete configuration in smb.conf like format." -msgstr "" - -#: ../../utils/net_conf.c:1182 -msgid "" -"net conf list\n" -" Dump the complete configuration in smb.conf like format." -msgstr "" - -#: ../../utils/net_conf.c:1191 -msgid "Import configuration from file in smb.conf format." -msgstr "" - -#: ../../utils/net_conf.c:1193 -msgid "" -"net conf import\n" -" Import configuration from file in smb.conf format." -msgstr "" - -#: ../../utils/net_conf.c:1201 -msgid "List the share names." -msgstr "" - -#: ../../utils/net_conf.c:1202 -msgid "" -"net conf listshares\n" -" List the share names." -msgstr "" - -#: ../../utils/net_conf.c:1209 -msgid "Delete the complete configuration." -msgstr "" - -#: ../../utils/net_conf.c:1210 -msgid "" -"net conf drop\n" -" Delete the complete configuration." -msgstr "" - -#: ../../utils/net_conf.c:1217 -msgid "Show the definition of a share." -msgstr "" - -#: ../../utils/net_conf.c:1218 -msgid "" -"net conf showshare\n" -" Show the definition of a share." -msgstr "" - -#: ../../utils/net_conf.c:1225 -msgid "Create a new share." -msgstr "" - -#: ../../utils/net_conf.c:1226 -msgid "" -"net conf addshare\n" -" Create a new share." -msgstr "" - -#: ../../utils/net_conf.c:1233 -msgid "Delete a share." -msgstr "" - -#: ../../utils/net_conf.c:1234 -msgid "" -"net conf delshare\n" -" Delete a share." -msgstr "" - -#: ../../utils/net_conf.c:1241 -msgid "Store a parameter." -msgstr "" - -#: ../../utils/net_conf.c:1242 -msgid "" -"net conf setparm\n" -" Store a parameter." -msgstr "" - -#: ../../utils/net_conf.c:1249 -msgid "Retrieve the value of a parameter." -msgstr "" - -#: ../../utils/net_conf.c:1250 -msgid "" -"net conf getparm\n" -" Retrieve the value of a parameter." -msgstr "" - -#: ../../utils/net_conf.c:1257 -msgid "Delete a parameter." -msgstr "" - -#: ../../utils/net_conf.c:1258 -msgid "" -"net conf delparm\n" -" Delete a parameter." -msgstr "" - -#: ../../utils/net_conf.c:1265 -msgid "Show the includes of a share definition." -msgstr "" - -#: ../../utils/net_conf.c:1266 -msgid "" -"net conf getincludes\n" -" Show the includes of a share definition." -msgstr "" - -#: ../../utils/net_conf.c:1273 -msgid "Set includes for a share." -msgstr "" - -#: ../../utils/net_conf.c:1274 -msgid "" -"net conf setincludes\n" -" Set includes for a share." -msgstr "" - -#: ../../utils/net_conf.c:1281 -msgid "Delete includes from a share definition." -msgstr "" - -#: ../../utils/net_conf.c:1282 -msgid "" -"net conf setincludes\n" -" Delete includes from a share definition." -msgstr "" - -#: ../../utils/net_dom.c:28 -msgid "" -"net dom join \n" -" Join a remote machine\n" -msgstr "" - -#: ../../utils/net_dom.c:33 -msgid "" -"net dom unjoin \n" -" Unjoin a remote machine\n" -msgstr "" - -#: ../../utils/net_dom.c:38 -msgid "" -"net dom renamecomputer \n" -" Rename joined computer\n" -msgstr "" - -#: ../../utils/net_dom.c:98 -#, c-format -msgid "Failed to unjoin domain: %s\n" -msgstr "" - -#: ../../utils/net_dom.c:104 ../../utils/net_dom.c:211 -msgid "Shutting down due to a domain membership change" -msgstr "" - -#: ../../utils/net_dom.c:297 -#, c-format -msgid "Failed to rename machine: " -msgstr "" - -#: ../../utils/net_dom.c:299 -#, c-format -msgid "Computer is not joined to a Domain\n" -msgstr "" - -#: ../../utils/net_dom.c:308 -msgid "Shutting down due to a computer rename" -msgstr "" - -#: ../../utils/net_dom.c:345 -msgid "Join a remote machine" -msgstr "" - -#: ../../utils/net_dom.c:346 -msgid "" -"net dom join \n" -" Join a remote machine" -msgstr "" - -#: ../../utils/net_dom.c:354 -msgid "Unjoin a remote machine" -msgstr "" - -#: ../../utils/net_dom.c:355 -msgid "" -"net dom unjoin \n" -" Unjoin a remote machine" -msgstr "" - -#: ../../utils/net_dom.c:363 -msgid "Rename a computer that is joined to a domain" -msgstr "" - -#: ../../utils/net_dom.c:364 -msgid "" -"net dom renamecomputer \n" -" Rename joined computer" -msgstr "" - -#: ../../utils/net_eventlog.c:53 ../../utils/net_eventlog.c:110 -#, c-format -msgid "failed to load evt file: %s\n" -msgstr "" - -#: ../../utils/net_eventlog.c:60 ../../utils/net_eventlog.c:131 -#, c-format -msgid "evt pull failed: %s\n" -msgstr "" - -#: ../../utils/net_eventlog.c:118 -#, c-format -msgid "evt header pull failed: %s\n" -msgstr "" - -#: ../../utils/net_eventlog.c:124 -msgid "input file is wrapped, cannot proceed\n" -msgstr "" - -#: ../../utils/net_eventlog.c:140 ../../utils/net_eventlog.c:206 -#, c-format -msgid "can't open the eventlog TDB (%s)\n" -msgstr "" - -#: ../../utils/net_eventlog.c:160 -#, c-format -msgid "can't write to the eventlog: %s\n" -msgstr "" - -#: ../../utils/net_eventlog.c:166 -#, c-format -msgid "wrote %d entries to tdb\n" -msgstr "" - -#: ../../utils/net_eventlog.c:217 -#, c-format -msgid "failed to save evt file: %s\n" -msgstr "" - -#: ../../utils/net_eventlog.c:246 -msgid "Dump eventlog" -msgstr "" - -#: ../../utils/net_eventlog.c:247 -msgid "" -"net eventlog dump\n" -" Dump win32 *.evt eventlog file" -msgstr "" - -#: ../../utils/net_eventlog.c:254 -msgid "Import eventlog" -msgstr "" - -#: ../../utils/net_eventlog.c:255 -msgid "" -"net eventlog import\n" -" Import win32 *.evt eventlog file" -msgstr "" - -#: ../../utils/net_eventlog.c:262 -msgid "Export eventlog" -msgstr "" - -#: ../../utils/net_eventlog.c:263 -msgid "" -"net eventlog export\n" -" Export win32 *.evt eventlog file" -msgstr "" - -#: ../../utils/net_file.c:27 -msgid "" -"net [] file [misc. options] [targets]\n" -"\tlists all open files on file server\n" -msgstr "" - -#: ../../utils/net_file.c:29 -msgid "" -"net [] file USER [misc. options] [targets]\n" -"\tlists all files opened by username on file server\n" -msgstr "" - -#: ../../utils/net_file.c:32 -msgid "" -"net [] file CLOSE [misc. options] [targets]\n" -"\tcloses specified file on target server\n" -msgstr "" - -#: ../../utils/net_file.c:34 -msgid "" -"net [rap] file INFO [misc. options] [targets]\n" -"\tdisplays information about the specified open file\n" -msgstr "" - -#: ../../utils/net_group.c:27 -msgid "" -"net [] group [misc. options] [targets]\n" -"\tList user groups\n" -"\n" -msgstr "" - -#: ../../utils/net_group.c:29 -msgid "" -"net rpc group LIST [global|local|builtin]* [misc. options]\n" -"\tList specific user groups\n" -"\n" -msgstr "" - -#: ../../utils/net_group.c:31 -msgid "" -"net [] group DELETE [misc. options] [targets]\n" -"\tDelete specified group\n" -msgstr "" - -#: ../../utils/net_group.c:34 -msgid "" -"\n" -"net [] group ADD [-C comment] [-c container] [misc. options] [targets]\n" -"\tCreate specified group\n" -msgstr "" - -#: ../../utils/net_group.c:37 -msgid "" -"\n" -"net rpc group MEMBERS \n" -"\tList Group Members\n" -"\n" -msgstr "" - -#: ../../utils/net_group.c:38 -msgid "" -"\n" -"net rpc group ADDMEM \n" -"\tAdd Group Members\n" -"\n" -msgstr "" - -#: ../../utils/net_group.c:40 -msgid "" -"\n" -"net rpc group DELMEM \n" -"\tDelete Group Members\n" -"\n" -msgstr "" - -#: ../../utils/net_group.c:44 ../../utils/net_user.c:41 -msgid "\t-C or --comment=\tdescriptive comment (for add only)\n" -msgstr "" - -#: ../../utils/net_group.c:46 ../../utils/net_user.c:43 -msgid "\t-c or --container=\tLDAP container, defaults to cn=Users (for add in ADS only)\n" -msgstr "" - -#: ../../utils/net_group.c:48 -msgid "\t-L or --localgroup\t\tWhen adding groups, create a local group (alias)\n" -msgstr "" - -#: ../../utils/net_groupmap.c:38 -#, c-format -msgid "NT Group %s doesn't exist in mapping DB\n" -msgstr "" - -#: ../../utils/net_groupmap.c:46 -#, c-format -msgid "converting sid %s from a string failed!\n" -msgstr "" - -#: ../../utils/net_groupmap.c:65 -#, c-format -msgid "\tSID : %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:66 -#, c-format -msgid "\tUnix gid : %u\n" -msgstr "" - -#: ../../utils/net_groupmap.c:67 -#, c-format -msgid "\tUnix group: %s\n" -msgstr "\tUnix Gruppe: %s\n" - -#: ../../utils/net_groupmap.c:68 -#, c-format -msgid "\tGroup type: %s\n" -msgstr "\tGruppentyp: %s\n" - -#: ../../utils/net_groupmap.c:70 -#, c-format -msgid "\tComment : %s\n" -msgstr "\tKommentar : %s\n" - -#: ../../utils/net_groupmap.c:84 -msgid "" -"net groupmap list [verbose] [ntgroup=NT group] [sid=SID]\n" -" verbose\tPrint verbose list\n" -" ntgroup\tNT group to list\n" -" sid\tSID of group to list" -msgstr "" - -#: ../../utils/net_groupmap.c:91 -msgid "Usage: " -msgstr "Verwendung: " - -#: ../../utils/net_groupmap.c:106 ../../utils/net_groupmap.c:213 ../../utils/net_groupmap.c:220 ../../utils/net_groupmap.c:364 ../../utils/net_groupmap.c:371 ../../utils/net_groupmap.c:503 -msgid "must supply a name\n" -msgstr "" - -#: ../../utils/net_groupmap.c:113 ../../utils/net_groupmap.c:227 ../../utils/net_groupmap.c:510 -msgid "must supply a SID\n" -msgstr "" - -#: ../../utils/net_groupmap.c:118 ../../utils/net_groupmap.c:265 ../../utils/net_groupmap.c:405 ../../utils/net_groupmap.c:515 -#, c-format -msgid "Bad option: %s\n" -msgstr "Ungültige Option: %s\n" - -#: ../../utils/net_groupmap.c:139 -msgid "Failure to local group SID in the database\n" -msgstr "" - -#: ../../utils/net_groupmap.c:181 -msgid "net groupmap add {rid=|sid=} unixgroup= [type=] [ntgroup=] [comment=]" -msgstr "" - -#: ../../utils/net_groupmap.c:205 -#, c-format -msgid "RID must be greater than %d\n" -msgstr "" - -#: ../../utils/net_groupmap.c:235 ../../utils/net_groupmap.c:379 -msgid "must supply a comment string\n" -msgstr "" - -#: ../../utils/net_groupmap.c:259 -#, c-format -msgid "unknown group type %s\n" -msgstr "Unbekannter Gruppentyp %s\n" - -#: ../../utils/net_groupmap.c:276 -#, c-format -msgid "Can't lookup UNIX group %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:282 -#, c-format -msgid "Unix group %s already mapped to SID %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:289 -msgid "No rid or sid specified, choosing a RID\n" -msgstr "" - -#: ../../utils/net_groupmap.c:292 -msgid "Could not get new RID\n" -msgstr "" - -#: ../../utils/net_groupmap.c:297 -#, c-format -msgid "Got RID %d\n" -msgstr "" - -#: ../../utils/net_groupmap.c:327 -#, c-format -msgid "adding entry for group %s failed!\n" -msgstr "" - -#: ../../utils/net_groupmap.c:331 -#, c-format -msgid "Successfully added group %s to the mapping db as a %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:348 -msgid "net groupmap modify {ntgroup=|sid=} [comment=] [unixgroup=] [type=]" -msgstr "" - -#: ../../utils/net_groupmap.c:387 -msgid "must supply a group name\n" -msgstr "" - -#: ../../utils/net_groupmap.c:433 -msgid "Failed to find local group SID in the database\n" -msgstr "" - -#: ../../utils/net_groupmap.c:442 -msgid "Can't map to an unknown group type.\n" -msgstr "" - -#: ../../utils/net_groupmap.c:448 -msgid "You can only change between domain and local groups.\n" -msgstr "" - -#: ../../utils/net_groupmap.c:465 -#, c-format -msgid "Unable to lookup UNIX group %s. Make sure the group exists.\n" -msgstr "" - -#: ../../utils/net_groupmap.c:475 -msgid "Could not update group database\n" -msgstr "" - -#: ../../utils/net_groupmap.c:479 -#, c-format -msgid "Updated mapping entry for %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:490 -msgid "net groupmap delete {ntgroup=|sid=}" -msgstr "" - -#: ../../utils/net_groupmap.c:531 -#, c-format -msgid "Unable to resolve group %s to a SID\n" -msgstr "" - -#: ../../utils/net_groupmap.c:538 -#, c-format -msgid "Failed to remove group %s from the mapping db!\n" -msgstr "" - -#: ../../utils/net_groupmap.c:543 -#, c-format -msgid "Sucessfully removed %s from the mapping db\n" -msgstr "" - -#: ../../utils/net_groupmap.c:558 -msgid " net groupmap set \"NT Group\" [\"unix group\"] [-C \"comment\"] [-L] [-D]\n" -msgstr "" - -#: ../../utils/net_groupmap.c:564 -msgid "Can only specify -L or -D, not both\n" -msgstr "Entweder -L oder -D angeben, aber nicht beides\n" - -#: ../../utils/net_groupmap.c:574 -#, c-format -msgid "Could not find unix group %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:595 -#, c-format -msgid "Could not find group mapping for %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:606 -msgid "Could not allocate new RID\n" -msgstr "" - -#: ../../utils/net_groupmap.c:622 -#, c-format -msgid "Could not add mapping entry for %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:633 -#, c-format -msgid "Can't change type of the BUILTIN group %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:660 -#, c-format -msgid "Could not update group mapping for %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:678 -msgid "Delete all group mappings" -msgstr "Alle Gruppenzuweisungen löschen" - -#: ../../utils/net_groupmap.c:684 -msgid "Could not list group mappings\n" -msgstr "" - -#: ../../utils/net_groupmap.c:691 -#, c-format -msgid "Group %s is not mapped\n" -msgstr "" - -#: ../../utils/net_groupmap.c:694 -#, c-format -msgid "Deleting mapping for NT Group %s, sid %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:716 -msgid "net groupmap addmem alias-sid member-sid\n" -msgstr "" - -#: ../../utils/net_groupmap.c:721 -#, c-format -msgid "Could not add sid %s to alias %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:739 -msgid "net groupmap delmem alias-sid member-sid\n" -msgstr "" - -#: ../../utils/net_groupmap.c:744 -#, c-format -msgid "Could not delete sid %s from alias %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:763 -msgid "net groupmap listmem alias-sid\n" -msgstr "" - -#: ../../utils/net_groupmap.c:772 -#, c-format -msgid "Could not list members for sid %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:799 -#, c-format -msgid "Could not list memberships for sid %s\n" -msgstr "" - -#: ../../utils/net_groupmap.c:823 -msgid "net groupmap memberof sid\n" -msgstr "" - -#: ../../utils/net_groupmap.c:829 ../../utils/net_idmap.c:349 -msgid "talloc_init failed\n" -msgstr "" - -#: ../../utils/net_groupmap.c:836 -msgid "Could not get domain sid\n" -msgstr "" - -#: ../../utils/net_groupmap.c:859 -msgid "Create a new group mapping" -msgstr "" - -#: ../../utils/net_groupmap.c:860 -msgid "" -"net groupmap add\n" -" Create a new group mapping" -msgstr "" - -#: ../../utils/net_groupmap.c:867 -msgid "Update a group mapping" -msgstr "" - -#: ../../utils/net_groupmap.c:868 -msgid "" -"net groupmap modify\n" -" Modify an existing group mapping" -msgstr "" - -#: ../../utils/net_groupmap.c:875 -msgid "Remove a group mapping" -msgstr "" - -#: ../../utils/net_groupmap.c:876 -msgid "" -"net groupmap delete\n" -" Remove a group mapping" -msgstr "" - -#: ../../utils/net_groupmap.c:883 -msgid "Set group mapping" -msgstr "" - -#: ../../utils/net_groupmap.c:884 -msgid "" -"net groupmap set\n" -" Set a group mapping" -msgstr "" - -#: ../../utils/net_groupmap.c:891 -msgid "Remove foreign group mapping entries" -msgstr "" - -#: ../../utils/net_groupmap.c:892 -msgid "" -"net groupmap cleanup\n" -" Remove foreign group mapping entries" -msgstr "" - -#: ../../utils/net_groupmap.c:899 -msgid "Add a foreign alias member" -msgstr "" - -#: ../../utils/net_groupmap.c:900 -msgid "" -"net groupmap addmem\n" -" Add a foreign alias member" -msgstr "" - -#: ../../utils/net_groupmap.c:907 -msgid "Delete foreign alias member" -msgstr "" - -#: ../../utils/net_groupmap.c:908 -msgid "" -"net groupmap delmem\n" -" Delete foreign alias member" -msgstr "" - -#: ../../utils/net_groupmap.c:915 -msgid "List foreign group members" -msgstr "" - -#: ../../utils/net_groupmap.c:916 -msgid "" -"net groupmap listmem\n" -" List foreign alias members" -msgstr "" - -#: ../../utils/net_groupmap.c:923 -msgid "List foreign group memberships" -msgstr "" - -#: ../../utils/net_groupmap.c:924 -msgid "" -"net groupmap memberships\n" -" List foreign group memberships" -msgstr "" - -#: ../../utils/net_groupmap.c:931 -msgid "List current group map" -msgstr "" - -#: ../../utils/net_groupmap.c:932 -msgid "" -"net groupmap list\n" -" List current group map" -msgstr "" - -#: ../../utils/net_help.c:39 -#, c-format -msgid "net %s usage:\n" -msgstr "" - -#: ../../utils/net_help_common.c:25 ../../utils/net_join.c:28 -msgid "Valid methods: (auto-detected if not specified)\n" -msgstr "" - -#: ../../utils/net_help_common.c:26 ../../utils/net_join.c:29 -msgid "\tads\t\t\t\tActive Directory (LDAP/Kerberos)\n" -msgstr "" - -#: ../../utils/net_help_common.c:27 ../../utils/net_join.c:30 -msgid "\trpc\t\t\t\tDCE-RPC\n" -msgstr "" - -#: ../../utils/net_help_common.c:28 -msgid "\trap\t\t\t\tRAP (older systems)\n" -msgstr "" - -#: ../../utils/net_help_common.c:35 -msgid "Valid targets: choose one (none defaults to localhost)\n" -msgstr "Mögliche Zielangaben: (ohne Angabe wird localhost angenommen)\n" - -#: ../../utils/net_help_common.c:36 -msgid "\t-S or --server=\t\tserver name\n" -msgstr "\t-S oder --server=\t\tServer Name\n" - -#: ../../utils/net_help_common.c:37 -msgid "\t-I or --ipaddress=\taddress of target server\n" -msgstr "\t-I oder --ipaddress=\tAdresse des Zielservers\n" - -#: ../../utils/net_help_common.c:38 -msgid "\t-w or --workgroup=\t\ttarget workgroup or domain\n" -msgstr "\t-w oder --workgroup=\t\tZielarbeitsgruppe oder -domäne\n" - -#: ../../utils/net_help_common.c:41 -msgid "Valid miscellaneous options are:\n" -msgstr "Diverse Optionen:\n" - -#. misc options -#: ../../utils/net_help_common.c:42 -msgid "\t-p or --port=\t\tconnection port on target\n" -msgstr "\t-p oder --port=\t\tPortnummer\n" - -#: ../../utils/net_help_common.c:43 -msgid "\t-W or --myworkgroup=\tclient workgroup\n" -msgstr "\t-W oder --myworkgroup=\tzu nutzende Arbeitsgruppe\n" - -#: ../../utils/net_help_common.c:44 -msgid "\t-d or --debuglevel=\tdebug level (0-10)\n" -msgstr "\t-d oder --debuglevel=\tDebug Level (0-10)\n" - -#: ../../utils/net_help_common.c:45 -msgid "\t-n or --myname=\t\tclient name\n" -msgstr "\t-n oder --myname=\t\tzu nutzender Name\n" - -#: ../../utils/net_help_common.c:46 -msgid "\t-U or --user=\t\tuser name\n" -msgstr "\t-U oder --user=\t\tBenutzername\n" - -#: ../../utils/net_help_common.c:47 -msgid "\t-s or --configfile=\tpathname of smb.conf file\n" -msgstr "\t-s oder --configfile=\tPfad zur smb.conf Datei\n" - -#: ../../utils/net_help_common.c:48 -msgid "\t-l or --long\t\t\tDisplay full information\n" -msgstr "\t-l oder --long\t\t\tAlle Informationen anzeigen\n" - -#: ../../utils/net_help_common.c:49 -msgid "\t-V or --version\t\t\tPrint samba version information\n" -msgstr "\t-V oder --version\t\t\tSamba Versionsinformationen ausgeben\n" - -#: ../../utils/net_help_common.c:50 -msgid "\t-P or --machine-pass\t\tAuthenticate as machine account\n" -msgstr "\t-P oder --machine-pass\t\tMit Rechnerkonto authentifizieren\n" - -#: ../../utils/net_help_common.c:52 -msgid "\t-e or --encrypt\t\t\tEncrypt SMB transport\n" -msgstr "\t-e oder --encrypt\t\t\tSMB Übertragung verschlüsseln\n" - -#: ../../utils/net_help_common.c:54 -msgid "\t-k or --kerberos\t\tUse kerberos (active directory) authentication\n" -msgstr "\t-k oder --kerberos\t\tKerberos Authentifizierung benutzen (Active Directory)\n" - -#: ../../utils/net_idmap.c:26 -msgid "Out of memory!\n" -msgstr "" - -#: ../../utils/net_idmap.c:40 -#, c-format -msgid "USER HWM %d\n" -msgstr "" - -#: ../../utils/net_idmap.c:45 -#, c-format -msgid "GROUP HWM %d\n" -msgstr "" - -#: ../../utils/net_idmap.c:66 -msgid "" -"net idmap dump \n" -" Dump current ID mapping.\n" -" inputfile\tTDB file to read mappings from.\n" -msgstr "" - -#: ../../utils/net_idmap.c:75 -#, c-format -msgid "Could not open idmap: %s\n" -msgstr "" - -#: ../../utils/net_idmap.c:98 -msgid "" -"net idmap restore [inputfile]\n" -" Restore ID mappings from file\n" -" inputfile\tFile to load ID mappings from. If not given, load data from stdin.\n" -msgstr "" - -#: ../../utils/net_idmap.c:107 -msgid "To use net idmap Winbindd must be running.\n" -msgstr "" - -#: ../../utils/net_idmap.c:145 -#, c-format -msgid "Could not set USER HWM: %s\n" -msgstr "" - -#: ../../utils/net_idmap.c:154 -#, c-format -msgid "Could not set GROUP HWM: %s\n" -msgstr "" - -#: ../../utils/net_idmap.c:159 -#, c-format -msgid "ignoring invalid line [%s]\n" -msgstr "" - -#: ../../utils/net_idmap.c:166 -#, c-format -msgid "ignoring invalid sid [%s]: %s\n" -msgstr "ignoriere ungültige sid [%s]: %s\n" - -#: ../../utils/net_idmap.c:178 -#, c-format -msgid "Could not set mapping of %s %lu to sid %s: %s\n" -msgstr "" - -#: ../../utils/net_idmap.c:199 ../../utils/net_idmap.c:205 ../../utils/net_idmap.c:422 ../../utils/net_idmap.c:430 -msgid "Not implemented yet" -msgstr "Noch nicht implementiert" - -#: ../../utils/net_idmap.c:245 -msgid "" -"net idmap secret {|alloc} \n" -" Set the secret for the specified domain (or alloc module)\n" -" DOMAIN\tDomain to set secret for.\n" -" alloc\tSet secret for the alloc module\n" -" secret\tNew secret to set.\n" -msgstr "" - -#: ../../utils/net_idmap.c:275 -msgid "The only currently supported backend is LDAP\n" -msgstr "" - -#: ../../utils/net_idmap.c:285 -#, c-format -msgid "Missing ldap_user_dn option for domain %s\n" -msgstr "" - -#: ../../utils/net_idmap.c:296 -msgid "Missing ldap_user_dn option for alloc backend\n" -msgstr "" - -#: ../../utils/net_idmap.c:306 -msgid "Failed to store secret\n" -msgstr "" - -#: ../../utils/net_idmap.c:311 -msgid "Secret stored\n" -msgstr "" - -#: ../../utils/net_idmap.c:317 -msgid "" -"net idmap dump \n" -" Dump current id mapping\n" -msgstr "" - -#: ../../utils/net_idmap.c:320 -msgid "" -"net idmap restore\n" -" Restore entries from stdin\n" -msgstr "" - -#. Deliberately *not* document net idmap delete -#: ../../utils/net_idmap.c:325 -msgid "" -"net idmap secret |alloc \n" -" Set the secret for the specified DOMAIN (or the alloc module)\n" -msgstr "" - -#: ../../utils/net_idmap.c:355 -#, c-format -msgid "db_open failed: %s\n" -msgstr "" - -#: ../../utils/net_idmap.c:360 ../../utils/net_idmap.c:365 -#, c-format -msgid "%s is not a valid sid\n" -msgstr "" - -#: ../../utils/net_idmap.c:371 -msgid "talloc_strdup failed\n" -msgstr "" - -#: ../../utils/net_idmap.c:377 -msgid "could not fetch db record\n" -msgstr "" - -#: ../../utils/net_idmap.c:385 -#, c-format -msgid "could not store record: %s\n" -msgstr "" - -#: ../../utils/net_idmap.c:406 -msgid "Dump the current ID mappings" -msgstr "" - -#: ../../utils/net_idmap.c:407 -msgid "" -"net idmap dump\n" -" Dump the current ID mappings" -msgstr "" - -#: ../../utils/net_idmap.c:414 -msgid "Restore entries from stdin" -msgstr "" - -#: ../../utils/net_idmap.c:415 -msgid "" -"net idmap restore\n" -" Restore entries from stdin" -msgstr "" - -#: ../../utils/net_idmap.c:423 -msgid "" -"net idmap setmap\n" -" Not implemented yet" -msgstr "" - -#: ../../utils/net_idmap.c:431 -msgid "" -"net idmap delete\n" -" Not implemented yet" -msgstr "" - -#: ../../utils/net_idmap.c:438 -msgid "Set secret for specified domain" -msgstr "" - -#: ../../utils/net_idmap.c:439 -msgid "" -"net idmap secret {|alloc} \n" -" Set secret for specified domain or alloc module" -msgstr "" - -#: ../../utils/net_idmap.c:446 -msgid "Set acl map" -msgstr "" - -#: ../../utils/net_idmap.c:447 -msgid "" -"net idmap aclmapset\n" -" Set acl map" -msgstr "" - -#: ../../utils/net_join.c:26 -msgid "" -"\n" -"net [] join [misc. options]\n" -"\tjoins this server to a domain\n" -msgstr "" - -#: ../../utils/net_join.c:47 -msgid "ADS join did not work, falling back to RPC...\n" -msgstr "" - -#: ../../utils/net_lookup.c:25 -msgid "" -" net lookup [host] HOSTNAME[#]\n" -"\tgives IP for a hostname\n" -"\n" -" net lookup ldap [domain]\n" -"\tgives IP of domain's ldap server\n" -"\n" -" net lookup kdc [realm]\n" -"\tgives IP of realm's kerberos KDC\n" -"\n" -" net lookup pdc [domain|realm]\n" -"\tgives IP of realm's kerberos KDC\n" -"\n" -" net lookup dc [domain]\n" -"\tgives IP of domains Domain Controllers\n" -"\n" -" net lookup master [domain|wg]\n" -"\tgive IP of master browser\n" -"\n" -" net lookup name [name]\n" -"\tLookup name's sid and type\n" -"\n" -" net lookup sid [sid]\n" -"\tGive sid's name and type\n" -"\n" -" net lookup dsgetdcname [name] [flags] [sitename]\n" -"\n" -msgstr "" - -#: ../../utils/net_lookup.c:113 ../../utils/net_registry.c:261 ../../utils/net_registry.c:268 ../../utils/net_rpc.c:82 ../../utils/net_rpc.c:93 ../../utils/net_rpc.c:1589 ../../utils/net_rpc.c:4051 ../../utils/net_util.c:53 -msgid "failed" -msgstr "" - -#: ../../utils/net_lookup.c:328 -msgid " net lookup name \n" -msgstr "" - -#: ../../utils/net_lookup.c:334 ../../utils/net_lookup.c:363 -#, c-format -msgid "Could not lookup name %s\n" -msgstr "" - -#: ../../utils/net_lookup.c:352 -msgid " net lookup sid \n" -msgstr "" - -#: ../../utils/net_lookup.c:357 -#, c-format -msgid "Could not convert %s to SID\n" -msgstr "" - -#: ../../utils/net_lookup.c:385 -msgid " net lookup dsgetdcname \n" -msgstr "" - -#: ../../utils/net_lookup.c:411 -#, c-format -msgid "failed with: %s\n" -msgstr "" - -#: ../../utils/net_lookup.c:444 -msgid "" -"\n" -"Usage: \n" -msgstr "" - -#: ../../utils/net_rap.c:39 -msgid "" -"\n" -"Not implemented\n" -msgstr "" -"\n" -"Nicht implementiert\n" - -#: ../../utils/net_rap.c:61 -#, c-format -msgid "" -"File ID %d\n" -"User name %s\n" -"Locks 0x%-4.2x\n" -"Path %s\n" -"Permissions 0x%x\n" -msgstr "" - -#. list open files -#: ../../utils/net_rap.c:114 -msgid "" -"\n" -"Enumerating open files on remote server:\n" -"\n" -"\n" -"FileId Opened by Perms Locks Path \n" -"------ --------- ----- ----- ---- \n" -msgstr "" - -#: ../../utils/net_rap.c:120 ../../utils/net_rap.c:180 -msgid "" -"\n" -"Operation not supported by server!\n" -"\n" -msgstr "" - -#: ../../utils/net_rap.c:133 -msgid "Close specified file on server" -msgstr "" - -#: ../../utils/net_rap.c:134 -msgid "" -"net rap file close\n" -" Close specified file on server" -msgstr "" - -#: ../../utils/net_rap.c:141 -msgid "List all files opened by username" -msgstr "" - -#: ../../utils/net_rap.c:142 -msgid "" -"net rap file user\n" -" List all files opened by username" -msgstr "" - -#: ../../utils/net_rap.c:149 -msgid "Display info about an opened file" -msgstr "" - -#: ../../utils/net_rap.c:150 -msgid "" -"net rap file info\n" -" Display info about an opened file" -msgstr "" - -#: ../../utils/net_rap.c:162 -msgid "" -"net rap file\n" -" List all open files on rempte server\n" -msgstr "" - -#. list open files -#: ../../utils/net_rap.c:174 -msgid "" -"\n" -"Enumerating open files on remote server:\n" -"\n" -"\n" -"FileId Opened by Perms Locks Path\n" -"------ --------- ----- ----- ----\n" -msgstr "" - -#: ../../utils/net_rap.c:243 -msgid "Server path not specified\n" -msgstr "" - -#: ../../utils/net_rap.c:273 ../../utils/net_rap.c:281 -msgid "Delete a share from server" -msgstr "" - -#: ../../utils/net_rap.c:274 -msgid "" -"net rap share delete\n" -" Delete a share from server" -msgstr "" - -#: ../../utils/net_rap.c:282 -msgid "" -"net rap share close\n" -" Delete a share from server\n" -" Alias for net rap share delete" -msgstr "" - -#: ../../utils/net_rap.c:290 -msgid "Add a share to server" -msgstr "" - -#: ../../utils/net_rap.c:291 -msgid "" -"net rap share add\n" -" Add a share to server" -msgstr "" - -#: ../../utils/net_rap.c:303 -msgid "" -"net rap share\n" -" List all shares on remote server\n" -msgstr "" - -#: ../../utils/net_rap.c:314 ../../utils/net_rpc.c:3092 -msgid "" -"\n" -"Enumerating shared resources (exports) on remote server:\n" -"\n" -"\n" -"Share name Type Description\n" -"---------- ---- -----------\n" -msgstr "" - -#: ../../utils/net_rap.c:331 -msgid "" -"\n" -"net rap session [misc. options] [targets]\n" -"\tenumerates all active SMB/CIFS sessions on target server\n" -msgstr "" - -#: ../../utils/net_rap.c:334 -msgid "" -"\n" -"net rap session DELETE [misc. options] [targets] \n" -"\tor\n" -"net rap session CLOSE [misc. options] [targets]\n" -"\tDeletes (closes) a session from specified client to server\n" -msgstr "" - -#: ../../utils/net_rap.c:339 -msgid "" -"\n" -"net rap session INFO \n" -"\tEnumerates all open files in specified session\n" -msgstr "" - -#: ../../utils/net_rap.c:369 -#, c-format -msgid "" -"User name %-20.20s\n" -"Computer %-20.20s\n" -"Guest logon %-20.20s\n" -"Client Type %-40.40s\n" -"Sess time %2.2d:%2.2d:%2.2d\n" -"Idle time %2.2d:%2.2d:%2.2d\n" -msgstr "" - -#: ../../utils/net_rap.c:408 -msgid "" -"Share name Type # Opens\n" -"------------------------------------------------------------------------------\n" -msgstr "" - -#: ../../utils/net_rap.c:438 -msgid "Display information about session" -msgstr "" - -#: ../../utils/net_rap.c:439 -msgid "" -"net rap session info\n" -" Display information about session" -msgstr "" - -#: ../../utils/net_rap.c:446 ../../utils/net_rap.c:455 -msgid "Close specified session" -msgstr "" - -#: ../../utils/net_rap.c:447 -msgid "" -"net rap session delete\n" -" Close specified session\n" -" Alias for net rap session close" -msgstr "" - -#: ../../utils/net_rap.c:456 -msgid "" -"net rap session close\n" -" Close specified session" -msgstr "" - -#: ../../utils/net_rap.c:468 -msgid "" -"net rap session\n" -" List all open sessions on remote server\n" -msgstr "" - -#: ../../utils/net_rap.c:478 -msgid "" -"Computer User name Client Type Opens Idle time\n" -"------------------------------------------------------------------------------\n" -msgstr "" - -#: ../../utils/net_rap.c:508 -msgid "" -"net rap server name\n" -" Get the name of the server\n" -msgstr "" - -#: ../../utils/net_rap.c:517 -msgid "cli_get_server_name failed\n" -msgstr "" - -#: ../../utils/net_rap.c:522 -#, c-format -msgid "Server name = %s\n" -msgstr "Servername = %s\n" - -#: ../../utils/net_rap.c:538 -msgid "" -"net rap server domain\n" -" Enumerate servers in this domain/workgroup\n" -msgstr "" - -#: ../../utils/net_rap.c:546 -msgid "" -"\n" -"Enumerating servers in this domain or workgroup: \n" -"\n" -"\tServer name Server description\n" -"\t------------- ----------------------------\n" -msgstr "" - -#: ../../utils/net_rap.c:563 -msgid "Get the name of the server" -msgstr "" - -#: ../../utils/net_rap.c:564 -msgid "" -"net rap server name\n" -" Get the name of the server" -msgstr "" - -#: ../../utils/net_rap.c:571 -msgid "Get the servers in this domain/workgroup" -msgstr "" - -#: ../../utils/net_rap.c:572 -msgid "" -"net rap server domain\n" -" Get the servers in this domain/workgroup" -msgstr "" - -#: ../../utils/net_rap.c:586 -msgid "" -"net rap domain [misc. options] [target]\n" -"\tlists the domains or workgroups visible on the current network\n" -msgstr "" - -#: ../../utils/net_rap.c:604 -msgid "" -"\n" -"Enumerating domains:\n" -"\n" -"\tDomain name Server name of Browse Master\n" -"\t------------- ----------------------------\n" -msgstr "" - -#: ../../utils/net_rap.c:617 -msgid "" -"net rap printq [misc. options] [targets]\n" -"\tor\n" -"net rap printq info [] [misc. options] [targets]\n" -"\tlists the specified queue and jobs on the target server.\n" -"\tIf the queue name is not specified, all queues are listed.\n" -"\n" -msgstr "" - -#: ../../utils/net_rap.c:623 -msgid "" -"net rap printq delete [] [misc. options] [targets]\n" -"\tdeletes the specified job number on the target server, or the\n" -"\tprinter queue if no job number is specified\n" -msgstr "" - -#: ../../utils/net_rap.c:637 -#, c-format -msgid "%-17.17s Queue %5d jobs " -msgstr "" - -#: ../../utils/net_rap.c:642 -msgid "*Printer Active*\n" -msgstr "" - -#: ../../utils/net_rap.c:645 -msgid "*Printer Paused*\n" -msgstr "" - -#: ../../utils/net_rap.c:648 -msgid "*Printer error*\n" -msgstr "" - -#: ../../utils/net_rap.c:651 -msgid "*Delete Pending*\n" -msgstr "" - -#: ../../utils/net_rap.c:654 ../../utils/net_rap.c:680 -msgid "**UNKNOWN STATUS**\n" -msgstr "" - -#: ../../utils/net_rap.c:668 -msgid "Waiting\n" -msgstr "Wartend\n" - -#: ../../utils/net_rap.c:671 -msgid "Held in queue\n" -msgstr "" - -#: ../../utils/net_rap.c:674 -msgid "Spooling\n" -msgstr "" - -#: ../../utils/net_rap.c:677 -msgid "Printing\n" -msgstr "Druckend\n" - -#: ../../utils/net_rap.c:685 -#, c-format -msgid "" -"Print queues at \\\\%s\n" -"\n" -"Name Job # Size Status\n" -"\n" -"-------------------------------------------------------------------------------\n" -msgstr "" - -#: ../../utils/net_rap.c:733 -msgid "Display info about print queues and jobs" -msgstr "" - -#: ../../utils/net_rap.c:734 -msgid "" -"net rap printq info [queue]\n" -" Display info about print jobs in queue.\n" -" If queue is not specified, all queues are listed" -msgstr "" - -#: ../../utils/net_rap.c:743 -msgid "Delete print job(s)" -msgstr "" - -#: ../../utils/net_rap.c:744 -msgid "" -"net rap printq delete\n" -" Delete print job(s)" -msgstr "" - -#: ../../utils/net_rap.c:753 -msgid "" -"net rap printq\n" -" List the print queue\n" -msgstr "" - -#: ../../utils/net_rap.c:866 ../../utils/net_rpc.c:945 -msgid "Add specified user" -msgstr "" - -#: ../../utils/net_rap.c:867 -msgid "" -"net rap user add\n" -" Add specified user" -msgstr "" - -#: ../../utils/net_rap.c:874 -msgid "List domain groups of specified user" -msgstr "" - -#: ../../utils/net_rap.c:875 -msgid "" -"net rap user info\n" -" List domain groups of specified user" -msgstr "" - -#: ../../utils/net_rap.c:883 ../../utils/net_rpc.c:961 -msgid "Remove specified user" -msgstr "" - -#: ../../utils/net_rap.c:884 -msgid "" -"net rap user delete\n" -" Remove specified user" -msgstr "" - -#: ../../utils/net_rap.c:894 -msgid "" -"net rap user\n" -" List all users\n" -msgstr "" - -#: ../../utils/net_rap.c:917 -#, c-format -msgid "Net user returned: %d\n" -msgstr "" - -#: ../../utils/net_rap.c:985 -msgid "Add specified group" -msgstr "" - -#: ../../utils/net_rap.c:986 -msgid "" -"net rap group add\n" -" Add specified group" -msgstr "" - -#: ../../utils/net_rap.c:993 ../../utils/net_rpc.c:2786 -msgid "Delete specified group" -msgstr "" - -#: ../../utils/net_rap.c:994 -msgid "" -"net rap group delete\n" -" Delete specified group" -msgstr "" - -#: ../../utils/net_rap.c:1005 -msgid "" -"net rap group\n" -" List all groups\n" -msgstr "" - -#: ../../utils/net_rap.c:1014 -msgid "" -"Group name Comment\n" -"-----------------------------\n" -msgstr "" - -#: ../../utils/net_rap.c:1031 -msgid "" -"net rap groupmember LIST [misc. options] [targets]\n" -"\t Enumerate users in a group\n" -"\n" -"net rap groupmember DELETE [misc. options] [targets]\n" -"\t Delete specified user from specified group\n" -"\n" -"net rap groupmember ADD [misc. options] [targets]\n" -"\t Add specified user to specified group\n" -msgstr "" - -#: ../../utils/net_rap.c:1098 -msgid "Add specified user to group" -msgstr "" - -#: ../../utils/net_rap.c:1099 -msgid "" -"net rap groupmember add\n" -" Add specified user to group" -msgstr "" - -#: ../../utils/net_rap.c:1106 -msgid "List users in group" -msgstr "" - -#: ../../utils/net_rap.c:1107 -msgid "" -"net rap groupmember list\n" -" List users in group" -msgstr "" - -#: ../../utils/net_rap.c:1114 -msgid "Remove user from group" -msgstr "" - -#: ../../utils/net_rap.c:1115 -msgid "" -"net rap groupmember delete\n" -" Remove user from group" -msgstr "" - -#: ../../utils/net_rap.c:1126 -msgid "" -"net rap validate [password]\n" -"\tValidate user and password to check whether they can access target server or domain\n" -msgstr "" - -#: ../../utils/net_rap.c:1141 -msgid "" -"net rap service [misc. options] [targets] \n" -"\tlists all running service daemons on target server\n" -msgstr "" - -#: ../../utils/net_rap.c:1143 -msgid "" -"\n" -"net rap service START [service startup arguments] [misc. options] [targets]\n" -"\tStart named service on remote server\n" -msgstr "" - -#: ../../utils/net_rap.c:1146 -msgid "" -"\n" -"net rap service STOP [misc. options] [targets]\n" -"\n" -"\tStop named service on remote server\n" -msgstr "" - -#: ../../utils/net_rap.c:1176 -msgid "Start service on remote server" -msgstr "" - -#: ../../utils/net_rap.c:1177 -msgid "" -"net rap service start\n" -" Start service on remote server" -msgstr "" - -#: ../../utils/net_rap.c:1184 -msgid "Stop named serve on remote server" -msgstr "" - -#: ../../utils/net_rap.c:1185 -msgid "" -"net rap service stop\n" -" Stop named serve on remote server" -msgstr "" - -#: ../../utils/net_rap.c:1196 -msgid "" -"net rap service\n" -" List services on remote server\n" -msgstr "" - -#: ../../utils/net_rap.c:1206 -msgid "" -"Service name Comment\n" -"-----------------------------\n" -msgstr "" - -#: ../../utils/net_rap.c:1221 -msgid "" -"net rap password [misc. options] [target]\n" -"\tchanges the password for the specified user at target\n" -msgstr "" - -#: ../../utils/net_rap.c:1248 -msgid "" -"net rap admin [cmd args [env]] [misc. options] [targets]\n" -"\texecutes a remote command on an os/2 target server\n" -msgstr "" - -#: ../../utils/net_rap.c:1269 ../../utils/net_rpc.c:7253 -msgid "List open files" -msgstr "" - -#: ../../utils/net_rap.c:1270 -msgid "" -"net rap file\n" -" List open files" -msgstr "" - -#: ../../utils/net_rap.c:1277 -msgid "List shares exported by server" -msgstr "" - -#: ../../utils/net_rap.c:1278 -msgid "" -"net rap share\n" -" List shares exported by server" -msgstr "" - -#: ../../utils/net_rap.c:1285 -msgid "List open sessions" -msgstr "" - -#: ../../utils/net_rap.c:1286 -msgid "" -"net rap session\n" -" List open sessions" -msgstr "" - -#: ../../utils/net_rap.c:1294 -msgid "" -"net rap server\n" -" List servers in domain/workgroup" -msgstr "" - -#: ../../utils/net_rap.c:1301 -msgid "List domains in network" -msgstr "" - -#: ../../utils/net_rap.c:1302 -msgid "" -"net rap domain\n" -" List domains in network" -msgstr "" - -#: ../../utils/net_rap.c:1309 -msgid "List printer queues on server" -msgstr "" - -#: ../../utils/net_rap.c:1310 -msgid "" -"net rap printq\n" -" List printer queues on server" -msgstr "" - -#: ../../utils/net_rap.c:1317 -msgid "List users" -msgstr "" - -#: ../../utils/net_rap.c:1318 -msgid "" -"net rap user\n" -" List users" -msgstr "" - -#: ../../utils/net_rap.c:1325 -msgid "List user groups" -msgstr "" - -#: ../../utils/net_rap.c:1326 -msgid "" -"net rap group\n" -" List user groups" -msgstr "" - -#: ../../utils/net_rap.c:1333 -msgid "Check username/password" -msgstr "" - -#: ../../utils/net_rap.c:1334 -msgid "" -"net rap validate\n" -" Check username/password" -msgstr "" - -#: ../../utils/net_rap.c:1341 -msgid "List/modify group memberships" -msgstr "" - -#: ../../utils/net_rap.c:1342 -msgid "" -"net rap groupmember\n" -" List/modify group memberships" -msgstr "" - -#: ../../utils/net_rap.c:1349 -msgid "Execute commands on remote OS/2" -msgstr "" - -#: ../../utils/net_rap.c:1350 -msgid "" -"net rap admin\n" -" Execute commands on remote OS/2" -msgstr "" - -#: ../../utils/net_rap.c:1357 -msgid "Start/stop remote service" -msgstr "" - -#: ../../utils/net_rap.c:1358 -msgid "" -"net rap service\n" -" Start/stop remote service" -msgstr "" - -#: ../../utils/net_rap.c:1365 ../../utils/net_rpc.c:969 -msgid "Change user password" -msgstr "" - -#: ../../utils/net_rap.c:1366 -msgid "" -"net rap password\n" -" Change user password" -msgstr "" - -#: ../../utils/net_registry.c:94 ../../utils/net_registry.c:204 -#, c-format -msgid "open_hive failed: %s\n" -msgstr "" - -#: ../../utils/net_registry.c:101 -#, c-format -msgid "reg_openkey failed: %s\n" -msgstr "" - -#: ../../utils/net_registry.c:135 -msgid "net registry enumerate \n" -msgstr "" - -#: ../../utils/net_registry.c:137 ../../utils/net_registry.c:192 ../../utils/net_registry.c:249 ../../utils/net_registry.c:446 ../../utils/net_rpc_registry.c:834 ../../utils/net_rpc_registry.c:1216 -msgid "Example:" -msgstr "" - -#: ../../utils/net_registry.c:138 -msgid "net registry enumerate 'HKLM\\Software\\Samba'\n" -msgstr "" - -#: ../../utils/net_registry.c:144 ../../utils/net_registry.c:298 ../../utils/net_registry.c:370 ../../utils/net_registry.c:405 ../../utils/net_registry.c:457 -#, c-format -msgid "open_key failed: %s\n" -msgstr "" - -#: ../../utils/net_registry.c:190 -msgid "net registry createkey \n" -msgstr "" - -#: ../../utils/net_registry.c:193 -msgid "net registry createkey 'HKLM\\Software\\Samba\\smbconf.127.0.0.1'\n" -msgstr "" - -#: ../../utils/net_registry.c:198 ../../utils/net_registry.c:255 -msgid "error: zero length key name given\n" -msgstr "" - -#: ../../utils/net_registry.c:212 -#, c-format -msgid "reg_createkey failed: %s\n" -msgstr "" - -#: ../../utils/net_registry.c:218 ../../utils/net_rpc_registry.c:727 -msgid "createkey did nothing -- huh?\n" -msgstr "" - -#: ../../utils/net_registry.c:221 ../../utils/net_rpc_registry.c:730 -#, c-format -msgid "createkey created %s\n" -msgstr "" - -#: ../../utils/net_registry.c:224 ../../utils/net_rpc_registry.c:733 -#, c-format -msgid "createkey opened existing %s\n" -msgstr "" - -#: ../../utils/net_registry.c:247 -msgid "net registry deletekey \n" -msgstr "" - -#: ../../utils/net_registry.c:250 -msgid "net registry deletekey 'HKLM\\Software\\Samba\\smbconf.127.0.0.1'\n" -msgstr "" - -#: ../../utils/net_registry.c:292 ../../utils/net_rpc_registry.c:647 ../../utils/net_rpc_registry.c:675 -msgid "net rpc registry getvalue \n" -msgstr "" - -#: ../../utils/net_registry.c:304 -#, c-format -msgid "reg_queryvalue failed: %s\n" -msgstr "" - -#: ../../utils/net_registry.c:342 ../../utils/net_rpc_registry.c:476 -msgid "net rpc registry setvalue []+\n" -msgstr "" - -#: ../../utils/net_registry.c:348 ../../utils/net_rpc_registry.c:436 -#, c-format -msgid "Too many args for type %s\n" -msgstr "" - -#: ../../utils/net_registry.c:364 ../../utils/net_rpc_registry.c:450 -#, c-format -msgid "type \"%s\" not implemented\n" -msgstr "" - -#: ../../utils/net_registry.c:376 -#, c-format -msgid "reg_setvalue failed: %s\n" -msgstr "" - -#: ../../utils/net_registry.c:399 ../../utils/net_rpc_registry.c:531 -msgid "net rpc registry deletevalue \n" -msgstr "" - -#: ../../utils/net_registry.c:411 -#, c-format -msgid "reg_deletekey failed: %s\n" -msgstr "" - -#: ../../utils/net_registry.c:444 -msgid "net registry getsd \n" -msgstr "" - -#: ../../utils/net_registry.c:447 -msgid "net registry getsd 'HKLM\\Software\\Samba'\n" -msgstr "" - -#: ../../utils/net_registry.c:463 -#, c-format -msgid "reg_getkeysecurity failed: %s\n" -msgstr "" - -#: ../../utils/net_registry.c:486 ../../utils/net_rpc_registry.c:1287 -msgid "Enumerate registry keys and values" -msgstr "" - -#: ../../utils/net_registry.c:487 -msgid "" -"net registry enumerate\n" -" Enumerate registry keys and values" -msgstr "" - -#: ../../utils/net_registry.c:494 ../../utils/net_rpc_registry.c:1295 -msgid "Create a new registry key" -msgstr "" - -#: ../../utils/net_registry.c:495 -msgid "" -"net registry createkey\n" -" Create a new registry key" -msgstr "" - -#: ../../utils/net_registry.c:502 ../../utils/net_rpc_registry.c:1303 -msgid "Delete a registry key" -msgstr "" - -#: ../../utils/net_registry.c:503 -msgid "" -"net registry deletekey\n" -" Delete a registry key" -msgstr "" - -#: ../../utils/net_registry.c:510 ../../utils/net_rpc_registry.c:1311 ../../utils/net_rpc_registry.c:1319 -msgid "Print a registry value" -msgstr "" - -#: ../../utils/net_registry.c:511 -msgid "" -"net registry getvalue\n" -" Print a registry value" -msgstr "" - -#: ../../utils/net_registry.c:518 -msgid "Print a registry value (raw format)" -msgstr "" - -#: ../../utils/net_registry.c:519 -msgid "" -"net registry getvalueraw\n" -" Print a registry value (raw format)" -msgstr "" - -#: ../../utils/net_registry.c:526 ../../utils/net_rpc_registry.c:1327 -msgid "Set a new registry value" -msgstr "" - -#: ../../utils/net_registry.c:527 -msgid "" -"net registry setvalue\n" -" Set a new registry value" -msgstr "" - -#: ../../utils/net_registry.c:534 ../../utils/net_rpc_registry.c:1335 -msgid "Delete a registry value" -msgstr "" - -#: ../../utils/net_registry.c:535 -msgid "" -"net registry deletevalue\n" -" Delete a registry value" -msgstr "" - -#: ../../utils/net_registry.c:542 ../../utils/net_rpc_registry.c:1367 -msgid "Get security descriptor" -msgstr "" - -#: ../../utils/net_registry.c:543 -msgid "" -"net registry getsd\n" -" Get security descriptor" -msgstr "" - -#: ../../utils/net_registry_util.c:28 -#, c-format -msgid "Keyname = %s\n" -msgstr "" - -#: ../../utils/net_registry_util.c:29 -#, c-format -msgid "Modtime = %s\n" -msgstr "" - -#: ../../utils/net_registry_util.c:32 -msgid "None" -msgstr "Kein" - -#: ../../utils/net_registry_util.c:39 -#, c-format -msgid "Type = %s\n" -msgstr "Typ = %s\n" - -#: ../../utils/net_registry_util.c:45 ../../utils/net_registry_util.c:76 ../../utils/net_registry_util.c:82 -msgid "Value = " -msgstr "Wert = " - -#: ../../utils/net_registry_util.c:52 -msgid "Value = \"" -msgstr "Wert = \"" - -#: ../../utils/net_registry_util.c:64 -#, c-format -msgid "Value[%3.3d] = \"" -msgstr "" - -#: ../../utils/net_registry_util.c:78 -#, c-format -msgid "%d bytes\n" -msgstr "%d Bytes\n" - -#: ../../utils/net_registry_util.c:84 -msgid "\n" -msgstr "\n" - -#: ../../utils/net_registry_util.c:92 -#, c-format -msgid "Valuename = %s\n" -msgstr "Wertname = %s\n" - -#: ../../utils/net_rpc.c:73 ../../utils/net_util.c:45 -msgid "Could not initialise lsa pipe\n" -msgstr "" - -#: ../../utils/net_rpc.c:256 -#, c-format -msgid "Failed to change machine account password: %s\n" -msgstr "Konnte Passwort für Vertrauenskonto nicht ändern: %s\n" - -#: ../../utils/net_rpc.c:281 -msgid "Change the machine trust password" -msgstr "Passwort von Vertrauenskonto ändern" - -#: ../../utils/net_rpc.c:364 ../../utils/net_rpc_join.c:477 -#, c-format -msgid "Joined domain %s.\n" -msgstr "" - -#: ../../utils/net_rpc.c:414 -msgid "Join a domain the old way" -msgstr "Einer Domäne auf altem Weg beitreten" - -#: ../../utils/net_rpc.c:421 -msgid "Failed to join domain\n" -msgstr "" - -#: ../../utils/net_rpc.c:444 -#, c-format -msgid "" -"net rpc join -U [%%password] \n" -" Join a domain\n" -" username\tName of the admin user password\tPassword of the admin user, will prompt if not specified\n" -" type\tCan be one of the following:\n" -"\t\tMEMBER\tJoin as member server (default)\n" -"\t\tBDC\tJoin as BDC\n" -"\t\tPDC\tJoin as PDC\n" -msgstr "" - -#: ../../utils/net_rpc.c:457 -msgid "cannot join as standalone machine\n" -msgstr "" - -#: ../../utils/net_rpc.c:512 -#, c-format -msgid "Could not connect to SAM: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:524 -#, c-format -msgid "Could not open domain: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:534 -#, c-format -msgid "Domain Name: %s\n" -msgstr "Domänenname: %s\n" - -#: ../../utils/net_rpc.c:536 -#, c-format -msgid "Domain SID: %s\n" -msgstr "Domänen SID: %s\n" - -#: ../../utils/net_rpc.c:537 -#, c-format -msgid "Sequence number: %llu\n" -msgstr "" - -#: ../../utils/net_rpc.c:539 -#, c-format -msgid "Num users: %u\n" -msgstr "" - -#: ../../utils/net_rpc.c:540 -#, c-format -msgid "Num domain groups: %u\n" -msgstr "" - -#: ../../utils/net_rpc.c:541 -#, c-format -msgid "Num local groups: %u\n" -msgstr "" - -#: ../../utils/net_rpc.c:562 -msgid "Display information about the domain" -msgstr "" - -#: ../../utils/net_rpc.c:599 -#, c-format -msgid "Storing SID %s for Domain %s in secrets.tdb\n" -msgstr "" - -#: ../../utils/net_rpc.c:630 -msgid "Fetch domain SID into local secrets.tdb" -msgstr "SID der Domäne nach secrets.tdb übertragen" - -#: ../../utils/net_rpc.c:685 -#, c-format -msgid "Failed to add user '%s' with error: %s.\n" -msgstr "" - -#: ../../utils/net_rpc.c:690 -#, c-format -msgid "Added user '%s'.\n" -msgstr "" - -#: ../../utils/net_rpc.c:723 -#, c-format -msgid "Failed to rename user from %s to %s - %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:727 -#, c-format -msgid "Renamed user from %s to %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:755 -#, c-format -msgid "Failed to delete user '%s' with: %s.\n" -msgstr "" - -#: ../../utils/net_rpc.c:760 -#, c-format -msgid "Deleted user '%s'.\n" -msgstr "" - -#: ../../utils/net_rpc.c:806 -#, c-format -msgid "Failed to set password for '%s' with error: %s.\n" -msgstr "" - -#: ../../utils/net_rpc.c:849 -#, c-format -msgid "Failed to get groups for '%s' with error: %s.\n" -msgstr "" - -#: ../../utils/net_rpc.c:946 -msgid "" -"net rpc user add\n" -" Add specified user" -msgstr "" - -#: ../../utils/net_rpc.c:953 -msgid "List domain groups of user" -msgstr "" - -#: ../../utils/net_rpc.c:954 -msgid "" -"net rpc user info\n" -" List domain groups of user" -msgstr "" - -#: ../../utils/net_rpc.c:962 -msgid "" -"net rpc user delete\n" -" Remove specified user" -msgstr "" - -#: ../../utils/net_rpc.c:970 -msgid "" -"net rpc user password\n" -" Change user password" -msgstr "" - -#: ../../utils/net_rpc.c:977 -msgid "Rename specified user" -msgstr "" - -#: ../../utils/net_rpc.c:978 -msgid "" -"net rpc user rename\n" -" Rename specified user" -msgstr "" - -#: ../../utils/net_rpc.c:1000 -msgid "List all users" -msgstr "" - -#: ../../utils/net_rpc.c:1061 -#, c-format -msgid "Could not lookup %s: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:1067 ../../utils/net_sam.c:53 ../../utils/net_sam.c:159 ../../utils/net_sam.c:251 -#, c-format -msgid "%s is a %s, not a user\n" -msgstr "" - -#: ../../utils/net_rpc.c:1074 -#, c-format -msgid "%s is not in our domain\n" -msgstr "" - -#: ../../utils/net_rpc.c:1144 -#, c-format -msgid "user rid: %d, group rid: %d\n" -msgstr "" - -#: ../../utils/net_rpc.c:1208 -#, c-format -msgid "%s's %s: [%s]\n" -msgstr "" - -#: ../../utils/net_rpc.c:1230 -#, c-format -msgid "Set %s's %s from [%s] to [%s]\n" -msgstr "" - -#. TRANSATORS: The yes|no here are program keywords. Please do -#. not translate. -#: ../../utils/net_rpc.c:1276 -#, c-format -msgid "Usage: %s [yes|no]\n" -msgstr "" - -#: ../../utils/net_rpc.c:1301 -#, c-format -msgid "%s's %s flag: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:1317 -#, c-format -msgid "Set %s's %s flag from [%s] to [%s]\n" -msgstr "" - -#: ../../utils/net_rpc.c:1343 -msgid "Show/Set a user's full name" -msgstr "" - -#: ../../utils/net_rpc.c:1346 -msgid "Show/Set a user's home directory" -msgstr "" - -#: ../../utils/net_rpc.c:1349 -msgid "Show/Set a user's home drive" -msgstr "" - -#: ../../utils/net_rpc.c:1352 -msgid "Show/Set a user's logon script" -msgstr "" - -#: ../../utils/net_rpc.c:1355 -msgid "Show/Set a user's profile path" -msgstr "" - -#: ../../utils/net_rpc.c:1358 -msgid "Show/Set a user's description" -msgstr "" - -#: ../../utils/net_rpc.c:1361 -msgid "Show/Set whether a user is disabled" -msgstr "" - -#: ../../utils/net_rpc.c:1364 -msgid "Show/Set whether a user locked out" -msgstr "" - -#: ../../utils/net_rpc.c:1367 -msgid "Show/Set whether a user does not need a password" -msgstr "" - -#: ../../utils/net_rpc.c:1370 -msgid "Show/Set whether a user's password does not expire" -msgstr "" - -#: ../../utils/net_rpc.c:1385 -msgid "List available users" -msgstr "" - -#: ../../utils/net_rpc.c:1388 -msgid "List the domain groups a user is member of" -msgstr "" - -#: ../../utils/net_rpc.c:1391 -msgid "Show info about a user" -msgstr "" - -#: ../../utils/net_rpc.c:1394 -msgid "Show/Modify a user's fields" -msgstr "" - -#: ../../utils/net_rpc.c:1465 -msgid "Request samr_Connect2 failed\n" -msgstr "" - -#: ../../utils/net_rpc.c:1476 -msgid "Request open_domain failed\n" -msgstr "" - -#: ../../utils/net_rpc.c:1489 -#, c-format -msgid "Lookup of '%s' failed\n" -msgstr "" - -#: ../../utils/net_rpc.c:1502 -msgid "Request open_group failed" -msgstr "" - -#: ../../utils/net_rpc.c:1514 -#, c-format -msgid "Unable to query group members of %s" -msgstr "" - -#: ../../utils/net_rpc.c:1521 -#, c-format -msgid "Domain Group %s (rid: %d) has %d members\n" -msgstr "" - -#: ../../utils/net_rpc.c:1536 -#, c-format -msgid "Unable to open group member %d\n" -msgstr "" - -#: ../../utils/net_rpc.c:1548 -#, c-format -msgid "Unable to lookup userinfo for group member %d\n" -msgstr "" - -#: ../../utils/net_rpc.c:1556 -#, c-format -msgid "Group is primary group of %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:1567 -msgid "Unable to delete group because some of it's members have it as primary group\n" -msgstr "" - -#: ../../utils/net_rpc.c:1578 -#, c-format -msgid "Remove group member %d..." -msgstr "" - -#: ../../utils/net_rpc.c:1586 ../../utils/net_rpc_registry.c:1104 ../../utils/net_rpc_registry.c:1124 ../../utils/net_rpc_registry.c:1150 ../../utils/net_rpc_registry.c:1157 ../../utils/net_rpc_registry.c:1177 ../../utils/net_rpc_registry.c:1183 -msgid "ok\n" -msgstr "" - -#: ../../utils/net_rpc.c:1607 -msgid "Request open_alias failed\n" -msgstr "" - -#: ../../utils/net_rpc.c:1615 -#, c-format -msgid "%s is of type %s. This command is only for deleting local or global groups\n" -msgstr "" - -#: ../../utils/net_rpc.c:1624 -#, c-format -msgid "Deleted %s '%s'\n" -msgstr "" - -#: ../../utils/net_rpc.c:1627 -#, c-format -msgid "Deleting of %s failed: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:1664 -#, c-format -msgid "Failed to add group '%s' with error: %s.\n" -msgstr "" - -#: ../../utils/net_rpc.c:1669 -#, c-format -msgid "Added group '%s'.\n" -msgstr "" - -#: ../../utils/net_rpc.c:1697 -#, c-format -msgid "Failed to add alias '%s' with error: %s.\n" -msgstr "" - -#: ../../utils/net_rpc.c:1702 -#, c-format -msgid "Added alias '%s'.\n" -msgstr "" - -#: ../../utils/net_rpc.c:1822 ../../utils/net_rpc.c:1872 ../../utils/net_rpc.c:2030 ../../utils/net_rpc.c:2077 -#, c-format -msgid "Could not lookup up group member %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:1934 -msgid "" -"net rpc group addmem \n" -" Add a member to a group\n" -" group\tGroup to add member to\n" -" member\tMember to add to group\n" -msgstr "" - -#: ../../utils/net_rpc.c:1943 ../../utils/net_rpc.c:2146 -#, c-format -msgid "Could not lookup group name %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:1953 ../../utils/net_rpc.c:1964 -#, c-format -msgid "Could not add %s to %s: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:1970 -#, c-format -msgid "Can only add members to global or local groups which %s is not\n" -msgstr "" - -#: ../../utils/net_rpc.c:2137 -msgid "" -"net rpc group delmem \n" -" Delete a member from a group\n" -" group\tGroup to delete member from\n" -" member\tMember to delete from group\n" -msgstr "" - -#: ../../utils/net_rpc.c:2156 ../../utils/net_rpc.c:2167 -#, c-format -msgid "Could not del %s from %s: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:2173 -#, c-format -msgid "Can only delete members from global or local groups which %s is not\n" -msgstr "" - -#: ../../utils/net_rpc.c:2222 -msgid "" -"net rpc group list [global] [local] [builtin]\n" -" List groups on RPC server\n" -" global\tList global groups\n" -" local\tList local groups\n" -" builtin\tList builtin groups\n" -" If none of global, local or builtin is specified, all three options are considered set\n" -msgstr "" - -#: ../../utils/net_rpc.c:2542 -msgid "Couldn't list alias members\n" -msgstr "" - -#: ../../utils/net_rpc.c:2556 -#, c-format -msgid "Couldn't open LSA pipe. Error was %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:2565 -msgid "Couldn't open LSA policy handle\n" -msgstr "" - -#: ../../utils/net_rpc.c:2572 -msgid "Out of memory\n" -msgstr "" - -#: ../../utils/net_rpc.c:2587 -msgid "Couldn't lookup SIDs\n" -msgstr "" - -#: ../../utils/net_rpc.c:2598 ../../utils/net_rpc.c:2599 -msgid "*unknown*" -msgstr "*unbekannt*" - -#: ../../utils/net_rpc.c:2673 ../../utils/net_rpc.c:2686 ../../utils/net_rpc.c:2693 -#, c-format -msgid "Couldn't find group %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:2744 -#, c-format -msgid "Renaming group %s failed with: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:2778 -msgid "Create specified group" -msgstr "" - -#: ../../utils/net_rpc.c:2779 -msgid "" -"net rpc group add\n" -" Create specified group" -msgstr "" - -#: ../../utils/net_rpc.c:2787 -msgid "" -"net rpc group delete\n" -" Delete specified group" -msgstr "" - -#: ../../utils/net_rpc.c:2794 -msgid "Add member to group" -msgstr "" - -#: ../../utils/net_rpc.c:2795 -msgid "" -"net rpc group addmem\n" -" Add member to group" -msgstr "" - -#: ../../utils/net_rpc.c:2802 -msgid "Remove member from group" -msgstr "" - -#: ../../utils/net_rpc.c:2803 -msgid "" -"net rpc group delmem\n" -" Remove member from group" -msgstr "" - -#: ../../utils/net_rpc.c:2810 -msgid "List groups" -msgstr "" - -#: ../../utils/net_rpc.c:2811 -msgid "" -"net rpc group list\n" -" List groups" -msgstr "" - -#: ../../utils/net_rpc.c:2818 ../../utils/net_sam.c:2085 -msgid "List group members" -msgstr "" - -#: ../../utils/net_rpc.c:2819 -msgid "" -"net rpc group members\n" -" List group members" -msgstr "" - -#: ../../utils/net_rpc.c:2826 -msgid "Rename group" -msgstr "" - -#: ../../utils/net_rpc.c:2827 -msgid "" -"net rpc group rename\n" -" Rename group" -msgstr "" - -#: ../../utils/net_rpc.c:2846 -msgid "" -"net rpc group\n" -" Alias for net rpc group list global local builtin\n" -msgstr "" - -#: ../../utils/net_rpc.c:2918 -#, c-format -msgid "NetShareAdd failed with: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:3073 -msgid "List shares on remote server" -msgstr "" - -#: ../../utils/net_rpc.c:3108 -#, c-format -msgid "skipping [%s]: not a file share.\n" -msgstr "" - -#: ../../utils/net_rpc.c:3114 -#, c-format -msgid "cli_tdis returned %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:3126 -#, c-format -msgid "share [%s] is not a diskshare (type: %x)\n" -msgstr "" - -#: ../../utils/net_rpc.c:3138 -#, c-format -msgid "excluding [%s]\n" -msgstr "" - -#. finally add the share on the dst server -#: ../../utils/net_rpc.c:3205 -#, c-format -msgid "migrating: [%s], path: %s, comment: %s, without share-ACLs\n" -msgstr "" - -#: ../../utils/net_rpc.c:3219 -#, c-format -msgid " [%s] does already exist\n" -msgstr " [%s] existiert bereits\n" - -#: ../../utils/net_rpc.c:3225 -#, c-format -msgid "cannot add share: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:3259 -msgid "Migrate shares to local server" -msgstr "" - -#: ../../utils/net_rpc.c:3264 ../../utils/net_rpc.c:3599 ../../utils/net_rpc.c:3726 ../../utils/net_rpc.c:3761 ../../utils/net_rpc.c:6564 ../../utils/net_rpc.c:6620 ../../utils/net_rpc.c:6652 ../../utils/net_rpc.c:6684 ../../utils/net_rpc.c:6716 -#: ../../utils/net_rpc.c:6749 -#, c-format -msgid "no server to migrate\n" -msgstr "" - -#: ../../utils/net_rpc.c:3324 ../../utils/net_rpc.c:3436 ../../utils/net_rpc.c:3519 -#, c-format -msgid "Unsupported mode %d\n" -msgstr "" - -#: ../../utils/net_rpc.c:3329 -#, c-format -msgid "could not handle dir %s: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:3339 -#, c-format -msgid "could not handle files\n" -msgstr "" - -#: ../../utils/net_rpc.c:3366 -#, c-format -msgid "Unsupported file mode %d\n" -msgstr "" - -#: ../../utils/net_rpc.c:3372 -#, c-format -msgid "could not handle file %s: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:3395 -#, c-format -msgid "cli_resolve_path %s failed with error: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:3402 -#, c-format -msgid "listing %s failed with error: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:3441 -#, c-format -msgid "Could handle directory attributes for top level directory of share %s. Error %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:3508 -#, c-format -msgid "skipping [%s]: builtin/hidden share\n" -msgstr "" - -#: ../../utils/net_rpc.c:3523 -#, c-format -msgid " [%s] files and directories %s ACLs, %s DOS Attributes %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:3526 ../../utils/net_rpc.c:3527 -msgid "including" -msgstr "inklusive" - -#: ../../utils/net_rpc.c:3526 ../../utils/net_rpc.c:3527 ../../utils/net_rpc_printer.c:370 ../../utils/net_rpc_printer.c:371 -msgid "without" -msgstr "ohne" - -#: ../../utils/net_rpc.c:3528 ../../utils/net_rpc_printer.c:372 -msgid "(preserving timestamps)" -msgstr "" - -#: ../../utils/net_rpc.c:3557 -#, c-format -msgid "Could not handle the top level directory permissions for the share: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:3565 -#, c-format -msgid "could not handle files for share: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:3594 -msgid "Migrate files to local server" -msgstr "" - -#: ../../utils/net_rpc.c:3667 -#, c-format -msgid "migrating: [%s], path: %s, comment: %s, including share-ACLs\n" -msgstr "" - -#: ../../utils/net_rpc.c:3686 -#, c-format -msgid "cannot set share-acl: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:3721 -msgid "Migrate share-acls to local server" -msgstr "" - -#: ../../utils/net_rpc.c:3756 -msgid "Migrates shares including all share settings" -msgstr "" - -#: ../../utils/net_rpc.c:3798 ../../utils/net_rpc.c:3822 -msgid "Migrate shares from remote to local server" -msgstr "" - -#: ../../utils/net_rpc.c:3799 -msgid "" -"net rpc share migrate all\n" -" Migrate shares from remote to local server" -msgstr "" - -#: ../../utils/net_rpc.c:3806 -msgid "Migrate files from remote to local server" -msgstr "" - -#: ../../utils/net_rpc.c:3807 -msgid "" -"net rpc share migrate files\n" -" Migrate files from remote to local server" -msgstr "" - -#: ../../utils/net_rpc.c:3814 -msgid "Migrate share-ACLs from remote to local server" -msgstr "" - -#: ../../utils/net_rpc.c:3815 -msgid "" -"net rpc share migrate security\n" -" Migrate share-ACLs from remote to local server" -msgstr "" - -#: ../../utils/net_rpc.c:3823 -msgid "" -"net rpc share migrate shares\n" -" Migrate shares from remote to local server" -msgstr "" - -#: ../../utils/net_rpc.c:4238 -msgid "winbind use default domain = yes set, please specify a workgroup\n" -msgstr "" - -#: ../../utils/net_rpc.c:4247 -#, c-format -msgid "winbind could not list users: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:4561 -msgid "List allowed users" -msgstr "" - -#: ../../utils/net_rpc.c:4609 -msgid "" -"net usersidlist\n" -"\tprints out a list of all users the running winbind knows\n" -"\tabout, together with all their SIDs. This is used as\n" -"\tinput to the 'net rpc share allowedusers' command.\n" -"\n" -msgstr "" - -#: ../../utils/net_rpc.c:4634 -msgid "Add share" -msgstr "" - -#: ../../utils/net_rpc.c:4635 -msgid "" -"net rpc share add\n" -" Add share" -msgstr "" - -#: ../../utils/net_rpc.c:4642 -msgid "Remove share" -msgstr "" - -#: ../../utils/net_rpc.c:4643 -msgid "" -"net rpc share delete\n" -" Remove share" -msgstr "" - -#: ../../utils/net_rpc.c:4650 -msgid "Modify allowed users" -msgstr "" - -#: ../../utils/net_rpc.c:4651 -msgid "" -"net rpc share allowedusers\n" -" Modify allowed users" -msgstr "" - -#: ../../utils/net_rpc.c:4658 -msgid "Migrate share to local server" -msgstr "" - -#: ../../utils/net_rpc.c:4659 -msgid "" -"net rpc share migrate\n" -" Migrate share to local server" -msgstr "" - -#: ../../utils/net_rpc.c:4666 -msgid "List shares" -msgstr "" - -#: ../../utils/net_rpc.c:4667 -msgid "" -"net rpc share list\n" -" List shares" -msgstr "" - -#: ../../utils/net_rpc.c:4687 -msgid "" -"net rpc share\n" -" List shares\n" -" Alias for net rpc share list\n" -msgstr "" - -#: ../../utils/net_rpc.c:4721 -#, c-format -msgid "Usage: %s [comment]\n" -msgstr "" - -#: ../../utils/net_rpc.c:4782 -#, c-format -msgid "Name: %s\n" -msgstr "Name: %s\n" - -#: ../../utils/net_rpc.c:4783 -#, c-format -msgid "Comment: %s\n" -msgstr "Kommentar: %s\n" - -#: ../../utils/net_rpc.c:4784 -#, c-format -msgid "Path: %s\n" -msgstr "Pfad: %s\n" - -#: ../../utils/net_rpc.c:4785 -#, c-format -msgid "Password: %s\n" -msgstr "Passwort: %s\n" - -#: ../../utils/net_rpc.c:4797 -msgid "List available shares" -msgstr "" - -#: ../../utils/net_rpc.c:4800 -msgid "Add a share" -msgstr "" - -#: ../../utils/net_rpc.c:4803 -msgid "Delete a share" -msgstr "" - -#: ../../utils/net_rpc.c:4806 -msgid "Get information about a share" -msgstr "" - -#: ../../utils/net_rpc.c:4898 -msgid "" -"\n" -"Enumerating open files on remote server:\n" -"\n" -"\n" -"FileId Opened by Perms Locks Path\n" -"------ --------- ----- ----- ---- \n" -msgstr "" - -#: ../../utils/net_rpc.c:4924 -msgid "Close opened file" -msgstr "" - -#: ../../utils/net_rpc.c:4925 -msgid "" -"net rpc file close\n" -" Close opened file" -msgstr "" - -#: ../../utils/net_rpc.c:4932 -msgid "List files opened by user" -msgstr "" - -#: ../../utils/net_rpc.c:4933 -msgid "" -"net rpc file user\n" -" List files opened by user" -msgstr "" - -#: ../../utils/net_rpc.c:4941 -msgid "Display information about opened file" -msgstr "" - -#: ../../utils/net_rpc.c:4942 -msgid "" -"net rpc file info\n" -" Display information about opened file" -msgstr "" - -#: ../../utils/net_rpc.c:4962 -msgid "" -"net rpc file\n" -" List opened files\n" -msgstr "" - -#: ../../utils/net_rpc.c:5005 ../../utils/net_rpc.c:5044 -msgid "" -"\n" -"Shutdown successfully aborted\n" -msgstr "" - -#: ../../utils/net_rpc.c:5072 -msgid "Abort a scheduled shutdown" -msgstr "" - -#: ../../utils/net_rpc.c:5116 ../../utils/net_rpc.c:5169 -msgid "This machine will be shutdown shortly" -msgstr "" - -#: ../../utils/net_rpc.c:5135 ../../utils/net_rpc.c:5190 -msgid "" -"\n" -"Shutdown of remote machine succeeded\n" -msgstr "" - -#: ../../utils/net_rpc.c:5221 -msgid "Shut down a remote RPC server" -msgstr "Einen entfernten RPC server herunterfahren" - -#: ../../utils/net_rpc.c:5280 -msgid " net rpc trustdom add \n" -msgstr "" - -#: ../../utils/net_rpc.c:5342 -#, c-format -msgid "net rpc trustdom add: create user %s failed %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:5395 -msgid "net rpc trustdom add \n" -msgstr "" - -#: ../../utils/net_rpc.c:5437 -msgid " net rpc trustdom del \n" -msgstr "" - -#: ../../utils/net_rpc.c:5480 -#, c-format -msgid "net rpc trustdom del: LookupNames on user %s failed %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:5493 -#, c-format -msgid "net rpc trustdom del: OpenUser on user %s failed %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:5510 -#, c-format -msgid "net rpc trustdom del: RemoveMemberFromForeignDomain on user %s failed %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:5522 -#, c-format -msgid "net rpc trustdom del: DeleteUser on user %s failed %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:5529 -#, c-format -msgid "Could not set trust account password: %s\n" -msgstr "Konnte Passwort für Vertrauenskonto nicht stetzen: %s\n" - -#: ../../utils/net_rpc.c:5555 -msgid "net rpc trustdom del \n" -msgstr "" - -#: ../../utils/net_rpc.c:5639 -msgid "net rpc trustdom establish \n" -msgstr "" - -#: ../../utils/net_rpc.c:5781 -#, c-format -msgid "Trust to domain %s established\n" -msgstr "" - -#: ../../utils/net_rpc.c:5804 -msgid "" -"net rpc trustdom revoke \n" -" Revoke trust relationship\n" -" domain_name\tName of domain to revoke trust\n" -msgstr "" - -#: ../../utils/net_rpc.c:5938 -msgid "Vampire trust relationship from remote server" -msgstr "" - -#. -#. * Keep calling LsaEnumTrustdom over opened pipe until -#. * the end of enumeration is reached -#. -#: ../../utils/net_rpc.c:6012 -msgid "" -"Vampire trusted domains:\n" -"\n" -msgstr "" - -#. -#. * in case of no trusted domains say something rather -#. * than just display blank line -#. -#: ../../utils/net_rpc.c:6047 ../../utils/net_rpc.c:6203 -msgid "none\n" -msgstr "kein\n" - -#: ../../utils/net_rpc.c:6097 -msgid "List incoming and outgoing trust relationships" -msgstr "" - -#. -#. * Keep calling LsaEnumTrustdom over opened pipe until -#. * the end of enumeration is reached -#. -#: ../../utils/net_rpc.c:6171 -msgid "" -"Trusted domains list:\n" -"\n" -msgstr "" - -#. -#. * Listing trusting domains (stored in passdb backend, if local) -#. -#: ../../utils/net_rpc.c:6222 -msgid "" -"\n" -"Trusting domains list:\n" -"\n" -msgstr "" - -#: ../../utils/net_rpc.c:6323 -msgid "strange - couldn't get domain's sid\n" -msgstr "" - -#: ../../utils/net_rpc.c:6328 -#, c-format -msgid "domain controller is not responding: %s\n" -msgstr "" - -#: ../../utils/net_rpc.c:6331 -msgid "couldn't get domain's sid\n" -msgstr "" - -#: ../../utils/net_rpc.c:6375 -msgid "Add trusting domain's account" -msgstr "" - -#: ../../utils/net_rpc.c:6376 -msgid "" -"net rpc trustdom add\n" -" Add trusting domain's account" -msgstr "" - -#: ../../utils/net_rpc.c:6383 -msgid "Remove trusting domain's account" -msgstr "" - -#: ../../utils/net_rpc.c:6384 -msgid "" -"net rpc trustdom del\n" -" Remove trusting domain's account" -msgstr "" - -#: ../../utils/net_rpc.c:6391 -msgid "Establish outgoing trust relationship" -msgstr "" - -#: ../../utils/net_rpc.c:6392 -msgid "" -"net rpc trustdom establish\n" -" Establish outgoing trust relationship" -msgstr "" - -#: ../../utils/net_rpc.c:6399 -msgid "Revoke outgoing trust relationship" -msgstr "" - -#: ../../utils/net_rpc.c:6400 -msgid "" -"net rpc trustdom revoke\n" -" Revoke outgoing trust relationship" -msgstr "" - -#: ../../utils/net_rpc.c:6407 -msgid "List in- and outgoing domain trusts" -msgstr "" - -#: ../../utils/net_rpc.c:6408 -msgid "" -"net rpc trustdom list\n" -" List in- and outgoing domain trusts" -msgstr "" - -#: ../../utils/net_rpc.c:6415 -msgid "Vampire trusts from remote server" -msgstr "" - -#: ../../utils/net_rpc.c:6416 -msgid "" -"net rpc trustdom vampire\n" -" Vampire trusts from remote server" -msgstr "" - -#: ../../utils/net_rpc.c:6472 -msgid "Dump remote SAM database" -msgstr "Entfernte SAM Datenbank ausgeben" - -#: ../../utils/net_rpc.c:6489 -msgid "Dump remote SAM database to ldif" -msgstr "" - -#: ../../utils/net_rpc.c:6490 -msgid "" -"net rpc vampire ldif\n" -" Dump remote SAM database to LDIF file or stdout" -msgstr "" - -#: ../../utils/net_rpc.c:6498 -msgid "Dump remote SAM database to Kerberos Keytab" -msgstr "" - -#: ../../utils/net_rpc.c:6499 -msgid "" -"net rpc vampire keytab\n" -" Dump remote SAM database to Kerberos keytab file" -msgstr "" - -#: ../../utils/net_rpc.c:6507 ../../utils/net_rpc_samsync.c:259 -msgid "Dump remote SAM database to passdb" -msgstr "" - -#: ../../utils/net_rpc.c:6508 -msgid "" -"net rpc vampire passdb\n" -" Dump remote SAM database to passdb" -msgstr "" - -#: ../../utils/net_rpc.c:6521 -msgid "Vampire remote SAM database" -msgstr "Entfernte SAM Datenbank übernehmen" - -#: ../../utils/net_rpc.c:6559 -msgid "Migrate everything from a print server" -msgstr "" - -#: ../../utils/net_rpc.c:6615 -msgid "Migrate print-drivers from a print-server" -msgstr "" - -#: ../../utils/net_rpc.c:6647 -msgid "Migrate print-forms from a print-server" -msgstr "" - -#: ../../utils/net_rpc.c:6679 -msgid "Migrate printers from a print-server" -msgstr "" - -#: ../../utils/net_rpc.c:6711 -msgid "Migrate printer-ACLs from a print-server" -msgstr "" - -#: ../../utils/net_rpc.c:6743 -msgid "Migrate printer-settings from a print-server" -msgstr "" - -#: ../../utils/net_rpc.c:6779 -msgid "Migrate all from remote to local print server" -msgstr "" - -#: ../../utils/net_rpc.c:6780 -msgid "" -"net rpc printer migrate all\n" -" Migrate all from remote to local print server" -msgstr "" - -#: ../../utils/net_rpc.c:6787 -msgid "Migrate drivers to local server" -msgstr "" - -#: ../../utils/net_rpc.c:6788 -msgid "" -"net rpc printer migrate drivers\n" -" Migrate drivers to local server" -msgstr "" - -#: ../../utils/net_rpc.c:6795 -msgid "Migrate froms to local server" -msgstr "" - -#: ../../utils/net_rpc.c:6796 -msgid "" -"net rpc printer migrate forms\n" -" Migrate froms to local server" -msgstr "" - -#: ../../utils/net_rpc.c:6803 -msgid "Migrate printers to local server" -msgstr "" - -#: ../../utils/net_rpc.c:6804 -msgid "" -"net rpc printer migrate printers\n" -" Migrate printers to local server" -msgstr "" - -#: ../../utils/net_rpc.c:6811 -msgid "Migrate printer ACLs to local server" -msgstr "" - -#: ../../utils/net_rpc.c:6812 -msgid "" -"net rpc printer migrate security\n" -" Migrate printer ACLs to local server" -msgstr "" - -#: ../../utils/net_rpc.c:6819 -msgid "Migrate printer settings to local server" -msgstr "" - -#: ../../utils/net_rpc.c:6820 -msgid "" -"net rpc printer migrate settings\n" -" Migrate printer settings to local server" -msgstr "" - -#: ../../utils/net_rpc.c:6847 -msgid "List printers on a remote RPC server" -msgstr "" - -#: ../../utils/net_rpc.c:6874 -msgid "List printer-drivers on a remote RPC server" -msgstr "" - -#: ../../utils/net_rpc.c:6901 -msgid "Publish printer in ADS via MSRPC" -msgstr "Drucker in AD über MSRPC freigeben" - -#: ../../utils/net_rpc.c:6927 -msgid "Update printer in ADS via MSRPC" -msgstr "Drucker in AD über MSRPC aktualisieren" - -#: ../../utils/net_rpc.c:6954 -msgid "UnPublish printer in ADS via MSRPC" -msgstr "Freigabe eines Druckers in AD über MSRPC entfernen" - -#: ../../utils/net_rpc.c:6981 -msgid "List published printers via MSRPC" -msgstr "Freigegebene Drucker in AD über MSRPC auflisten" - -#: ../../utils/net_rpc.c:7010 ../../utils/net_rpc.c:7139 -msgid "Publish printer in AD" -msgstr "" - -#: ../../utils/net_rpc.c:7011 -msgid "" -"net rpc printer publish publish\n" -" Publish printer in AD" -msgstr "" - -#: ../../utils/net_rpc.c:7018 -msgid "Update printer in AD" -msgstr "" - -#: ../../utils/net_rpc.c:7019 -msgid "" -"net rpc printer publish update\n" -" Update printer in AD" -msgstr "" - -#: ../../utils/net_rpc.c:7026 -msgid "Unpublish printer" -msgstr "" - -#: ../../utils/net_rpc.c:7027 -msgid "" -"net rpc printer publish unpublish\n" -" Unpublish printer" -msgstr "" - -#: ../../utils/net_rpc.c:7034 -msgid "List published printers" -msgstr "" - -#: ../../utils/net_rpc.c:7035 -msgid "" -"net rpc printer publish list\n" -" List published printers" -msgstr "" - -#: ../../utils/net_rpc.c:7044 -msgid "" -"net rpc printer publish\n" -" List published printers\n" -" Alias of net rpc printer publish list\n" -msgstr "" - -#: ../../utils/net_rpc.c:7071 -msgid "" -"net rpc printer LIST [printer] [misc. options] [targets]\n" -"\tlists all printers on print-server\n" -"\n" -msgstr "" - -#: ../../utils/net_rpc.c:7073 -msgid "" -"net rpc printer DRIVER [printer] [misc. options] [targets]\n" -"\tlists all printer-drivers on print-server\n" -"\n" -msgstr "" - -#: ../../utils/net_rpc.c:7075 -msgid "" -"net rpc printer PUBLISH action [printer] [misc. options] [targets]\n" -"\tpublishes printer settings in Active Directory\n" -"\taction can be one of PUBLISH, UPDATE, UNPUBLISH or LIST\n" -"\n" -msgstr "" - -#: ../../utils/net_rpc.c:7078 -msgid "" -"net rpc printer MIGRATE PRINTERS [printer] [misc. options] [targets]\n" -"\tmigrates printers from remote to local server\n" -"\n" -msgstr "" - -#: ../../utils/net_rpc.c:7080 -msgid "" -"net rpc printer MIGRATE SETTINGS [printer] [misc. options] [targets]\n" -"\tmigrates printer-settings from remote to local server\n" -"\n" -msgstr "" - -#: ../../utils/net_rpc.c:7082 -msgid "" -"net rpc printer MIGRATE DRIVERS [printer] [misc. options] [targets]\n" -"\tmigrates printer-drivers from remote to local server\n" -"\n" -msgstr "" - -#: ../../utils/net_rpc.c:7084 -msgid "" -"net rpc printer MIGRATE FORMS [printer] [misc. options] [targets]\n" -"\tmigrates printer-forms from remote to local server\n" -"\n" -msgstr "" - -#: ../../utils/net_rpc.c:7086 -msgid "" -"net rpc printer MIGRATE SECURITY [printer] [misc. options] [targets]\n" -"\tmigrates printer-ACLs from remote to local server\n" -"\n" -msgstr "" - -#: ../../utils/net_rpc.c:7088 -msgid "" -"net rpc printer MIGRATE ALL [printer] [misc. options] [targets]\n" -"\tmigrates drivers, forms, queues, settings and acls from\n" -"\tremote to local print-server\n" -"\n" -msgstr "" - -#: ../../utils/net_rpc.c:7094 -msgid "" -"\t-v or --verbose\t\t\tgive verbose output\n" -"\t --destination\t\tmigration target server (default: localhost)\n" -msgstr "" - -#: ../../utils/net_rpc.c:7115 -msgid "List all printers on print server" -msgstr "" - -#: ../../utils/net_rpc.c:7116 -msgid "" -"net rpc printer list\n" -" List all printers on print server" -msgstr "" - -#: ../../utils/net_rpc.c:7123 -msgid "Migrate printer to local server" -msgstr "" - -#: ../../utils/net_rpc.c:7124 -msgid "" -"net rpc printer migrate\n" -" Migrate printer to local server" -msgstr "" - -#: ../../utils/net_rpc.c:7131 -msgid "List printer drivers" -msgstr "" - -#: ../../utils/net_rpc.c:7132 -msgid "" -"net rpc printer driver\n" -" List printer drivers" -msgstr "" - -#: ../../utils/net_rpc.c:7140 -msgid "" -"net rpc printer publish\n" -" Publish printer in AD" -msgstr "" - -#: ../../utils/net_rpc.c:7149 -msgid "" -"net rpc printer\n" -" List printers\n" -msgstr "" - -#: ../../utils/net_rpc.c:7180 -msgid "Modify global audit settings" -msgstr "" - -#: ../../utils/net_rpc.c:7181 -msgid "" -"net rpc audit\n" -" Modify global audit settings" -msgstr "" - -#: ../../utils/net_rpc.c:7188 -msgid "Show basic info about a domain" -msgstr "" - -#: ../../utils/net_rpc.c:7189 -msgid "" -"net rpc info\n" -" Show basic info about a domain" -msgstr "" - -#: ../../utils/net_rpc.c:7196 -msgid "Join a domain" -msgstr "" - -#: ../../utils/net_rpc.c:7197 -msgid "" -"net rpc join\n" -" Join a domain" -msgstr "" - -#: ../../utils/net_rpc.c:7204 -msgid "Join a domain created in server manager" -msgstr "" - -#: ../../utils/net_rpc.c:7205 -msgid "" -"net rpc oldjoin\n" -" Join a domain created in server manager" -msgstr "" - -#: ../../utils/net_rpc.c:7212 -msgid "Test that a join is valid" -msgstr "" - -#: ../../utils/net_rpc.c:7213 -msgid "" -"net rpc testjoin\n" -" Test that a join is valid" -msgstr "" - -#: ../../utils/net_rpc.c:7221 -msgid "" -"net rpc user\n" -" List/modify users" -msgstr "" - -#: ../../utils/net_rpc.c:7228 -msgid "Change a user password" -msgstr "Benutzerpasswort ändern" - -#: ../../utils/net_rpc.c:7229 -msgid "" -"net rpc password\n" -" Change a user password\n" -" Alias for net rpc user password" -msgstr "" - -#: ../../utils/net_rpc.c:7238 -msgid "" -"net rpc group\n" -" List/modify groups" -msgstr "" - -#: ../../utils/net_rpc.c:7245 -msgid "List/modify shares" -msgstr "" - -#: ../../utils/net_rpc.c:7246 -msgid "" -"net rpc share\n" -" List/modify shares" -msgstr "" - -#: ../../utils/net_rpc.c:7254 -msgid "" -"net rpc file\n" -" List open files" -msgstr "" - -#: ../../utils/net_rpc.c:7261 -msgid "List/modify printers" -msgstr "" - -#: ../../utils/net_rpc.c:7262 -msgid "" -"net rpc printer\n" -" List/modify printers" -msgstr "" - -#: ../../utils/net_rpc.c:7270 -msgid "" -"net rpc changetrustpw\n" -" Change trust account password" -msgstr "" -"net rpc changetrustpw\n" -" trust account Passwort ändern" - -#: ../../utils/net_rpc.c:7277 -msgid "Modify domain trusts" -msgstr "" - -#: ../../utils/net_rpc.c:7278 -msgid "" -"net rpc trustdom\n" -" Modify domain trusts" -msgstr "" - -#: ../../utils/net_rpc.c:7285 -msgid "Abort a remote shutdown" -msgstr "" - -#: ../../utils/net_rpc.c:7286 -msgid "" -"net rpc abortshutdown\n" -" Abort a remote shutdown" -msgstr "" - -#: ../../utils/net_rpc.c:7293 -msgid "Shutdown a remote server" -msgstr "" - -#: ../../utils/net_rpc.c:7294 -msgid "" -"net rpc shutdown\n" -" Shutdown a remote server" -msgstr "" - -#: ../../utils/net_rpc.c:7301 -msgid "Dump SAM data of remote NT PDC" -msgstr "" - -#: ../../utils/net_rpc.c:7302 -msgid "" -"net rpc samdump\n" -" Dump SAM data of remote NT PDC" -msgstr "" - -#: ../../utils/net_rpc.c:7309 -msgid "Sync a remote NT PDC's data into local passdb" -msgstr "" - -#: ../../utils/net_rpc.c:7310 -msgid "" -"net rpc vampire\n" -" Sync a remote NT PDC's data into local passdb" -msgstr "" - -#: ../../utils/net_rpc.c:7317 -msgid "Fetch the domain sid into local secrets.tdb" -msgstr "" - -#: ../../utils/net_rpc.c:7318 -msgid "" -"net rpc getsid\n" -" Fetch the domain sid into local secrets.tdb" -msgstr "" - -#: ../../utils/net_rpc.c:7325 -msgid "Manage privileges assigned to SID" -msgstr "" - -#: ../../utils/net_rpc.c:7326 -msgid "" -"net rpc rights\n" -" Manage privileges assigned to SID" -msgstr "" - -#: ../../utils/net_rpc.c:7333 -msgid "Start/stop/query remote services" -msgstr "" - -#: ../../utils/net_rpc.c:7334 -msgid "" -"net rpc service\n" -" Start/stop/query remote services" -msgstr "" - -#: ../../utils/net_rpc.c:7341 -msgid "Manage registry hives" -msgstr "" - -#: ../../utils/net_rpc.c:7342 -msgid "" -"net rpc registry\n" -" Manage registry hives" -msgstr "" - -#: ../../utils/net_rpc.c:7349 -msgid "Open interactive shell on remote server" -msgstr "" - -#: ../../utils/net_rpc.c:7350 -msgid "" -"net rpc shell\n" -" Open interactive shell on remote server" -msgstr "" - -#: ../../utils/net_rpc_audit.c:28 -msgid "net rpc audit list View configured Auditing policies\n" -msgstr "" - -#: ../../utils/net_rpc_audit.c:29 -msgid "net rpc audit enable Enable Auditing\n" -msgstr "" - -#: ../../utils/net_rpc_audit.c:30 -msgid "net rpc audit disable Disable Auditing\n" -msgstr "" - -#: ../../utils/net_rpc_audit.c:31 -msgid "net rpc audit get View configured Auditing policy setting\n" -msgstr "" - -#: ../../utils/net_rpc_audit.c:32 -msgid "" -"net rpc audit set Set Auditing policies\n" -"\n" -msgstr "" - -#: ../../utils/net_rpc_audit.c:33 -msgid "\tcategory can be one of: SYSTEM, LOGON, OBJECT, PRIVILEGE, PROCESS, POLICY, SAM, DIRECTORY or ACCOUNT\n" -msgstr "" - -#: ../../utils/net_rpc_audit.c:34 -msgid "" -"\tpolicy can be one of: SUCCESS, FAILURE, ALL or NONE\n" -"\n" -msgstr "" - -#: ../../utils/net_rpc_audit.c:45 ../../utils/net_util.c:613 -msgid "Unknown" -msgstr "Unbekannt" - -#: ../../utils/net_rpc_audit.c:48 -msgid "Invalid" -msgstr "Ungültig" - -#: ../../utils/net_rpc_audit.c:51 -#, c-format -msgid "\t%-30s%s\n" -msgstr "\t%-30s%s\n" - -#: ../../utils/net_rpc_audit.c:73 ../../utils/net_rpc_audit.c:140 -msgid "insufficient arguments\n" -msgstr "" - -#: ../../utils/net_rpc_audit.c:79 ../../utils/net_rpc_audit.c:146 -#, c-format -msgid "invalid auditing category: %s\n" -msgstr "Ungültige Audit-Kategorie: %s\n" - -#: ../../utils/net_rpc_audit.c:115 -#, c-format -msgid "failed to get auditing policy: %s\n" -msgstr "" - -#: ../../utils/net_rpc_audit.c:161 -#, c-format -msgid "invalid auditing policy: %s\n" -msgstr "Ungültige Audit-Regel: %s\n" - -#: ../../utils/net_rpc_audit.c:205 -#, c-format -msgid "failed to set audit policy: %s\n" -msgstr "" - -#: ../../utils/net_rpc_audit.c:254 -#, c-format -msgid "%s: %s\n" -msgstr "" - -#: ../../utils/net_rpc_audit.c:255 -msgid "failed to enable audit policy" -msgstr "" - -#: ../../utils/net_rpc_audit.c:256 -msgid "failed to disable audit policy" -msgstr "" - -#: ../../utils/net_rpc_audit.c:328 -#, c-format -msgid "Auditing:\t\t" -msgstr "" - -#: ../../utils/net_rpc_audit.c:331 -#, c-format -msgid "Enabled" -msgstr "" - -#: ../../utils/net_rpc_audit.c:334 -#, c-format -msgid "Disabled" -msgstr "" - -#: ../../utils/net_rpc_audit.c:337 -#, c-format -msgid "unknown (%d)" -msgstr "unbekannt (%d)" - -#: ../../utils/net_rpc_audit.c:343 -#, c-format -msgid "Auditing categories:\t%d\n" -msgstr "" - -#: ../../utils/net_rpc_audit.c:344 -#, c-format -msgid "Auditing settings:\n" -msgstr "" - -#: ../../utils/net_rpc_audit.c:354 -#, c-format -msgid "failed to list auditing policies: %s\n" -msgstr "" - -#: ../../utils/net_rpc_audit.c:371 -msgid "View configured audit setting" -msgstr "" - -#: ../../utils/net_rpc_audit.c:389 -msgid "Set audit policies" -msgstr "" - -#: ../../utils/net_rpc_audit.c:407 ../../utils/net_rpc_audit.c:477 -msgid "Enable auditing" -msgstr "" - -#: ../../utils/net_rpc_audit.c:425 ../../utils/net_rpc_audit.c:485 -msgid "Disable auditing" -msgstr "" - -#: ../../utils/net_rpc_audit.c:443 -msgid "List auditing settings" -msgstr "" - -#: ../../utils/net_rpc_audit.c:461 -msgid "View configured auditing settings" -msgstr "" - -#: ../../utils/net_rpc_audit.c:462 -msgid "" -"net rpc audit get\n" -" View configured auditing settings" -msgstr "" - -#: ../../utils/net_rpc_audit.c:469 -msgid "Set auditing policies" -msgstr "" - -#: ../../utils/net_rpc_audit.c:470 -msgid "" -"net rpc audit set\n" -" Set auditing policies" -msgstr "" - -#: ../../utils/net_rpc_audit.c:478 -msgid "" -"net rpc audit enable\n" -" Enable auditing" -msgstr "" - -#: ../../utils/net_rpc_audit.c:486 -msgid "" -"net rpc audit disable\n" -" Disable auditing" -msgstr "" - -#: ../../utils/net_rpc_audit.c:493 -msgid "List configured auditing settings" -msgstr "" - -#: ../../utils/net_rpc_audit.c:494 -msgid "" -"net rpc audit list\n" -" List configured auditing settings" -msgstr "" - -#: ../../utils/net_rpc_join.c:297 -msgid "Creation of workstation account failed\n" -msgstr "" - -#: ../../utils/net_rpc_join.c:304 -msgid "User specified does not have administrator privileges\n" -msgstr "" - -#: ../../utils/net_rpc_join.c:410 ../../utils/net_rpc_join.c:438 -#, c-format -msgid "" -"Please make sure that no computer account\n" -"named like this machine (%s) exists in the domain\n" -msgstr "" - -#: ../../utils/net_rpc_join.c:475 -#, c-format -msgid "Unable to join domain %s.\n" -msgstr "" - -#: ../../utils/net_rpc_join.c:499 -msgid "" -"Usage\n" -"net rpc testjoin\n" -" Test if a join is OK\n" -msgstr "" - -#: ../../utils/net_rpc_join.c:508 -#, c-format -msgid "Join to domain '%s' is not valid: %s\n" -msgstr "" - -#: ../../utils/net_rpc_join.c:513 -#, c-format -msgid "Join to '%s' is OK\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:55 -#, c-format -msgid "Printer Driver Info 3:\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:56 -#, c-format -msgid "\tVersion: [%x]\n" -msgstr "\tVersion: [%x]\n" - -#: ../../utils/net_rpc_printer.c:57 -#, c-format -msgid "\tDriver Name: [%s]\n" -msgstr "\tTreibername: [%s]\n" - -#: ../../utils/net_rpc_printer.c:58 -#, c-format -msgid "\tArchitecture: [%s]\n" -msgstr "\tArchitektur: [%s]\n" - -#: ../../utils/net_rpc_printer.c:59 -#, c-format -msgid "\tDriver Path: [%s]\n" -msgstr "\tTreiberpfad: [%s]\n" - -#: ../../utils/net_rpc_printer.c:60 -#, c-format -msgid "\tDatafile: [%s]\n" -msgstr "\tDatendatei: [%s]\n" - -#: ../../utils/net_rpc_printer.c:61 -#, c-format -msgid "" -"\tConfigfile: [%s]\n" -"\n" -msgstr "" -"\tKonfigurationsdatei: [%s]\n" -"\n" - -#: ../../utils/net_rpc_printer.c:62 -#, c-format -msgid "" -"\tHelpfile: [%s]\n" -"\n" -msgstr "" -"\tHilfedatei: [%s]\n" -"\n" - -#: ../../utils/net_rpc_printer.c:65 -#, c-format -msgid "\tDependentfiles: [%s]\n" -msgstr "\tAbhängigkeiten: [%s]\n" - -#: ../../utils/net_rpc_printer.c:70 -#, c-format -msgid "\tMonitorname: [%s]\n" -msgstr "\tMonitorname: [%s]\n" - -#: ../../utils/net_rpc_printer.c:71 -#, c-format -msgid "" -"\tDefaultdatatype: [%s]\n" -"\n" -msgstr "" -"\tStandard Datentyp: [%s]\n" -"\n" - -#: ../../utils/net_rpc_printer.c:81 -#, c-format -msgid "\t[%s:%s]: REG_DWORD: 0x%08x\n" -msgstr "\t[%s:%s]: REG_DWORD: 0x%08x\n" - -#: ../../utils/net_rpc_printer.c:91 -#, c-format -msgid "\t[%s:%s]: REG_SZ: %s\n" -msgstr "\t[%s:%s]: REG_SZ: %s\n" - -#: ../../utils/net_rpc_printer.c:96 -#, c-format -msgid "\t[%s:%s]: REG_BINARY: unknown length value not displayed\n" -msgstr "\t[%s:%s]: REG_BINARY: unbekannte Länge, Daten werden nicht angezeigt\n" - -#: ../../utils/net_rpc_printer.c:120 -#, c-format -msgid "\t%s: unknown type %d\n" -msgstr "\t%s: unbekannter Typ %d\n" - -#: ../../utils/net_rpc_printer.c:254 -#, c-format -msgid "could not close %s on originating server: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:262 -#, c-format -msgid "could not close %s on destination server: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:355 -#, c-format -msgid "malloc fail for size %d\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:366 -#, c-format -msgid "copying [\\\\%s\\%s%s] => [\\\\%s\\%s%s] %s ACLs and %s DOS Attributes %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:370 ../../utils/net_rpc_printer.c:371 -msgid "with" -msgstr "mit" - -#: ../../utils/net_rpc_printer.c:390 -#, c-format -msgid "Error writing file: %s\n" -msgstr "Datei konnte nicht gespeichert werden: %s\n" - -#: ../../utils/net_rpc_printer.c:414 -#, c-format -msgid "cannot check for directory %s: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:424 -#, c-format -msgid "could not close file on originating server: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:432 -#, c-format -msgid "could not close file on destination server: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:565 -#, c-format -msgid "cannot check %s: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:606 -#, c-format -msgid "copying driver: [%s], for architecture: [%s], version: [%d]\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:675 -#, c-format -msgid "cannot enum printers: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:708 -#, c-format -msgid "no access to printer [%s] on [%s] for user [%s] granted\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:715 -#, c-format -msgid "cannot open printer %s on server %s: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:741 -#, c-format -msgid "cannot get printer-info: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:822 ../../utils/net_rpc_printer.c:1326 -#, c-format -msgid "cannot set printer-info: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:850 -#, c-format -msgid "unable to set printerdata: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:871 -#, c-format -msgid "enumprinterkey failed: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:897 -#, c-format -msgid "enumprinterdataex failed: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:934 -#, c-format -msgid "could not set printerdataex: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:959 -#, c-format -msgid "could not enum forms: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:983 -#, c-format -msgid "cannot enum drivers: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1016 -#, c-format -msgid "cannot get driver: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1046 -#, c-format -msgid "unsupported info level: %d\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1057 -#, c-format -msgid "You are not allowed to add drivers\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1061 -#, c-format -msgid "cannot add driver: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1161 -#, c-format -msgid "printer %d: %s, shared as: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1201 -#, c-format -msgid "listing printer-drivers\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1216 -#, c-format -msgid "no drivers found on server for architecture: [%s].\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1222 -#, c-format -msgid "got %d printer-drivers for architecture: [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1295 -msgid "published" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1298 -msgid "updated" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1301 -msgid "unpublished" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1304 -msgid "unknown action" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1305 -#, c-format -msgid "unknown action: %d\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1331 -#, c-format -msgid "successfully %s printer %s in Active Directory\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1443 -#, c-format -msgid "printer [%s] is published" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1446 -#, c-format -msgid ", guid: %s" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1450 -#, c-format -msgid "printer [%s] is unpublished\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1454 -#, c-format -msgid "printer [%s] is currently updating\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1458 -#, c-format -msgid "unknown state: %d\n" -msgstr "unbekannter Status: %d\n" - -#: ../../utils/net_rpc_printer.c:1528 ../../utils/net_rpc_printer.c:1675 ../../utils/net_rpc_printer.c:1858 ../../utils/net_rpc_printer.c:2047 ../../utils/net_rpc_printer.c:2214 -#, c-format -msgid "no printers found on server.\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1549 -#, c-format -msgid "migrating printer ACLs for: [%s] / [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1695 -#, c-format -msgid "migrating printer forms for: [%s] / [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1731 -#, c-format -msgid "\tmigrating form # %d [%s] of type [%d]\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1747 -#, c-format -msgid "\tAddForm form %d: [%s] refused.\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:1880 -#, c-format -msgid "migrating printer driver for: [%s] / [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:2067 -#, c-format -msgid "migrating printer queue for: [%s] / [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:2079 -#, c-format -msgid "could not get printer, creating printer.\n" -msgstr "" - -#. copy each src printer to a dst printer 1:1, -#. maybe some values have to be changed though -#: ../../utils/net_rpc_printer.c:2103 -#, c-format -msgid "creating printer: %s\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:2114 -#, c-format -msgid "printer [%s] successfully added.\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:2117 -#, c-format -msgid "printer [%s] already exists.\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:2120 -#, c-format -msgid "could not create printer [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:2248 -#, c-format -msgid "migrating printer settings for: [%s] / [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_printer.c:2401 -#, c-format -msgid "got no key-data\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:430 ../../utils/net_rpc_registry.c:504 ../../utils/net_rpc_registry.c:566 ../../utils/net_rpc_registry.c:841 ../../utils/net_rpc_registry.c:913 ../../utils/net_rpc_registry.c:1224 -#, c-format -msgid "registry_openkey failed: %s\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:459 -#, c-format -msgid "registry_setvalue failed: %s\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:515 -#, c-format -msgid "registry_deletevalue failed: %s\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:587 ../../utils/net_rpc_registry.c:604 -#, c-format -msgid "registry_queryvalue failed: %s\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:719 -#, c-format -msgid "createkey returned %s\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:749 -msgid "net rpc registry createkey \n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:788 -#, c-format -msgid "deletekey returned %s\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:800 -msgid "net rpc registry deletekey \n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:832 -msgid "net rpc registry enumerate \n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:849 -#, c-format -msgid "enumerating keys failed: %s\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:861 -#, c-format -msgid "enumerating values failed: %s\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:906 -msgid "net rpc registry backup \n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:921 -#, c-format -msgid "Unable to save [%s] to %s:%s\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:986 -msgid "unknown" -msgstr "unbekannt" - -#: ../../utils/net_rpc_registry.c:1095 -msgid "net rpc registry dump \n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1099 ../../utils/net_rpc_registry.c:1145 ../../utils/net_rpc_registry.c:1152 -#, c-format -msgid "Opening %s...." -msgstr "" - -#: ../../utils/net_rpc_registry.c:1101 ../../utils/net_rpc_registry.c:1147 -#, c-format -msgid "Failed to open %s for reading\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1109 ../../utils/net_rpc_registry.c:1162 -msgid "Could not get rootkey\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1122 -msgid "Closing registry..." -msgstr "" - -#: ../../utils/net_rpc_registry.c:1141 -msgid "net rpc registry copy \n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1154 -#, c-format -msgid "Failed to open %s for writing\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1165 -#, c-format -msgid "RootKey: [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1173 ../../utils/net_rpc_registry.c:1179 -#, c-format -msgid "Closing %s..." -msgstr "Schließe %s..." - -#: ../../utils/net_rpc_registry.c:1214 -msgid "net rpc registry getsd \n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1245 -#, c-format -msgid "getting sd failed: %s\n" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1288 -msgid "" -"net rpc registry enumerate\n" -" Enumerate registry keys and values" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1296 -msgid "" -"net rpc registry createkey\n" -" Create a new registry key" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1304 -msgid "" -"net rpc registry deletekey\n" -" Delete a registry key" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1312 -msgid "" -"net rpc registry getvalue\n" -" Print a registry value" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1320 -msgid "" -"net rpc registry getvalueraw\n" -" Print a registry value (raw version)" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1328 -msgid "" -"net rpc registry setvalue\n" -" Set a new registry value" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1336 -msgid "" -"net rpc registry deletevalue\n" -" Delete a registry value" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1343 -msgid "Save a registry file" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1344 -msgid "" -"net rpc registry save\n" -" Save a registry file" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1351 -msgid "Dump a registry file" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1352 -msgid "" -"net rpc registry dump\n" -" Dump a registry file" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1359 -msgid "Copy a registry file" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1360 -msgid "" -"net rpc registry copy\n" -" Copy a registry file" -msgstr "" - -#: ../../utils/net_rpc_registry.c:1368 -msgid "" -"net rpc registry getsd\n" -" Get security descriptor" -msgstr "" - -#: ../../utils/net_rpc_rights.c:203 -msgid "No privileges assigned\n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:368 -#, c-format -msgid "No such privilege exists: %s.\n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:371 -#, c-format -msgid "Error resolving privilege display name [%s].\n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:380 -#, c-format -msgid "Error enumerating accounts for privilege %s [%s].\n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:456 -msgid " net rpc rights grant \n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:493 -msgid "Successfully granted rights.\n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:497 -#, c-format -msgid "Failed to grant privileges for %s (%s)\n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:527 -msgid " net rpc rights revoke \n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:562 -msgid "Successfully revoked rights.\n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:566 -#, c-format -msgid "Failed to revoke privileges for %s (%s)\n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:584 -msgid "" -"net rpc rights list [{accounts|privileges} [name|SID]]\n" -" View available/assigned privileges\n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:602 -msgid "" -"net rpc rights grant \n" -" Assign privilege[s]\n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:604 -msgid "" -"For example:\n" -" net rpc rights grant 'VALE\\biddle' SePrintOperatorPrivilege SeDiskOperatorPrivilege\n" -" would grant the printer admin and disk manager rights to the user 'VALE\\biddle'\n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:624 -msgid "" -"net rpc rights revoke \n" -" Revoke privilege[s]\n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:626 -msgid "" -"For example:\n" -" net rpc rights revoke 'VALE\\biddle' SePrintOperatorPrivilege SeDiskOperatorPrivilege\n" -" would revoke the printer admin and disk manager rights from the user 'VALE\\biddle'\n" -msgstr "" - -#: ../../utils/net_rpc_rights.c:648 -msgid "View available/assigned privileges" -msgstr "" - -#: ../../utils/net_rpc_rights.c:649 -msgid "" -"net rpc rights list\n" -" View available/assigned privileges" -msgstr "" - -#: ../../utils/net_rpc_rights.c:656 ../../utils/net_rpc_rights.c:715 -msgid "Assign privilege[s]" -msgstr "" - -#: ../../utils/net_rpc_rights.c:657 -msgid "" -"net rpc rights grant\n" -" Assign privilege[s]" -msgstr "" - -#: ../../utils/net_rpc_rights.c:664 ../../utils/net_rpc_rights.c:718 -msgid "Revoke privilege[s]" -msgstr "" - -#: ../../utils/net_rpc_rights.c:665 -msgid "" -"net rpc rights revoke\n" -" Revoke privilege[s]" -msgstr "" - -#: ../../utils/net_rpc_rights.c:712 -msgid "View available or assigned privileges" -msgstr "" - -#: ../../utils/net_rpc_samsync.c:159 -msgid "" -"net rpc vampire ([ldif [] | [keytab] [\n" -" Dump remote SAM database to Kerberos keytab file\n" -msgstr "" - -#: ../../utils/net_rpc_samsync.c:503 -#, c-format -msgid "DC is not running Active Directory\n" -msgstr "" - -#: ../../utils/net_rpc_samsync.c:513 -#, c-format -msgid "Fallback to NT4 vampire on Mixed-Mode AD Domain\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:29 -msgid "stopped" -msgstr "" - -#: ../../utils/net_rpc_service.c:30 -msgid "start pending" -msgstr "" - -#: ../../utils/net_rpc_service.c:31 -msgid "stop pending" -msgstr "" - -#: ../../utils/net_rpc_service.c:32 -msgid "running" -msgstr "" - -#: ../../utils/net_rpc_service.c:33 -msgid "resume pending" -msgstr "" - -#: ../../utils/net_rpc_service.c:34 -msgid "pause pending" -msgstr "" - -#: ../../utils/net_rpc_service.c:35 -msgid "paused" -msgstr "" - -#: ../../utils/net_rpc_service.c:47 -#, c-format -msgid "Unknown State [%d]" -msgstr "" - -#: ../../utils/net_rpc_service.c:82 ../../utils/net_rpc_service.c:162 ../../utils/net_rpc_service.c:355 ../../utils/net_rpc_service.c:625 ../../utils/net_rpc_service.c:705 -#, c-format -msgid "Failed to open service. [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:176 -#, c-format -msgid "Control service request failed. [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:185 ../../utils/net_rpc_service.c:373 -#, c-format -msgid "%s service is %s.\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:230 ../../utils/net_rpc_service.c:340 -#, c-format -msgid "Failed to open Service Control Manager. [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:249 -#, c-format -msgid "Failed to enumerate services. [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:261 -msgid "No services returned\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:368 ../../utils/net_rpc_service.c:639 -#, c-format -msgid "Query status request failed. [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:395 -#, c-format -msgid "Query config request failed. [%s]\n" -msgstr "" - -#. print out the configuration information for the service -#: ../../utils/net_rpc_service.c:402 -msgid "Configuration details:\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:403 -#, c-format -msgid "\tControls Accepted = 0x%x\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:405 -#, c-format -msgid "\tService Type = 0x%x\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:406 -#, c-format -msgid "\tStart Type = 0x%x\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:407 -#, c-format -msgid "\tError Control = 0x%x\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:408 -#, c-format -msgid "\tTag ID = 0x%x\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:411 -#, c-format -msgid "\tExecutable Path = %s\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:416 -#, c-format -msgid "\tLoad Order Group = %s\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:421 -#, c-format -msgid "\tDependencies = %s\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:426 -#, c-format -msgid "\tStart Name = %s\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:430 -#, c-format -msgid "\tDisplay Name = %s\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:474 ../../utils/net_rpc_service.c:520 ../../utils/net_rpc_service.c:566 ../../utils/net_rpc_service.c:610 ../../utils/net_rpc_service.c:690 ../../utils/net_rpc_service.c:769 -#, c-format -msgid "Failed to open Service Control Manager. [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:647 -#, c-format -msgid "Successfully started service: %s\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:650 -#, c-format -msgid "Failed to start service: %s [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:717 -#, c-format -msgid "Delete service request failed. [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:722 -#, c-format -msgid "Successfully deleted Service: %s\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:800 -#, c-format -msgid "Create service request failed. [%s]\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:805 -#, c-format -msgid "Successfully created Service: %s\n" -msgstr "" - -#: ../../utils/net_rpc_service.c:828 ../../utils/net_rpc_service.c:972 -msgid "View configured Win32 services" -msgstr "" - -#: ../../utils/net_rpc_service.c:846 -msgid "Start a Win32 service" -msgstr "" - -#: ../../utils/net_rpc_service.c:864 -msgid "Stop a Win32 service" -msgstr "" - -#: ../../utils/net_rpc_service.c:882 -msgid "Resume a Win32 service" -msgstr "" - -#: ../../utils/net_rpc_service.c:900 -msgid "Pause a Win32 service" -msgstr "" - -#: ../../utils/net_rpc_service.c:918 -msgid "Show the current status of a service" -msgstr "" - -#: ../../utils/net_rpc_service.c:936 -msgid "Delete a Win32 service" -msgstr "" - -#: ../../utils/net_rpc_service.c:954 -msgid "Create a Win32 service" -msgstr "" - -#: ../../utils/net_rpc_service.c:973 -msgid "" -"net rpc service list\n" -" View configured Win32 services" -msgstr "" - -#: ../../utils/net_rpc_service.c:980 -msgid "Start a service" -msgstr "" - -#: ../../utils/net_rpc_service.c:981 -msgid "" -"net rpc service start\n" -" Start a service" -msgstr "" - -#: ../../utils/net_rpc_service.c:988 -msgid "Stop a service" -msgstr "" - -#: ../../utils/net_rpc_service.c:989 -msgid "" -"net rpc service stop\n" -" Stop a service" -msgstr "" - -#: ../../utils/net_rpc_service.c:996 -msgid "Pause a service" -msgstr "" - -#: ../../utils/net_rpc_service.c:997 -msgid "" -"net rpc service pause\n" -" Pause a service" -msgstr "" - -#: ../../utils/net_rpc_service.c:1004 -msgid "Resume a paused service" -msgstr "" - -#: ../../utils/net_rpc_service.c:1005 -msgid "" -"net rpc service resume\n" -" Resume a service" -msgstr "" - -#: ../../utils/net_rpc_service.c:1012 -msgid "View current status of a service" -msgstr "" - -#: ../../utils/net_rpc_service.c:1013 -msgid "" -"net rpc service status\n" -" View current status of a service" -msgstr "" - -#: ../../utils/net_rpc_service.c:1020 -msgid "Delete a service" -msgstr "" - -#: ../../utils/net_rpc_service.c:1021 -msgid "" -"net rpc service delete\n" -" Deletes a service" -msgstr "" - -#: ../../utils/net_rpc_service.c:1028 -msgid "Create a service" -msgstr "" - -#: ../../utils/net_rpc_service.c:1029 -msgid "" -"net rpc service create\n" -" Creates a service" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:79 -#, c-format -msgid "query_domain_info level 1 failed: %s\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:90 -#, c-format -msgid "query_domain_info level 3 failed: %s\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:101 -#, c-format -msgid "query_domain_info level 12 failed: %s\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:134 -#, c-format -msgid "Got unexpected info level %d\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:162 -#, c-format -msgid "Minimum password length: %d\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:163 -#, c-format -msgid "Password history length: %d\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:166 -msgid "Minimum password age: " -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:169 ../../utils/net_rpc_sh_acct.c:177 ../../utils/net_rpc_sh_acct.c:189 ../../utils/net_rpc_sh_acct.c:197 -#, c-format -msgid "%d seconds\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:171 ../../utils/net_rpc_sh_acct.c:179 ../../utils/net_rpc_sh_acct.c:191 ../../utils/net_rpc_sh_acct.c:199 -msgid "not set\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:174 -msgid "Maximum password age: " -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:182 -#, c-format -msgid "Bad logon attempts: %d\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:186 -msgid "Account lockout duration: " -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:194 -msgid "Bad password count reset after: " -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:203 -#, c-format -msgid "Disconnect users when logon hours expire: %s\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:206 -#, c-format -msgid "User must logon to change password: %s\n" -msgstr "Benutzer muss sich anmelden um Passwort zu ändern: %s\n" - -#: ../../utils/net_rpc_sh_acct.c:234 -#, c-format -msgid "Setting bad password count to %d\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:259 ../../utils/net_rpc_sh_acct.c:289 ../../utils/net_rpc_sh_acct.c:319 ../../utils/net_rpc_sh_acct.c:349 ../../utils/net_rpc_sh_acct.c:379 ../../utils/net_rpc_sh_acct.c:409 -#, c-format -msgid "Usage: %s \n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:264 -#, c-format -msgid "Setting lockout duration to %d seconds\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:294 -#, c-format -msgid "Setting bad password reset duration to %d seconds\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:324 -#, c-format -msgid "Setting minimum password age to %d seconds\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:354 -#, c-format -msgid "Setting maximum password age to %d seconds\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:384 -#, c-format -msgid "Setting minimum password length to %d\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:414 -#, c-format -msgid "Setting password history length to %d\n" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:435 -msgid "Show current account policy settings" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:437 -msgid "Set bad password count before lockout" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:439 -msgid "Set account lockout duration" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:442 -msgid "Set bad password count reset duration" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:444 -msgid "Set minimum password age" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:446 -msgid "Set maximum password age" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:448 -msgid "Set minimum password length" -msgstr "" - -#: ../../utils/net_rpc_sh_acct.c:450 -msgid "Set the password history length" -msgstr "" - -#: ../../utils/net_rpc_shell.c:77 -msgid "talloc_new failed\n" -msgstr "" - -#: ../../utils/net_rpc_shell.c:84 -#, c-format -msgid "Could not open pipe: %s\n" -msgstr "" - -#. None found -#: ../../utils/net_rpc_shell.c:146 -#, c-format -msgid "%s: unknown cmd\n" -msgstr "" - -#: ../../utils/net_rpc_shell.c:152 ../../utils/net_rpc_shell.c:232 ../../utils/net_sam.c:1605 ../../utils/net_sam.c:1867 -msgid "talloc failed\n" -msgstr "" - -#: ../../utils/net_rpc_shell.c:184 -#, c-format -msgid "%s failed: %s\n" -msgstr "" - -#: ../../utils/net_rpc_shell.c:194 -msgid "Print information about the domain connected to" -msgstr "" - -#: ../../utils/net_rpc_shell.c:197 -msgid "List/Grant/Revoke user rights" -msgstr "" - -#: ../../utils/net_rpc_shell.c:200 -msgid "List/Add/Remove etc shares" -msgstr "" - -#: ../../utils/net_rpc_shell.c:203 -msgid "List/Add/Remove user info" -msgstr "" - -#: ../../utils/net_rpc_shell.c:206 -msgid "Show/Change account policy settings" -msgstr "" - -#: ../../utils/net_rpc_shell.c:238 -#, c-format -msgid "Could not open connection: %s\n" -msgstr "" - -#: ../../utils/net_rpc_shell.c:253 -#, c-format -msgid "Talking to domain %s (%s)\n" -msgstr "" - -#: ../../utils/net_rpc_shell.c:280 -#, c-format -msgid "cmdline invalid: %s\n" -msgstr "Kommandozeile ungültig: %s\n" - -#: ../../utils/net_sam.c:41 -#, c-format -msgid "net sam set %s \n" -msgstr "" - -#: ../../utils/net_sam.c:48 ../../utils/net_sam.c:154 ../../utils/net_sam.c:246 ../../utils/net_sam.c:310 ../../utils/net_sam.c:706 ../../utils/net_sam.c:745 ../../utils/net_sam.c:1558 -#, c-format -msgid "Could not find name %s\n" -msgstr "" - -#: ../../utils/net_sam.c:59 ../../utils/net_sam.c:69 ../../utils/net_sam.c:165 ../../utils/net_sam.c:257 -msgid "Internal error\n" -msgstr "interner Fehler\n" - -#: ../../utils/net_sam.c:64 ../../utils/net_sam.c:170 ../../utils/net_sam.c:262 -#, c-format -msgid "Loading user %s failed\n" -msgstr "" - -#: ../../utils/net_sam.c:75 ../../utils/net_sam.c:186 ../../utils/net_sam.c:274 -#, c-format -msgid "Updating sam account %s failed with %s\n" -msgstr "" - -#: ../../utils/net_sam.c:82 -#, c-format -msgid "Updated %s for %s\\%s to %s\n" -msgstr "" - -#: ../../utils/net_sam.c:147 -#, c-format -msgid "net sam set %s [yes|no]\n" -msgstr "" - -#: ../../utils/net_sam.c:193 -#, c-format -msgid "Updated flag %s for %s\\%s to %s\n" -msgstr "" - -#: ../../utils/net_sam.c:240 -msgid "net sam set pwdmustchangenow [yes|no]\n" -msgstr "" - -#: ../../utils/net_sam.c:281 -#, c-format -msgid "Updated 'user must change password at next logon' for %s\\%s to %s\n" -msgstr "" - -#: ../../utils/net_sam.c:304 -msgid "net sam set comment \n" -msgstr "" - -#: ../../utils/net_sam.c:321 -#, c-format -msgid "%s is a %s, not a group\n" -msgstr "" - -#: ../../utils/net_sam.c:327 -#, c-format -msgid "Could not load group %s\n" -msgstr "" - -#: ../../utils/net_sam.c:336 -#, c-format -msgid "Updating group mapping entry failed with %s\n" -msgstr "" - -#: ../../utils/net_sam.c:354 -msgid "Change a user's home directory" -msgstr "" - -#: ../../utils/net_sam.c:355 -msgid "" -"net sam set homedir\n" -" Change a user's home directory" -msgstr "" - -#: ../../utils/net_sam.c:362 -msgid "Change a user's profile path" -msgstr "" - -#: ../../utils/net_sam.c:363 -msgid "" -"net sam set profilepath\n" -" Change a user's profile path" -msgstr "" - -#: ../../utils/net_sam.c:370 -msgid "Change a users or groups description" -msgstr "" - -#: ../../utils/net_sam.c:371 -msgid "" -"net sam set comment\n" -" Change a users or groups description" -msgstr "" - -#: ../../utils/net_sam.c:378 -msgid "Change a user's full name" -msgstr "" - -#: ../../utils/net_sam.c:379 -msgid "" -"net sam set fullname\n" -" Change a user's full name" -msgstr "" - -#: ../../utils/net_sam.c:386 -msgid "Change a user's logon script" -msgstr "" - -#: ../../utils/net_sam.c:387 -msgid "" -"net sam set logonscript\n" -" Change a user's logon script" -msgstr "" - -#: ../../utils/net_sam.c:394 -msgid "Change a user's home drive" -msgstr "" - -#: ../../utils/net_sam.c:395 -msgid "" -"net sam set homedrive\n" -" Change a user's home drive" -msgstr "" - -#: ../../utils/net_sam.c:402 -msgid "Change a user's allowed workstations" -msgstr "" - -#: ../../utils/net_sam.c:403 -msgid "" -"net sam set workstations\n" -" Change a user's allowed workstations" -msgstr "" - -#: ../../utils/net_sam.c:410 -msgid "Disable/Enable a user" -msgstr "" - -#: ../../utils/net_sam.c:411 -msgid "" -"net sam set disable\n" -" Disable/Enable a user" -msgstr "" - -#: ../../utils/net_sam.c:418 -msgid "Disable/Enable the password not required flag" -msgstr "" - -#: ../../utils/net_sam.c:419 -msgid "" -"net sam set pwnotreq\n" -" Disable/Enable the password not required flag" -msgstr "" - -#: ../../utils/net_sam.c:426 -msgid "Disable/Enable a user's lockout flag" -msgstr "" - -#: ../../utils/net_sam.c:427 -msgid "" -"net sam set autolock\n" -" Disable/Enable a user's lockout flag" -msgstr "" - -#: ../../utils/net_sam.c:434 -msgid "Disable/Enable whether a user's pw does not expire" -msgstr "" - -#: ../../utils/net_sam.c:436 -msgid "" -"net sam set pwnoexp\n" -" Disable/Enable whether a user's pw does not expire" -msgstr "" - -#: ../../utils/net_sam.c:444 -msgid "Force users password must change at next logon" -msgstr "" - -#: ../../utils/net_sam.c:445 -msgid "" -"net sam set pwdmustchangenow\n" -" Force users password must change at next logon" -msgstr "" - -#: ../../utils/net_sam.c:469 -msgid "net sam policy set \"\" \n" -msgstr "" - -#: ../../utils/net_sam.c:484 -#, c-format -msgid "Unable to set policy \"%s\"! Invalid value \"%s\".\n" -msgstr "" - -#: ../../utils/net_sam.c:496 -#, c-format -msgid "" -"No account policy \"%s\"!\n" -"\n" -msgstr "" - -#: ../../utils/net_sam.c:497 ../../utils/net_sam.c:550 ../../utils/net_sam.c:590 -msgid "Valid account policies are:\n" -msgstr "" - -#: ../../utils/net_sam.c:508 ../../utils/net_sam.c:561 -#, c-format -msgid "Valid account policy, but unable to fetch value!\n" -msgstr "" - -#: ../../utils/net_sam.c:511 -#, c-format -msgid "Account policy \"%s\" value was: %d\n" -msgstr "" - -#: ../../utils/net_sam.c:516 -msgid "Valid account policy, but unable to set value!\n" -msgstr "" - -#: ../../utils/net_sam.c:520 -#, c-format -msgid "Account policy \"%s\" value is now: %d\n" -msgstr "" - -#: ../../utils/net_sam.c:536 -msgid "net sam policy show \"\"\n" -msgstr "" - -#: ../../utils/net_sam.c:548 -msgid "No account policy by that name!\n" -msgstr "" - -#: ../../utils/net_sam.c:566 -#, c-format -msgid "Account policy \"%s\" description: %s\n" -msgstr "" - -#: ../../utils/net_sam.c:568 -#, c-format -msgid "Account policy \"%s\" value is: %d\n" -msgstr "" - -#: ../../utils/net_sam.c:584 ../../utils/net_sam.c:607 -msgid "List account policies" -msgstr "" - -#: ../../utils/net_sam.c:608 -msgid "" -"net sam policy list\n" -" List account policies" -msgstr "" - -#: ../../utils/net_sam.c:615 -msgid "Show account policies" -msgstr "" - -#: ../../utils/net_sam.c:616 -msgid "" -"net sam policy show\n" -" Show account policies" -msgstr "" - -#: ../../utils/net_sam.c:623 -msgid "Change account policies" -msgstr "Konto-Regeln ändern" - -#: ../../utils/net_sam.c:624 -msgid "" -"net sam policy set\n" -" Change account policies" -msgstr "" - -#: ../../utils/net_sam.c:643 -msgid "net sam rights list [privilege name]\n" -msgstr "" - -#: ../../utils/net_sam.c:665 -#, c-format -msgid "Could not list rights: %s\n" -msgstr "" - -#: ../../utils/net_sam.c:700 -msgid "net sam rights grant ...\n" -msgstr "" - -#: ../../utils/net_sam.c:712 ../../utils/net_sam.c:752 -#, c-format -msgid "%s unknown\n" -msgstr "" - -#: ../../utils/net_sam.c:717 -msgid "Could not grant privilege\n" -msgstr "" - -#: ../../utils/net_sam.c:721 -#, c-format -msgid "Granted %s to %s\\%s\n" -msgstr "" - -#: ../../utils/net_sam.c:739 -msgid "net sam rights revoke \n" -msgstr "" - -#: ../../utils/net_sam.c:757 -msgid "Could not revoke privilege\n" -msgstr "" - -#: ../../utils/net_sam.c:761 -#, c-format -msgid "Revoked %s from %s\\%s\n" -msgstr "" - -#: ../../utils/net_sam.c:774 -msgid "List possible user rights" -msgstr "" - -#: ../../utils/net_sam.c:775 -msgid "" -"net sam rights list\n" -" List possible user rights" -msgstr "" - -#: ../../utils/net_sam.c:782 -msgid "Grant right(s)" -msgstr "" - -#: ../../utils/net_sam.c:783 -msgid "" -"net sam rights grant\n" -" Grant right(s)" -msgstr "" - -#: ../../utils/net_sam.c:790 -msgid "Revoke right(s)" -msgstr "" - -#: ../../utils/net_sam.c:791 -msgid "" -"net sam rights revoke\n" -" Revoke right(s)" -msgstr "" - -#: ../../utils/net_sam.c:867 -msgid "net sam mapunixgroup \n" -msgstr "" - -#: ../../utils/net_sam.c:873 ../../utils/net_sam.c:1185 ../../utils/net_sam.c:1274 ../../utils/net_sam.c:1348 -#, c-format -msgid "Could not find group %s\n" -msgstr "" - -#: ../../utils/net_sam.c:880 -#, c-format -msgid "Mapping group %s failed with %s\n" -msgstr "" - -#: ../../utils/net_sam.c:885 -#, c-format -msgid "Mapped unix group %s to SID %s\n" -msgstr "" - -#: ../../utils/net_sam.c:931 -msgid "net sam unmapunixgroup \n" -msgstr "" - -#: ../../utils/net_sam.c:937 -#, c-format -msgid "Could not find mapping for group %s.\n" -msgstr "" - -#: ../../utils/net_sam.c:945 -#, c-format -msgid "Unmapping group %s failed with %s.\n" -msgstr "" - -#: ../../utils/net_sam.c:950 -#, c-format -msgid "Unmapped unix group %s.\n" -msgstr "" - -#: ../../utils/net_sam.c:968 -msgid "net sam createdomaingroup \n" -msgstr "" - -#: ../../utils/net_sam.c:975 ../../utils/net_sam.c:1057 ../../utils/net_sam.c:1155 -#, c-format -msgid "Creating %s failed with %s\n" -msgstr "" - -#: ../../utils/net_sam.c:980 -#, c-format -msgid "Created domain group %s with RID %d\n" -msgstr "" - -#: ../../utils/net_sam.c:1001 ../../utils/net_sam.c:1081 -msgid "net sam deletelocalgroup \n" -msgstr "" - -#: ../../utils/net_sam.c:1007 ../../utils/net_sam.c:1087 -#, c-format -msgid "Could not find %s.\n" -msgstr "" - -#: ../../utils/net_sam.c:1012 -#, c-format -msgid "%s is a %s, not a domain group.\n" -msgstr "" - -#: ../../utils/net_sam.c:1022 -#, c-format -msgid "Deleting domain group %s failed with %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1027 -#, c-format -msgid "Deleted domain group %s.\n" -msgstr "" - -#: ../../utils/net_sam.c:1044 -msgid "net sam createlocalgroup \n" -msgstr "" - -#: ../../utils/net_sam.c:1049 -msgid "winbind seems not to run. createlocalgroup only works when winbind runs.\n" -msgstr "" - -#: ../../utils/net_sam.c:1062 -#, c-format -msgid "Created local group %s with RID %d\n" -msgstr "" - -#: ../../utils/net_sam.c:1092 -#, c-format -msgid "%s is a %s, not a local group.\n" -msgstr "" - -#: ../../utils/net_sam.c:1100 -#, c-format -msgid "Deleting local group %s failed with %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1105 -#, c-format -msgid "Deleted local group %s.\n" -msgstr "" - -#: ../../utils/net_sam.c:1125 -msgid "net sam createbuiltingroup \n" -msgstr "" - -#: ../../utils/net_sam.c:1130 -msgid "winbind seems not to run. createbuiltingroup only works when winbind runs.\n" -msgstr "" - -#: ../../utils/net_sam.c:1143 -#, c-format -msgid "%s is not a BUILTIN group\n" -msgstr "" - -#: ../../utils/net_sam.c:1148 -#, c-format -msgid "Failed to get RID for %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1160 -#, c-format -msgid "Created BUILTIN group %s with RID %d\n" -msgstr "" - -#: ../../utils/net_sam.c:1179 -msgid "net sam addmem \n" -msgstr "" - -#: ../../utils/net_sam.c:1197 ../../utils/net_sam.c:1281 -#, c-format -msgid "Could not find member %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1205 -#, c-format -msgid "Could not resolve SID %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1214 -#, c-format -msgid "" -"%s is a local group, only users and domain groups can be added.\n" -"%s is a %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1223 -#, c-format -msgid "Adding local group member failed with %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1235 -#, c-format -msgid "Adding domain group member failed with %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1240 -#, c-format -msgid "Can only add members to local groups so far, %s is a %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1246 -#, c-format -msgid "Added %s\\%s to %s\\%s\n" -msgstr "" - -#: ../../utils/net_sam.c:1268 -msgid "net sam delmem \n" -msgstr "" - -#: ../../utils/net_sam.c:1292 -#, c-format -msgid "Deleting local group member failed with %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1304 -#, c-format -msgid "Deleting domain group member failed with %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1309 -#, c-format -msgid "Can only delete members from local groups so far, %s is a %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1316 -#, c-format -msgid "Deleted %s\\%s from %s\\%s\n" -msgstr "" - -#: ../../utils/net_sam.c:1319 -#, c-format -msgid "Deleted %s from %s\\%s\n" -msgstr "" - -#: ../../utils/net_sam.c:1342 -msgid "net sam listmem \n" -msgstr "" - -#: ../../utils/net_sam.c:1357 ../../utils/net_sam.c:1367 -#, c-format -msgid "Listing group members failed with %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1385 -#, c-format -msgid "" -"Can only list local group members so far.\n" -"%s is a %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1390 -#, c-format -msgid "%s\\%s has %u members\n" -msgstr "" - -#: ../../utils/net_sam.c:1417 -#, c-format -msgid "net sam list %s [verbose]\n" -msgstr "" - -#: ../../utils/net_sam.c:1422 -msgid "Could not start search\n" -msgstr "" - -#: ../../utils/net_sam.c:1497 -msgid "List SAM users" -msgstr "" - -#: ../../utils/net_sam.c:1498 -msgid "" -"net sam list users\n" -" List SAM users" -msgstr "" - -#: ../../utils/net_sam.c:1505 -msgid "List SAM groups" -msgstr "" - -#: ../../utils/net_sam.c:1506 -msgid "" -"net sam list groups\n" -" List SAM groups" -msgstr "" - -#: ../../utils/net_sam.c:1513 -msgid "List SAM local groups" -msgstr "" - -#: ../../utils/net_sam.c:1514 -msgid "" -"net sam list localgroups\n" -" List SAM local groups" -msgstr "" - -#: ../../utils/net_sam.c:1521 -msgid "List builtin groups" -msgstr "" - -#: ../../utils/net_sam.c:1522 -msgid "" -"net sam list builtin\n" -" List builtin groups" -msgstr "" - -#: ../../utils/net_sam.c:1529 -msgid "List domain member workstations" -msgstr "" - -#: ../../utils/net_sam.c:1530 -msgid "" -"net sam list workstations\n" -" List domain member workstations" -msgstr "" - -#: ../../utils/net_sam.c:1552 -msgid "net sam show \n" -msgstr "" - -#: ../../utils/net_sam.c:1562 -#, c-format -msgid "%s\\%s is a %s with SID %s\n" -msgstr "" - -#: ../../utils/net_sam.c:1594 -msgid "Init an LDAP tree with default users/groups" -msgstr "" - -#: ../../utils/net_sam.c:1600 ../../utils/net_sam.c:1729 ../../utils/net_sam.c:1761 ../../utils/net_sam.c:1805 ../../utils/net_sam.c:1843 ../../utils/net_sam.c:1881 ../../utils/net_sam.c:1892 ../../utils/net_sam.c:1961 -msgid "Out of Memory!\n" -msgstr "" - -#: ../../utils/net_sam.c:1620 -msgid "Provisioning works only with ldapsam backend\n" -msgstr "" - -#: ../../utils/net_sam.c:1627 -msgid "Provisioning works only if ldapsam:trusted and ldapsam:editposix are enabled.\n" -msgstr "" - -#: ../../utils/net_sam.c:1633 -msgid "winbind seems not to run. Provisioning LDAP only works when winbind runs.\n" -msgstr "" - -#: ../../utils/net_sam.c:1639 -msgid "Unable to connect to the LDAP server.\n" -msgstr "" - -#: ../../utils/net_sam.c:1643 -msgid "Checking for Domain Users group.\n" -msgstr "" - -#: ../../utils/net_sam.c:1656 -msgid "Adding the Domain Users group.\n" -msgstr "" - -#: ../../utils/net_sam.c:1660 -msgid "Unable to allocate a new gid to create Domain Users group!\n" -msgstr "" - -#: ../../utils/net_sam.c:1690 -msgid "Failed to add Domain Users group to ldap directory\n" -msgstr "" - -#: ../../utils/net_sam.c:1695 ../../utils/net_sam.c:1752 ../../utils/net_sam.c:1836 ../../utils/net_sam.c:1925 ../../utils/net_sam.c:1939 ../../utils/net_sam.c:1986 -msgid "found!\n" -msgstr "gefunden!\n" - -#: ../../utils/net_sam.c:1700 -msgid "Checking for Domain Admins group.\n" -msgstr "" - -#: ../../utils/net_sam.c:1713 -msgid "Adding the Domain Admins group.\n" -msgstr "" - -#: ../../utils/net_sam.c:1717 -msgid "Unable to allocate a new gid to create Domain Admins group!\n" -msgstr "" - -#: ../../utils/net_sam.c:1747 -msgid "Failed to add Domain Admins group to ldap directory\n" -msgstr "" - -#: ../../utils/net_sam.c:1757 -msgid "Check for Administrator account.\n" -msgstr "" - -#: ../../utils/net_sam.c:1777 -msgid "Adding the Administrator user.\n" -msgstr "" - -#: ../../utils/net_sam.c:1781 -msgid "Can't create Administrator user, Domain Admins group not available!\n" -msgstr "" - -#: ../../utils/net_sam.c:1787 -msgid "Unable to allocate a new uid to create the Administrator user!\n" -msgstr "" - -#: ../../utils/net_sam.c:1832 -msgid "Failed to add Administrator user to ldap directory\n" -msgstr "" - -#: ../../utils/net_sam.c:1839 -msgid "Checking for Guest user.\n" -msgstr "" - -#: ../../utils/net_sam.c:1855 -msgid "Adding the Guest user.\n" -msgstr "" - -#: ../../utils/net_sam.c:1862 -msgid "Can't create Guest user, Domain Users group not available!\n" -msgstr "" - -#: ../../utils/net_sam.c:1873 -msgid "Unable to allocate a new uid to create the Guest user!\n" -msgstr "" - -#: ../../utils/net_sam.c:1921 -msgid "Failed to add Guest user to ldap directory\n" -msgstr "" - -#: ../../utils/net_sam.c:1928 -msgid "Checking Guest's group.\n" -msgstr "" - -#: ../../utils/net_sam.c:1933 -msgid "" -"Failed to find just created Guest account!\n" -" Is nss properly configured?!\n" -msgstr "" - -#: ../../utils/net_sam.c:1952 -msgid "Adding the Domain Guests group.\n" -msgstr "" - -#: ../../utils/net_sam.c:1982 -msgid "Failed to add Domain Guests group to ldap directory\n" -msgstr "" - -#: ../../utils/net_sam.c:2011 -msgid "Create a new BUILTIN group" -msgstr "" - -#: ../../utils/net_sam.c:2012 -msgid "" -"net sam createbuiltingroup\n" -" Create a new BUILTIN group" -msgstr "" - -#: ../../utils/net_sam.c:2019 -msgid "Create a new local group" -msgstr "" - -#: ../../utils/net_sam.c:2020 -msgid "" -"net sam createlocalgroup\n" -" Create a new local group" -msgstr "" - -#: ../../utils/net_sam.c:2027 -msgid "Create a new group" -msgstr "" - -#: ../../utils/net_sam.c:2028 -msgid "" -"net sam createdomaingroup\n" -" Create a new group" -msgstr "" - -#: ../../utils/net_sam.c:2035 -msgid "Delete an existing local group" -msgstr "" - -#: ../../utils/net_sam.c:2036 -msgid "" -"net sam deletelocalgroup\n" -" Delete an existing local group" -msgstr "" - -#: ../../utils/net_sam.c:2043 -msgid "Delete a domain group" -msgstr "" - -#: ../../utils/net_sam.c:2044 -msgid "" -"net sam deletedomaingroup\n" -" Delete a group" -msgstr "" - -#: ../../utils/net_sam.c:2051 -msgid "Map a unix group to a domain group" -msgstr "" - -#: ../../utils/net_sam.c:2052 -msgid "" -"net sam mapunixgroup\n" -" Map a unix group to a domain group" -msgstr "" - -#: ../../utils/net_sam.c:2059 -msgid "Remove a group mapping of an unix group to a domain group" -msgstr "" - -#: ../../utils/net_sam.c:2061 -msgid "" -"net sam unmapunixgroup\n" -" Remove a group mapping of an unix group to a domain group" -msgstr "" - -#: ../../utils/net_sam.c:2069 -msgid "Add a member to a group" -msgstr "" - -#: ../../utils/net_sam.c:2070 -msgid "" -"net sam addmem\n" -" Add a member to a group" -msgstr "" - -#: ../../utils/net_sam.c:2077 -msgid "Delete a member from a group" -msgstr "" - -#: ../../utils/net_sam.c:2078 -msgid "" -"net sam delmem\n" -" Delete a member from a group" -msgstr "" - -#: ../../utils/net_sam.c:2086 -msgid "" -"net sam listmem\n" -" List group members" -msgstr "" - -#: ../../utils/net_sam.c:2093 -msgid "List users, groups and local groups" -msgstr "" - -#: ../../utils/net_sam.c:2094 -msgid "" -"net sam list\n" -" List users, groups and local groups" -msgstr "" - -#: ../../utils/net_sam.c:2101 -msgid "Show details of a SAM entry" -msgstr "" - -#: ../../utils/net_sam.c:2102 -msgid "" -"net sam show\n" -" Show details of a SAM entry" -msgstr "" - -#: ../../utils/net_sam.c:2109 -msgid "Set details of a SAM account" -msgstr "" - -#: ../../utils/net_sam.c:2110 -msgid "" -"net sam set\n" -" Set details of a SAM account" -msgstr "" - -#: ../../utils/net_sam.c:2117 -msgid "Set account policies" -msgstr "" - -#: ../../utils/net_sam.c:2118 -msgid "" -"net sam policy\n" -" Set account policies" -msgstr "" - -#: ../../utils/net_sam.c:2125 -msgid "Manipulate user privileges" -msgstr "" - -#: ../../utils/net_sam.c:2126 -msgid "" -"net sam rights\n" -" Manipulate user privileges" -msgstr "" - -#: ../../utils/net_sam.c:2134 -msgid "Provision a clean user database" -msgstr "" - -#: ../../utils/net_sam.c:2135 -msgid "" -"net sam privison\n" -" Provision a clear user database" -msgstr "" - -#: ../../utils/net_sam.c:2143 -msgid "You are not root, most things won't work\n" -msgstr "" - -#: ../../utils/net_share.c:27 -msgid "" -"\n" -"net [] share [misc. options] [targets] \n" -"\tenumerates all exported resources (network shares) on target server\n" -"\n" -"net [] share ADD [misc. options] [targets]\n" -"\tadds a share from a server (makes the export active)\n" -"\n" -"net [] share DELETE [misc. options] [targets]\n" -"\tdeletes a share from a server (makes the export inactive)\n" -"\n" -"net [] share ALLOWEDUSERS [] [misc. options] [targets]\n" -"\tshows a list of all shares together with all users allowed to\n" -"\taccess them. This needs the output of 'net usersidlist' on\n" -"\tstdin or in .\n" -"\n" -"net [] share MIGRATE FILES [misc. options] [targets]\n" -"\tMigrates files from remote to local server\n" -"\n" -"net [] share MIGRATE SHARES [misc. options] [targets]\n" -"\tMigrates shares from remote to local server\n" -"\n" -"net [] share MIGRATE SECURITY [misc. options] [targets]\n" -"\tMigrates share-ACLs from remote to local server\n" -"\n" -"net [] share MIGRATE ALL [misc. options] [targets]\n" -"\tMigrates shares (including directories, files) from remote\n" -"\tto local server\n" -"\n" -msgstr "" - -#: ../../utils/net_share.c:52 -msgid "" -"\t-C or --comment=\tdescriptive comment (for add only)\n" -"\t-M or --maxusers=\t\tmax users allowed for share\n" -"\t --acls\t\t\tcopies ACLs as well\n" -"\t --attrs\t\t\tcopies DOS Attributes as well\n" -"\t --timestamps\t\tpreserve timestamps while copying files\n" -"\t --destination\t\tmigration target server (default: localhost)\n" -"\t-e or --exclude\t\t\tlist of shares to be excluded from mirroring\n" -"\t-v or --verbose\t\t\tgive verbose output\n" -msgstr "" - -#: ../../utils/net_status.c:24 -msgid " net status sessions [parseable] Show list of open sessions\n" -msgstr "" - -#: ../../utils/net_status.c:26 -msgid " net status shares [parseable] Show list of open shares\n" -msgstr "" - -#: ../../utils/net_status.c:70 -msgid "" -"Display open user sessions.\n" -" If parseable is specified, output is machine-readable." -msgstr "" - -#: ../../utils/net_status.c:85 -msgid "" -"PID Username Group Machine \n" -"-------------------------------------------------------------------\n" -msgstr "" - -#: ../../utils/net_status.c:94 ../../utils/net_status.c:200 -#, c-format -msgid "%s not initialised\n" -msgstr "" - -#: ../../utils/net_status.c:222 -msgid "" -"Display open user shares.\n" -" If parseable is specified, output is machine-readable." -msgstr "" - -#: ../../utils/net_status.c:230 -msgid "" -"\n" -"Service pid machine Connected at\n" -"-------------------------------------------------------\n" -msgstr "" - -#: ../../utils/net_status.c:254 -msgid "Show list of open sessions" -msgstr "" - -#: ../../utils/net_status.c:255 -msgid "" -"net status sessions [parseable]\n" -" If parseable is specified, output is presented in a machine-parseable fashion." -msgstr "" - -#: ../../utils/net_status.c:263 -msgid "Show list of open shares" -msgstr "" - -#: ../../utils/net_status.c:264 -msgid "" -"net status shares [parseable]\n" -" If parseable is specified, output is presented in a machine-parseable fashion." -msgstr "" - -#: ../../utils/net_time.c:39 -#, c-format -msgid "Can't contact server %s. Error %s\n" -msgstr "" - -#: ../../utils/net_time.c:52 -#, c-format -msgid "Session request failed\n" -msgstr "" - -#: ../../utils/net_time.c:57 -#, c-format -msgid "Protocol negotiation failed: %s\n" -msgstr "" - -#: ../../utils/net_time.c:97 -msgid "" -"net time\n" -"\tdisplays time on a server\n" -"\n" -"net time system\n" -"\tdisplays time on a server in a format ready for /bin/date\n" -"\n" -"net time set\n" -"\truns /bin/date with the time from the server\n" -"\n" -"net time zone\n" -"\tdisplays the timezone in hours from GMT on the remote computer\n" -"\n" -"\n" -msgstr "" -"net time\n" -"\tZeigt die Zeit eines Servers an\n" -"\n" -"net time system\n" -"\tZeigt die Zeit eines Servers im /bin/date Format an\n" -"\n" -"net time set\n" -"\tFührt /bin/date mit der Serverzeit aus\n" -"\n" -"net time zone\n" -"\tZeigt die Zeitzone in Stunden zur GMT auf dem entfernten Computer\n" -"\n" - -#: ../../utils/net_time.c:123 -#, c-format -msgid "%s failed. Error was (%s)\n" -msgstr "" - -#: ../../utils/net_time.c:140 -msgid "Output remote time server time in a format ready for /bin/date" -msgstr "" - -#: ../../utils/net_time.c:166 -msgid "Display the remote time server's offset to UTC" -msgstr "" - -#: ../../utils/net_time.c:196 -msgid "Display time ready for /bin/date" -msgstr "" - -#: ../../utils/net_time.c:197 -msgid "" -"net time system\n" -" Display time ready for /bin/date" -msgstr "" - -#: ../../utils/net_time.c:204 -msgid "Set the system time from time server" -msgstr "" - -#: ../../utils/net_time.c:205 -msgid "" -"net time set\n" -" Set the system time from time server" -msgstr "" - -#: ../../utils/net_time.c:212 -msgid "Display timezone offset from UTC" -msgstr "" - -#: ../../utils/net_time.c:213 -msgid "" -"net time zone\n" -" Display timezone offset from UTC" -msgstr "" - -#: ../../utils/net_time.c:228 -msgid "Display the remote time server's time" -msgstr "" - -#: ../../utils/net_time.c:235 -msgid "Could not locate a time server. Try specifying a target host.\n" -msgstr "" - -#: ../../utils/net_user.c:27 -msgid "" -"\n" -"net [] user [misc. options] [targets]\n" -"\tList users\n" -"\n" -msgstr "" - -#: ../../utils/net_user.c:29 -msgid "" -"net [] user DELETE [misc. options] [targets]\n" -"\tDelete specified user\n" -msgstr "" - -#: ../../utils/net_user.c:31 -msgid "" -"\n" -"net [] user INFO [misc. options] [targets]\n" -"\tList the domain groups of the specified user\n" -msgstr "" - -#: ../../utils/net_user.c:33 -msgid "" -"\n" -"net [] user ADD [password] [-c container] [-F user flags] [misc. options] [targets]\n" -"\tAdd specified user\n" -msgstr "" - -#: ../../utils/net_user.c:36 -msgid "" -"\n" -"net [] user RENAME [targets]\n" -"\tRename specified user\n" -"\n" -msgstr "" - -#: ../../utils/net_usershare.c:29 -msgid "Malformed usershare file" -msgstr "" - -#: ../../utils/net_usershare.c:30 -msgid "Bad version number" -msgstr "" - -#: ../../utils/net_usershare.c:31 -msgid "Malformed path entry" -msgstr "" - -#: ../../utils/net_usershare.c:32 -msgid "Malformed comment entryfile" -msgstr "" - -#: ../../utils/net_usershare.c:33 -msgid "Malformed acl definition" -msgstr "" - -#: ../../utils/net_usershare.c:34 -msgid "Acl parse error" -msgstr "" - -#: ../../utils/net_usershare.c:35 -msgid "Path not absolute" -msgstr "" - -#: ../../utils/net_usershare.c:36 -msgid "Path is denied" -msgstr "" - -#: ../../utils/net_usershare.c:37 -msgid "Path not allowed" -msgstr "" - -#: ../../utils/net_usershare.c:38 -msgid "Path is not a directory" -msgstr "" - -#: ../../utils/net_usershare.c:39 -msgid "System error" -msgstr "System Fehler" - -#: ../../utils/net_usershare.c:55 -#, c-format -msgid "Usershare error code (0x%x)" -msgstr "" - -#: ../../utils/net_usershare.c:67 -#, c-format -msgid "" -"net usershare add [-l|--long] [] [] []\n" -"\tAdds the specified share name for this user.\n" -"\t is the new share name.\n" -"\t is the path on the filesystem to export.\n" -"\t is the optional comment for the new share.\n" -"\t is an optional share acl in the format \"DOMAIN%cname:X,DOMAIN%cname:X,....\"\n" -"\t if present sets \"guest ok = yes\" on this usershare.\n" -"\t\t\"X\" represents a permission and can be any one of the characters f, r or d\n" -"\t\twhere \"f\" means full control, \"r\" means read-only, \"d\" means deny access.\n" -"\t\tname may be a domain user or group. For local users use the local server name instead of \"DOMAIN\"\n" -"\t\tThe default acl is \"Everyone:r\" which allows everyone read-only access.\n" -"\tAdd -l or --long to print the info on the newly added share.\n" -msgstr "" - -#: ../../utils/net_usershare.c:87 -msgid "" -"net usershare delete \n" -"\tdeletes the specified share name for this user.\n" -msgstr "" - -#: ../../utils/net_usershare.c:95 -msgid "" -"net usershare info [-l|--long] [wildcard sharename]\n" -"\tPrints out the path, comment and acl elements of shares that match the wildcard.\n" -"\tBy default only gives info on shares owned by the current user\n" -"\tAdd -l or --long to apply this to all shares\n" -"\tOmit the sharename or use a wildcard of '*' to see all shares\n" -msgstr "" - -#: ../../utils/net_usershare.c:106 -msgid "" -"net usershare list [-l|--long] [wildcard sharename]\n" -"\tLists the names of all shares that match the wildcard.\n" -"\tBy default only lists shares owned by the current user\n" -"\tAdd -l or --long to apply this to all shares\n" -"\tOmit the sharename or use a wildcard of '*' to see all shares\n" -msgstr "" - -#: ../../utils/net_usershare.c:116 -msgid "" -"net usershare add [] [] [] to add or change a user defined share.\n" -"net usershare delete to delete a user defined share.\n" -"net usershare info [-l|--long] [wildcard sharename] to print info about a user defined share.\n" -"net usershare list [-l|--long] [wildcard sharename] to list user defined shares.\n" -"net usershare help\n" -"\n" -"Type \"net usershare help