├── .gitattributes ├── .github └── workflows │ ├── docs-ci.yml │ └── pypi-release.yml ├── .gitignore ├── .readthedocs.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CODE_OF_CONDUCT.rst ├── Dockerfile ├── MANIFEST.in ├── Makefile ├── NOTICE ├── README.rst ├── about ├── about.ABOUT ├── about.bat ├── apache-2.0.LICENSE ├── appveyor.yml ├── azure-pipelines.yml ├── configure ├── configure.bat ├── docs ├── Makefile ├── make.bat ├── scripts │ ├── doc8_style_check.sh │ └── sphinx_build_link_check.sh └── source │ ├── _static │ ├── js │ │ └── custom.js │ ├── theme_overrides-skeleton-2022-03-28-updated.css │ └── theme_overrides.css │ ├── conf.py │ ├── general.rst │ ├── home.rst │ ├── index.rst │ ├── reference.rst │ ├── specification.rst │ └── type_of_errors.rst ├── etc ├── ci │ ├── azure-container-deb.yml │ ├── azure-container-rpm.yml │ ├── azure-posix.yml │ ├── azure-win.yml │ ├── install_sudo.sh │ ├── macports-ci │ ├── macports-ci.ABOUT │ └── mit.LICENSE └── scripts │ ├── README.rst │ ├── check_thirdparty.py │ ├── fetch_thirdparty.py │ ├── gen_pypi_simple.py │ ├── gen_pypi_simple.py.ABOUT │ ├── gen_pypi_simple.py.NOTICE │ ├── gen_requirements.py │ ├── gen_requirements_dev.py │ ├── requirements.txt │ ├── test_utils_pip_compatibility_tags.py │ ├── test_utils_pip_compatibility_tags.py.ABOUT │ ├── test_utils_pypi_supported_tags.py │ ├── test_utils_pypi_supported_tags.py.ABOUT │ ├── update_skeleton.py │ ├── utils_dejacode.py │ ├── utils_pip_compatibility_tags.py │ ├── utils_pip_compatibility_tags.py.ABOUT │ ├── utils_pypi_supported_tags.py │ ├── utils_pypi_supported_tags.py.ABOUT │ ├── utils_requirements.py │ ├── utils_thirdparty.py │ └── utils_thirdparty.py.ABOUT ├── example └── e2fsprogs-1.39 │ ├── e2fsprogs-about │ └── e2fsprogs-1.39 │ │ ├── alocal.m4.ABOUT │ │ ├── config │ │ ├── config.guess.ABOUT │ │ ├── config.rpath.ABOUT │ │ ├── config.sub.ABOUT │ │ ├── gpl-2.0-autoconf.LICENSE │ │ ├── mkinstalldirs.ABOUT │ │ └── public-domain.LICENSE │ │ ├── contrib │ │ ├── UlrichWindl.LICENSE │ │ └── dconf.ABOUT │ │ ├── e2fsck │ │ ├── KazKylheku.LICENSE │ │ ├── argv_parse.c.ABOUT │ │ ├── argv_parse.h.ABOUT │ │ ├── dict.c.ABOUT │ │ ├── dict.h.ABOUT │ │ ├── gpl-2.0.LICENSE │ │ ├── journal.c.ABOUT │ │ ├── lgpl-2.0.LICENSE │ │ ├── mit-old-style-legal-2.LICENSE │ │ ├── mtrace.c.ABOUT │ │ ├── mtrace.h.ABOUT │ │ ├── profile.c.ABOUT │ │ └── profile.h.ABOUT │ │ ├── e2fsprogs-1.39.ABOUT │ │ ├── e2fsprogs-1.39.NOTICE │ │ ├── gpl-2.0.LICENSE │ │ ├── include │ │ └── nonunix │ │ │ ├── getopt.h.ABOUT │ │ │ └── lgpl-2.0.LICENSE │ │ ├── install-utils │ │ ├── convfstab.ABOUT │ │ └── public-domain.LICENSE │ │ ├── intl │ │ ├── intl.ABOUT │ │ └── lgpl-2.0.LICENSE │ │ ├── lib │ │ ├── blkid │ │ │ ├── blkid.ABOUT │ │ │ └── lgpl-2.1.LICENSE │ │ ├── bsla.LICENSE │ │ ├── e2p │ │ │ ├── e2p.ABOUT │ │ │ └── lgpl-2.0.LICENSE │ │ ├── et │ │ │ ├── bsd-new.LICENSE │ │ │ ├── bsla.LICENSE │ │ │ ├── com_right.c.ABOUT │ │ │ ├── et.ABOUT │ │ │ ├── gpl-2.0.LICENSE │ │ │ ├── kerberos.LICENSE │ │ │ ├── texinfo.tex.ABOUT │ │ │ └── vfprintf.c.ABOUT │ │ ├── fpopen.c.ABOUT │ │ ├── ss │ │ │ ├── kerberos.LICENSE │ │ │ └── ss.ABOUT │ │ └── uuid │ │ │ ├── bsd-new.LICENSE │ │ │ └── uuid.ABOUT │ │ ├── misc │ │ ├── blkid.c.ABOUT │ │ └── lgpl-2.1.LICENSE │ │ └── public-domain.LICENSE │ ├── input │ ├── MAPPING.CONFIG │ ├── e2fsprogs-1.39-CreateAboutFile.csv │ ├── e2fsprogs-1.39-INV.xlsx │ └── template_sample_attribution_starship.html │ └── output │ └── sample_attribution_starship.html ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── src └── attributecode │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── attrib.py │ ├── attrib_util.py │ ├── cmd.py │ ├── gen.py │ ├── licenses.py │ ├── model.py │ ├── templates │ ├── default_html.template │ ├── default_json.template │ ├── license_ref.template │ ├── list.csv │ └── scancode_html.template │ ├── transform.py │ └── util.py ├── tests ├── test_api.py ├── test_attrib.py ├── test_cmd.py ├── test_gen.py ├── test_model.py ├── test_transform.py ├── test_util.py ├── testdata │ ├── test_attrib │ │ ├── default_template │ │ │ ├── expect.html │ │ │ └── simple_sample.csv │ │ ├── gen_default_template │ │ │ ├── attrib.ABOUT │ │ │ ├── expected_default_attrib.html │ │ │ └── httpd-2.4.3.tar.gz │ │ ├── gen_license_key_name_check │ │ │ ├── LICENSES │ │ │ │ ├── Apache-2.0.txt │ │ │ │ └── LGPL-3.0.txt │ │ │ ├── custom.template │ │ │ ├── expected │ │ │ │ └── expected.html │ │ │ └── test.ABOUT │ │ ├── gen_simple │ │ │ ├── attrib.ABOUT │ │ │ ├── httpd-2.4.3.tar.gz │ │ │ └── test.template │ │ └── scancode_input │ │ │ ├── sc-2-licenses.json │ │ │ ├── sc-dup-lic-match.html │ │ │ ├── sc-dup-lic-match.json │ │ │ ├── sc-dup-lic.html │ │ │ ├── sc-dup-lic.json │ │ │ ├── sc-min_score-0.html │ │ │ ├── sc-multi-lic.html │ │ │ ├── sc-multi-lic.json │ │ │ ├── sc.html │ │ │ └── scancode.template │ ├── test_cmd │ │ ├── geninventory.csv │ │ ├── help │ │ │ ├── about_attrib_help.txt │ │ │ ├── about_check_help.txt │ │ │ ├── about_gen_help.txt │ │ │ ├── about_gen_license_help.txt │ │ │ ├── about_help.txt │ │ │ ├── about_inventory_help.txt │ │ │ ├── about_transform_config_help.txt │ │ │ └── about_transform_help.txt │ │ ├── repository-mini │ │ │ ├── apache-2.0.LICENSE │ │ │ ├── appdirs-1.4.3-py2.py3-none-any.whl │ │ │ ├── appdirs.ABOUT │ │ │ ├── appdirs.LICENSE │ │ │ ├── mit.LICENSE │ │ │ ├── xtrans-1.3.5.txz │ │ │ └── xtrans-1.3.5.txz.ABOUT │ │ └── transform.csv │ ├── test_gen │ │ ├── about.py.ABOUT │ │ ├── dup_keys.csv │ │ ├── dup_keys_with_diff_case.csv │ │ ├── inv.csv │ │ ├── inv2.csv │ │ ├── inv3.csv │ │ ├── inv4.csv │ │ ├── inv5.csv │ │ ├── inv6.csv │ │ ├── inv7.csv │ │ ├── inv_no_about_resource.csv │ │ ├── inventory │ │ │ └── complex │ │ │ │ ├── about │ │ │ │ ├── Jinja2-2.7.3-py2-none-any.whl │ │ │ │ ├── Jinja2.ABOUT │ │ │ │ ├── Jinja2.LICENSE │ │ │ │ ├── MarkupSafe-0.23-py2-none-any.whl │ │ │ │ ├── MarkupSafe.ABOUT │ │ │ │ ├── MarkupSafe.LICENSE │ │ │ │ ├── NOTICE │ │ │ │ ├── PSF.LICENSE │ │ │ │ ├── about.ABOUT │ │ │ │ ├── apache-2.0.LICENSE │ │ │ │ ├── certifi-14.05.14-py2.py3-none-any.whl │ │ │ │ ├── certifi.ABOUT │ │ │ │ ├── certifi.LICENSE │ │ │ │ ├── click-3.2-py2.py3-none-any.whl │ │ │ │ ├── click.ABOUT │ │ │ │ ├── click.LICENSE │ │ │ │ ├── colorama-0.3.1-py2-none-any.whl │ │ │ │ ├── colorama.ABOUT │ │ │ │ ├── colorama.LICENSE │ │ │ │ ├── lgpl-2.1.LICENSE │ │ │ │ ├── pip-1.5.6-py2.py3-none-any.whl │ │ │ │ ├── pip.ABOUT │ │ │ │ ├── pip.AUTHORS │ │ │ │ ├── pip.LICENSE │ │ │ │ ├── py-1.4.23-py2-none-any.whl │ │ │ │ ├── py.ABOUT │ │ │ │ ├── py.LICENSE │ │ │ │ ├── pytest-2.6.1-py2.py3-none-any.whl │ │ │ │ ├── pytest.ABOUT │ │ │ │ ├── pytest.LICENSE │ │ │ │ ├── schematics-0.9_5-py2-none-any.whl │ │ │ │ ├── schematics.ABOUT │ │ │ │ ├── schematics.LICENSE │ │ │ │ ├── setuptools-5.6-py2.py3-none-any.whl │ │ │ │ ├── setuptools.ABOUT │ │ │ │ ├── unicodecsv-0.9.4-py2-none-any.whl │ │ │ │ ├── unicodecsv.ABOUT │ │ │ │ ├── unicodecsv.LICENSE │ │ │ │ ├── wheel-0.24.0-py2.py3-none-any.whl │ │ │ │ ├── wheel.ABOUT │ │ │ │ ├── wheel.LICENSE │ │ │ │ ├── wincertstore-0.2-py2.py3-none-any.whl │ │ │ │ ├── wincertstore.ABOUT │ │ │ │ └── wincertstore.LICENSE │ │ │ │ ├── about_file_path_dir_endswith_space.csv │ │ │ │ └── expected.csv │ │ ├── lic_issue_450 │ │ │ ├── custom.txt │ │ │ └── custom_and_valid_lic_key_with_file.csv │ │ ├── lic_key_custom_lic_file │ │ │ ├── lic_key_with_custom_lic_file.csv │ │ │ └── no_lic_key_with_custom_lic_file.csv │ │ ├── load │ │ │ ├── clean-text-0.3.0-lceupi.json │ │ │ └── simple_sample.xlsx │ │ ├── multi_lic_issue_443 │ │ │ └── test.csv │ │ ├── multi_lic_issue_444 │ │ │ └── test1.csv │ │ ├── parser_tests │ │ │ ├── .ABOUT │ │ │ ├── about_resource.c │ │ │ ├── about_resource_field.ABOUT │ │ │ ├── about_resource_field_present.ABOUT │ │ │ ├── missing_about_ref.ABOUT │ │ │ └── upper_field_names.ABOUT │ │ └── this.ABOUT │ ├── test_model │ │ ├── android │ │ │ ├── expected_NOTICE │ │ │ ├── multi_license.c.ABOUT │ │ │ ├── public-domain.LICENSE │ │ │ └── single_license.c.ABOUT │ │ ├── base_dir │ │ │ └── license.LICENSE │ │ ├── collect_inventory_errors │ │ │ ├── non-supported_date_format.ABOUT │ │ │ └── supported_date_format.ABOUT │ │ ├── crlf │ │ │ ├── about.ABOUT │ │ │ └── expected.csv │ │ ├── custom_fields │ │ │ └── custom_fields.about │ │ ├── dumps │ │ │ ├── NOTICE │ │ │ ├── about.ABOUT │ │ │ └── apache-2.0.LICENSE │ │ ├── equal │ │ │ ├── complete │ │ │ │ ├── NOTICE │ │ │ │ ├── about.ABOUT │ │ │ │ └── apache-2.0.LICENSE │ │ │ └── complete2 │ │ │ │ ├── NOTICE │ │ │ │ ├── about.ABOUT │ │ │ │ └── apache-2.0.LICENSE │ │ ├── expected.csv │ │ ├── expected.json │ │ ├── inventory │ │ │ ├── basic │ │ │ │ ├── about │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── about.ABOUT │ │ │ │ │ └── apache-2.0.LICENSE │ │ │ │ └── expected.csv │ │ │ ├── basic_with_about_resource_path │ │ │ │ ├── about │ │ │ │ │ ├── about_with_about_resource_path.ABOUT │ │ │ │ │ └── apache-2.0.LICENSE │ │ │ │ └── expected.csv │ │ │ ├── complete │ │ │ │ ├── NOTICE │ │ │ │ ├── about.ABOUT │ │ │ │ └── apache-2.0.LICENSE │ │ │ ├── complex │ │ │ │ ├── about │ │ │ │ │ ├── Jinja2-2.7.3-py2-none-any.whl │ │ │ │ │ ├── Jinja2.ABOUT │ │ │ │ │ ├── Jinja2.LICENSE │ │ │ │ │ ├── MarkupSafe-0.23-py2-none-any.whl │ │ │ │ │ ├── MarkupSafe.ABOUT │ │ │ │ │ ├── MarkupSafe.LICENSE │ │ │ │ │ ├── NOTICE │ │ │ │ │ ├── PSF.LICENSE │ │ │ │ │ ├── about.ABOUT │ │ │ │ │ ├── apache-2.0.LICENSE │ │ │ │ │ ├── certifi-14.05.14-py2.py3-none-any.whl │ │ │ │ │ ├── certifi.ABOUT │ │ │ │ │ ├── certifi.LICENSE │ │ │ │ │ ├── click-3.2-py2.py3-none-any.whl │ │ │ │ │ ├── click.ABOUT │ │ │ │ │ ├── click.LICENSE │ │ │ │ │ ├── colorama-0.3.1-py2-none-any.whl │ │ │ │ │ ├── colorama.ABOUT │ │ │ │ │ ├── colorama.LICENSE │ │ │ │ │ ├── lgpl-2.1.LICENSE │ │ │ │ │ ├── pip-1.5.6-py2.py3-none-any.whl │ │ │ │ │ ├── pip.ABOUT │ │ │ │ │ ├── pip.AUTHORS │ │ │ │ │ ├── pip.LICENSE │ │ │ │ │ ├── py-1.4.23-py2-none-any.whl │ │ │ │ │ ├── py.ABOUT │ │ │ │ │ ├── py.LICENSE │ │ │ │ │ ├── pytest-2.6.1-py2.py3-none-any.whl │ │ │ │ │ ├── pytest.ABOUT │ │ │ │ │ ├── pytest.LICENSE │ │ │ │ │ ├── schematics-0.9_5-py2-none-any.whl │ │ │ │ │ ├── schematics.ABOUT │ │ │ │ │ ├── schematics.LICENSE │ │ │ │ │ ├── setuptools-5.6-py2.py3-none-any.whl │ │ │ │ │ ├── setuptools.ABOUT │ │ │ │ │ ├── unicodecsv-0.9.4-py2-none-any.whl │ │ │ │ │ ├── unicodecsv.ABOUT │ │ │ │ │ ├── unicodecsv.LICENSE │ │ │ │ │ ├── virtualenv-1.11.6-py2.py3-none-any.whl │ │ │ │ │ ├── virtualenv.ABOUT │ │ │ │ │ ├── virtualenv.LICENSE │ │ │ │ │ ├── virtualenv.py │ │ │ │ │ ├── virtualenv.py.ABOUT │ │ │ │ │ ├── wheel-0.24.0-py2.py3-none-any.whl │ │ │ │ │ ├── wheel.ABOUT │ │ │ │ │ ├── wheel.LICENSE │ │ │ │ │ ├── wincertstore-0.2-py2.py3-none-any.whl │ │ │ │ │ ├── wincertstore.ABOUT │ │ │ │ │ └── wincertstore.LICENSE │ │ │ │ └── expected.csv │ │ │ ├── custom_fields.ABOUT │ │ │ ├── custom_fields2.ABOUT │ │ │ ├── no_about_resource_key │ │ │ │ └── about │ │ │ │ │ └── about.ABOUT │ │ │ └── relative │ │ │ │ ├── NOTICE │ │ │ │ ├── about.ABOUT │ │ │ │ └── apache-2.0.LICENSE │ │ ├── longpath.zip │ │ ├── multiple_files.ABOUT │ │ ├── multiple_files_expected.csv │ │ ├── parse │ │ │ ├── basic.about │ │ │ ├── boolean_chara_data.about │ │ │ ├── boolean_data.about │ │ │ ├── boolean_more_than_2_chara_data.about │ │ │ ├── boolean_numeric_data.about │ │ │ ├── complete2 │ │ │ │ ├── NOTICE │ │ │ │ ├── about.ABOUT │ │ │ │ ├── about2.ABOUT │ │ │ │ └── apache-2.0.LICENSE │ │ │ ├── complex.about │ │ │ ├── continuation.about │ │ │ ├── continuation_verbatim.about │ │ │ ├── continuation_verbatim_with_tab.about │ │ │ ├── dupe_field_name.ABOUT │ │ │ ├── dupe_field_name_no_new_value.ABOUT │ │ │ ├── empty_notice_field.about │ │ │ ├── empty_required.ABOUT │ │ │ ├── illegal_custom_field.about │ │ │ ├── invalid_boolean.about │ │ │ ├── invalid_continuation.about │ │ │ ├── invalid_names.about │ │ │ ├── license_file_notice_file.ABOUT │ │ │ ├── license_text.LICENSE │ │ │ ├── missing_notice_file.ABOUT │ │ │ ├── missing_notice_license_files.ABOUT │ │ │ ├── missing_required.ABOUT │ │ │ ├── multi_line_license_expresion.ABOUT │ │ │ ├── name_mapping_test.ABOUT │ │ │ ├── no_file_fields.ABOUT │ │ │ ├── non_ascii_field_name_value.about │ │ │ ├── notice_text.NOTICE │ │ │ ├── ordered_fields.ABOUT │ │ │ └── with_ignored_resources.ABOUT │ │ ├── redistribution │ │ │ ├── test │ │ │ │ └── subdir │ │ │ │ │ ├── test.ABOUT │ │ │ │ │ └── test.c │ │ │ ├── this.ABOUT │ │ │ ├── this.c │ │ │ ├── this2.ABOUT │ │ │ └── this2.c │ │ ├── rel │ │ │ ├── allAboutInOneDir │ │ │ │ └── about_ref │ │ │ │ │ ├── csv_serialize.py.ABOUT │ │ │ │ │ ├── django_snippets_2413.ABOUT │ │ │ │ │ ├── elasticsearch.ABOUT │ │ │ │ │ ├── ez_setup.py.ABOUT │ │ │ │ │ └── t1 │ │ │ │ │ └── t2 │ │ │ │ │ └── ez_setup.py │ │ │ └── thirdparty │ │ │ │ ├── django_snippets.LICENSE │ │ │ │ ├── elasticsearch.LICENSE │ │ │ │ └── elasticsearch.NOTICE │ │ ├── serialize │ │ │ ├── NOTICE │ │ │ ├── about.ABOUT │ │ │ └── apache-2.0.LICENSE │ │ ├── single_file │ │ │ ├── django_snippets.LICENSE │ │ │ ├── django_snippets_2413.ABOUT │ │ │ └── django_snippets_2413.py │ │ ├── special │ │ │ ├── NOTICE │ │ │ ├── about.ABOUT │ │ │ └── apache-2.0.LICENSE │ │ ├── special_char │ │ │ └── about.ABOUT │ │ ├── this.ABOUT │ │ └── unicode │ │ │ ├── nose-selecttests.ABOUT │ │ │ └── not-unicode.ABOUT │ ├── test_transform │ │ ├── configuration │ │ ├── configuration2 │ │ ├── configuration3 │ │ ├── configuration_new_cols │ │ ├── input.csv │ │ ├── input.json │ │ ├── input.xlsx │ │ ├── input_scancode.json │ │ ├── simple.csv │ │ └── simple.xlsx │ └── test_util │ │ ├── about_locations │ │ ├── dir1 │ │ │ ├── dir2 │ │ │ │ └── file1.about │ │ │ ├── file2 │ │ │ └── file2.aBout │ │ ├── dir2 │ │ │ └── file1 │ │ ├── file with_spaces.ABOUT │ │ ├── file1 │ │ └── file2 │ │ ├── csv │ │ ├── about.csv │ │ ├── about_key_with_upper_case.csv │ │ ├── test_ms_utf8.csv │ │ └── test_utf8.csv │ │ ├── get_about_locations │ │ ├── NOTICE │ │ ├── about.ABOUT │ │ └── apache-2.0.LICENSE │ │ ├── json │ │ ├── expected.json │ │ ├── expected_need_mapping.json │ │ ├── multi_entries.json │ │ ├── not_a_list.json │ │ ├── not_a_list_need_mapping.json │ │ └── scancode_info.json │ │ ├── licenses │ │ ├── mit.LICENSE │ │ ├── mit2.LICENSE │ │ └── public-domain.LICENSE │ │ └── longpath.zip └── testing_utils.py └── tox.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/docs-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/.github/workflows/docs-ci.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/.github/workflows/pypi-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/Dockerfile -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/NOTICE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/README.rst -------------------------------------------------------------------------------- /about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/about -------------------------------------------------------------------------------- /about.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/about.ABOUT -------------------------------------------------------------------------------- /about.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/about.bat -------------------------------------------------------------------------------- /apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/apache-2.0.LICENSE -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/appveyor.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/configure -------------------------------------------------------------------------------- /configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/configure.bat -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/scripts/doc8_style_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/docs/scripts/doc8_style_check.sh -------------------------------------------------------------------------------- /docs/scripts/sphinx_build_link_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/docs/scripts/sphinx_build_link_check.sh -------------------------------------------------------------------------------- /docs/source/_static/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/docs/source/_static/js/custom.js -------------------------------------------------------------------------------- /docs/source/_static/theme_overrides-skeleton-2022-03-28-updated.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/docs/source/_static/theme_overrides-skeleton-2022-03-28-updated.css -------------------------------------------------------------------------------- /docs/source/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/docs/source/_static/theme_overrides.css -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/general.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/docs/source/general.rst -------------------------------------------------------------------------------- /docs/source/home.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/docs/source/home.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/docs/source/reference.rst -------------------------------------------------------------------------------- /docs/source/specification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/docs/source/specification.rst -------------------------------------------------------------------------------- /docs/source/type_of_errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/docs/source/type_of_errors.rst -------------------------------------------------------------------------------- /etc/ci/azure-container-deb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/ci/azure-container-deb.yml -------------------------------------------------------------------------------- /etc/ci/azure-container-rpm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/ci/azure-container-rpm.yml -------------------------------------------------------------------------------- /etc/ci/azure-posix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/ci/azure-posix.yml -------------------------------------------------------------------------------- /etc/ci/azure-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/ci/azure-win.yml -------------------------------------------------------------------------------- /etc/ci/install_sudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/ci/install_sudo.sh -------------------------------------------------------------------------------- /etc/ci/macports-ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/ci/macports-ci -------------------------------------------------------------------------------- /etc/ci/macports-ci.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/ci/macports-ci.ABOUT -------------------------------------------------------------------------------- /etc/ci/mit.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/ci/mit.LICENSE -------------------------------------------------------------------------------- /etc/scripts/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/README.rst -------------------------------------------------------------------------------- /etc/scripts/check_thirdparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/check_thirdparty.py -------------------------------------------------------------------------------- /etc/scripts/fetch_thirdparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/fetch_thirdparty.py -------------------------------------------------------------------------------- /etc/scripts/gen_pypi_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/gen_pypi_simple.py -------------------------------------------------------------------------------- /etc/scripts/gen_pypi_simple.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/gen_pypi_simple.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/gen_pypi_simple.py.NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/gen_pypi_simple.py.NOTICE -------------------------------------------------------------------------------- /etc/scripts/gen_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/gen_requirements.py -------------------------------------------------------------------------------- /etc/scripts/gen_requirements_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/gen_requirements_dev.py -------------------------------------------------------------------------------- /etc/scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/requirements.txt -------------------------------------------------------------------------------- /etc/scripts/test_utils_pip_compatibility_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/test_utils_pip_compatibility_tags.py -------------------------------------------------------------------------------- /etc/scripts/test_utils_pip_compatibility_tags.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/test_utils_pip_compatibility_tags.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/test_utils_pypi_supported_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/test_utils_pypi_supported_tags.py -------------------------------------------------------------------------------- /etc/scripts/test_utils_pypi_supported_tags.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/test_utils_pypi_supported_tags.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/update_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/update_skeleton.py -------------------------------------------------------------------------------- /etc/scripts/utils_dejacode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/utils_dejacode.py -------------------------------------------------------------------------------- /etc/scripts/utils_pip_compatibility_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/utils_pip_compatibility_tags.py -------------------------------------------------------------------------------- /etc/scripts/utils_pip_compatibility_tags.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/utils_pip_compatibility_tags.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/utils_pypi_supported_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/utils_pypi_supported_tags.py -------------------------------------------------------------------------------- /etc/scripts/utils_pypi_supported_tags.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/utils_pypi_supported_tags.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/utils_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/utils_requirements.py -------------------------------------------------------------------------------- /etc/scripts/utils_thirdparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/utils_thirdparty.py -------------------------------------------------------------------------------- /etc/scripts/utils_thirdparty.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/etc/scripts/utils_thirdparty.py.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/alocal.m4.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/alocal.m4.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/config/config.guess.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/config/config.guess.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/config/config.rpath.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/config/config.rpath.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/config/config.sub.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/config/config.sub.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/config/gpl-2.0-autoconf.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/config/gpl-2.0-autoconf.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/config/mkinstalldirs.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/config/mkinstalldirs.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/config/public-domain.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/config/public-domain.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/contrib/UlrichWindl.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/contrib/UlrichWindl.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/contrib/dconf.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/contrib/dconf.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/KazKylheku.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/KazKylheku.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/argv_parse.c.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/argv_parse.c.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/argv_parse.h.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/argv_parse.h.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/dict.c.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/dict.c.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/dict.h.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/dict.h.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/gpl-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/gpl-2.0.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/journal.c.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/journal.c.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/lgpl-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/lgpl-2.0.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/mit-old-style-legal-2.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/mit-old-style-legal-2.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/mtrace.c.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/mtrace.c.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/mtrace.h.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/mtrace.h.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/profile.c.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/profile.c.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/profile.h.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsck/profile.h.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsprogs-1.39.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsprogs-1.39.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsprogs-1.39.NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/e2fsprogs-1.39.NOTICE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/gpl-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/gpl-2.0.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/include/nonunix/getopt.h.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/include/nonunix/getopt.h.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/include/nonunix/lgpl-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/include/nonunix/lgpl-2.0.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/install-utils/convfstab.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/install-utils/convfstab.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/install-utils/public-domain.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/install-utils/public-domain.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/intl/intl.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/intl/intl.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/intl/lgpl-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/intl/lgpl-2.0.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/blkid/blkid.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/blkid/blkid.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/blkid/lgpl-2.1.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/blkid/lgpl-2.1.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/bsla.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/bsla.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/e2p/e2p.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/e2p/e2p.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/e2p/lgpl-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/e2p/lgpl-2.0.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/bsd-new.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/bsd-new.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/bsla.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/bsla.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/com_right.c.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/com_right.c.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/et.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/et.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/gpl-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/gpl-2.0.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/kerberos.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/kerberos.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/texinfo.tex.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/texinfo.tex.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/vfprintf.c.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/et/vfprintf.c.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/fpopen.c.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/fpopen.c.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/ss/kerberos.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/ss/kerberos.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/ss/ss.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/ss/ss.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/uuid/bsd-new.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/uuid/bsd-new.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/uuid/uuid.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/lib/uuid/uuid.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/misc/blkid.c.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/misc/blkid.c.ABOUT -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/misc/lgpl-2.1.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/misc/lgpl-2.1.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/public-domain.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/e2fsprogs-about/e2fsprogs-1.39/public-domain.LICENSE -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/input/MAPPING.CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/input/MAPPING.CONFIG -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/input/e2fsprogs-1.39-CreateAboutFile.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/input/e2fsprogs-1.39-CreateAboutFile.csv -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/input/e2fsprogs-1.39-INV.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/input/e2fsprogs-1.39-INV.xlsx -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/input/template_sample_attribution_starship.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/input/template_sample_attribution_starship.html -------------------------------------------------------------------------------- /example/e2fsprogs-1.39/output/sample_attribution_starship.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/example/e2fsprogs-1.39/output/sample_attribution_starship.html -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/setup.py -------------------------------------------------------------------------------- /src/attributecode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/__init__.py -------------------------------------------------------------------------------- /src/attributecode/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/__main__.py -------------------------------------------------------------------------------- /src/attributecode/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/api.py -------------------------------------------------------------------------------- /src/attributecode/attrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/attrib.py -------------------------------------------------------------------------------- /src/attributecode/attrib_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/attrib_util.py -------------------------------------------------------------------------------- /src/attributecode/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/cmd.py -------------------------------------------------------------------------------- /src/attributecode/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/gen.py -------------------------------------------------------------------------------- /src/attributecode/licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/licenses.py -------------------------------------------------------------------------------- /src/attributecode/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/model.py -------------------------------------------------------------------------------- /src/attributecode/templates/default_html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/templates/default_html.template -------------------------------------------------------------------------------- /src/attributecode/templates/default_json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/templates/default_json.template -------------------------------------------------------------------------------- /src/attributecode/templates/license_ref.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/templates/license_ref.template -------------------------------------------------------------------------------- /src/attributecode/templates/list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/templates/list.csv -------------------------------------------------------------------------------- /src/attributecode/templates/scancode_html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/templates/scancode_html.template -------------------------------------------------------------------------------- /src/attributecode/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/transform.py -------------------------------------------------------------------------------- /src/attributecode/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/src/attributecode/util.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_attrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/test_attrib.py -------------------------------------------------------------------------------- /tests/test_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/test_cmd.py -------------------------------------------------------------------------------- /tests/test_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/test_gen.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/test_transform.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/testdata/test_attrib/default_template/expect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/default_template/expect.html -------------------------------------------------------------------------------- /tests/testdata/test_attrib/default_template/simple_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/default_template/simple_sample.csv -------------------------------------------------------------------------------- /tests/testdata/test_attrib/gen_default_template/attrib.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/gen_default_template/attrib.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_attrib/gen_default_template/expected_default_attrib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/gen_default_template/expected_default_attrib.html -------------------------------------------------------------------------------- /tests/testdata/test_attrib/gen_default_template/httpd-2.4.3.tar.gz: -------------------------------------------------------------------------------- 1 | mock archive document in attrib.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_attrib/gen_license_key_name_check/LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- 1 | This is Apache 2 | -------------------------------------------------------------------------------- /tests/testdata/test_attrib/gen_license_key_name_check/LICENSES/LGPL-3.0.txt: -------------------------------------------------------------------------------- 1 | This is LGPL 2 | -------------------------------------------------------------------------------- /tests/testdata/test_attrib/gen_license_key_name_check/custom.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/gen_license_key_name_check/custom.template -------------------------------------------------------------------------------- /tests/testdata/test_attrib/gen_license_key_name_check/expected/expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/gen_license_key_name_check/expected/expected.html -------------------------------------------------------------------------------- /tests/testdata/test_attrib/gen_license_key_name_check/test.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/gen_license_key_name_check/test.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_attrib/gen_simple/attrib.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/gen_simple/attrib.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_attrib/gen_simple/httpd-2.4.3.tar.gz: -------------------------------------------------------------------------------- 1 | mock archive document in attrib.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_attrib/gen_simple/test.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/gen_simple/test.template -------------------------------------------------------------------------------- /tests/testdata/test_attrib/scancode_input/sc-2-licenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/scancode_input/sc-2-licenses.json -------------------------------------------------------------------------------- /tests/testdata/test_attrib/scancode_input/sc-dup-lic-match.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/scancode_input/sc-dup-lic-match.html -------------------------------------------------------------------------------- /tests/testdata/test_attrib/scancode_input/sc-dup-lic-match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/scancode_input/sc-dup-lic-match.json -------------------------------------------------------------------------------- /tests/testdata/test_attrib/scancode_input/sc-dup-lic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/scancode_input/sc-dup-lic.html -------------------------------------------------------------------------------- /tests/testdata/test_attrib/scancode_input/sc-dup-lic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/scancode_input/sc-dup-lic.json -------------------------------------------------------------------------------- /tests/testdata/test_attrib/scancode_input/sc-min_score-0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/scancode_input/sc-min_score-0.html -------------------------------------------------------------------------------- /tests/testdata/test_attrib/scancode_input/sc-multi-lic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/scancode_input/sc-multi-lic.html -------------------------------------------------------------------------------- /tests/testdata/test_attrib/scancode_input/sc-multi-lic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/scancode_input/sc-multi-lic.json -------------------------------------------------------------------------------- /tests/testdata/test_attrib/scancode_input/sc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/scancode_input/sc.html -------------------------------------------------------------------------------- /tests/testdata/test_attrib/scancode_input/scancode.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_attrib/scancode_input/scancode.template -------------------------------------------------------------------------------- /tests/testdata/test_cmd/geninventory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/geninventory.csv -------------------------------------------------------------------------------- /tests/testdata/test_cmd/help/about_attrib_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/help/about_attrib_help.txt -------------------------------------------------------------------------------- /tests/testdata/test_cmd/help/about_check_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/help/about_check_help.txt -------------------------------------------------------------------------------- /tests/testdata/test_cmd/help/about_gen_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/help/about_gen_help.txt -------------------------------------------------------------------------------- /tests/testdata/test_cmd/help/about_gen_license_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/help/about_gen_license_help.txt -------------------------------------------------------------------------------- /tests/testdata/test_cmd/help/about_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/help/about_help.txt -------------------------------------------------------------------------------- /tests/testdata/test_cmd/help/about_inventory_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/help/about_inventory_help.txt -------------------------------------------------------------------------------- /tests/testdata/test_cmd/help/about_transform_config_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/help/about_transform_config_help.txt -------------------------------------------------------------------------------- /tests/testdata/test_cmd/help/about_transform_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/help/about_transform_help.txt -------------------------------------------------------------------------------- /tests/testdata/test_cmd/repository-mini/apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/repository-mini/apache-2.0.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_cmd/repository-mini/appdirs-1.4.3-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_cmd/repository-mini/appdirs.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/repository-mini/appdirs.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_cmd/repository-mini/appdirs.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/repository-mini/appdirs.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_cmd/repository-mini/mit.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/repository-mini/mit.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_cmd/repository-mini/xtrans-1.3.5.txz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_cmd/repository-mini/xtrans-1.3.5.txz.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/repository-mini/xtrans-1.3.5.txz.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_cmd/transform.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_cmd/transform.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/about.py.ABOUT: -------------------------------------------------------------------------------- 1 | about_resource: . 2 | name: ABOUT tool 3 | version: 0.8.1 4 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/dup_keys.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/dup_keys.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/dup_keys_with_diff_case.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/dup_keys_with_diff_case.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/inv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inv.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/inv2.csv: -------------------------------------------------------------------------------- 1 | about_resource,name,version 2 | /inv/,AboutCode,0.11.0 3 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inv3.csv: -------------------------------------------------------------------------------- 1 | about_resource,name,version 2 | inv/test.tar.gz,AboutCode,0.11.0 3 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inv4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inv4.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/inv5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inv5.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/inv6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inv6.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/inv7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inv7.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/inv_no_about_resource.csv: -------------------------------------------------------------------------------- 1 | name,version,license_expression 2 | AboutCode,0.11.0,apache-2.0 3 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/Jinja2-2.7.3-py2-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/Jinja2.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/Jinja2.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/Jinja2.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/Jinja2.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/MarkupSafe-0.23-py2-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/MarkupSafe.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/MarkupSafe.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/MarkupSafe.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/MarkupSafe.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/NOTICE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/PSF.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/PSF.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/about.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/about.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/apache-2.0.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/certifi-14.05.14-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/certifi.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/certifi.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/certifi.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/certifi.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/click-3.2-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/click.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/click.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/click.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/click.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/colorama-0.3.1-py2-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/colorama.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/colorama.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/colorama.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/colorama.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/lgpl-2.1.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/lgpl-2.1.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/pip-1.5.6-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/pip.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/pip.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/pip.AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/pip.AUTHORS -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/pip.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/pip.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/py-1.4.23-py2-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/py.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/py.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/py.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/pytest-2.6.1-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/pytest.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/pytest.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/pytest.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/pytest.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/schematics-0.9_5-py2-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/schematics.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/schematics.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/schematics.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/schematics.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/setuptools-5.6-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/setuptools.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/setuptools.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/unicodecsv-0.9.4-py2-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/unicodecsv.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/unicodecsv.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/unicodecsv.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/unicodecsv.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/wheel-0.24.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/wheel.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/wheel.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/wheel.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/wheel.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/wincertstore-0.2-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/wincertstore.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/wincertstore.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about/wincertstore.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about/wincertstore.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/about_file_path_dir_endswith_space.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/about_file_path_dir_endswith_space.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/inventory/complex/expected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/inventory/complex/expected.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/lic_issue_450/custom.txt: -------------------------------------------------------------------------------- 1 | This is a custom license. 2 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/lic_issue_450/custom_and_valid_lic_key_with_file.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/lic_issue_450/custom_and_valid_lic_key_with_file.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/lic_key_custom_lic_file/lic_key_with_custom_lic_file.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/lic_key_custom_lic_file/lic_key_with_custom_lic_file.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/lic_key_custom_lic_file/no_lic_key_with_custom_lic_file.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/lic_key_custom_lic_file/no_lic_key_with_custom_lic_file.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/load/clean-text-0.3.0-lceupi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/load/clean-text-0.3.0-lceupi.json -------------------------------------------------------------------------------- /tests/testdata/test_gen/load/simple_sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/load/simple_sample.xlsx -------------------------------------------------------------------------------- /tests/testdata/test_gen/multi_lic_issue_443/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/multi_lic_issue_443/test.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/multi_lic_issue_444/test1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/multi_lic_issue_444/test1.csv -------------------------------------------------------------------------------- /tests/testdata/test_gen/parser_tests/.ABOUT: -------------------------------------------------------------------------------- 1 | name: Apache HTTP Server 2 | version: 2.4.3 -------------------------------------------------------------------------------- /tests/testdata/test_gen/parser_tests/about_resource.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_gen/parser_tests/about_resource_field.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/parser_tests/about_resource_field.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/parser_tests/about_resource_field_present.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/parser_tests/about_resource_field_present.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/parser_tests/missing_about_ref.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/parser_tests/missing_about_ref.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/parser_tests/upper_field_names.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/parser_tests/upper_field_names.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_gen/this.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_gen/this.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/android/expected_NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/android/expected_NOTICE -------------------------------------------------------------------------------- /tests/testdata/test_model/android/multi_license.c.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/android/multi_license.c.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/android/public-domain.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/android/public-domain.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/android/single_license.c.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/android/single_license.c.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/base_dir/license.LICENSE: -------------------------------------------------------------------------------- 1 | some license text -------------------------------------------------------------------------------- /tests/testdata/test_model/collect_inventory_errors/non-supported_date_format.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/collect_inventory_errors/non-supported_date_format.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/collect_inventory_errors/supported_date_format.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/collect_inventory_errors/supported_date_format.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/crlf/about.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/crlf/about.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/crlf/expected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/crlf/expected.csv -------------------------------------------------------------------------------- /tests/testdata/test_model/custom_fields/custom_fields.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/custom_fields/custom_fields.about -------------------------------------------------------------------------------- /tests/testdata/test_model/dumps/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/dumps/NOTICE -------------------------------------------------------------------------------- /tests/testdata/test_model/dumps/about.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/dumps/about.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/dumps/apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/dumps/apache-2.0.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/equal/complete/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/equal/complete/NOTICE -------------------------------------------------------------------------------- /tests/testdata/test_model/equal/complete/about.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/equal/complete/about.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/equal/complete/apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/equal/complete/apache-2.0.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/equal/complete2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/equal/complete2/NOTICE -------------------------------------------------------------------------------- /tests/testdata/test_model/equal/complete2/about.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/equal/complete2/about.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/equal/complete2/apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/equal/complete2/apache-2.0.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/expected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/expected.csv -------------------------------------------------------------------------------- /tests/testdata/test_model/expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/expected.json -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/basic/about/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/basic/about/NOTICE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/basic/about/about.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/basic/about/about.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/basic/about/apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/basic/about/apache-2.0.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/basic/expected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/basic/expected.csv -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/basic_with_about_resource_path/about/about_with_about_resource_path.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/basic_with_about_resource_path/about/about_with_about_resource_path.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/basic_with_about_resource_path/about/apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/basic_with_about_resource_path/about/apache-2.0.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/basic_with_about_resource_path/expected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/basic_with_about_resource_path/expected.csv -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complete/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complete/NOTICE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complete/about.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complete/about.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complete/apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complete/apache-2.0.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/Jinja2-2.7.3-py2-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/Jinja2.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/Jinja2.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/Jinja2.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/Jinja2.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/MarkupSafe-0.23-py2-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/MarkupSafe.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/MarkupSafe.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/MarkupSafe.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/MarkupSafe.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/NOTICE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/PSF.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/PSF.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/about.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/about.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/apache-2.0.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/certifi-14.05.14-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/certifi.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/certifi.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/certifi.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/certifi.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/click-3.2-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/click.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/click.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/click.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/click.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/colorama-0.3.1-py2-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/colorama.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/colorama.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/colorama.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/colorama.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/lgpl-2.1.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/lgpl-2.1.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/pip-1.5.6-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/pip.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/pip.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/pip.AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/pip.AUTHORS -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/pip.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/pip.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/py-1.4.23-py2-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/py.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/py.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/py.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/pytest-2.6.1-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/pytest.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/pytest.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/pytest.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/pytest.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/schematics-0.9_5-py2-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/schematics.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/schematics.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/schematics.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/schematics.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/setuptools-5.6-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/setuptools.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/setuptools.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/unicodecsv-0.9.4-py2-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/unicodecsv.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/unicodecsv.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/unicodecsv.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/unicodecsv.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/virtualenv-1.11.6-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/virtualenv.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/virtualenv.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/virtualenv.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/virtualenv.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/virtualenv.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/virtualenv.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/virtualenv.py.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/wheel-0.24.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/wheel.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/wheel.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/wheel.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/wheel.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/wincertstore-0.2-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/wincertstore.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/wincertstore.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/about/wincertstore.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/about/wincertstore.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/complex/expected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/complex/expected.csv -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/custom_fields.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/custom_fields.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/custom_fields2.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/custom_fields2.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/no_about_resource_key/about/about.ABOUT: -------------------------------------------------------------------------------- 1 | name: AboutCode -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/relative/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/relative/NOTICE -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/relative/about.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/relative/about.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/inventory/relative/apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/inventory/relative/apache-2.0.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/longpath.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/longpath.zip -------------------------------------------------------------------------------- /tests/testdata/test_model/multiple_files.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/multiple_files.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/multiple_files_expected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/multiple_files_expected.csv -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/basic.about: -------------------------------------------------------------------------------- 1 | single_line: optional 2 | other_field: value 3 | -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/boolean_chara_data.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/boolean_chara_data.about -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/boolean_data.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/boolean_data.about -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/boolean_more_than_2_chara_data.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/boolean_more_than_2_chara_data.about -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/boolean_numeric_data.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/boolean_numeric_data.about -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/complete2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/complete2/NOTICE -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/complete2/about.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/complete2/about.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/complete2/about2.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/complete2/about2.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/complete2/apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/complete2/apache-2.0.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/complex.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/complex.about -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/continuation.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/continuation.about -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/continuation_verbatim.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/continuation_verbatim.about -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/continuation_verbatim_with_tab.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/continuation_verbatim_with_tab.about -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/dupe_field_name.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/dupe_field_name.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/dupe_field_name_no_new_value.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/dupe_field_name_no_new_value.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/empty_notice_field.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/empty_notice_field.about -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/empty_required.ABOUT: -------------------------------------------------------------------------------- 1 | name: 2 | -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/illegal_custom_field.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/illegal_custom_field.about -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/invalid_boolean.about: -------------------------------------------------------------------------------- 1 | name: invalid_boolean 2 | about_resource: . 3 | modified: blah 4 | -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/invalid_continuation.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/invalid_continuation.about -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/invalid_names.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/invalid_names.about -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/license_file_notice_file.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/license_file_notice_file.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/license_text.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/license_text.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/missing_notice_file.ABOUT: -------------------------------------------------------------------------------- 1 | about_resource: . 2 | name: Apache HTTP Server 3 | notice_file: -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/missing_notice_license_files.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/missing_notice_license_files.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/missing_required.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/missing_required.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/multi_line_license_expresion.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/multi_line_license_expresion.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/name_mapping_test.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/name_mapping_test.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/no_file_fields.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/no_file_fields.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/non_ascii_field_name_value.about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/non_ascii_field_name_value.about -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/notice_text.NOTICE: -------------------------------------------------------------------------------- 1 | Test component is released to Public Domain. -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/ordered_fields.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/ordered_fields.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/parse/with_ignored_resources.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/parse/with_ignored_resources.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/redistribution/test/subdir/test.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/redistribution/test/subdir/test.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/redistribution/test/subdir/test.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/redistribution/this.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/redistribution/this.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/redistribution/this.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/redistribution/this2.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/redistribution/this2.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/redistribution/this2.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/rel/allAboutInOneDir/about_ref/csv_serialize.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/rel/allAboutInOneDir/about_ref/csv_serialize.py.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/rel/allAboutInOneDir/about_ref/django_snippets_2413.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/rel/allAboutInOneDir/about_ref/django_snippets_2413.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/rel/allAboutInOneDir/about_ref/elasticsearch.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/rel/allAboutInOneDir/about_ref/elasticsearch.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/rel/allAboutInOneDir/about_ref/ez_setup.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/rel/allAboutInOneDir/about_ref/ez_setup.py.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/rel/allAboutInOneDir/about_ref/t1/t2/ez_setup.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/rel/thirdparty/django_snippets.LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/rel/thirdparty/elasticsearch.LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/rel/thirdparty/elasticsearch.NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/rel/thirdparty/elasticsearch.NOTICE -------------------------------------------------------------------------------- /tests/testdata/test_model/serialize/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/serialize/NOTICE -------------------------------------------------------------------------------- /tests/testdata/test_model/serialize/about.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/serialize/about.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/serialize/apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/serialize/apache-2.0.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/single_file/django_snippets.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/single_file/django_snippets.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/single_file/django_snippets_2413.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/single_file/django_snippets_2413.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/single_file/django_snippets_2413.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_model/special/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/special/NOTICE -------------------------------------------------------------------------------- /tests/testdata/test_model/special/about.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/special/about.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/special/apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/special/apache-2.0.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_model/special_char/about.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/special_char/about.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/this.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/this.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/unicode/nose-selecttests.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/unicode/nose-selecttests.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_model/unicode/not-unicode.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_model/unicode/not-unicode.ABOUT -------------------------------------------------------------------------------- /tests/testdata/test_transform/configuration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_transform/configuration -------------------------------------------------------------------------------- /tests/testdata/test_transform/configuration2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_transform/configuration2 -------------------------------------------------------------------------------- /tests/testdata/test_transform/configuration3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_transform/configuration3 -------------------------------------------------------------------------------- /tests/testdata/test_transform/configuration_new_cols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_transform/configuration_new_cols -------------------------------------------------------------------------------- /tests/testdata/test_transform/input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_transform/input.csv -------------------------------------------------------------------------------- /tests/testdata/test_transform/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_transform/input.json -------------------------------------------------------------------------------- /tests/testdata/test_transform/input.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_transform/input.xlsx -------------------------------------------------------------------------------- /tests/testdata/test_transform/input_scancode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_transform/input_scancode.json -------------------------------------------------------------------------------- /tests/testdata/test_transform/simple.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_transform/simple.csv -------------------------------------------------------------------------------- /tests/testdata/test_transform/simple.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_transform/simple.xlsx -------------------------------------------------------------------------------- /tests/testdata/test_util/about_locations/dir1/dir2/file1.about: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_util/about_locations/dir1/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_util/about_locations/dir1/file2.aBout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_util/about_locations/dir2/file1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_util/about_locations/file with_spaces.ABOUT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_util/about_locations/file1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_util/about_locations/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_util/csv/about.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_util/csv/about.csv -------------------------------------------------------------------------------- /tests/testdata/test_util/csv/about_key_with_upper_case.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_util/csv/about_key_with_upper_case.csv -------------------------------------------------------------------------------- /tests/testdata/test_util/csv/test_ms_utf8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_util/csv/test_ms_utf8.csv -------------------------------------------------------------------------------- /tests/testdata/test_util/csv/test_utf8.csv: -------------------------------------------------------------------------------- 1 | about_resource,name 2 | /myFile,名 3 | -------------------------------------------------------------------------------- /tests/testdata/test_util/get_about_locations/NOTICE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_util/get_about_locations/about.ABOUT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_util/get_about_locations/apache-2.0.LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/test_util/json/expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_util/json/expected.json -------------------------------------------------------------------------------- /tests/testdata/test_util/json/expected_need_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_util/json/expected_need_mapping.json -------------------------------------------------------------------------------- /tests/testdata/test_util/json/multi_entries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_util/json/multi_entries.json -------------------------------------------------------------------------------- /tests/testdata/test_util/json/not_a_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_util/json/not_a_list.json -------------------------------------------------------------------------------- /tests/testdata/test_util/json/not_a_list_need_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_util/json/not_a_list_need_mapping.json -------------------------------------------------------------------------------- /tests/testdata/test_util/json/scancode_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_util/json/scancode_info.json -------------------------------------------------------------------------------- /tests/testdata/test_util/licenses/mit.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_util/licenses/mit.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_util/licenses/mit2.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_util/licenses/mit2.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_util/licenses/public-domain.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_util/licenses/public-domain.LICENSE -------------------------------------------------------------------------------- /tests/testdata/test_util/longpath.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testdata/test_util/longpath.zip -------------------------------------------------------------------------------- /tests/testing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tests/testing_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/aboutcode-toolkit/HEAD/tox.ini --------------------------------------------------------------------------------